[ScryMUD] SVN Commit Info r844 - in trunk/tools/python: . html_help_includes
scrymud at wanfear.com
scrymud at wanfear.com
Mon Jul 10 22:00:22 PDT 2006
Author: eroper
Date: 2006-07-10 22:00:21 -0700 (Mon, 10 Jul 2006)
New Revision: 844
Modified:
trunk/tools/python/html_help.py
trunk/tools/python/html_help_includes/foot.html
Log:
Added Jira logo to footer template and lowercased alpha-index in help.
Modified: trunk/tools/python/html_help.py
===================================================================
--- trunk/tools/python/html_help.py 2006-07-11 04:42:52 UTC (rev 843)
+++ trunk/tools/python/html_help.py 2006-07-11 05:00:21 UTC (rev 844)
@@ -118,10 +118,10 @@
keys.sort()
ret_val += ("<div class=\"help_index_quicklinks\">")
for letter in scrymud.util.alphabet:
- if ( idx.has_key(letter) ): ret_val += ("<a href=\"#%s\">%s</a> " %(letter,letter))
+ if ( idx.has_key(letter) ): ret_val += ("<a href=\"#%s\">%s</a> " %(letter.lower(),letter.lower()))
else: ret_val += ("%s " %(letter))
for k in keys:
- ret_val += ("<div class=\"help_index_section\">\n<a name=\"%s\" /><div class=\"help_index_sortkey\">%s</div>\n" %(k,k))
+ ret_val += ("<div class=\"help_index_section\">\n<a name=\"%s\" /><div class=\"help_index_sortkey\">%s</div>\n" %(k.lower(),k.lower()))
ret_val += ("<ul class=\"help_index\">\n")
for entry in idx[k]:
ret_val += ("<li><a href=\"%s.html\">%s</a></li>\n" %(entry,entry))
Modified: trunk/tools/python/html_help_includes/foot.html
===================================================================
--- trunk/tools/python/html_help_includes/foot.html 2006-07-11 04:42:52 UTC (rev 843)
+++ trunk/tools/python/html_help_includes/foot.html 2006-07-11 05:00:21 UTC (rev 844)
@@ -3,6 +3,7 @@
<p>The ScryMUD development team would like to thank our sponsors:</p>
<a href="http://www.candelatech.com"><img src="/images/candela_swirl_small.png" width="71" height="33"></a>
<a href="http://cenqua.com/"><img src="/images/cenquad.gif" width="89" height="33"></a>
+<a href="http://www.atlassian.com/c/NPOS/10160"><img src="/images/jira_button_66x33.gif" alt="Issues tracked by Jira"></a>
</div>
<p id="copyright">Copyright © 2006, Edward Roper. All rights reserved.</p>
More information about the ScryMUD
mailing list