view contrib/sawmill/web/templates/overview.html @ 570:44c0f8404983

Refactor git pull command out of update Tag MUST NOT use update because therefore it always changes the current local branch! For listing the tags it's enough to pull the latest repo changes
author Bjoern Ricks <bricks@intevation.de>
date Fri, 02 Sep 2011 11:46:29 +0000
parents 283154e189d9
children
line wrap: on
line source
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">
<html>
<%@include file="header.inc" %>

<div style="text-align: right">
  <a href="http://wald.intevation.de/">...to WALD source code repository</a>
</div>

<%
from cgi import escape
from xml.sax.saxutils import quoteattr

for treepkg, description in sorted(descriptions, key=lambda x: x[1]):
    # for all descriptions
%>
<div style="magin:5px;border-bottom:1px solid #DDDDDD;padding:5px;font-weight:bold; font-size: 16pt">
<a href=<%= quoteattr("details.py?treepkg=%s" % treepkg) %>><%= escape(description) %></a>
</div>
<%
# for all descriptions
%>

<%@include file="footer.inc" %>
</html>
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)