diff -r 3433df0d6ae3 -r 7a914b3fafc1 gmyth-stream/server/0.2/lib/utils.py --- a/gmyth-stream/server/0.2/lib/utils.py Tue May 15 18:25:19 2007 +0100 +++ b/gmyth-stream/server/0.2/lib/utils.py Wed Aug 01 14:50:29 2007 +0100 @@ -160,6 +160,10 @@ # getHTML +def _create_html_item(opt): + return "
  • %s
  • \n" % opt +# _create_html_item + def progress_bar(log, value, max, barsize): chars = int(value * barsize / float(max)) percent = int((value / float(max)) * 100)