[Python-modules-commits] r16792 - in packages/cssutils/trunk/debian (6 files)

cjsmo-guest at users.alioth.debian.org cjsmo-guest at users.alioth.debian.org
Wed Apr 27 03:10:33 UTC 2011


    Date: Wednesday, April 27, 2011 @ 03:10:17
  Author: cjsmo-guest
Revision: 16792

added additional formatting to manpages, corrected watch file, corrected python-cssutils-doc.examples, moved comment to correct copyright stanza

Modified:
  packages/cssutils/trunk/debian/copyright
  packages/cssutils/trunk/debian/man/csscapture.manpage1
  packages/cssutils/trunk/debian/man/csscombine.manpage1
  packages/cssutils/trunk/debian/man/cssparse.manpage1
  packages/cssutils/trunk/debian/python-cssutils-doc.examples
  packages/cssutils/trunk/debian/watch

Modified: packages/cssutils/trunk/debian/copyright
===================================================================
--- packages/cssutils/trunk/debian/copyright	2011-04-26 17:03:06 UTC (rev 16791)
+++ packages/cssutils/trunk/debian/copyright	2011-04-27 03:10:17 UTC (rev 16792)
@@ -7,6 +7,11 @@
  Walter Doerwald in the credits and the __author__ stanzas in some Python
  source files quite certainly make him a copyright holder.
 
