Bug #189743 - Add .jpeg to the list of extensions supported by dohtml. (trunk r7653)
authorZac Medico <zmedico@gentoo.org>
Wed, 22 Aug 2007 03:40:51 +0000 (03:40 -0000)
committerZac Medico <zmedico@gentoo.org>
Wed, 22 Aug 2007 03:40:51 +0000 (03:40 -0000)
svn path=/main/branches/2.1.2/; revision=7654

bin/dohtml
man/ebuild.5

index 917ca1b52bd1db58a10c8388aa19dbb539d3a274..5087ca4306067479135a002528ecb54e4966da1f 100755 (executable)
@@ -14,8 +14,8 @@
 # Detailed usage:
 # dohtml <list-of-files> 
 #  - 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 <list-of-files-and-directories>
 #  - 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
index f10e8c7656f9a26ddaeaa80d8efbc3e715cd4be7..68b4f053a0d5f7988958f1d62d3582b1764452ef 100644 (file)
@@ -775,7 +775,7 @@ Performs the ln command as either a hard link or symlink.
 .TP
 \fBdohtml\fR \fI [\-a filetypes] [\-r] [\-x list\-of\-dirs\-to\-ignore] [list\-of\-files\-and\-dirs]\fR
 Installs the files in the list of files (space\-separated list) into
-/usr/share/doc/${PF}/html provided the file ends in .html, .htm, .gif, .jpg, .png, .js, or .css.
+/usr/share/doc/${PF}/html provided the file ends in .htm, .html, .css, .js, .gif, .jpeg, .jpg, or .png.
 Setting \fI\-a\fR limits what types of files will be included,
 \fI\-A\fR appends to the default list, setting \fI\-x\fR sets which dirs to
 exclude (CVS excluded by default), \fI\-r\fR sets recursive.