--- dohtml.orig 2007-08-21 20:09:27.000000000 +0200 +++ dohtml 2007-08-21 20:13:28.000000000 +0200 @@ -14,8 +14,8 @@ # Detailed usage: # dohtml # - will install the files in the list of files (space-separated list) into -# /usr/share/doc/${PF}/html, provided the file ends in .html, .png, .jpg -# or .css +# /usr/share/doc/${PF}/html, provided the file ends in .html, .htm, .png, +# .jpg, .jpeg, .gif, .js or .css. # dohtml -r # - will do as 'dohtml', but recurse into all directories, as long as the # directory name is not CVS @@ -80,7 +80,7 @@ if os.environ.has_key("DOCDESTTREE"): self.DOCDESTTREE = os.environ["DOCDESTTREE"] - self.allowed_exts = [ 'png', 'gif', 'html', 'htm', 'jpg', 'css', 'js' ] + self.allowed_exts = [ 'png', 'gif', 'html', 'htm', 'jpg', 'jpeg', 'css', 'js' ] self.allowed_files = [] self.disallowed_dirs = [ 'CVS' ] self.recurse = False