Changeset 8857
- Timestamp:
- 09/02/08 11:42:13 (3 months ago)
- Files:
-
- django/trunk/django/conf/global_settings.py (modified) (1 diff)
- django/trunk/django/contrib/flatpages/README.TXT (deleted)
- django/trunk/django/contrib/redirects/README.TXT (deleted)
- django/trunk/docs/intro/whatsnext.txt (modified) (2 diffs)
- django/trunk/docs/man/daily_cleanup.1 (modified) (1 diff)
- django/trunk/docs/man/django-admin.1 (modified) (1 diff)
- django/trunk/docs/releases/1.0-alpha-1.txt (modified) (5 diffs)
- django/trunk/docs/releases/1.0-alpha-2.txt (modified) (1 diff)
- django/trunk/docs/releases/1.0-beta-2.txt (modified) (1 diff)
- django/trunk/docs/releases/1.0-beta.txt (modified) (1 diff)
- django/trunk/README (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/conf/global_settings.py
r8640 r8857 258 258 259 259 # Default formatting for date objects. See all available format strings here: 260 # http:// www.djangoproject.com/documentation/templates/#now260 # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#now 261 261 DATE_FORMAT = 'N j, Y' 262 262 263 263 # Default formatting for datetime objects. See all available format strings here: 264 # http:// www.djangoproject.com/documentation/templates/#now264 # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#now 265 265 DATETIME_FORMAT = 'N j, Y, P' 266 266 267 267 # Default formatting for time objects. See all available format strings here: 268 # http:// www.djangoproject.com/documentation/templates/#now268 # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#now 269 269 TIME_FORMAT = 'P' 270 270 271 271 # Default formatting for date objects when only the year and month are relevant. 272 272 # See all available format strings here: 273 # http:// www.djangoproject.com/documentation/templates/#now273 # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#now 274 274 YEAR_MONTH_FORMAT = 'F Y' 275 275 276 276 # Default formatting for date objects when only the month and day are relevant. 277 277 # See all available format strings here: 278 # http:// www.djangoproject.com/documentation/templates/#now278 # http://docs.djangoproject.com/en/dev/ref/templates/builtins/#now 279 279 MONTH_DAY_FORMAT = 'F j' 280 280 django/trunk/docs/intro/whatsnext.txt
r8843 r8857 111 111 112 112 The most recent version of the Django documentation lives at 113 http:// www.djangoproject.com/documentation/. These HTML pages are generated113 http://docs.djangoproject.com/en/dev/. These HTML pages are generated 114 114 automatically from the text files in source control. That means they reflect the 115 115 "latest and greatest" in Django -- they include the very latest corrections and … … 232 232 all previous versions. 233 233 234 .. _main documentation Web page: http:// www.djangoproject.com/documentation/234 .. _main documentation Web page: http://docs.djangoproject.com/en/dev/ django/trunk/docs/man/daily_cleanup.1
r7294 r8857 23 23 The sessions documentation: 24 24 .sp 25 .I http:// www.djangoproject.com/documentation/sessions/25 .I http://docs.djangoproject.com/en/dev/topics/http/sessions/ 26 26 27 27 .SH "AUTHORS/CREDITS" django/trunk/docs/man/django-admin.1
r8548 r8857 169 169 for the rest of the Django framework, can be found on the Django site: 170 170 .sp 171 .I http:// www.djangoproject.com/documentation/171 .I http://docs.djangoproject.com/en/dev/ 172 172 .sp 173 173 or in the distributed documentation. django/trunk/docs/releases/1.0-alpha-1.txt
r8506 r8857 34 34 documentation for the admin application is available online in the 35 35 official Django documentation: 36 37 http://www.djangoproject.com/documentation/admin/36 37 :ref:`admin reference <ref-contrib-admin>` 38 38 39 39 Improved Unicode handling … … 45 45 Unicode gracefully. Details are available in Django's 46 46 Unicode-handling documentation: 47 48 http://www.djangoproject.com/documentation/unicode/47 48 :ref:`unicode reference <ref-unicode>` 49 49 50 50 An improved Django ORM … … 69 69 marked as safe (requiring no escaping) or unsafe (requiring 70 70 escaping). A full guide to this feature is in the documentation 71 for the Django template system: 72 73 http://www.djangoproject.com/documentation/templates/#automatic-html-escaping 71 for the :ttag:`autoescape` tag. 74 72 75 73 There are many more new features, many bugfixes and many enhancements … … 88 86 changes is also available on the Django wiki for those who want to 89 87 begin developing and testing their upgrade process: 90 88 91 89 http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges 92 90 … … 159 157 contribute to Django: 160 158 161 http://www.djangoproject.com/documentation/contributing/159 :ref:`contributing to Django <internals-contributing>` 162 160 163 161 Contributions on any level -- developing code, writing django/trunk/docs/releases/1.0-alpha-2.txt
r8506 r8857 132 132 contribute to Django: 133 133 134 http://www.djangoproject.com/documentation/contributing/134 :ref:`contributing to Django <internals-contributing>` 135 135 136 136 Contributions on any level -- developing code, writing django/trunk/docs/releases/1.0-beta-2.txt
r8623 r8857 115 115 contribute to Django: 116 116 117 http://www.djangoproject.com/documentation/contributing/117 :ref:`contributing to Django <internals-contributing>` 118 118 119 119 Contributions on any level -- developing code, writing django/trunk/docs/releases/1.0-beta.txt
r8506 r8857 149 149 contribute to Django: 150 150 151 http://www.djangoproject.com/documentation/contributing/151 :ref:`contributing to Django <internals-contributing>` 152 152 153 153 Contributions on any level -- developing code, writing django/trunk/README
r7294 r8857 3 3 4 4 All documentation is in the "docs" directory and online at 5 http:// www.djangoproject.com/documentation/. If you're just getting started,6 h ere's how we recommend you read the docs:5 http://docs.djangoproject.com/en/dev/. If you're just getting started, here's 6 how we recommend you read the docs: 7 7 8 * First, read docs/in stall.txt for instructions on installing Django.8 * First, read docs/intro/install.txt for instructions on installing Django. 9 9 10 * Next, work through the tutorials in order (docs/ tutorial01.txt,11 docs/ tutorial02.txt, etc.).10 * Next, work through the tutorials in order (docs/intro/tutorial01.txt, 11 docs/intro/tutorial02.txt, etc.). 12 12 13 * If you want to set up an actual deployment server, read docs/modpython.txt 14 for instructions on running Django under mod_python. 13 * If you want to set up an actual deployment server, read 14 docs/howto/deployment/modpython.txt for instructions on running Django 15 under mod_python. 15 16 16 * The rest of the documentation is of the reference-manual variety. 17 Read it -- and the FAQ -- as you run into problems. 17 * You'll probably want to read through the topical guides (in docs/topics) 18 next; from there you can jump to the HOWTOs (in docs/howto) for specific 19 problems, and check out the reference (docs/ref) for gory details. 18 20 19 21 Docs are updated rigorously. If you find any problems in the docs, or think they … … 26 28 27 29 * Join the #django channel on irc.freenode.net. Lots of helpful people 28 hang out there. Read the archives at http:// simon.bofh.ms/logger/django/.30 hang out there. Read the archives at http://oebfare.com/logger/django/. 29 31 30 32 * Join the django-users mailing list, or read the archives, at
