Update of /cvsroot/ht2html/ht2html
In directory sc8-pr-cvs1:/tmp/cvs-serv5108
Modified Files:
BAWGenerator.py
Log Message:
Add my favicon
Index: BAWGenerator.py
===================================================================
RCS file: /cvsroot/ht2html/ht2html/BAWGenerator.py,v
retrieving revision 2.2
retrieving revision 2.3
diff -C2 -d -r2.2 -r2.3
*** BAWGenerator.py 4 Apr 2003 22:50:33 -0000 2.2
--- BAWGenerator.py 27 Oct 2003 19:59:41 -0000 2.3
***************
*** 88,89 ****
--- 88,94 ----
self.__body = self.__parser.fp.read()
return self.__body
+
+ def get_meta(self):
+ meta = Skeleton.get_meta(self)
+ favicon = '<link REL="shortcut icon" HREF="images/bassclef.png">'
+ return meta + '\n' + favicon
|