X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FSQL%2FTranslator%2FProducer%2FXML.pm;h=ce60e656ee274fca95d5f12952612a99cce27f7f;hb=821a0fde221f5accf93e3f65efa77b5a6733cb5e;hp=3cc8bdb7389717b4e952b25d85a67db74fec5c40;hpb=b1e30bf6f3ffab77093df8318909d8e1ff9eb2fa;p=dbsrgits%2FSQL-Translator.git diff --git a/lib/SQL/Translator/Producer/XML.pm b/lib/SQL/Translator/Producer/XML.pm index 3cc8bdb..ce60e65 100644 --- a/lib/SQL/Translator/Producer/XML.pm +++ b/lib/SQL/Translator/Producer/XML.pm @@ -1,9 +1,9 @@ package SQL::Translator::Producer::XML; # ------------------------------------------------------------------- -# $Id: XML.pm,v 1.14 2003-08-21 01:06:52 kycl4rk Exp $ +# $Id$ # ------------------------------------------------------------------- -# Copyright (C) 2003 Ken Y. Clark . +# Copyright (C) 2002-4 SQLFairy Authors # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -26,21 +26,27 @@ package SQL::Translator::Producer::XML; SQL::Translator::Producer::XML - Alias to XML::SQLFairy producer -=head1 SYNOPSIS +=head1 DESCRIPTION Previous versions of SQL::Translator included an XML producer, but the namespace has since been further subdivided. Therefore, this module is now just just an alias to the XML::SQLFairy producer. +=head1 SEE ALSO + +SQL::Translator::Producer::XML::SQLFairy. + =head1 AUTHOR Ken Y. Clark Ekclark@cpan.orgE. =cut +# ------------------------------------------------------------------- + use strict; use vars qw[ $VERSION $DEBUG ]; -$VERSION = sprintf "%d.%02d", q$Revision: 1.14 $ =~ /(\d+)\.(\d+)/; +$VERSION = sprintf "%d.%02d", q$Revision$ =~ /(\d+)\.(\d+)/; $DEBUG = 1 unless defined $DEBUG; use SQL::Translator::Producer::XML::SQLFairy;