[pkg-lighttpd] r300 - lighttpd/trunk/debian

madcoder at alioth.debian.org madcoder at alioth.debian.org
Sun Mar 16 09:34:53 UTC 2008


Author: madcoder
Date: 2008-03-16 09:34:53 +0000 (Sun, 16 Mar 2008)
New Revision: 300

Modified:
   lighttpd/trunk/debian/changelog
   lighttpd/trunk/debian/lighty-enable-mod
Log:
closes 462199

Modified: lighttpd/trunk/debian/changelog
===================================================================
--- lighttpd/trunk/debian/changelog	2008-03-16 09:31:45 UTC (rev 299)
+++ lighttpd/trunk/debian/changelog	2008-03-16 09:34:53 UTC (rev 300)
@@ -10,6 +10,7 @@
      + Reindent and remove trailing spaces.
      + don't fail to remove a module that is already removed.
        Patch from Michal Čihař (Closes: 448682).
+     + Allow full stops in module names (Closes: 462199).
 
  -- Pierre Habouzit <madcoder at debian.org>  Sun, 16 Mar 2008 10:11:45 +0100
 

Modified: lighttpd/trunk/debian/lighty-enable-mod
===================================================================
--- lighttpd/trunk/debian/lighty-enable-mod	2008-03-16 09:31:45 UTC (rev 299)
+++ lighttpd/trunk/debian/lighty-enable-mod	2008-03-16 09:34:53 UTC (rev 300)
@@ -39,7 +39,7 @@
 my @files = bsd_glob($confdir.'conf-available/*.conf');
 print "Available modules: ";
 foreach my $file (@files) {
-	if (basename($file) =~ /^\d+\-([\w\-]+)\.conf$/) {
+	if (basename($file) =~ /^\d+\-([\w\-\.]+)\.conf$/) {
 		$available{$1} = $file;
 		print qq{$1 };
 	}
@@ -50,7 +50,7 @@
 @files = bsd_glob($confdir.'conf-enabled/*.conf');
 print "Already enabled modules: ";
 foreach my $file (@files) {
-	if (basename($file) =~ /^\d+\-([\w\-]+)\.conf$/) {
+	if (basename($file) =~ /^\d+\-([\w\-\.]+)\.conf$/) {
 		$enabled{$1} = $file;
 		print qq{$1 };
 	}




More information about the pkg-lighttpd-maintainers mailing list