removed raw links: they create too many problems with webservers interpreting the files…
diff --git a/static.py b/static.py
--- a/static.py
+++ b/static.py
@@ -219,7 +219,7 @@ def createindex(target, ctx):
for filename in ctx:
filectx = ctx[filename]
lasteditctx = filectx.filectx(filectx.filerev())
- index += "<li><a href='../../"+ join("src",lasteditctx.hex(), escapename(filename)+".html") + "'>" + filename + "</a> (<a href='../../" + join("raw",lasteditctx.hex(), filename) + "'>raw</a>)</li>"
+ index += "<li><a href='../../"+ join("src",lasteditctx.hex(), escapename(filename)+".html") + "'>" + filename + "</a>"# (<a href='../../" + join("raw",lasteditctx.hex(), filename) + "'>raw</a>)</li>"
index += "</ul>"
return index