r638 - in packages/libdbix-xml-rdb-perl/trunk: . debian
Luk Claes
luk-guest@costa.debian.org
Tue, 18 Jan 2005 17:37:33 +0100
Author: luk-guest
Date: 2005-01-18 17:37:32 +0100 (Tue, 18 Jan 2005)
New Revision: 638
Modified:
packages/libdbix-xml-rdb-perl/trunk/XML_RDB.pm
packages/libdbix-xml-rdb-perl/trunk/debian/changelog
packages/libdbix-xml-rdb-perl/trunk/debian/control
Log:
Changed maintainer to Debian Perl Group
Modified: packages/libdbix-xml-rdb-perl/trunk/XML_RDB.pm
===================================================================
--- packages/libdbix-xml-rdb-perl/trunk/XML_RDB.pm 2005-01-18 16:15:51 UTC (rev 637)
+++ packages/libdbix-xml-rdb-perl/trunk/XML_RDB.pm 2005-01-18 16:37:32 UTC (rev 638)
@@ -118,15 +118,15 @@
=head1 NAME
-DBIx::XML_RDB - Perl extension for creating XML from existing DBI datasources
+DBIx::XML_RDB /- Perl extension for creating XML from existing DBI datasources
=head1 SYNOPSIS
use DBIx::XML_RDB;
- my $xmlout = DBIx::XML_RDB->new($datasource,
+ my $xmlout = DBIx::XML_RDB/->new($datasource,
"ODBC", $userid, $password, $dbname) || die "Failed to make new xmlout";
- $xmlout->DoSql("select * from MyTable");
- print $xmlout->GetData;
+ $xmlout/->DoSql("select * from MyTable");
+ print $xmlout/->GetData;
=head1 DESCRIPTION
@@ -147,7 +147,7 @@
Binary data is encoded using UTF-8. This is automatically decoded when parsing
with XML::Parser.
-Included with the distribution is a "Scriptlet" - this is basically a Win32 OLE
+Included with the distribution is a "Scriptlet" /- this is basically a Win32 OLE
wrapper around this class, allowing you to call this module from any application
that supports OLE. To install it, first install the scriptlets download from
microsoft at http://msdn.microsoft.com/scripting. Then right-click on XMLDB.sct
@@ -168,7 +168,7 @@
DoSql ( $sql )
Takes a simple Sql command string (either a select statement or on some DBMS's can be
-a stored procedure call that returns a result set - Sybase and MSSql support this,
+a stored procedure call that returns a result set /- Sybase and MSSql support this,
I don't know about others).
This doesn't do any checking if the sql is valid, if it fails, the procedure will "die",
Modified: packages/libdbix-xml-rdb-perl/trunk/debian/changelog
===================================================================
--- packages/libdbix-xml-rdb-perl/trunk/debian/changelog 2005-01-18 16:15:51 UTC (rev 637)
+++ packages/libdbix-xml-rdb-perl/trunk/debian/changelog 2005-01-18 16:37:32 UTC (rev 638)
@@ -1,3 +1,11 @@
+libdbix-xml-rdb-perl (0.05-8) unstable; urgency=low
+
+ * Changed maintainer to Debian Perl Group
+ * debian/control: added Uploaders
+ * XML_RDB.pm: UTF minus signs
+
+ -- Luk Claes <luk@debian.org> Tue, 18 Jan 2005 17:24:54 +0100
+
libdbix-xml-rdb-perl (0.05-7) unstable; urgency=low
* New maintainer (closes: #210219)
Modified: packages/libdbix-xml-rdb-perl/trunk/debian/control
===================================================================
--- packages/libdbix-xml-rdb-perl/trunk/debian/control 2005-01-18 16:15:51 UTC (rev 637)
+++ packages/libdbix-xml-rdb-perl/trunk/debian/control 2005-01-18 16:37:32 UTC (rev 638)
@@ -1,7 +1,8 @@
Source: libdbix-xml-rdb-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, libdbi-perl (>= 1.00)
@@ -11,7 +12,7 @@
Architecture: all
Depends: ${perl:Depends}, libdbi-perl (>= 1.00)
Suggests: libxml-parser-perl
-Description: Perl module for creating XML from a DBI datasource
+Description: perl module for creating XML from a DBI datasource
This module is a simple creator of XML data from DBI datasources. It
allows you to easily extract data from a database, and manipulate
later using XML::Parser.