Changeset 1854
- Timestamp:
- 01/07/06 23:56:45 (3 years ago)
- Files:
-
- django/branches/magic-removal/AUTHORS (modified) (1 diff)
- django/branches/magic-removal/django/conf/locale/ru/LC_MESSAGES/django.mo (modified) (previous)
- django/branches/magic-removal/django/conf/locale/ru/LC_MESSAGES/django.po (modified) (1 diff)
- django/branches/magic-removal/django/contrib/auth/handlers/modpython.py (modified) (1 diff)
- django/branches/magic-removal/django/contrib/sessions/models.py (modified) (1 diff)
- django/branches/magic-removal/docs/i18n.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/magic-removal/AUTHORS
r1835 r1854 82 82 Luke Plant <http://lukeplant.me.uk/> 83 83 plisk 84 Brian Ray <http://brianray.chipy.org/> 84 85 Oliver Rutherfurd <http://rutherfurd.net/> 85 86 David Schein django/branches/magic-removal/django/conf/locale/ru/LC_MESSAGES/django.po
r1794 r1854 409 409 #, python-format 410 410 msgid "You may add another %s below." 411 msgstr "�������� % ���"411 msgstr "�������� %s ���" 412 412 413 413 #: contrib/admin/views/main.py:441 django/branches/magic-removal/django/contrib/auth/handlers/modpython.py
r1847 r1854 14 14 15 15 # check for PythonOptions 16 _str_to_bool = lambda s: s.lower() in '1', 'true', 'on', 'yes'16 _str_to_bool = lambda s: s.lower() in ('1', 'true', 'on', 'yes') 17 17 18 18 options = req.get_options() django/branches/magic-removal/django/contrib/sessions/models.py
r1836 r1854 18 18 # Use person_id and SECRET_KEY as added salt. 19 19 while 1: 20 session_key = md5.new(str(random.randint(0, sys.maxint - 1)) + SECRET_KEY).hexdigest()20 session_key = md5.new(str(random.randint(0, sys.maxint - 1)) + str(random.randint(0, sys.maxint - 1)) + SECRET_KEY).hexdigest() 21 21 try: 22 22 self.get_object(session_key__exact=session_key) django/branches/magic-removal/docs/i18n.txt
r1775 r1854 288 288 ``conf/locale``. In the ``de`` example, the file will be 289 289 ``conf/locale/de/LC_MESSAGES/django.po``. 290 291 If run over your project source tree or your appliation source tree, it will 292 do the same, but the location of the locale directory is ``locale/LANG/LC_MESSAGES`` 293 (note the missing ``conf`` prefix). 290 294 291 295 .. admonition:: No gettext?
