diff options
author | Dan McGee <dan@archlinux.org> | 2010-06-25 00:05:12 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-06-25 00:08:00 +0200 |
commit | e361a1e8731ce08f7a632b3914e7a0454191e01d (patch) | |
tree | 34214df7ba8e7fa9a2065070a09ddda757ec5a80 /templates | |
parent | 081ed6c8661bbec81cdbb9029e4832b34805f37b (diff) | |
download | archweb-e361a1e8731ce08f7a632b3914e7a0454191e01d.tar.gz archweb-e361a1e8731ce08f7a632b3914e7a0454191e01d.tar.xz |
Get unit tests up and running again
We had some dependency issues between migrations that needed to be
explicitly defined in order to get things fully moving, and do to some
braindeadness in Django tests not including the project url config, we need
to do some clever business when using the url tag in the base template so
tests don't doe with a NoReverseMatch exception.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html index a17ac54..c575dd5 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,7 +8,7 @@ <link rel="stylesheet" type="text/css" href="/media/archweb-print.css" media="print" /> <link rel="icon" type="image/x-icon" href="/media/favicon.ico" /> <link rel="shortcut icon" type="image/x-icon" href="/media/favicon.ico" /> - <link rel="search" type="application/opensearchdescription+xml" href="{% url opensearch-packages %}" title="Arch Linux Packages" /> + <link rel="search" type="application/opensearchdescription+xml" href="{% url opensearch-packages as osp %}{{ osp }}" title="Arch Linux Packages" /> {% block head %}{% endblock %} </head> <body class="{% if user.is_authenticated %}devmode {% endif %}{% block bodyclass %}{% endblock %}"> @@ -23,7 +23,7 @@ <li id="anb-wiki"><a href="http://wiki.archlinux.org/" title="Community documentation">Wiki</a></li> <li id="anb-bugs"><a href="http://bugs.archlinux.org/" title="Report and track bugs">Bugs</a></li> <li id="anb-aur"><a href="http://aur.archlinux.org/" title="Arch Linux User Repository">AUR</a></li> - <li id="anb-download"><a href="{% url page-download %}" title="Get Arch Linux">Download</a></li> + <li id="anb-download"><a href="{% url page-download as pdl %}{{ pdl }}" title="Get Arch Linux">Download</a></li> </ul> </div> </div><!-- #archnavbar --> @@ -36,7 +36,7 @@ <li><a href="http://wiki.archlinux.org/index.php/DeveloperWiki" title="Developer HOWTOs and documentation">DevWiki</a></li> <li><a href="http://projects.archlinux.org/" title="Git Projects">Projects</a></li> - <li><a href="{% url news-list %}" title="Manage news articles">News</a></li> + <li><a href="{% url news-list as newsl %}{{ newsl }}" title="Manage news articles">News</a></li> <li><a href="/packages/signoffs/" title="Package signoffs">Signoffs</a></li> <li><a href="/todo/" title="Developer to-do lists">Todos</a></li> <li><a href="http://www.archlinux.org/mailman/private/arch-dev/" |