[DRE-commits] r5715 - trunk/libhaml-ruby/debian

Gunnar Wolf gwolf at alioth.debian.org
Thu Jul 29 21:15:06 UTC 2010


Author: gwolf
Date: 2010-07-29 21:15:04 +0000 (Thu, 29 Jul 2010)
New Revision: 5715

Modified:
   trunk/libhaml-ruby/debian/changelog
   trunk/libhaml-ruby/debian/css2sass.1
   trunk/libhaml-ruby/debian/haml.1
   trunk/libhaml-ruby/debian/html2haml.1
   trunk/libhaml-ruby/debian/sass-convert.1
   trunk/libhaml-ruby/debian/sass.1
Log:
Updated man pages

Modified: trunk/libhaml-ruby/debian/changelog
===================================================================
--- trunk/libhaml-ruby/debian/changelog	2010-07-29 20:31:18 UTC (rev 5714)
+++ trunk/libhaml-ruby/debian/changelog	2010-07-29 21:15:04 UTC (rev 5715)
@@ -5,8 +5,9 @@
   * Added "Recommends: libfssm-ruby1.8" to libhaml-ruby1.8 binary
     package (Closes: #586613)
   * Standards-version: 3.8.4→3.9.1 (no changes needed)
+  * Updated man pages to match current options (Closes: #589119)
 
- -- Gunnar Wolf <gwolf at debian.org>  Thu, 29 Jul 2010 16:31:03 -0400
+ -- Gunnar Wolf <gwolf at debian.org>  Thu, 29 Jul 2010 17:14:47 -0400
 
 libhaml-ruby (3.0.12-1) UNRELEASED; urgency=low
 

Modified: trunk/libhaml-ruby/debian/css2sass.1
===================================================================
--- trunk/libhaml-ruby/debian/css2sass.1	2010-07-29 20:31:18 UTC (rev 5714)
+++ trunk/libhaml-ruby/debian/css2sass.1	2010-07-29 21:15:04 UTC (rev 5715)
@@ -6,26 +6,53 @@
 [options] [INPUT] [OUTPUT]
 .SH DESCRIPTION
 Transforms a CSS file into corresponding Sass code
+.SH DEPRECATION WARNING
+The css2sass tool is deprecated and will be removed in Sass 3.2. Use
+the sass-convert tool instead.
 .SH OPTIONS
 .TP 8
-.B \-a, --alternate
-Output using alternative Sass syntax (margin: 1px)
+.B \-F, \-\-from FORMAT
+The format to convert from. Can be css, scss, sass, less or sass2. 
+sass2 is the same as sass, but updates more old syntax to new.
+By default, this is inferred from the input filename. If there is
+none, defaults to css.
 .TP 8
-.B \-s, --stdin
+.B \-T, \-\-to FORMAT
+The format to convert to. Can be scss or sass. By default, this is
+inferred from the output filename. If there is none, defaults to sass.
+.TP 8
+.B \-R, \-\-recursive
+Convert all the files in a directory. Requires --from and --to.
+.TP 8
+.B \-i, \-\-in-place
+Convert a file to its own syntax. This can be used to update some
+deprecated syntax. 
+.TP 8
+.B \-\-dasherize
+Convert underscores to dashes
+.TP 8
+.B \-\-old
+Output the old-style ":prop val" property syntax. Only meaningful when
+generating Sass. 
+.TP 8
+.B \-C, \-\-no-cache
+Don't cache to sassc files.
+.TP 8
+.B \-s, \-\-stdin
 Read input from standard input instead of an input file
 .TP 8
-.B \--trace
+.B \-\-trace
 Show a full traceback on error
 .TP 8
-.B \-?, -h, --help
+.B \-?, \-h, \-\-help
 Show this message
 .TP 8
-.B \-v, --version
+.B \-v, \-\-version
 Print version
 .SH SEE ALSO
-This program is shipped as part of the libhaml-ruby1.8 library
-package, you can check its corresponding documentation can be found in
-the libhaml-ruby-doc package.
+This program is shipped as part of the libhaml-ruby library package,
+you can check its corresponding documentation can be found in the
+libhaml-ruby-doc package.
 .SH AUTHOR
 This manual page was written by Gunnar Wolf <gwolf at debian.org>, based
 on the command-line output of this program, for the Debian GNU/Linux

Modified: trunk/libhaml-ruby/debian/haml.1
===================================================================
--- trunk/libhaml-ruby/debian/haml.1	2010-07-29 20:31:18 UTC (rev 5714)
+++ trunk/libhaml-ruby/debian/haml.1	2010-07-29 21:15:04 UTC (rev 5715)
@@ -30,6 +30,9 @@
 .B \-e, \-\-escape\-html                
 Escape HTML characters (like ampersands and angle brackets) by default.
 .TP 8
+.B \-q, \-\-double\-quote\-attributes
+Set attribute wrapper to double-quotes (default is single).
+.TP 8
 .B \-r, \-\-require FILE               
 Same as 'ruby \-r'.
 .TP 8

Modified: trunk/libhaml-ruby/debian/html2haml.1
===================================================================
--- trunk/libhaml-ruby/debian/html2haml.1	2010-07-29 20:31:18 UTC (rev 5714)
+++ trunk/libhaml-ruby/debian/html2haml.1	2010-07-29 21:15:04 UTC (rev 5715)
@@ -8,25 +8,30 @@
 Transforms an HTML file into corresponding Haml code.
 .SH OPTIONS
 .TP 8
-.B \-r, --rhtml
+.B \-e, \-\-erb
+Parse ERb tags.
+.TP 8
+.B \-\-no\-erb
+Don't parse ERb tags.
+.B \-r, \-\-rhtml
 Parse RHTML tags.
 .TP 8
-.B \--no-rhtml
+.B \-\-no\-rhtml
 Don't parse RHTML tags.
 .TP 8
-.B \-x, --xhtml
+.B \-x, \-\-xhtml
 Parse the input using the more strict XHTML parser.
 .TP 8
-.B \-s, --stdin
+.B \-s, \-\-stdin
 Read input from standard input instead of an input file
 .TP 8
-.B \--trace
+.B \-\-trace
 Show a full traceback on error
 .TP 8
-.B \-?, -h, --help
+.B \-?, \-h, \-\-help
 Show this message
 .TP 8
-.B \-v, --version
+.B \-v, \-\-version
 Print version
 .PP
 Please note this program's function is to make a \fIfirst approach\fR

Modified: trunk/libhaml-ruby/debian/sass-convert.1
===================================================================
--- trunk/libhaml-ruby/debian/sass-convert.1	2010-07-29 20:31:18 UTC (rev 5714)
+++ trunk/libhaml-ruby/debian/sass-convert.1	2010-07-29 21:15:04 UTC (rev 5715)
@@ -1,11 +1,11 @@
-.TH sass\-convert 1 "May 16, 2010"
+.TH sass\-convert 1 "July 28, 2010"
 .SH NAME
-sass\-convert \- Transforms a CSS file into corresponding Sass code.
+sass\-convert \- Converts between CSS, Sass and SCSS files.
 .SH SYNOPSIS
 .B sass\-convert
 [options] [INPUT] [OUTPUT]
 .SH DESCRIPTION
-Transforms a CSS file into corresponding Sass code
+Converts between CSS, Sass, and SCSS files.
 it used to be known as css2sass.It now uses a full\-fledged CSS3 parser.
 so it should be able to handle any valid CSS3, as well as most hacks and proprietary syntax.
 sass\-convert can now convert between Sass and SCSS. This is normally inferred from the filename,
@@ -13,29 +13,46 @@
 it is also possible to convert a file in\-place.
 .SH OPTIONS
 .TP 8
-.B \-\-from
-Convert from filename.
+.B \-F, \-\-from FORMAT
+The format to convert from. Can be css, scss, sass, less, or
+sass2. sass2 is the same as sass, but updates more old syntax to new. 
+By default, this is inferred from the input filename. If there is
+none, defaults to css. 
 .TP 8
-.B \-\-to
-Convert to filename.
+.B \-T, \-\-to FORMAT
+The format to convert to. Can be scss or sass. By default, this is
+inferred from the output filename.If there is none, defaults to sass. 
 .TP 8
-.B \-\-in\-place
-Convert in place. it will override the file.
+.B \-R, \-\-recursive
+Convert all the files in a directory. Requires \-\-from and \-\-to.
 .TP 8
-.B \-\-recursive
-convert an entire directory of files.
+.B \-i, \-\-in-place
+Convert a file to its own syntax. This can be used to update some
+deprecated syntax. 
 .TP 8
 .B \-\-dasherize
-Converts all underscores to hyphens.
-.SH EXAMPLES
+Convert underscores to dashes
 .TP 8
-.B sass\-convert \-\-from sass \-\-to scss
+.B \-\-old
+Output the old-style ":prop val" property syntax. Only meaningful when
+generating Sass. 
 .TP 8
-.B sass\-convert \-\-in\-place \-\-from sass2 style.sass
+.B \-C, \-\-no-cache
+Don't cache to sassc files.
 .TP 8
-.B sass\-convert \-\-recursive \-\-from sass2 \-\-to scss stylesheets/
+.B \-s, \-\-stdin
+Read input from standard input instead of an input file
+.TP 8
+.B \-\-trace
+Show a full traceback on error
+.TP 8
+.B \-?, \-h, \-\-help
+Show this message
+.TP 8
+.B \-v, \-\-version
+Print version
 .SH SEE ALSO 
-This program is shipped as part of the libhaml\-ruby1.8 library
+This program is shipped as part of the libhaml\-ruby library
 package, you can check its corresponding documentation can be found in
 the libhaml\-ruby\-doc package.
 .SH AUTHOR

Modified: trunk/libhaml-ruby/debian/sass.1
===================================================================
--- trunk/libhaml-ruby/debian/sass.1	2010-07-29 20:31:18 UTC (rev 5714)
+++ trunk/libhaml-ruby/debian/sass.1	2010-07-29 21:15:04 UTC (rev 5715)
@@ -9,28 +9,68 @@
 result to the specified file.
 .SH OPTIONS
 .TP 8
-.B \--rails RAILS_DIR
+.B \-\-rails RAILS_DIR
 Install Haml and Sass to a Rails project
 .TP 8
-.B \-c, --check
+.B \-c, \-\-check
 Just check syntax, don't evaluate.
 .TP 8
-.B \-s, --stdin                      
+.B \-s, \-\-stdin                      
 Read input from standard input instead of an input file
 .TP 8
-.B \--trace                      
+.B \-\-trace                      
 Show a full traceback on error
 .TP 8
-.B \-t, --style NAME                 
+.B \-\-scss
+Use the CSS-superset SCSS syntax
+.TP 8
+.B \-\-watch
+Watch files or directories for changes. The location of the generated
+CSS can be set using a colon:
+.RS
+.PP
+\fBsass\fP \-\-watch input.sass:output.css
+.PP
+\fBsass\fP \-\-watch input-dir:output-dir
+.RE
+.TP 8
+.B \-\-update
+Compile files or directories to CSS. Locations are set like \-\-watch.
+.B \-t, \-\-style NAME                 
 Output style. Can be nested (default), compact, compressed, or expanded.
 .TP 8
-.B \-?, -h, --help                   
+.B \-q, \-\-quiet
+Silence warnings during compilation
+.TP 8
+.B \-g, \-\-debug-info
+Emit extra information in the generated CSS that can be used by the
+FireSass Firebug plugin
+.TP 8
+.B \-l, \-\-line-numbers
+Emit comments in the generated CSS indicating the corresponding sass
+line.
+.TP 8
+.B \-\-line-comments
+.TP 8
+.B \-i, \-\-interactive
+Run an interactive SassScript shell.
+.TP 8
+.B \-I, \-\-load-path PATH
+Ad a sass import path
+.TP 8
+.B \-\-cache-location PATH
+The path to put cached Sass files. Defaults to .sass-cache
+.TP 8
+.B \-C, \-\-no-cache
+Don't cache to sassc files.
+.TP 8
+.B \-?, \-h, \-\-help                   
 Show a usage summary
 .TP 8
-.B \-v, --version                    
+.B \-v, \-\-version                    
 Print version
 .SH SEE ALSO
-This program is shipped as part of the libhaml-ruby1.8 library
+This program is shipped as part of the libhaml-ruby library
 package, you can check its corresponding documentation can be found in
 the libhaml-ruby-doc package.
 .SH AUTHOR




More information about the Pkg-ruby-extras-commits mailing list