r74329 - in /branches/upstream/libcss-minifier-perl: ./ current/ current/lib/ current/lib/CSS/ current/t/ current/t/sheets/

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Fri May 13 16:51:04 UTC 2011


Author: periapt-guest
Date: Fri May 13 16:49:35 2011
New Revision: 74329

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=74329
Log:
[svn-inject] Installing original source of libcss-minifier-perl (0.01)

Added:
    branches/upstream/libcss-minifier-perl/
    branches/upstream/libcss-minifier-perl/current/
    branches/upstream/libcss-minifier-perl/current/Changes
    branches/upstream/libcss-minifier-perl/current/MANIFEST
    branches/upstream/libcss-minifier-perl/current/META.yml
    branches/upstream/libcss-minifier-perl/current/Makefile.PL
    branches/upstream/libcss-minifier-perl/current/README
    branches/upstream/libcss-minifier-perl/current/lib/
    branches/upstream/libcss-minifier-perl/current/lib/CSS/
    branches/upstream/libcss-minifier-perl/current/lib/CSS/Minifier.pm
    branches/upstream/libcss-minifier-perl/current/t/
    branches/upstream/libcss-minifier-perl/current/t/CSS-Minifier.t
    branches/upstream/libcss-minifier-perl/current/t/sheets/
    branches/upstream/libcss-minifier-perl/current/t/sheets/s2-expected.css
    branches/upstream/libcss-minifier-perl/current/t/sheets/s2.css
    branches/upstream/libcss-minifier-perl/current/t/sheets/s3-expected.css
    branches/upstream/libcss-minifier-perl/current/t/sheets/s3.css

Added: branches/upstream/libcss-minifier-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-minifier-perl/current/Changes?rev=74329&op=file
==============================================================================
--- branches/upstream/libcss-minifier-perl/current/Changes (added)
+++ branches/upstream/libcss-minifier-perl/current/Changes Fri May 13 16:49:35 2011
@@ -1,0 +1,6 @@
+Revision history for Perl extension CSS::Minifier.
+
+0.01  Fri May 25 20:52:59 2007
+	- original version; created by h2xs 1.23 with options
+		-X -n CSS::Minifier
+

Added: branches/upstream/libcss-minifier-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-minifier-perl/current/MANIFEST?rev=74329&op=file
==============================================================================
--- branches/upstream/libcss-minifier-perl/current/MANIFEST (added)
+++ branches/upstream/libcss-minifier-perl/current/MANIFEST Fri May 13 16:49:35 2011
@@ -1,0 +1,11 @@
+Changes
+Makefile.PL
+MANIFEST
+README
+lib/CSS/Minifier.pm
+t/CSS-Minifier.t
+t/sheets/s2.css
+t/sheets/s2-expected.css
+t/sheets/s3.css
+t/sheets/s3-expected.css
+META.yml                                 Module meta-data (added by MakeMaker)

Added: branches/upstream/libcss-minifier-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-minifier-perl/current/META.yml?rev=74329&op=file
==============================================================================
--- branches/upstream/libcss-minifier-perl/current/META.yml (added)
+++ branches/upstream/libcss-minifier-perl/current/META.yml Fri May 13 16:49:35 2011
@@ -1,0 +1,10 @@
+# http://module-build.sourceforge.net/META-spec.html
+#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
+name:         CSS-Minifier
+version:      0.01
+version_from: lib/CSS/Minifier.pm
+installdirs:  site
+requires:
+
+distribution_type: module
+generated_by: ExtUtils::MakeMaker version 6.30_01

Added: branches/upstream/libcss-minifier-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-minifier-perl/current/Makefile.PL?rev=74329&op=file
==============================================================================
--- branches/upstream/libcss-minifier-perl/current/Makefile.PL (added)
+++ branches/upstream/libcss-minifier-perl/current/Makefile.PL Fri May 13 16:49:35 2011
@@ -1,0 +1,12 @@
+use 5.008006;
+use ExtUtils::MakeMaker;
+# See lib/ExtUtils/MakeMaker.pm for details of how to influence
+# the contents of the Makefile that is written.
+WriteMakefile(
+    NAME              => 'CSS::Minifier',
+    VERSION_FROM      => 'lib/CSS/Minifier.pm', # finds $VERSION
+    PREREQ_PM         => {}, # e.g., Module::Name => 1.1
+    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
+      (ABSTRACT_FROM  => 'lib/CSS/Minifier.pm', # retrieve abstract from module
+       AUTHOR         => 'Peter Michaux <petermichaux at gmail.com>') : ()),
+);

