|
From: <ki...@us...> - 2003-08-08 01:54:41
|
Update of /cvsroot/pymerase/pymerase/pymweb/cgi
In directory sc8-pr-cvs1:/tmp/cvs-serv21134
Modified Files:
pymweb.py
Log Message:
Added links bug reports, support requests, feature requests, patches, and mailing lists.
Index: pymweb.py
===================================================================
RCS file: /cvsroot/pymerase/pymerase/pymweb/cgi/pymweb.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** pymweb.py 30 May 2003 02:00:50 -0000 1.15
--- pymweb.py 8 Aug 2003 01:54:35 -0000 1.16
***************
*** 232,235 ****
--- 232,255 ----
print text
html += text
+
+ text = "<b>Report Bug:</b> <a href=\"http://sourceforge.net/tracker/?atid=505345&group_id=63836&func=browse\">click here</a><br>\n"
+ print text
+ html += text
+
+ text = "<b>Support Request:</b> <a href=\"http://sourceforge.net/tracker/?group_id=63836&atid=505346\">click here</a><br>\n"
+ print text
+ html += text
+
+ text = "<b>Feature Request:</b> <a href=\"http://sourceforge.net/tracker/?group_id=63836&atid=505348\">click here</a><br>\n"
+ print text
+ html += text
+
+ text = "<b>Patches:</b> <a href=\"http://sourceforge.net/tracker/?group_id=63836&atid=505347\">click here</a><br>\n"
+ print text
+ html += text
+
+ text = "<b>Mailing Lists:</b> <a href=\"http://sourceforge.net/mail/?group_id=63836\">click here</a><br><br>\n\n"
+ print text
+ html += text
form = cgi.FieldStorage()
|