import os
-NSFORMAT = os.environ.has_key("BKMK_NSFORMAT")
+MZFORMAT = os.environ.has_key("BKMK_MZFORMAT")
+if MZFORMAT:
+ NSFORMAT = True
+else:
+ NSFORMAT = os.environ.has_key("BKMK_NSFORMAT")
def dump_comment(comment):
def start_folder(self, f, level):
self.outfile.write(ind_s*level + '<DT><H3 ADD_DATE="%s"' % f.add_date)
- if f.last_modified: self.outfile.write(' LAST_MODIFIED="%s"' % f.last_modified)
+ if MZFORMAT and f.last_modified: self.outfile.write(' LAST_MODIFIED="%s"' % f.last_modified)
self.outfile.write('>%s</H3>\n' % f.name)
self._folder(f, level)
def bookmark(self, b, level):
self.outfile.write(ind_s*(level+1) + '<DT><A HREF="%s" ADD_DATE="%s" LAST_VISIT="%s" LAST_MODIFIED="%s"' % (b.href, b.add_date, b.last_visit, b.last_modified))
- if b.keyword: self.outfile.write(' SHORTCUTURL="%s"' % b.keyword)
- if b.icon: self.outfile.write(' ICON="%s"' % b.icon)
- if b.charset: self.outfile.write(' LAST_CHARSET="%s"' % b.charset)
+ if MZFORMAT:
+ if b.keyword: self.outfile.write(' SHORTCUTURL="%s"' % b.keyword)
+ if b.icon: self.outfile.write(' ICON="%s"' % b.icon)
+ if b.charset: self.outfile.write(' LAST_CHARSET="%s"' % b.charset)
self.outfile.write('>%s</A>\n' % b.name)
if b.comment: self.outfile.write('<DD>%s\n' % dump_comment(b.comment))