Added: branches/upstream/libcss-minifier-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-minifier-perl/current/README?rev=74329&op=file
==============================================================================
--- branches/upstream/libcss-minifier-perl/current/README (added)
+++ branches/upstream/libcss-minifier-perl/current/README Fri May 13 16:49:35 2011
@@ -1,0 +1,25 @@
+CSS-Minifier version 0.8
+=========================
+
+Use this module to remove unnecessary whitespace from CSS. See documentation in lib/CSS/Minifier.pm for more information.
+
+INSTALLATION
+
+To install this module type the following:
+
+   perl Makefile.PL
+   make
+   make test
+   make install
+
+COPYRIGHT AND LICENCE
+
+Put the correct copyright and licence information here.
+
+Copyright (C) 2007 by Peter Michaux
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself, either Perl version 5.8.6 or,
+at your option, any later version of Perl 5 you may have available.
+
+

Added: branches/upstream/libcss-minifier-perl/current/lib/CSS/Minifier.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-minifier-perl/current/lib/CSS/Minifier.pm?rev=74329&op=file
==============================================================================
--- branches/upstream/libcss-minifier-perl/current/lib/CSS/Minifier.pm (added)
+++ branches/upstream/libcss-minifier-perl/current/lib/CSS/Minifier.pm Fri May 13 16:49:35 2011
@@ -1,0 +1,333 @@
+package CSS::Minifier;
+
+use strict;
+use warnings;
+
+require Exporter;
+our @ISA = qw(Exporter);
+our @EXPORT_OK = qw(minify);
+
+our $VERSION = '0.01';
+
+# -----------------------------------------------------------------------------
+
+sub isSpace {
+  my $x = shift;
+  return ($x eq ' ' || $x eq "\t");
+}
+
+sub isEndspace {
+  my $x = shift;
+  return ($x eq "\n" || $x eq "\r" || $x eq "\f");
+}
+
+sub isWhitespace {
+  my $x = shift;
+  return (isSpace($x) || isEndspace($x));
+}
+
+# whitespace characters before or after these characters can be removed.
+sub isInfix {
+  my $x = shift;
+  return ($x eq '{' || $x eq '}' || $x eq ';' || $x eq ':');  
+}
+
+# whitespace characters after these characters can be removed.
+sub isPrefix {
+  my $x = shift;
+  return (isInfix($x));
+}
+
+# whitespace characters before these characters can removed.
+sub isPostfix {
+  my $x = shift;
+  return (isInfix($x));
+}
+
+# -----------------------------------------------------------------------------
+
+sub _get {
+  my $s = shift;
+  if ($s->{inputType} eq 'file') {
+    return getc($s->{input});
+  }
+  elsif ($s->{inputType} eq 'string') {
+    if ($s->{'inputPos'} < length($s->{input})) {
+      return substr($s->{input}, $s->{inputPos}++, 1);
+    }
+    else { # Simulate getc() when off the end of the input string.
+      return undef;
+    }
+  }
+  else {
+   die "no input";
+  }
+}
+
+sub _put {
+  my $s = shift;
+  my $x = shift;
+  my $outfile = ($s->{outfile});
+  if (defined($s->{outfile})) {
+    print $outfile $x;
+  }
+  else {
+    $s->{output} .= $x;
+  }
+}
+
+# -----------------------------------------------------------------------------
+# print a
+# new b
+#
+# i.e. print a and advance
+sub action1 {
+  my $s = shift;
+  $s->{last} = $s->{a};
+  _put($s, $s->{a});
+  action2($s);
+}
+
+# move b to a
+# new b
+#
+# i.e. delete a and advance
+sub action2 {
+  my $s = shift;
+  $s->{a} = $s->{b};
+  $s->{b} = $s->{c};
+  $s->{c} = _get($s);
+}
+
+# -----------------------------------------------------------------------------
+
+# put string literals
+# when this sub is called, $s->{a} is on the opening delimiter character
+sub putLiteral {
+  my $s = shift;
+  my $delimiter = $s->{a}; # ' or "
+
+  action1($s);
+  do {
+    while (defined($s->{a}) && $s->{a} eq '\\') { # escape character escapes only the next one character
+      action1($s);       
+      action1($s);       
+    }
+    action1($s);
+  } until ($s->{last} eq $delimiter || !defined($s->{a}));
+  if ($s->{last} ne $delimiter) { # ran off end of file before printing the closing delimiter
+    die 'unterminated ' . ($delimiter eq '\'' ? 'single quoted string' : 'double quoted string') . ' literal, stopped';
+  }
+}
+
+# -----------------------------------------------------------------------------
+
+# If $s->{a} is a whitespace then collapse all following whitespace.
+# If any of the whitespace is a new line then ensure $s->{a} is a new line
+# when this function ends.
+sub collapseWhitespace {
+  my $s = shift;
+  while (defined($s->{a}) && isWhitespace($s->{a}) &&
+         defined($s->{b}) && isWhitespace($s->{b})) {
+    if (isEndspace($s->{a}) || isEndspace($s->{b})) {
+      $s->{a} = "\n";
+    }
+    action2($s); # delete b
+  }
+}
+
+# Advance $s->{a} to non-whitespace or end of file.
+# Doesn't print any of this whitespace.
+sub skipWhitespace {
+  my $s = shift;
+  while (defined($s->{a}) && isWhitespace($s->{a})) {
+    action2($s);
+  }
+}
+
+# #s->{a} should be on whitespace when this function is called
+sub preserveWhitespace {
+  my $s = shift;
+  collapseWhitespace($s);
+  if (defined($s->{a}) && defined($s->{b}) && !isPostfix($s->{b})) {
+    action1($s); # print the whitespace character
+  }
+  skipWhitespace($s);
+}
+
+# -----------------------------------------------------------------------------
+
+sub minify {
+  my %h = @_;
+  # Immediately turn hash into a hash reference so that notation is the same in this function
+  # as others. Easier refactoring.
+  my $s = \%h; # hash reference for "state". This module is functional programming and the state is passed between functions.
+  
+  # determine if the the input is a string or a file handle.
+  my $ref = \$s->{input};
+  if (defined($ref) && ref($ref) eq 'SCALAR'){
+    $s->{inputPos} = 0;
+    $s->{inputType} = 'string';
+  }
+  else {
+    $s->{inputType} = 'file';
+  }
+  
+  # Determine if the output is to a string or a file.
+  if (!defined($s->{outfile})) {
+    $s->{output} = '';
+  }
+  
+  # Print the copyright notice first
+  if ($s->{copyright}) {
+    _put($s, '/* ' . $s->{copyright} . ' */');
+  }
+  
+  # Initialize the buffer.
+  do {
+    $s->{a} = _get($s);
+  } while (defined($s->{a}) && isWhitespace($s->{a}));
+  $s->{b} = _get($s);
+  $s->{c} = _get($s);
+  $s->{last} = undef;
+
+  # local variables
+  my $macIeCommentHackFlag = 0; # marks if a have recently seen a comment with an escaped  close like this /* foo \*/
+                                # and have not yet seen a regular comment to close this like /* bar */
+
+  while (defined($s->{a})) { # on this line $s->{a} should always be a non-whitespace character or undef (i.e. end of file)
+  
+    if (isWhitespace($s->{a})) { # check that this program is running correctly
+      die 'minifier bug: minify while loop starting with whitespace, stopped';
+    }
+    
+    # Each branch handles trailing whitespace and ensures $s->{a} is on non-whitespace or undef when branch finishes
+    if ($s->{a} eq '/' && defined($s->{b}) && $s->{b} eq '*') { # a comment
+      do {
+        action2($s); # advance buffer by one
+        # if a is \, b is *, c is /, hack flag false
+           # Mac/IE hack start
+           # set hack flag true
+           # print /*\*/
+        if ($s->{a} eq '\\' &&
+            defined($s->{b}) && $s->{b} eq '*' && 
+            defined($s->{c}) && $s->{c} eq '/' && 
+            !$macIeCommentHackFlag) {
+            $macIeCommentHackFlag = 1;
+            _put($s, '/*\\*/');
+            $s->{last} = '/';
+        }
+        # if a is not \, b is *, c is /, hack flag true
+           # Mac/IE hack end
+           # set hack flag false
+           # print /**/
+        if ($s->{a} ne '\\' &&
+            defined($s->{b}) && $s->{b} eq '*' && 
+            defined($s->{c}) && $s->{c} eq '/' && 
+            $macIeCommentHackFlag) {
+            $macIeCommentHackFlag = 0;
+            _put($s, '/**/');
+            $s->{last} = '/';
+        }
+           
+      } until (!defined($s->{b}) || ($s->{a} eq '*' && $s->{b} eq '/'));
+      if (defined($s->{b})) { # $s->{a} is asterisk and $s->{b} is forward slash
+        action2($s); # the *
+        $s->{a} = ' ';  # the /
+        skipWhitespace($s);
+      }
+      else {
+        die 'unterminated comment, stopped';
+      }
+    }
+    elsif ($s->{a} eq '\'' || $s->{a} eq '"') {
+      putLiteral($s);
+      if (defined($s->{a}) && isWhitespace($s->{a})) {
+        preserveWhitespace($s); # can this be skipWhitespace?
+      }
+    }
+    elsif (isPrefix($s->{a})) {
+      action1($s);
+      skipWhitespace($s);
+    }
+    else { # anything else just prints
+      action1($s);
+      if (defined($s->{a}) && isWhitespace($s->{a})) {
+          preserveWhitespace($s);
+      }
+    }
+  }
+  
+  if (!defined($s->{outfile})) {
+    return $s->{output};
+  }
+  
+}
+
+# -----------------------------------------------------------------------------
+
+1;
+__END__
+
+# Below is stub documentation for your module. You'd better edit it!
+
+=head1 NAME
+
+CSS::Minifier - Perl extension for minifying CSS
+
+=head1 SYNOPSIS
+
+To minify a CSS file and have the output written directly to another file
+
+  use CSS::Minifier qw(minify);
+  open(INFILE, 'myStylesheet.css') or die;
+  open(OUTFILE, 'myStylesheet.css') or die;
+  minify(input => *INFILE, outfile => *OUTFILE);
+  close(INFILE);
+  close(OUTFILE);
+
+To minify a CSS string literal. Note that by omitting the outfile parameter a the minified code is returned as a string.
+
+  my minifiedCSS = minify(input => 'div {font-family: serif;}');
+  
+To include a copyright comment at the top of the minified code.
+
+  minify(input => 'div {font-family: serif;}', copyright => 'BSD License');
+
+The "input" parameter is manditory. The "output" and "copyright" parameters are optional and can be used in any combination.
+
+=head1 DESCRIPTION
+
+This module removes unnecessary whitespace from CSS. The primary requirement developing this module is to not break working stylesheets: if working CSS is in input then working CSS is output. The Mac/Internet Explorer comment hack will be minimized but not stripped and so will continue to function.
+
+This module understands space, horizontal tab, new line, carriage return, and form feed characters to be whitespace. Any other characters that may be considered whitespace are not minimized. These other characters include paragraph separator and vertical tab.
+
+For static CSS files, it is recommended that you minify during the build stage of web deployment. If you minify on-the-fly then it might be a good idea to cache the minified file. Minifying static files on-the-fly repeatedly is wasteful.
+
+=head2 EXPORT
+
+None by default.
+
+Exportable on demand: minifiy()
+
+
+=head1 SEE ALSO
+
+This project is developed using an SVN repository. To check out the repository
+svn co http://dev.michaux.ca/svn/random/CSS-Minifier
+
+You may also be interested in the JavaScript::Minifier module also available on CPAN.
+
+
+=head1 AUTHORS
+
+Peter Michaux, E<lt>petermichaux at gmail.comE<gt>
+
+
+=head1 COPYRIGHT AND LICENSE
+
+Copyright (C) 2007 by Peter Michaux
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself, either Perl version 5.8.6 or,
+at your option, any later version of Perl 5 you may have available.

