summaryrefslogtreecommitdiffstats
path: root/external/perl/Text-Template-1.56
diff options
context:
space:
mode:
Diffstat (limited to 'external/perl/Text-Template-1.56')
-rw-r--r--external/perl/Text-Template-1.56/Changes301
-rw-r--r--external/perl/Text-Template-1.56/INSTALL31
-rw-r--r--external/perl/Text-Template-1.56/LICENSE379
-rw-r--r--external/perl/Text-Template-1.56/MANIFEST34
-rw-r--r--external/perl/Text-Template-1.56/META.json83
-rw-r--r--external/perl/Text-Template-1.56/META.yml46
-rw-r--r--external/perl/Text-Template-1.56/Makefile.PL71
-rw-r--r--external/perl/Text-Template-1.56/README62
-rw-r--r--external/perl/Text-Template-1.56/SIGNATURE65
-rw-r--r--external/perl/Text-Template-1.56/lib/Text/Template.pm2363
-rw-r--r--external/perl/Text-Template-1.56/lib/Text/Template/Preprocess.pm157
-rw-r--r--external/perl/Text-Template-1.56/t/author-pod-syntax.t15
-rw-r--r--external/perl/Text-Template-1.56/t/author-signature.t21
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/basic.t179
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/broken.t66
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/delimiters.t83
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/error.t34
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/exported.t68
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/hash.t91
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/inline-comment.t17
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/nested-tags.t26
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/ofh.t33
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/out.t46
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/prepend.t78
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/preprocess.t43
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/rt29928.t26
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/safe.t135
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/safe2.t94
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/safe3.t80
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/strict.t46
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/taint.t112
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/template-encoding.t47
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/warnings.t46
33 files changed, 4978 insertions, 0 deletions
diff --git a/external/perl/Text-Template-1.56/Changes b/external/perl/Text-Template-1.56/Changes
new file mode 100644
index 0000000000..3c50179ad8
--- /dev/null
+++ b/external/perl/Text-Template-1.56/Changes
@@ -0,0 +1,301 @@
+Revision history for Text::Template
+
+1.56 2019-07-09
+ - Fix typos in Changes
+
+1.55 2019-02-25
+ - Improve AppVeyor tests for older Perls (Thanks Roy Ivy)
+ - Check for Test::More 0.94 and skip tests if not installed where
+ done_testing() is used (Thanks Roy Ivy).
+ - Improve workaround for broken Win32 File::Temp taint failure (Thanks Roy Ivy).
+ - Skip/todo tests which fail under Devel::Cover (Thanks Roy Ivy)
+ - Add checks and skip_all checks for non-core test modules (Thanks Roy Ivy)
+
+1.54 2019-01-13
+ - Fix tempfile creation during tests on Win32
+
+1.53 2018-05-02
+ - Add support for decoding template files via ENCODING constructor arg
+ [github #11]
+ - Docs cleanup: replace indirect-object style examples and use class method
+ style constructor calls in the POD docs
+ - Docs cleanup: remove hard tabs from POD, replace dated, unfair synopsis
+ [github #5], convert "THANKS" section to a POD list
+
+1.52 2018-03-19
+ - Fix possible 'Subroutine ... redefined' warning (Github #10)
+
+1.51 2018-03-04
+ - Add test for nested tags breakage that happened in v1.46
+ - Turn off strict+warnings in sections where template code is eval'ed
+ [github #9]
+
+1.50 2018-02-10
+ *** Revert support for identical start/end delimiters (e.g.: @@foo@@, XXfooXX)
+ due to breakage with nested tags (see
+ https://github.com/mschout/perl-text-template/issues/8). Will revisit
+ this in a future release.
+
+1.49 2018-02-07
+ - Fix failing tests in v1.48 under perl < 5.8.9
+
+1.48 2018-02-07
+ - remove COPYING and Artistic files from the dist. These are replaced by
+ the Dist::Zilla generated LICENSE file.
+ - use strict/warnings (thanks Mohammad S Anwar)
+ - remove $VERSION checks from tests. This makes it easier to run the test
+ with Dist::Zilla and avoids maintenance issue of updating the tests for
+ each release (Thanks Andrew Ruder).
+ - Allow precompiled templates to work with preprocessing [#29928] (Thanks
+ Nik LaBelle)
+ - Add "strict" option to fill_in(). This adds "use strict" and "use vars
+ (...)" to the prepend section, and only the keys of the HASH option are
+ allowed in the template. (Thanks Desmond Daignault, Kivanc Yazan, CJM)
+ [55696]
+ - Fix templates with inline comments without newline after comment for perl
+ < 5.18 [34292]
+ - Don't use bareword file handles
+ - use three arg form of open()
+ - Fix BROKEN behaviour so that it returns the text accumulated so far on
+ undef as documented [28974]
+ - Source code cleanups
+ - Minimum perl version is now 5.8.0
+ - Allow start/end delimiters to be identical (e.g.: @@foo@@, XXfooXX)
+ (Thanks mirod) [46639]
+ - Fix + document the FILENAME parameter to fill_in() (Thanks VDB) [106093]
+ - Test suite cleanups:
+ + turn on strict/warnings for all tests
+ + run tests through perltidy and formatting cleanup
+ + remove number prefixes from test names
+ + use Test::More instead of generating TAP by hand
+ + use three-arg form of open()
+ + don't use indirect object syntax
+ + don't use bareword file handles
+ + use File::Temp to generate temporary files
+
+1.47 2017-02-27
+ - Fix longstanding memory leak in _scrubpkg() [#22031]
+ - Fix various spelling errors [#86872]
+
+NOTE: Changes for versions prior to 1.47 have been imported from README
+
+1.46 2013-02-11
+ - Thanks to Rik Signes, there is a new
+ Text::Template->append_text_to_output method, which Text::Template always
+ uses whenever it wants to emit output. You can subclass this to get
+ control over the output, for example for postprocessing.
+ - A spurious warning is no longer emitted when the TYPE parameter to ->new
+ is omitted.
+
+1.45 2008-04-16
+
+1.44 2003-04-29
+ - This is a maintenance release. There are no feature changes.
+ - _scrubpkg, which was responsible for eptying out temporary packages after
+ the module had done with them, wasn't always working; the result was
+ memory leaks in long-running applications. This should be fixed now, and
+ there is a test in the test suite for it.
+ - Minor changes to the test suite to prevent spurious errors.
+ - Minor documentation changes.
+
+1.43 2002-03-25
+ - The ->new method now fails immediately and sets $Text::Template::ERROR if
+ the file that is named by a filename argument does not exist or cannot be
+ opened for some other reason. Formerly, the constructor would succeed
+ and the ->fill_in call would fail.
+
+1.42 2001-11-05
+ - This is a maintenance release. There are no feature changes.
+ - Fixed a bug relating to use of UNTAINT under perl 5.005_03 and possibly
+ other versions.
+ - Taint-related tests are now more comprehensive.
+
+1.41 2001-09-04
+ - This is a maintenance release. There are no feature changes.
+ - Tests now work correctly on Windows systems and possibly on other
+ non-unix systems.
+
+1.40 2001-08-30
+ *** INCOMPATIBLE CHANGE ***
+ - The format of the default error message has changed. It used to look
+ like:
+
+ Program fragment at line 30 delivered error ``Illegal division by zero''
+
+ It now looks like:
+
+ Program fragment delivered error ``Illegal division by zero at catalog.tmpl line 37''
+
+ Note that the default message used to report the line number at which the
+ program fragment began; it now reports the line number at which the error
+ actually occurred.
+
+ *** INCOMPATIBLE CHANGE ***
+ - The format of the default error message has changed. It used to look like:
+
+ Program fragment at line 30 delivered error ``Illegal division by zero''
+
+ It now looks like:
+
+ Program fragment delivered error ``Illegal division by zero at catalog.tmpl line 37''
+
+ - Note that the default message used to report the line number at which the
+ program fragment began; it now reports the line number at which the error
+ actually occurred.
+ - New UNTAINT option tells the module that it is safe to 'eval' code even
+ though it has come from a file or filehandle.
+ - Code added to prevent memory leaks when filling many templates. Thanks
+ to Itamar Almeida de Carvalho.
+ - Bug fix: $OUT was not correctly initialized when used in conjunction
+ with SAFE.
+ - You may now use a glob ref when passing a filehandle to the ->new
+ function. Formerly, a glob was required.
+ - New subclass: Text::Template::Preprocess. Just like Text::Template, but
+ you may supply a PREPROCESS option in the constructor or the fill_in
+ call; this is a function which receives each code fragment prior to
+ evaluation, and which may modify and return the fragment; the modified
+ fragment is what is evaluated.
+ - Error messages passed to BROKEN subroutines will now report the correct
+ line number of the template at which the error occurred:
+
+ Illegal division by zero at template line 37.
+
+ - If the template comes from a file, the filename will be reported as well:
+
+ Illegal division by zero at catalog.tmpl line 37.
+
+ - New UNTAINT option tells the module that it is safe to eval template code
+ even if it has come from a file or filehandle, disabling taint checking
+ in these cases.
+ - Code added to prevent memory leaks when filling many templates. Thanks to
+ Itamar Almeida de Carvalho.
+ - Bug fix: $OUT was not always correctly initialized when used in
+ conjunction with SAFE.
+ - You may now use a glob ref when passing a filehandle to the new function.
+ Formerly, a glob was required.
+ - Error messages passed to BROKEN subroutines will now report the correct
+ line number of the template at which the error occurred:
+
+ Illegal division by zero at template line 37.
+
+ If the template comes from a file, the filename will be reported as well:
+
+ Illegal division by zero at catalog.tmpl line 37.
+
+ - New subclass: Text::Template::Preprocess. Just like Text::Template, but
+ you may supply a PREPROCESS option in the fill_in call; this is a
+ function which receives each code fragment prior to evaluation, and which
+ may modify and return the fragment; the modified fragment is what is
+ evaluated.
+
+1.31 2001-02-05
+ - Maintenance and bug fix release
+ - fill_in_string was failing. Thanks to Donald L. Greer Jr. for the test case.
+
+1.23 1999-12-21
+ - Small bug fix: DELIMITER and other arguments were being ignored in calls
+ to fill_in_file and fill_this_in. (Thanks to Jonathan Roy for reporting
+ this.)
+
+1.22
+ - You can now specify that certain Perl statements be prepended to the
+ beginning of every program fragment in a template, either per template,
+ or for all templates, or for the duration of only one call to fill_in.
+ This is useful, for example, if you want to enable `strict' checks in
+ your templates but you don't want to manually add `use strict' to the
+ front of every program fragment everywhere.
+
+1.20 1999-03-08
+ - You can now specify that the program fragment delimiters are strings
+ other than { and }. This has three interesting effects: First, it
+ changes the delimiter strings. Second, it disables the special meaning
+ of \, so you have to be really, really sure that the delimiters will not
+ appear in your templates. And third, because of the simplifications
+ introduced by the elimination of \ processing, template parsing is 20-25%
+ faster. See the manual section on `Alternative Delimiters'.
+ - Fixed bug having to do with undefined values in HASH options. In
+ particular, Text::Template no longer generates a warning if you try to
+ give a variable an undefined value.
+
+1.12 1999-02-28
+ - I forgot to say that Text::Template ISA Exporter, so the exported
+ functions never got exported. Duhhh!
+ - Template TYPEs are now case-insensitive. The `new' method now diagnoses
+ attempts to use an invalid TYPE.
+ - More tests for these things.
+
+1.11 1999-02-25
+ - Fixed a bug in the way backslashes were processed. The 1.10 behavior was
+ incompatible with the beta versions and was also inconvenient. (`\n' in
+ templates was replaced with `n' before it was given to Perl for
+ evaluation.) The new behavior is also incompatible with the beta
+ versions, but it is only a little bit incompatible, and it is probably
+ better.
+ - Documentation for the new behavior, and tests for the bug.
+
+1.10 1999-02-13
+ - New OUTPUT option delivers template results directly to a filehandle
+ instead of making them into a string. Saves space and time.
+ - PACKAGE and HASH now work intelligently with SAFE.
+ - Fragments may now output data directly to the template, rather than
+ having to arrange to return it as a return value at the end. This means
+ that where you used to have to write this:
+
+ { my $blist = '';
+ foreach $i (@items) {
+ $blist .= qq{ * $i\n};
+ }
+ $blist;
+ }
+
+ You can now write this instead, because $OUT is special.
+
+ { foreach $i (@items) {
+ $OUT.= " * $i\n";
+ }
+ }
+
+ (`A spoonful of sugar makes the medicine go down.')
+ - Fixed some small bugs. Worked around a bug in Perl that does the wrong
+ thing with $x = <Y> when $x contains a glob.
+ - More documentation. Errors fixed.
+ - Lots more tests.
+
+1.03 1999-02-06
+ - Code added to support HASH option to fill_in. (Incl. `_gensym'
+ function.)
+ - Documentation for HASH.
+ - New test file for HASH.
+ - Note about failure of lexical variables to propagate into templates. Why
+ does this surprise people?
+ - Bug fix: program fragments are evaluated in an environment with `no
+ strict' by default. Otherwise, you get a lot of `Global symbol "$v"
+ requires explicit package name' failures. Why didn't the test program
+ pick this up? Because the only variable the test program ever used was
+ `$a', which is exempt. Duhhhhh.
+ - Fixed the test program.
+ - Various minor documentation fixes.
+
+1.00 1999-02-05
+ This is a complete rewrite. The new version delivers better functionality
+ but is only 2/3 as long, which I think is a good sign. It is supposed to be
+ 100% backward-compatible with the previous versions. With one cosmetic
+ change, it passes the test suite that the previous versions passed. If you
+ have compatibility problems, please mail me immediately.
+
+ - At least twice as fast
+ - Better support for filling out the same template more than once
+ - Now supports evaluation of program fragments in Safe compartments.
+ (Thanks, Jonathan!)
+ - Better argument syntax
+ - More convenience functions
+ - The parser is much better and simpler
+ - Once a template is parsed, the parsed version is stored so that
+ it needn't be parsed again.
+ - BROKEN function behavior is rationalized. You can now pass an
+ arbitrary argument to your BROKEN function, or return a value
+ from it to the main program.
+ - Documentation overhauled.
+
+Previous Versions
+ - Maintained by Mark Jason Dominus (MJD)
diff --git a/external/perl/Text-Template-1.56/INSTALL b/external/perl/Text-Template-1.56/INSTALL
new file mode 100644
index 0000000000..7c5e4c6bde
--- /dev/null
+++ b/external/perl/Text-Template-1.56/INSTALL
@@ -0,0 +1,31 @@
+
+To install:
+
+ perl Makefile.PL
+
+to construct the Makefile, then
+
+ make test
+
+to test the package. If it fails any tests, please send me the output
+of `make test' and `perl -V'. I'll tell you whether it is safe to go
+ahead, or I'll provide a fix.
+
+If it passes the tests, use
+
+ make install
+
+to install it.
+
+Detailed documentation is at the bottom of the lib/Text/Template.pm
+file. You may be able to view it with the following command:
+
+ perldoc Text::Template
+
+Or:
+
+ perldoc lib/Text/Template.pm
+
+If you have problems, send me mail:
+
+mjd-perl-template+@plover.com
diff --git a/external/perl/Text-Template-1.56/LICENSE b/external/perl/Text-Template-1.56/LICENSE
new file mode 100644
index 0000000000..718b860a23
--- /dev/null
+++ b/external/perl/Text-Template-1.56/LICENSE
@@ -0,0 +1,379 @@
+This software is copyright (c) 2013 by Mark Jason Dominus <mjd@cpan.org>.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+Terms of the Perl programming language system itself
+
+a) the GNU General Public License as published by the Free
+ Software Foundation; either version 1, or (at your option) any
+ later version, or
+b) the "Artistic License"
+
+--- The GNU General Public License, Version 1, February 1989 ---
+
+This software is Copyright (c) 2013 by Mark Jason Dominus <mjd@cpan.org>.
+
+This is free software, licensed under:
+
+ The GNU General Public License, Version 1, February 1989
+
+ GNU GENERAL PUBLIC LICENSE
+ Version 1, February 1989
+
+ Copyright (C) 1989 Free Software Foundation, Inc.
+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The license agreements of most software companies try to keep users
+at the mercy of those companies. By contrast, our General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. The
+General Public License applies to the Free Software Foundation's
+software and to any other program whose authors commit to using it.
+You can use it for your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Specifically, the General Public License is designed to make
+sure that you have the freedom to give away or sell copies of free
+software, that you receive source code or can get it if you want it,
+that you can change the software or use pieces of it in new free
+programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of a such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must tell them their rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License Agreement applies to any program or other work which
+contains a notice placed by the copyright holder saying it may be
+distributed under the terms of this General Public License. The
+"Program", below, refers to any such program or work, and a "work based
+on the Program" means either the Program or any work containing the
+Program or a portion of it, either verbatim or with modifications. Each
+licensee is addressed as "you".
+
+ 1. You may copy and distribute verbatim copies of the Program's source
+code as you receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice and
+disclaimer of warranty; keep intact all the notices that refer to this
+General Public License and to the absence of any warranty; and give any
+other recipients of the Program a copy of this General Public License
+along with the Program. You may charge a fee for the physical act of
+transferring a copy.
+
+ 2. You may modify your copy or copies of the Program or any portion of
+it, and copy and distribute such modifications under the terms of Paragraph
+1 above, provided that you also do the following:
+
+ a) cause the modified files to carry prominent notices stating that
+ you changed the files and the date of any change; and
+
+ b) cause the whole of any work that you distribute or publish, that
+ in whole or in part contains the Program or any part thereof, either
+ with or without modifications, to be licensed at no charge to all
+ third parties under the terms of this General Public License (except
+ that you may choose to grant warranty protection to some or all
+ third parties, at your option).
+
+ c) If the modified program normally reads commands interactively when
+ run, you must cause it, when started running for such interactive use
+ in the simplest and most usual way, to print or display an
+ announcement including an appropriate copyright notice and a notice
+ that there is no warranty (or else, saying that you provide a
+ warranty) and that users may redistribute the program under these
+ conditions, and telling the user how to view a copy of this General
+ Public License.
+
+ d) You may charge a fee for the physical act of transferring a
+ copy, and you may at your option offer warranty protection in
+ exchange for a fee.
+
+Mere aggregation of another independent work with the Program (or its
+derivative) on a volume of a storage or distribution medium does not bring
+the other work under the scope of these terms.
+
+ 3. You may copy and distribute the Program (or a portion or derivative of
+it, under Paragraph 2) in object code or executable form under the terms of
+Paragraphs 1 and 2 above provided that you also do one of the following:
+
+ a) accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of
+ Paragraphs 1 and 2 above; or,
+
+ b) accompany it with a written offer, valid for at least three
+ years, to give any third party free (except for a nominal charge
+ for the cost of distribution) a complete machine-readable copy of the
+ corresponding source code, to be distributed under the terms of
+ Paragraphs 1 and 2 above; or,
+
+ c) accompany it with the information you received as to where the
+ corresponding source code may be obtained. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form alone.)
+
+Source code for a work means the preferred form of the work for making
+modifications to it. For an executable file, complete source code means
+all the source code for all modules it contains; but, as a special
+exception, it need not include source code for modules which are standard
+libraries that accompany the operating system on which the executable
+file runs, or for standard header files or definitions files that
+accompany that operating system.
+
+ 4. You may not copy, modify, sublicense, distribute or transfer the
+Program except as expressly provided under this General Public License.
+Any attempt otherwise to copy, modify, sublicense, distribute or transfer
+the Program is void, and will automatically terminate your rights to use
+the Program under this License. However, parties who have received
+copies, or rights to use copies, from you under this General Public
+License will not have their licenses terminated so long as such parties
+remain in full compliance.
+
+ 5. By copying, distributing or modifying the Program (or any work based
+on the Program) you indicate your acceptance of this license to do so,
+and all its terms and conditions.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the original
+licensor to copy, distribute or modify the Program subject to these
+terms and conditions. You may not impose any further restrictions on the
+recipients' exercise of the rights granted herein.
+
+ 7. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of the license which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+the license, you may choose any version ever published by the Free Software
+Foundation.
+
+ 8. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ Appendix: How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to humanity, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these
+terms.
+
+ To do so, attach the following notices to the program. It is safest to
+attach them to the start of each source file to most effectively convey
+the exclusion of warranty; and each file should have at least the
+"copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) 19yy <name of author>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) 19xx name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the
+appropriate parts of the General Public License. Of course, the
+commands you use may be called something other than `show w' and `show
+c'; they could even be mouse-clicks or menu items--whatever suits your
+program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
+ program `Gnomovision' (a program to direct compilers to make passes
+ at assemblers) written by James Hacker.
+
+ <signature of Ty Coon>, 1 April 1989
+ Ty Coon, President of Vice
+
+That's all there is to it!
+
+
+--- The Artistic License 1.0 ---
+
+This software is Copyright (c) 2013 by Mark Jason Dominus <mjd@cpan.org>.
+
+This is free software, licensed under:
+
+ The Artistic License 1.0
+
+The Artistic License
<