Changes between Initial Version and Version 2 of Ticket #8696
- Timestamp:
- Aug 31, 2008, 10:17:58 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8696
- Property Component Uncategorized → Documentation
- Property Owner changed from to
- Property Triage Stage Unreviewed → Accepted
- Property Status new → assigned
-
Ticket #8696 – Description
initial v2 1 1 The online docs at http://docs.djangoproject.com/en/dev/intro/tutorial02/#intro-tutorial02 2 2 are using incorrect characters for apostrophes. The example url patterns 3 3 {{{ 4 4 urlpatterns = patterns(‘’, 5 5 # Example: … … 12 12 (r’^admin/(.*)’, admin.site.root), 13 13 ) 14 14 }}} 15 15 cannot be cut and pasted because they are using ’ instead of ' to delimit their strings. You'll notice that the code color-coding is incorrect. A search for ".. parsed-literal::" in the source turned up five hits; these four files show this problem with delimiters: 16 16 {{{ 17 17 docs/intro/tutorial02.txt 18 18 docs/howto/deployment/modpython.txt 19 19 docs/howto/custom-template-tags.txt 20 20 docs/howto/apache-auth.txt 21 21 }}} 22 22 It looks like parsed-literal is the wrong tag to use here.