Changes between Initial Version and Version 1 of Ticket #131


Ignore:
Timestamp:
Jul 20, 2005, 10:47:14 PM (19 years ago)
Author:
Adrian Holovaty
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #131 – Description

    initial v1  
    11Example:
    22
     3{{{
    34settings/urls/main.py
    45(r'^(?P<username>\w+)/blog/', include('fiji.apps.blog.urls.blog')),
     
    67apps/blog/urls/blog.py
    78(r'', 'blog.index'),
     9}}}
    810
    911In this case, the username parameter caught by the main conf file does not get passed to the blog conf file, which is desired.
Back to Top