Changes between Initial Version and Version 2 of Ticket #8696


Ignore:
Timestamp:
Aug 31, 2008, 10:17:58 AM (16 years ago)
Author:
Ramiro Morales
Comment:

reformatted description

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8696

    • Property Component UncategorizedDocumentation
    • Property Owner changed from nobody to Jacob
    • Property Triage Stage UnreviewedAccepted
    • Property Status newassigned
  • Ticket #8696 – Description

    initial v2  
    11The online docs at http://docs.djangoproject.com/en/dev/intro/tutorial02/#intro-tutorial02
    22are using incorrect characters for apostrophes. The example url patterns
    3 
     3{{{
    44urlpatterns = patterns(‘’,
    55    # Example:
     
    1212    (r’^admin/(.*)’, admin.site.root),
    1313)
    14 
     14}}}
    1515cannot 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{{{
    1717docs/intro/tutorial02.txt
    1818docs/howto/deployment/modpython.txt
    1919docs/howto/custom-template-tags.txt
    2020docs/howto/apache-auth.txt
    21 
     21}}}
    2222It looks like parsed-literal is the wrong tag to use here.
Back to Top