From 29477a8f8bdf972fbe854ce019d6f85f07f3777e Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 22 Aug 2007 03:39:14 +0000 Subject: Bug #189743 - Add .jpeg to the list of extensions supported by dohtml. svn path=/main/trunk/; revision=7653 --- bin/dohtml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'bin/dohtml') diff --git a/bin/dohtml b/bin/dohtml index 917ca1b5..5087ca43 100755 --- a/bin/dohtml +++ b/bin/dohtml @@ -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 .htm, .html, .css, +# .js, ,gif, .jpeg, .jpg, or .png. # dohtml -r # - will do as 'dohtml', but recurse into all directories, as long as the # directory name is not CVS @@ -80,7 +80,8 @@ class OptionsClass: if os.environ.has_key("_E_DOCDESTTREE_"): self.DOCDESTTREE = os.environ["_E_DOCDESTTREE_"] - self.allowed_exts = [ 'png', 'gif', 'html', 'htm', 'jpg', 'css', 'js' ] + self.allowed_exts = [ 'htm', 'html', 'css', 'js', + 'gif', 'jpeg', 'jpg', 'png' ] self.allowed_files = [] self.disallowed_dirs = [ 'CVS' ] self.recurse = False -- cgit v1.2.3-65-gdbad