Ticket #8701: 8701-v2.diff
File 8701-v2.diff, 9.3 KB (added by , 16 years ago) |
---|
-
django/conf/global_settings.py
257 257 FILE_UPLOAD_PERMISSIONS = None 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 281 281 # Do you want to manage transactions manually? -
django/contrib/redirects/README.TXT
3 3 For full documentation, see either of these: 4 4 5 5 * The file django/docs/redirects.txt in the Django distribution 6 * http:// www.djangoproject.com/documentation/redirects/ on the Web6 * http://docs.djangoproject.com/en/dev/ref/contrib/redirects/ on the Web 7 7 8 8 Both have identical content. 9 No newline at end of file -
django/contrib/flatpages/README.TXT
3 3 For full documentation, see either of these: 4 4 5 5 * The file docs/flatpages.txt in the Django distribution 6 * http:// www.djangoproject.com/documentation/flatpages/ on the Web6 * http://docs.djangoproject.com/en/dev/ref/contrib/flatpages/ on the Web 7 7 8 8 Both have identical content. -
docs/intro/whatsnext.txt
110 110 ---------- 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 116 116 additions, and they discuss the latest Django features, which may only be … … 232 232 * The `main documentation Web page`_ includes links to documentation for 233 233 all previous versions. 234 234 235 .. _main documentation Web page: http:// www.djangoproject.com/documentation/235 .. _main documentation Web page: http://docs.djangoproject.com/en/dev/ -
docs/releases/1.0-beta-2.txt
114 114 Django's online documentation also includes pointers on how to 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 120 120 documentation or simply triaging tickets and helping to test proposed -
docs/releases/1.0-beta.txt
148 148 Django's online documentation also includes pointers on how to 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 154 154 documentation or simply triaging tickets and helping to test proposed -
docs/releases/1.0-alpha-1.txt
33 33 and redesigned with extensibility and customization in mind. Full 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/38 36 37 :ref:`admin reference<ref-contrib-admin>` 38 39 39 Improved Unicode handling 40 40 Django's internals have been refactored to use Unicode throughout; 41 41 this drastically simplifies the task of dealing with … … 44 44 third-party libraries and systems which may or may not handle 45 45 Unicode gracefully. Details are available in Django's 46 46 Unicode-handling documentation: 47 48 http://www.djangoproject.com/documentation/unicode/49 47 48 :ref:`unicode reference<ref-unicode>` 49 50 50 An improved Django ORM 51 51 Django's object-relational mapper -- the component which provides 52 52 the mapping between Django model classes and your database, and … … 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 71 for the Django template system: 72 73 http://www.djangoproject.com/documentation/templates/#automatic-html-escaping74 72 73 :ref:`template autoescape <ref-templates-builtins-autoescape>` 74 75 75 There are many more new features, many bugfixes and many enhancements 76 76 to existing features from previous releases. The ``newforms`` library, 77 77 for example, has undergone massive improvements including several … … 87 87 Django 1.0 release, and a comprehensive list of backwards-incompatible 88 88 changes is also available on the Django wiki for those who want to 89 89 begin developing and testing their upgrade process: 90 90 91 91 http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges 92 92 93 93 … … 158 158 Django's online documentation also includes pointers on how to 159 159 contribute to Django: 160 160 161 http://www.djangoproject.com/documentation/contributing/161 :ref:`contributing to Django<internals-contributing>` 162 162 163 163 Contributions on any level -- developing code, writing 164 164 documentation or simply triaging tickets and helping to test proposed -
docs/releases/1.0-alpha-2.txt
131 131 Django's online documentation also includes pointers on how to 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 137 137 documentation or simply triaging tickets and helping to test proposed -
docs/man/django-admin.1
168 168 Full descriptions of all these options, with examples, as well as documentation 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. 174 174 .SH "AUTHORS/CREDITS" -
docs/man/daily_cleanup.1
22 22 .SH "SEE ALSO" 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" 28 28 Originally developed at World Online in Lawrence, Kansas, USA. Refer to the -
docs/ref/templates/builtins.txt
16 16 17 17 .. templatetag:: autoescape 18 18 19 .. _ref-templates-builtins-autoescape: 20 19 21 autoescape 20 22 ~~~~~~~~~~ 21 23 -
README
2 2 and clean, pragmatic design. 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,5 http://docs.djangoproject.com/en/dev/. If you're just getting started, 6 6 here's how we recommend you read the docs: 7 7 8 8 * First, read docs/install.txt for instructions on installing Django.