Added: branches/upstream/libcss-minifier-perl/current/t/CSS-Minifier.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-minifier-perl/current/t/CSS-Minifier.t?rev=74329&op=file
==============================================================================
--- branches/upstream/libcss-minifier-perl/current/t/CSS-Minifier.t (added)
+++ branches/upstream/libcss-minifier-perl/current/t/CSS-Minifier.t Fri May 13 16:49:35 2011
@@ -1,0 +1,59 @@
+# Before `make install' is performed this script should be runnable with
+# `make test'. After `make install' it should work as `perl CSS-Minifier.t'
+
+#########################
+
+# change 'tests => 1' to 'tests => last_test_to_print';
+
+use Test::More tests => 4;
+BEGIN { use_ok('CSS::Minifier', qw(minify)) };
+
+#########################
+
+# Insert your test code below, the Test::More module is use()ed here so read
+# its man page ( perldoc Test::More ) for help writing this test script.
+
+sub filesMatch {
+  my $file1 = shift;
+  my $file2 = shift;
+  my $a;
+  my $b;
+
+  while (1) {
+    $a = getc($file1);
+    $b = getc($file2);
+
+    if (!defined($a) && !defined($b)) { # both files end at same place
+      return 1;
+    }
+    elsif (!defined($b) || # file2 ends first
+           !defined($a) || # file1 ends first
+           $a ne $b) {     # a and b not the same
+      return 0;
+    }
+  }
+}
+
+sub minTest {
+  my $filename = shift;
+  
+  open(INFILE, 't/sheets/' . $filename . '.css') or die("couldn't open file");
+  open(GOTFILE, '>t/sheets/' . $filename . '-got.css') or die("couldn't open file");
+    minify(input => *INFILE, outfile => *GOTFILE);
+  close(INFILE);
+  close(GOTFILE);
+
+  open(EXPECTEDFILE, 't/sheets/' . $filename . '-expected.css') or die("couldn't open file");
+  open(GOTFILE, 't/sheets/' . $filename . '-got.css') or die("couldn't open file");
+    ok(filesMatch(GOTFILE, EXPECTEDFILE));
+  close(EXPECTEDFILE);
+  close(GOTFILE);
+}
+
+BEGIN {
+  
+  minTest('s2', 'testing s2');    # general
+  minTest('s3', 'testing s3');    # self clearing floats with Mac/IE5 comment hack
+
+  is(minify(input => "foo {\na: b;\n}"), 'foo{a:b;}', 'string literal input and ouput');
+}

