X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=geekigeeki.py;h=4cb7b43c018c39e109b52fe50cdf4372f38d9b55;hb=425f8f9c7238697964956324b3809fc6a97e0378;hp=f6163110b35b15c6b8d313158a8f42d9145303ca;hpb=344a5723acc80525ac936017a64ad3d69d1950b7;p=geekigeeki.git diff --git a/geekigeeki.py b/geekigeeki.py index f616311..4cb7b43 100755 --- a/geekigeeki.py +++ b/geekigeeki.py @@ -20,9 +20,9 @@ title_done = False import cgi, sys, os, re, errno, stat, glob -image_ext = 'png|gif|jpg|jpeg|bmp|ico' -video_ext = "ogg|ogv|oga|webm" # Not supported by Firefox 3.6: mkv|mpg|mpeg|mp4|avi|asf|flv|wmv|qt -image_re = re.compile(r".*\.(" + image_ext + "|" + video_ext + ")$", re.IGNORECASE) +image_ext = 'png|gif|jpg|jpeg|svg|bmp|ico' +video_ext = 'avi|webm|mkv|ogv' +image_re = re.compile(r".*\.(" + image_ext + ")$", re.IGNORECASE) video_re = re.compile(r".*\.(" + video_ext + ")$", re.IGNORECASE) # FIXME: we accept stuff like foo/../bar and we shouldn't file_re = re.compile(r"([A-Za-z0-9_\-][A-Za-z0-9_\.\-/ ]*)$") @@ -586,7 +586,7 @@ class Page: out += '[[' + pathname + '|' + dirname + ']]/' out += ' ==\n' images_out = '\n' - + for filename in page_list(self._filename(), file_re): if image_re.match(filename): maxwidth = config_get('image_maxwidth', '400') @@ -647,6 +647,7 @@ class Page: print('\n') print("%s: %s" % (config_get('site_name', "Unconfigured Wiki"), text)) print(' ') + print(' ') if not name: print(' ') @@ -662,8 +663,9 @@ class Page: print(' ' \ % relative_url(name + '?a=edit', privileged=True)) - print(' ' \ - % relative_url(name + '?a=atom')) + if name: + print(' ' \ + % relative_url(name + '?a=atom')) print('')