comparison contrib/sawmill/web/templates/overview.html @ 452:333232953771

Initial check-in of sawmill a simple mod_python based web application to render build reports of treepkg.
author Sascha Teichmann <teichmann@intevation.de>
date Fri, 20 Aug 2010 16:15:29 +0000
parents
children a4bf8280ed0b
comparison
equal deleted inserted replaced
451:eacfd3744d16 452:333232953771
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3 <%
4 from cgi import escape
5 from xml.sax.saxutils import quoteattr
6 %>
7 <html>
8 <head>
9 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
10 <link rel="stylesheet" href="styles/style.css" type="text/css" media="screen" />
11 <title>S&auml;gewerker - Free Software forestry</title>
12 </head>
13
14 <body>
15 <table border="0" width="100%" cellspacing="0" cellpadding="0">
16 <tr>
17 <td>
18 <a href="/"><img src="img/logo.jpg" border="0" alt="" width="533" height="94" /></a>
19 </td>
20 </tr>
21 </table>
22 <table border="0" width="100%" cellspacing="0" cellpadding="0">
23
24 <tr>
25 <td align="left" bgcolor="#E0E0E0" width="9">
26 <img src="img/topleft.png" height="9" width="9" alt="" />
27 </td>
28 <td bgcolor="#E0E0E0" width="30">
29 <img src="img/clear.png" width="30" height="1" alt="" />
30 </td>
31 <td bgcolor="#E0E0E0">
32 <img src="img/clear.png" width="1" height="1" alt="" />
33
34 </td>
35 <td bgcolor="#E0E0E0" width="30">
36 <img src="img/clear.png" width="30" height="1" alt="" />
37 </td>
38 <td align="right" bgcolor="#E0E0E0" width="9">
39 <img src="img/topright.png" height="9" width="9" alt="" />
40 </td>
41 </tr>
42
43 <tr>
44 <!-- Outer body row -->
45 <td bgcolor="#E0E0E0">
46 <img src="img/clear.png" width="10" height="1" alt="" />
47 </td>
48 <td valign="top" width="99%" bgcolor="#E0E0E0" colspan="3">
49 <!-- Inner Tabs / Shell -->
50 <table border="0" width="100%" cellspacing="0" cellpadding="0">
51 <tr>
52
53 <td align="left" bgcolor="#ffffff" width="9">
54 <img src="img/topleft-inner.png" height="9" width="9" alt="" />
55 </td>
56 <td bgcolor="#ffffff">
57 <img src="img/clear.png" width="1" height="1" alt="" />
58 </td>
59 <td align="right" bgcolor="#ffffff" width="9">
60 <img src="img/topright-inner.png" height="9" width="9" alt="" />
61 </td>
62
63 </tr>
64 <tr>
65 <td bgcolor="#ffffff">
66 <img src="img/clear.png" width="10" height="1" alt="" />
67 </td>
68 <td valign="top" width="99%" bgcolor="white">
69 <!-- end main body row -->
70 <div style="text-align: right"><a href="http://wald.intevation.de/">...to WALD source code repository</a></div>
71
72 <%
73 for treepkg, description in descriptions:
74 # for all descriptions
75 %>
76 <div style="magin:5px;border-bottom:1px solid #DDDDDD;padding:5px;font-weight:bold; font-size: 16pt">
77 <a href=<%= quoteattr("details.py?treepkg=%s" % treepkg) %>><%= escape(description) %></a>
78 </div>
79 <%
80 # for all descriptions
81 %>
82 <!-- end main body row -->
83 </td>
84 <td width="10" bgcolor="#ffffff">
85 <img src="img/clear.png" width="2" height="1" alt="" />
86 </td>
87 </tr>
88
89 <tr>
90 <td align="left" bgcolor="#E0E0E0" width="9">
91 <img src="img/bottomleft-inner.png" height="11" width="11" alt="" />
92 </td>
93 <td bgcolor="#ffffff">
94 <img src="img/clear.png" width="1" height="1" alt="" />
95 </td>
96 <td align="right" bgcolor="#E0E0E0" width="9">
97 <img src="img/bottomright-inner.png" height="11" width="11" alt="" />
98
99 </td>
100 </tr>
101 </table>
102
103 <!-- end inner body row -->
104
105 </td>
106 <td width="10" bgcolor="#E0E0E0">
107 <img src="img/clear.png" width="2" height="1" alt="" />
108 </td>
109
110 </tr>
111 <tr>
112 <td align="left" bgcolor="#E0E0E0" width="9">
113 <img src="img/bottomleft.png" height="9" width="9" alt="" />
114 </td>
115 <td bgcolor="#E0E0E0" colspan="3">
116 <img src="img/clear.png" width="1" height="1" alt="" />
117 </td>
118 <td align="right" bgcolor="#E0E0E0" width="9">
119
120 <img src="img/bottomright.png" height="9" width="9" alt="" />
121 </td>
122 </tr>
123 </table>
124 <br />
125 <center>
126 <b style="color:white; font-size:13px;">
127 This site is hosted by the <a href="http://www.intevation.de">Intevation GmbH</a>
128
129 </b>
130 </center>
131
132 </body>
133 </html>
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)