[Rt-commit] r5347 - in CSS-Squish: lib/CSS
trs at bestpractical.com
trs at bestpractical.com
Wed Jun 7 23:48:21 EDT 2006
Author: trs
Date: Wed Jun 7 23:48:21 2006
New Revision: 5347
Modified:
CSS-Squish/ (props changed)
CSS-Squish/CHANGES
CSS-Squish/README
CSS-Squish/lib/CSS/Squish.pm
Log:
r12771 at zot: tom | 2006-06-07 23:41:47 -0400
Doc fix and bug note addition
Modified: CSS-Squish/CHANGES
==============================================================================
--- CSS-Squish/CHANGES (original)
+++ CSS-Squish/CHANGES Wed Jun 7 23:48:21 2006
@@ -1,3 +1,7 @@
Revision history for Perl extension CSS::Squish.
+0.02 Wed Jun 7 2006
+
+ * Fixed POD and added another bug note
+
0.01 Wed Jun 7 2006
Modified: CSS-Squish/README
==============================================================================
--- CSS-Squish/README (original)
+++ CSS-Squish/README Wed Jun 7 23:48:21 2006
@@ -28,15 +28,21 @@
Takes a filehandle to print to and a list of files to concatenate.
"concatenate" uses this method with an "open"ed scalar.
-BUGS
+BUGS AND SHORTCOMINGS
At the current time, comments are not skipped. This means comments
happening before @import statements at the top of a file will cause the
@import rules to not be parsed. Make sure the @import rules are the very
first thing in the file (and only one per line).
+ Only direct @import loops (i.e. where a file imports itself) are checked
+ and skipped. It's easy enough to get this module in a loop. Don't do it.
+
+ As of now, server-relative URLs (instead of file-relative URLs) will not
+ work correctly.
+
All other bugs should be reported via
<http://rt.cpan.org/Public/Dist/Display.html?Name=CSS-Squish> or
- bugs-CSS-Squish at rt.cpan.org.
+ bug-CSS-Squish at rt.cpan.org.
AUTHOR
Thomas Sibley <trs at bestpractical.com>
Modified: CSS-Squish/lib/CSS/Squish.pm
==============================================================================
--- CSS-Squish/lib/CSS/Squish.pm (original)
+++ CSS-Squish/lib/CSS/Squish.pm Wed Jun 7 23:48:21 2006
@@ -3,7 +3,7 @@
package CSS::Squish;
-$CSS::Squish::VERSION = '0.01';
+$CSS::Squish::VERSION = '0.02';
use File::Spec;
@@ -145,7 +145,7 @@
}
}
-=head1 BUGS
+=head1 BUGS AND SHORTCOMINGS
At the current time, comments are not skipped. This means comments happening
before @import statements at the top of a file will cause the @import rules
@@ -155,9 +155,12 @@
Only direct @import loops (i.e. where a file imports itself) are checked
and skipped. It's easy enough to get this module in a loop. Don't do it.
+As of now, server-relative URLs (instead of file-relative URLs) will not work
+correctly.
+
All other bugs should be reported via
L<http://rt.cpan.org/Public/Dist/Display.html?Name=CSS-Squish>
-or L<bugs-CSS-Squish at rt.cpan.org>.
+or L<bug-CSS-Squish at rt.cpan.org>.
=head1 AUTHOR
More information about the Rt-commit
mailing list