Changes between Initial Version and Version 1 of Ticket #23696


Ignore:
Timestamp:
Oct 21, 2014, 1:38:42 AM (10 years ago)
Author:
Govinda Dasu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23696 – Description

    initial v1  
    11Hi, I'm not sure if this is intentional but when someone comes to your home page and downloads 1.7, they expect the documentation for i18n_patterns to apply to 1.7 and not 1.8. I spent all day trying to figure out why
    22
     3
     4{{{
    35i18n_patterns(
    46    url(r'^home/$', views.index, name='index'),
    57)
    68
    7 is wrong since I just copied the example you guys posted, but after reading between the lines on the statement about prefix being deprecated in 1.8, I realized that the provided example must be for 1.8 and not 1.7 and got the url working by doing i18n_patterns('', ...)
     9}}}
     10
     11is wrong since I just copied the example you guys posted, but after reading between the lines on the statement about prefix being deprecated in 1.8, I realized that the provided example must be for 1.8 and not 1.7 and got the url working by doing
     12{{{
     13 i18n_patterns('', ...)
     14}}}
Back to Top