[Python-checkins] r85166 - in tracker/instances/python-dev/rietveld: settings.py templates/base.html templates/issue_base.html

martin.v.loewis python-checkins at python.org
Sat Oct 2 11:31:42 CEST 2010


Author: martin.v.loewis
Date: Sat Oct  2 11:31:41 2010
New Revision: 85166

Log:
Adjust to bugs.python.org.


Modified:
   tracker/instances/python-dev/rietveld/settings.py
   tracker/instances/python-dev/rietveld/templates/base.html
   tracker/instances/python-dev/rietveld/templates/issue_base.html

Modified: tracker/instances/python-dev/rietveld/settings.py
==============================================================================
--- tracker/instances/python-dev/rietveld/settings.py	(original)
+++ tracker/instances/python-dev/rietveld/settings.py	Sat Oct  2 11:31:41 2010
@@ -79,7 +79,7 @@
     'django.core.context_processors.request',
 )
 
-ROOT_URLCONF = 'roundup_helper.urls'
+ROOT_URLCONF = 'rietveld_helper.urls'
 
 TEMPLATE_DIRS = (
     os.path.join(os.path.dirname(__file__), 'templates'),

Modified: tracker/instances/python-dev/rietveld/templates/base.html
==============================================================================
--- tracker/instances/python-dev/rietveld/templates/base.html	(original)
+++ tracker/instances/python-dev/rietveld/templates/base.html	Sat Oct  2 11:31:41 2010
@@ -185,9 +185,9 @@
    href="http://code.google.com/p/rietveld">Source code</a>
 |
 {%if user%}
-<a class="novisit" href="{%url roundup%}?@action=logout">Sign out</a>
+<a class="novisit" href="/?@action=logout">Sign out</a>
 {% else %}
-<a class="novisit" href="{%url roundup%}">Sign in</a>
+<a class="novisit" href="/">Sign in</a>
 {%endif%}
 </div>
 

Modified: tracker/instances/python-dev/rietveld/templates/issue_base.html
==============================================================================
--- tracker/instances/python-dev/rietveld/templates/issue_base.html	(original)
+++ tracker/instances/python-dev/rietveld/templates/issue_base.html	Sat Oct  2 11:31:41 2010
@@ -22,7 +22,7 @@
   {%else%}
     <a class="novisit" href="{%url codereview.views.index%}">Recent Issues</a>
     |
-    <a class="novisit" href="{%url roundup%}">Sign in</a>
+    <a class="novisit" href="/">Sign in</a>
     with your traccer account to create issues and add comments
   {%endif%}
 {%endblock%}


More information about the Python-checkins mailing list