+Comment: the upstream licensing moved from Creative Commons licensing to
+ LGPL 2.1 and subsequently to LGPL 3.  Some files such as setup.py mention
+ LGPL 2.1+, but COPYING.LESSER, the upstream site, and most files clearly
+ mention LGPL 3+ rendering the result LGPL 3+.
+
 Files: debian/*
 Copyright: 2008 Bernd Zeimetz <bzed at debian.org>
            2008 Damien Churchill <damoxc at gmail.com>
@@ -48,8 +53,3 @@
  .
  On Debian systems, the complete text of the GNU Lesser General Public License
  can be found in `/usr/share/common-licenses/LGPL'.
-
-Comment: the upstream licensing moved from Creative Commons licensing to
- LGPL 2.1 and subsequently to LGPL 3.  Some files such as setup.py mention
- LGPL 2.1+, but COPYING.LESSER, the upstream site, and most files clearly
- mention LGPL 3+ rendering the result LGPL 3+.

Modified: packages/cssutils/trunk/debian/man/csscapture.manpage1
===================================================================
--- packages/cssutils/trunk/debian/man/csscapture.manpage1	2011-04-26 17:03:06 UTC (rev 16791)
+++ packages/cssutils/trunk/debian/man/csscapture.manpage1	2011-04-27 03:10:17 UTC (rev 16792)
@@ -1,51 +1,41 @@
 .TH csscapture 1 "April 9, 2011" "" "cssutils"
 .SH NAME
-csscapture \- Downloads CSS stylesheets.
+.B
+csscapture\fR \- Downloads CSS stylesheets.
 .SH SYNOPSIS
 .B
-csscapture-script.py
-.RI [ options ]
-.RI URL
-.br
+csscapture-script
+.BI
+[\-d | \-h | \-m | \-n ]
+[\-s SOMEDIR]
+[\-u UA]
+.I URL
 .SH DESCRIPTION
-CSSCapture downloads all referenced CSS stylesheets of a given URL and saves
-them to a given target directory.
-.SH OPTIONS
 .B
-.IP \-d
-.B
-.IP \-\-debug
-.br
+CSSCapture\fR downloads all referenced CSS stylesheets of a given
+.I URL
+and saves them to a given target directory.
+.SH OPTIONS
+.TP
+.B \-d\fR, \fB\-\-debug\fR
 Show debug messages during capturing.
-.PP
-.B
-\-h
-.B
-.IP \-\-help
-Show this help message and exit.
-.PP
-.B
-\-m
-.B
-.IP \-\-minified
+.TP
+.B \-h\fR, \fB\-\-help\fR
+Show help message and exit.
+.TP
+.B \-m\fR. \fB\-\-minified\fR
 Saves minified version of captured files.
-.PP
-.B
-\-n
-.B
-.IP \-\-notsave
+.TP
+.B \-n\fR, \fB\-\-notsave\fR
 If given, files are NOT saved, only log is written.
-.PP
-.B
-\-s "SOMEDIR"
-.B
-.IP \-\-saveto=SOMEDIR
-Saving retrieved files to SOMEDIR, defaults to _CSSCapture_SAVED.
-.PP
-.B
-\-u "UA"
-.B
-.IP \-\-useragent=UA
-Useragent to use for request of URL, default is urllib2s default.
+.TP
+.B \-s\fI DIR\fR, \fB\-\-saveto\fR=\fIDIR
+Save retrieved files to \fIDIR\fR, defaults to
+\fB./_CSSCapture_SAVED\fR.
+.TP
+.B \-u\fI UA\fR, \fB\-\-useragent\fR=\fIUA
+Useragent to use for request of
+.I URL,
+default is urllib2s default\fR.
 .SH "SEE ALSO"
 .IP /usr/share/doc/python-cssutils-doc/docs/html/docs/index.html

Modified: packages/cssutils/trunk/debian/man/csscombine.manpage1
===================================================================
--- packages/cssutils/trunk/debian/man/csscombine.manpage1	2011-04-26 17:03:06 UTC (rev 16791)
+++ packages/cssutils/trunk/debian/man/csscombine.manpage1	2011-04-27 03:10:17 UTC (rev 16792)
@@ -1,51 +1,46 @@
 .TH csscombine 1 "April 9, 2011" "" "cssutils"
 .SH NAME
 .B
-csscombine \- Utility to combin several stylesheets into one.
+csscombine\fR \- Utility to combine several stylesheets into one.
 .SH SYNOPSIS
-.B csscombine-script.py
-.RI [ options ]
-.RI [ path ]
+.B csscombine-script
+.RI [\-h
+|
+\-m]
+[\-s SOURCEENCODING]
+[\-t TARGETENCODING]
 .br
+[\-u \fIURL\fR]
+path...
+.br
 .SH DESCRIPTION
-.B csscombine
-may be used to combine several sheets loaded from a main sheet via @import rules. Nested @import rules are resolved from cssutils 0.9.6a1.
+.B csscombine\fR may be used to combine several sheets loaded from a main sheet
+via @import rules. Nested @import rules are resolved since cssutils 0.9.6a1.
 .PP
-The resulting combined sheet (optionally minified) is send to stdout, info and error messages are handled by the normal cssutils log.
+The resulting combined sheet (optionally minified) is sent to stdout, info and
+error messages are handled by the normal cssutils log.
 .PP
-.B csscombine
-may also be used to change the encoding of the stylesheet if a target encoding is given.
+.B csscombine\fR may also be used to change the encoding of the stylesheet if a
+target encoding is given.
 .SH OPTIONS
-.B
-\-h
-.B
-.IP \-\-help
-.br
-Show this help message and exits.
-.PP
-.B
-\-m
-.B
-.IP \-\-minify
-Saves minified version of combined files, defaults to False.
-.PP
-.B
-\-s SOURCEENCODING
-.B
-.IP \-\-sourceencoding=SOURCEENCODING
-Encoding of input, defaulting to “css”. If given overwrites other encoding
+.TP
+.B \-h\fI \fB\-\-help\fR
+Show help message and exit.
+.TP
+.B \-m\fI \fB\-\-minify\fR
+Saves minified version of combined files, default is false.
+.TP
+.B \-s\fI SOURCEENCODING\fR, \fB\-\-sourceencoding\fR=\fISOURCEENCODING
+Encoding of input, defaulting to "css". If given, overwrites other encoding
 information like @charset declarations.
-.PP
-.B
-\-t TARGETENCODING
-.B
-.IP \-\-targetencoding=TARGETENCODING
+.TP
+.B \-t\fI TARGETENCODING\fR, \fB\-\-targetencoding\fR=\fITARGETENCODING
 Encoding of output, defaulting to "UTF-8".
-.PP
-.B
-\-u "URL"
-.B
-.IP \-\-url=URL
-URL to parse, path is ignored if URL given.
+.TP
+.B \-u\fI URL\fR, \fB\-\-url\fR=\fIURL
+.I URL
+to parse, path... is ignored if
+.I URL
+is given.
 .SH "SEE ALSO"
 .IP /usr/share/doc/python-cssutils-doc/docs/html/docs/index.html

Modified: packages/cssutils/trunk/debian/man/cssparse.manpage1
===================================================================
--- packages/cssutils/trunk/debian/man/cssparse.manpage1	2011-04-26 17:03:06 UTC (rev 16791)
+++ packages/cssutils/trunk/debian/man/cssparse.manpage1	2011-04-27 03:10:17 UTC (rev 16792)
@@ -1,55 +1,43 @@
 .TH cssparse 1 "April 7, 2011" "" "cssutils"
 .SH NAME
-CSSParse \- A CSS parser.
+.B
+CSSParse\fR \- A CSS parser.
 .SH SYNOPSIS
 .B
-cssparse\-script.py
-.RI [ options ]
+cssparse\-script
+.BI
+[\-d | \-m ]
+[\-e ENCODING]
+[\-s SOMESTRING]
+[\-u URL]
+.br
 .RI filename1.css
-.RI [filename2.css ...]
+[filename2.css ...]
 .br
 .RI [>filename_combined.css]
 .RI [2>parserinfo.log]
 .br
 .SH DESCRIPTION
 Script version of cssutils.parseString(), cssutils.parseFile() and
-cssutils.parseUrl().
+cssutils.parseUrl().  Logging is redirected to stderr.
 .SH OPTIONS
-.B
-\-d
-.B
-.IP \-\-debug
+.TP
+.B \-d\fR, \fB\-\-debug\fR
 Activate debugging output.
-.PP
-.B
-\-e "ENCODING"
-.B
-.IP \-\-encoding=ENCODING
+.TP
+.B \-e\fI ENCODING\fR, \fB\-\-encoding\fR=\fIENCODING
 Encoding of the file or override encoding found.
-.PP
-.B
-\-h
-.B
-.IP \-\-help
-.br
-Displays help message and exits.
-.PP
-.B
-\-m
-.B
-.IP \-\-minify
+.TP
+.B \-h\fR, \fB\-\-help\fR
+Display help message and exit.
+.TP
+.B \-m\fR, \fB\-\-minify\fR
 Minify parsed CSS.
-.PP
-.B
-\-s "SOMESTRING"
-.B
-.IP \-\-string=SOMESTRING
+.TP
+.B \-s\fI SOMESTRING\fR, \fB\-\-string\fR=\fISOMESTRING
 Parse given string.
-.PP
-.B
-\-u "URL"
-.B
-.IP \-\-url=URL
-Parse the given URL.
+.TP
+.B \-u\fI URL\fR, \fB\-\-url\fR=\fIURL
+Parse the given \fIURL\fR.
 .SH "SEE ALSO"
 .IP /usr/share/doc/python-cssutils-doc/docs/html/docs/index.html

Modified: packages/cssutils/trunk/debian/python-cssutils-doc.examples
===================================================================
--- packages/cssutils/trunk/debian/python-cssutils-doc.examples	2011-04-26 17:03:06 UTC (rev 16791)
+++ packages/cssutils/trunk/debian/python-cssutils-doc.examples	2011-04-27 03:10:17 UTC (rev 16792)
@@ -1 +1 @@
-examples
+examples/*

Modified: packages/cssutils/trunk/debian/watch
===================================================================
--- packages/cssutils/trunk/debian/watch	2011-04-26 17:03:06 UTC (rev 16791)
+++ packages/cssutils/trunk/debian/watch	2011-04-27 03:10:17 UTC (rev 16792)
@@ -7,5 +7,5 @@
 version=3
 opts=\
 uversionmangle=s/(a|b|rc)/~$1/ \
-http://code.google.com/p/cssutils/downloads/list
+http://code.google.com/p/cssutils/downloads/list \
 http://cssutils.googlecode.com/files/cssutils-([0-9.a-z]+).zip




More information about the Python-modules-commits mailing list