r628 - in packages/libcgi-xmlform-perl/trunk: . debian

Luk Claes luk-guest@costa.debian.org
Tue, 18 Jan 2005 16:33:08 +0100


Author: luk-guest
Date: 2005-01-18 16:33:07 +0100 (Tue, 18 Jan 2005)
New Revision: 628

Modified:
   packages/libcgi-xmlform-perl/trunk/XMLForm.pm
   packages/libcgi-xmlform-perl/trunk/debian/changelog
   packages/libcgi-xmlform-perl/trunk/debian/control
Log:
Changed maintainer to Debian Perl Group


Modified: packages/libcgi-xmlform-perl/trunk/XMLForm.pm
===================================================================
--- packages/libcgi-xmlform-perl/trunk/XMLForm.pm	2005-01-18 15:23:17 UTC (rev 627)
+++ packages/libcgi-xmlform-perl/trunk/XMLForm.pm	2005-01-18 15:33:07 UTC (rev 628)
@@ -331,7 +331,7 @@
 
 =head1 NAME
 
-CGI::XMLForm - Extension of CGI.pm which reads/generates formated XML.
+CGI::XMLForm \- Extension of CGI.pm which reads/generates formated XML.
 
 NB: This is a subclass of CGI.pm, so can be used in it's place.
 
@@ -341,21 +341,21 @@
 
   my $cgi = new CGI::XMLForm;
 
-  if ($cgi->param) {
-  	print $cgi->header, $cgi->pre($cgi->escapeHTML($cgi->toXML));
+  if ($cgi\->param) {
+  	print $cgi\->header, $cgi\->pre($cgi\->escapeHTML($cgi\->toXML));
   }
   else {
   	open(FILE, "test.xml") or die "Can't open: $!";
 	my @queries = ('/a', '/a/b*', '/a/b/c*', /a/d');
-    print $cgi->header,
-	      $cgi->pre($cgi->escapeHTML(
-		  join "\n", $cgi->readXML(*FILE, @queries)));
+    print $cgi\->header,
+	      $cgi\->pre($cgi\->escapeHTML(
+		  join "\n", $cgi\->readXML(*FILE, @queries)));
   }
 
 =head1 DESCRIPTION
 
 This module can either create form field values from XML based on XQL/XSL style
-queries (full XQL is _not_ supported - this module is designed for speed), or it
+queries (full XQL is _not_ supported \- this module is designed for speed), or it
 can create XML from form values. There are 2 key functions: toXML and readXML.
 
 =head2 toXML
@@ -538,7 +538,7 @@
   /a/d
   Food
 
-(NB: This is slightly incorrect - for /a and /a/b it will return "Foo\n    " and
+(NB: This is slightly incorrect \- for /a and /a/b it will return "Foo\n    " and
 "Bar\n      " respectively).
 
 The queries support relative paths like toXML (including parent paths), and
@@ -559,7 +559,7 @@
 other.
 =item * You can use this module in place of CGI.pm, since it's a subclass.
 =item * There are bound to be lots of bugs! Although it's in production use
-right now - just watch CPAN for regular updates.
+right now \- just watch CPAN for regular updates.
 =back
 
 =head1 AUTHOR

Modified: packages/libcgi-xmlform-perl/trunk/debian/changelog
===================================================================
--- packages/libcgi-xmlform-perl/trunk/debian/changelog	2005-01-18 15:23:17 UTC (rev 627)
+++ packages/libcgi-xmlform-perl/trunk/debian/changelog	2005-01-18 15:33:07 UTC (rev 628)
@@ -1,3 +1,11 @@
+libcgi-xmlform-perl (0.10-10) unstable; urgency=low
+
+  * Changed maintainer to Debian Perl Group
+  * debian/control: added Uploaders
+  * XMLForm.pm: UTF minus signs
+
+ -- Luk Claes <luk@debian.org>  Tue, 18 Jan 2005 16:31:51 +0100
+
 libcgi-xmlform-perl (0.10-9) unstable; urgency=low
 
   * New maintainer (closes: #210208)

Modified: packages/libcgi-xmlform-perl/trunk/debian/control
===================================================================
--- packages/libcgi-xmlform-perl/trunk/debian/control	2005-01-18 15:23:17 UTC (rev 627)
+++ packages/libcgi-xmlform-perl/trunk/debian/control	2005-01-18 15:33:07 UTC (rev 628)
@@ -1,7 +1,8 @@
 Source: libcgi-xmlform-perl
 Section: perl
 Priority: optional
-Maintainer: Luk Claes <luk.claes@ugent.be>
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Luk Claes <luk@debian.org>
 Standards-Version: 3.6.1
 Build-Depends-Indep: debhelper (>= 4.1), perl, perl-modules | libcgi-perl | libcgi-pm-perl, libxml-parser-perl (>= 2.20)