|
From: Mike808 <mi...@ne...> - 2000-07-23 03:45:16
|
Here's what I'm going to start using as a postamble. It was taken from my lastest XLST.pm and I'm using it on the other files I'm working on. I've split out the XML::DOM tag compression policy function into its own package. This only happens at load time, so shouldn't be that big an issue. Anybody doing XSLT on-the-fly with CGI deserves what they get. It's in the XSLT folder and it's called "Tag_Compression.pm" I've also added a CREDITS.pod file for project credits. Please update your own info. I'd like everyone to use their sourceforge email addresses in the code. Keeps spam out and it won't move around as you do. Feel free to cut 'n paste into other files at will. I'd leave all of the =head1 sections in. Just alter SEE ALSO, NOTES, ACKNOWLEDGEMENTS, and AUTHORZ<>(S) as needed. The Z<> is needed due to prevent pod2whatever from thinking it is a function and turning it into a link to nowhere. Mike. - - - - Start PREAMBLE - - - - ############################################################################## # # XML::XSLT # # This file is part of the XML::XSLT package. # # Copyright (C) 2000 # Geert Josten (gj...@sc...) # Egon Willighagen (eg...@us...) # # This module is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. # See the file 'LICENSE' for details. # #(@) $Id: XSLT.pm,v 1.8.6.4 2000/07/13 21:09:11 hexmode Exp $ # ############################################################################## - - - - END PREAMBLE - - - - - - - - Start POSTAMBLE - - - - ############################################################################## =head1 SEE ALSO XML::DOM The XSLT specification: http://www.w3.org/TR/xslt =head1 NOTES New releases will be announced on the perl-xml mailing list and to the XML::XSLT mailing list. You can subscribe to the perl-xml list by sending a message to: sub...@ly... You can subscribe to the XML::XSLT mailing list by sending a message to: xml...@li... =head2 Bug Reports Please post bug reports to http://sourceforge.net/bugs/?group_id=6054 =head1 ACKNOWLEDGEMENTS =head1 AUTHORZ<>(S) Geert Josten (gj...@sc...) Egon Willighagen (eg...@us...) Bron Gondwana (br...@us...) Mark A. Hershberger (he...@us...) Michael King (mi...@us...) =head1 COPYRIGHT Copyright (c) 2000 Geert Josten (gj...@sc...) and Egon Willighagen (eg...@us...). All Rights Reserved. =head1 LICENSE When included as part of the XML::XSLT package, or as part of its complete documentation whether printed or otherwise, this work may be distributed only under the terms of Perl's Artistic License. Any distribution of this file or derivatives thereof outside of or separate from this package require that special arrangements be made with copyright holder. See the file 'LICENSE' in this distribution for details of copy and distribution terms. It is a copy of the file 'Artistic' in the distribution of Perl 5.002 or later. =head1 AVAILABILITY The latest version of this module is likely to be available from the XML::XSLT project web site: http://sourceforge.net/projects/xmlxslt/ The best place to discuss this code is via the project web site. =head1 REVISION Revision: $Revision: 1.8.6.6 $ On: $Date: 2000/07/13 21:09:11 $ =cut Filename: $RCSfile: XSLT.pm,v $ Revision: $Revision: 1.8.6.5 $ Label: $Name: $ Last Chg: $Author: hexmode $ On: $Date: 2000/07/13 21:09:11 $ RCS ID: $Id: XSLT.pm,v 1.8.6.5 2000/07/13 21:09:11 hexmode Exp $ Path: $Source: /cvsroot/xmlxslt/XML-XSLT/XSLT.pm,v $ Revision Log: $Log: XSLConstant.pm,v $ - - - - END POSTAMBLE - - - - |