Added: branches/upstream/libcss-minifier-perl/current/t/sheets/s2-expected.css
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-minifier-perl/current/t/sheets/s2-expected.css?rev=74329&op=file
==============================================================================
--- branches/upstream/libcss-minifier-perl/current/t/sheets/s2-expected.css (added)
+++ branches/upstream/libcss-minifier-perl/current/t/sheets/s2-expected.css Fri May 13 16:49:35 2011
@@ -1,0 +1,2 @@
+ at import url(sheet2.html );foo{asdf:asdf;ew:12;}bar{content:"a\n  b\
+    asdf";}

Added: branches/upstream/libcss-minifier-perl/current/t/sheets/s2.css
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-minifier-perl/current/t/sheets/s2.css?rev=74329&op=file
==============================================================================
--- branches/upstream/libcss-minifier-perl/current/t/sheets/s2.css (added)
+++ branches/upstream/libcss-minifier-perl/current/t/sheets/s2.css Fri May 13 16:49:35 2011
@@ -1,0 +1,11 @@
+ @import  url(sheet2.html ); 
+foo {
+  asdf:asdf;
+  ew:12;
+}
+bar
+{
+  content: "a\n  b\
+    asdf";
+  
+}

Added: branches/upstream/libcss-minifier-perl/current/t/sheets/s3-expected.css
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-minifier-perl/current/t/sheets/s3-expected.css?rev=74329&op=file
==============================================================================
--- branches/upstream/libcss-minifier-perl/current/t/sheets/s3-expected.css (added)
+++ branches/upstream/libcss-minifier-perl/current/t/sheets/s3-expected.css Fri May 13 16:49:35 2011
@@ -1,0 +1,1 @@
+.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}.clearfix{display:inline-block;}/*\*/* html .clearfix{height:1%;}.clearfix{display:block;}/**/

Added: branches/upstream/libcss-minifier-perl/current/t/sheets/s3.css
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcss-minifier-perl/current/t/sheets/s3.css?rev=74329&op=file
==============================================================================
--- branches/upstream/libcss-minifier-perl/current/t/sheets/s3.css (added)
+++ branches/upstream/libcss-minifier-perl/current/t/sheets/s3.css Fri May 13 16:49:35 2011
@@ -1,0 +1,17 @@
+/* from http://www.positioniseverything.net/easyclearing.html */    
+/* from http://www.positioniseverything.net/easyclearing.html */    
+.clearfix:after {
+    content: "."; 
+    display: block; 
+    height: 0; 
+    clear: both; 
+    visibility: hidden;
+}
+
+.clearfix {display: inline-block;}
+
+/* Hides from IE-mac \*/
+/* Hides from IE-mac \*/
+* html .clearfix {height: 1%;}
+.clearfix {display: block;}
+/* End hide from IE-mac */




More information about the Pkg-perl-cvs-commits mailing list