Skip to content

Commit

Permalink
Merged changes from branch/2.00 r731: Adding a redirect from / to /id…
Browse files Browse the repository at this point in the history
…tracker/ to match the legacy behaviour.

 - Legacy-Id: 733
  • Loading branch information
levkowetz committed Jun 28, 2007
1 parent cc4b7aa commit 4cac4d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ietf/redirects/fixtures/initial_data.xml
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@
<field type="CharField" name="remove"></field>
</object>
<object pk="32" model="redirects.redirect">
<field type="CharField" name="cgi">dummy/2</field>
<field type="CharField" name="url"></field>
<field type="CharField" name="cgi"></field>
<field type="CharField" name="url">idtracker</field>
<field type="CharField" name="rest"></field>
<field type="CharField" name="remove"></field>
</object>
Expand Down
2 changes: 1 addition & 1 deletion ietf/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
(r'^meeting/', include('ietf.meeting.urls')),
(r'^accounts/', include('ietf.ietfauth.urls')),

(r'^$', ietf.views.apps),
(r'^$', 'ietf.redirects.views.redirect'),

# Uncomment this for admin:
(r'^admin/', include('django.contrib.admin.urls')),
Expand Down

0 comments on commit 4cac4d3

Please sign in to comment.