Commit graph

8503 commits

Author SHA1 Message Date
adam
e537cdfda3 Removed testsuite from SUBST, because it does not exist anymore 2016-12-15 10:46:08 +00:00
adam
36b9861296 Version 2.8
-----------
(codename Replacement, released on July 26th 2015)

- Added `target` parameter to urlize function.
- Added support for `followsymlinks` to the file system loader.
- The truncate filter now counts the length.
- Added equalto filter that helps with select filters.
- Changed cache keys to use absolute file names if available
  instead of load names.
- Fixed loop length calculation for some iterators.
- Changed how Jinja2 enforces strings to be native strings in
  Python 2 to work when people break their default encoding.
- Added :func:`make_logging_undefined` which returns an undefined
  object that logs failures into a logger.
- If unmarshalling of cached data fails the template will be
  reloaded now.
- Implemented a block ``set`` tag.
- Default cache size was incrased to 400 from a low 50.
- Fixed ``is number`` test to accept long integers in all Python versions.
- Changed ``is number`` to accept Decimal as a number.
- Added a check for default arguments followed by non-default arguments. This
  change makes ``{% macro m(x, y=1, z) %}...{% endmacro %}`` a syntax error. The
  previous behavior for this code was broken anyway (resulting in the default
  value being applied to `y`).
- Add ability to use custom subclasses of ``jinja2.compiler.CodeGenerator`` and
  ``jinja2.runtime.Context`` by adding two new attributes to the environment
  (`code_generator_class` and `context_class`) (pull request ``404``).
- added support for context/environment/evalctx decorator functions on
  the finalize callback of the environment.
- escape query strings for urlencode properly.  Previously slashes were not
  escaped in that place.
- Add 'base' parameter to 'int' filter.
2016-12-15 10:44:33 +00:00
adam
a77b4f4128 Release 0.13.1 (2016-12-09)
===========================

* docutils/languages/fa.py
  docutils/parsers/rst/languages/fa.py
  docutils/languages/la.py
  docutils/parsers/rst/languages/la.py:

  - Apply [ 133 ] Persian mappings by Shahin Azad.
  - Apply [ 135 ] Language modules for Latvian by Alexander Smishlajev

* docutils/nodes.py

  - Fix [ 253 ] Attribute key without value not allowed in XML.

* docutils/parsers/

  - Apply [ 103 ] Recognize inline markups without word boundaries.
  - Enable escaping in embedded URIs and aliases (fixes [ 284 ]).

* docutils/parsers/rst/__init__.py

  - Fix [ 233 ] Change the base URL for the :rfc: role.

* docutils/parsers/rst/directives/tables.py

  - Apply [ 120 ] tables accept option widths: list of relative widths, 'auto'
    or 'grid'.

  - Implement feature request [ 48 ]
    Add :align: option to the table directives.
    Thanks to Takeshi KOMIYA for the patch.

* docutils/parsers/rst/roles.py

  - Fix [ 295 ] Class argument for custom role inheriting from math.

* docutils/parsers/rst/tableparser.py

  - Really fix [ 159 ] Spurious table column alignment errors.

* docutils/transforms/frontmatter.py

  - Add name of generic bibliographic fields as a "classes" attribute value
    (after conversion to a valid identifier form).

* docutils/utils/error_reporting.py

  - Fix [ 130 ] support streams expectiong byte-strings in ErrorOutput.

* docutils/utils/math/math2html.py

  - Add ``\colon`` macro, fix spacing around colons. Fixes [ 246 ].
  - New upstream version (additional macros, piecewise integrals and sums).

* docutils/writers/_html_base.py

  - New auxiliary module for definitions common to all HTML writers.

* docutils/writers/html5_polyglot/

  - New HTML writer generating clean, polyglot_ markup conforming to
    `HTML 5`_.

    The CSS stylesheets ``minimal.css`` and ``plain.css`` contain required
    and recommended layout rules.

* docutils/writers/html4css1/__init__.py

  - Add "docutils" to class values for "container" object to address [ 267 ].
  - Apply patch [ 119 ] by Anatoly Techtonik: use absolute paths for
    ``default_stylesheet_path`` and ``default_template_path``.
  - Fix [ 266 ] creating labels/class values in description list items.
  - Do not use <sup> and <sub> tags inside <pre> (parsed-literal blocks).
  - Fix footnotes with content that does not start with a paragraph.
  - Use https in default MathJax URL (report Alan G Isaac).
  - Outsourcing of common code to _html_base.py.

* docutils/writers/latex2e/__init__.py

  - Fix [ 262 ] Use ``\linewidth`` instead of ``\textwidth`` for figures,
    admonitions and docinfo.

  - Use absolute path for ``default_template_path``.

  - Removed deprecated options ``--use-latex-footnotes`` and
    ``--figure-footnotes``.

  - Cleaner LaTeX code for enumerations and literal blocks.

  - Use "hyperref" package together with "bookmark" (improved hyperlinking
    by the same author).

  - Fix [ 286 ] Empty column title cause invalid latex file.

  - Fix [ 224 ] Fix rowspan support for tables.

  - Let LaTeX determine the column widths in tables with "colwidths-auto".
    Not suited for with multi-paragraph cells!

* docutils/writers/odf_odt/__init__.py

  - remove decode.encode of filename stored in zip.

* docutils/writers/xetex/__init__.py

  - LuaLaTex compatibility: do not load "xunicode".

* tools/

  - New front-end ``rst2html5.py``.

* tox.ini

  - Test py26, py27, py33 and py34.

    To use, install the ``tox`` package via pip or easy_install and use
    tox from the project root directory.

.. _polyglot: http://www.w3.org/TR/html-polyglot/
.. _HTML 5: http://www.w3.org/TR/html5/
.. _XHTML 1.0: http://www.w3.org/TR/xhtml1/
2016-12-15 10:42:30 +00:00
adam
39fcac5d7e Changes 0.7.9:
Bug fixes.
2016-12-15 09:44:27 +00:00
adam
6b451bfb05 Version 2.1.3
- Fixed regression in Bash lexer
2016-12-15 09:42:49 +00:00
adam
c792894e30 Updates in ICU 58.2
Common Changes
* CLDR 30.0.3
* Time zone database version 2016j
* ICU SVN repository structure change. See the note on the Source Code Access page for more information.

ICU4C Fixes
* 12815 uspoof_getSkeleton sets backwards-incompatible illegal argument exception
* 12822 digitlist.cpp won't compile on msvc under Node.js
* 12825 uspoof_check goes into an "infinite loop" when U+30FB is in an input string
* 12832 GreekUpper::toUpper skips the final character on a non-terminated UTF-8 string
* 12849 u_strToTitle returns incorrect length if destination is NULL
* 12868 uprv_convertToPosix() Windows bug
2016-12-12 17:46:39 +00:00
wiz
cf6685e92c Updated iso-codes to 3.72.
iso-codes 3.72
--------------
Dr. Tobias Quathamer <toddy@debian.org>
Thu, 8 Dec 2016

  [ ISO 3166-2 ]
  * Update from iso.org for Great Britain. Thanks to Vitali Yakavenka
    for the bug report. Closes: alioth#315563

  [ ISO 3166-2 translations ]
  * German by Dr. Tobias Quathamer
2016-12-12 15:02:21 +00:00
wiz
1a704d5617 Updated hunspell-de to 20161207.
Changes not found.
2016-12-12 14:56:34 +00:00
wiz
59d9a6f182 Updated libunistring to 0.9.7.
New in 0.9.7:
* The license has changed from LGPLv3+ to "LGPLv3+ or GPLv2"
2016-12-12 14:18:17 +00:00
wiz
60f3a7c4a2 Updated py-lxml to 3.7.0.
3.7.0 (2016-12-10)
==================

Features added
--------------

* GH#217: ``XMLSyntaxError`` now behaves more like its ``SyntaxError``
  baseclass.  Patch by Philipp A.

* GH#216: ``HTMLParser()`` now supports the same ``collect_ids`` parameter
  as ``XMLParser()``.  Patch by Burak Arslan.

* GH#210: Allow specifying a serialisation method in ``xmlfile.write()``.
  Patch by Burak Arslan.

* GH#203: New option ``default_doctype`` in ``HTMLParser`` that allows
  disabling the automatic doctype creation.  Patch by Shadab Zafar.

* GH#201: Calling the method ``.set('attrname')`` without value argument
  (or ``None``) on HTML elements creates an attribute without value that
  serialises like ``<div attrname></div>``.  Patch by Daniel Holth.

* GH#197: Ignore form input fields in ``form_values()`` when they are
  marked as ``disabled`` in HTML.  Patch by Kristian Klemon.

Bugs fixed
----------

* GH#206: File name and line number were missing from XSLT error messages.
  Patch by Marcus Brinkmann.

Other changes
-------------

* Log entries no longer allow anything but plain string objects as message text
  and file name.

* ``zlib`` is included in the list of statically built libraries.
2016-12-12 14:11:33 +00:00
wiz
42946afbff Updated p5-Net-IDN-Encode to 2.303.
2.303 (2016-12-10)
	- FIXES: warnings when compiling lib/Net/IDN/Punycode.xs
	  (reported/patch provided by paul@c***-***.org)

2.302 (2016-12-07)
	- Fixes memory bug introduced by fix for #118924

2.301 (2016-12-03)
	- FIXES: #118924: encode_punycode heap overflow
	  (reported by Alexander Bluhm)
2016-12-12 09:46:49 +00:00
wen
28c10c81dd Update to 1.39
Upstream changes:
1.39  2016-11-19 07:50:00 MANWAR
      - Proposed fix for RT #118778 (thanks Andrew Beverley).
2016-12-11 08:54:04 +00:00
wen
fbd337c1f0 Update to 3.35
Upstream changes:
* Release 3.35
2016-11-29  Karl Williamson <khw@cpan.org>
	Needed to 'make manifest' before uploading to CPAN.  No changes beyond
	version bump

	* Release 3.35
2016-11-29  Karl Williamson <khw@cpan.org>
	Stabilize t/search50.t.  Thanks to rurban for the patch!
	Turn off utf8 warnings when trying to see if a file is UTF-8 or not.

	* Release 3.33
	No changes since 3.32.
2016-12-11 08:19:20 +00:00
wen
71428dfec3 Update to 0.1.44
Upstream changes:
0.1.44 Fri Dec  2 15:26:19 PST 2016
 - Apply PR/32 typo (@perlpunk++)
 - Apply PR/34 IPC::Run dependency (@perlpunk++)
 - Apply PR/35 Output IPC::Run stderr (@perlpunk++)
2016-12-11 07:49:06 +00:00
wen
d99eaf3493 Update to 1.20
Upstream changes:
1.20 Fri Dec  2 13:20:33 PST 2016
 - Apply and amend PR/146 (quoted map keys) @preaction++
 - B::Deparse is loaded at runtime now
 - New Feature $YAML::Preserve (Apply PR/9 @fmenabe++)
2016-12-11 07:37:39 +00:00
taca
aad348698d Reset PKGREVISION along with all php* language packages. 2016-12-10 07:11:39 +00:00
wiedi
a72aa338a0 needs c99, fixes SunOS 2016-12-08 12:15:43 +00:00
wiz
bd07bbac23 whitespace. 2016-12-08 09:04:44 +00:00
leot
e267f3294e Update textproc/the_silver_searcher to the_silver_searcher-1.0.2
Changes:
1.0.2
-----
- mmap() is slower than read() on MacOS. Default to using read() on MacOS
- Misc minor documentation improvements
2016-12-05 10:09:44 +00:00
rodent
0cfafbbaa1 Removed converters/py-html2text, as it's a duplicate of the one in textproc
Merged the updates from the new package to the old one. Updated the Tryton
dependency which uses it.
2016-12-04 22:02:00 +00:00
bsiegert
4870dcea7e Revbump Go packages after 1.7.4 update. 2016-12-04 16:29:58 +00:00
adam
f1aa6695a4 PLIST fix for Darwin 2016-12-04 09:01:20 +00:00
ryoon
36ed025474 Recursive revbump from textproc/icu 58.1 2016-12-04 05:17:03 +00:00
ryoon
6aaec02c32 Update to 58.1
* Fix regression with upstream patch,
  https://ssl.icu-project.org/trac/ticket/12827

Changelog:
Common Changes

    CLDR 30.0.2: For details of the many changes in CLDR, see CLDR 30. Some things to note:
        For some combinations of numbering system (arab, arabext, latn) and/or locale (ar, fa, he), there were changes to the bidirectional control characters used with certain symbols (percent, minus, plus), and changes to number patterns (currency and/or percent, including addition of bidirectional control characters in some cases).
        New in this release, the bidirectional controls used for such purposes include U+061C ARABIC LETTER MARK (ALM), which requires use of the bidirectional algorithm from Unicode 6.3 or later.
        The time separator for Norwegian locales (nb, nn) was changed to be ':' throughout.
    Unicode 9.0: Version 9.0 adds exactly 7,500 characters, for a total of 128,172 characters. These additions include six new scripts, 19 symbols for the new 4K TV standard, and 72 new emoji characters.
    Draft Emoji 4.0 data
        Emoji updates for word & line breaking. (#12664 & Unicode 9 update #12526)
    UBiDiTransform/BidiTransform API for convenient transformation of text between different Bidi layouts. (#11679)
    MeasureFormat API for measurement unit display names. (#12029)
    Most COUNT and LIMIT enum constants have been deprecated. (#12420)
    SpoofChecker: Handling of "whole script confusables" has been removed from ICU, in accordance with its removal from UTS #39 Version 9.0.0 and the removal of the corresponding Unicode data file. (#12549)
    Greek uppercasing ("el" locale ID) removes most diacritics. (#5456)
    More robust locale data loading across ICU implementation code.
    Reduced heap memory usage in DateTimePatternGenerator. (#11782)

ICU4C Specific Changes

    The layout engine code has been removed; the ParagraphLayout is not deprecated and remains (and must now be built on top of HarfBuzz). See http://userguide.icu-project.org/layoutengine (#12708)
    Windows: Supports & requires Visual Studio 2015.
2016-12-04 04:11:32 +00:00
wiz
d8f636935b Fix weird CONFLICTS line. 2016-12-01 14:48:02 +00:00
roy
44545d381b Add php-yaml 2016-12-01 12:25:20 +00:00
roy
7e4802b028 Import PHP PECL YAML processor 2.0.0 2016-12-01 12:23:47 +00:00
leot
7eb583f69d Fix build for DragonFlyBSD dirent(3) that does not have a dirent.d_reclen entry.
Thanks to <sevan> for testing it!
2016-12-01 11:13:04 +00:00
leot
5eb9d538d8 Update textproc/the_silver_searcher to the_silver_searcher-1.0.1
Changes:
1.0.1
-----
- Remove support for old svn ignore format (1.6 and earlier)
- Misc bug fixes and improvements

1.0.0
-----
- Add support for GLSL filetypes
- Add support for tld filetype
- Add support for protobuf filetype
- Add zsh completion function
- Misc bug fixes and improvements
2016-12-01 09:28:34 +00:00
jdolecek
8557d68955 add py-deepdiff 2.5.1 - Deep Difference of dictionaries, iterables, strings
and other objects
2016-11-30 20:19:29 +00:00
sevan
4faf94dda8 Patch CVE-2016-9318 https://bugzilla.gnome.org/show_bug.cgi?id=772726
Bump rev.
2016-11-30 14:46:22 +00:00
wiz
9024cebbb3 Clean up pkglint. Add some test dependencies, 4 more are not packaged
yet.
2016-11-30 14:38:58 +00:00
jdolecek
e0d3849845 Add py-natsort 5.0.1 - Natural sorting for Python
based on wip version
2016-11-30 14:13:48 +00:00
wiz
577f34bb73 Updated p5-YAML to 1.19.
1.19 Fri Nov 18 19:46:44 CET 2016
 - Apply PR/164 pod (link to YAML::Shell)
 - Apply PR/151 Fix infinite loop for aliases without a name @bubaflub++
 - Apply PR/142 Improve error messages @werekraken++
 - Apply PR/162 Improve error messages
 - Apply PR/163 Trailing spaces after inline seq/map work now
 - Apply PR/154 Add test case for trailing comments @Varadinsky++
2016-11-28 15:42:50 +00:00
wiz
1a1d4e7335 Updated p5-Text-Unidecode to 1.30.
2016-11-26   Sean M. Burke  sburke@cpan.org
	* Release 1.30
	* Many many (forty?) tables were missing the final character! Fixed.
	* Minor stuff:
 	 . Added just a few Arabesque things to U+FD__
   	 . Renamed t/00400_just_load_module.t
	        to t/00400_just_load_main_module.t
	 . This is the first time non-7bit data appears in any Unidecode/x__.pm
	   files, although it is just in comments.  (In x02.pm, x03.pm, xfd.pm)
	   But this is just THE SHAPE OF THINGS TO COME.
	* Oh look, I blinked and a year went by.  I've been spending about the
	  past *two* years trying to think of how Unidecode v2-and-later's data
	  tables should work.
	* TODO: Kill the surrogatey "xD8", "xD9", "xDA", "xDB" blocks,
  	  and actually handle surrogates (when properly encoded).
	* TODO: Inaugurate the (private) Text::Unidecode::Blackbox namespace.
2016-11-28 13:37:53 +00:00
wiz
6c550a6474 Updated iso-codes to 3.71.
iso-codes 3.71
--------------
Dr. Tobias Quathamer <toddy@debian.org>
Tue, 15 Nov 2016

  [ ISO 3166-1 ]
  * Add short name of Czechia. Thanks to Jiri Bohac for the bug report
    and patch. Closes: alioth#315551

  [ ISO 3166-2 ]
  * Update from iso.org for Czechia

  [ ISO 3166-1 translations ]
  * Indonesian by Andhika Padmawan (TP)
  * Czech by Jiri Bohac
  * German by Jiri Bohac
  * French by Jiri Bohac

  [ ISO 3166-2 translations ]
  * German by Dr. Tobias Quathamer

  [ ISO 4217 translations ]
  * Indonesian by Andhika Padmawan (TP)
2016-11-28 12:49:12 +00:00
wiz
b1cb1bfd51 Updated pugixml to 1.8.1.
1.8.1

This is a re-release of v1.8 with fixed timestamps for files in .tar.gz

1.8

Maintenance release.

Release highlights:

    Added parse_embed_pcdata parsing mode to reduce memory consumption for some documents
    Added Latin-1 auto-detection support
    When printing empty elements, a space is no longer added before / in format_raw mode
    Fix compilation issues for Borland C++ 5.4 and some distributions of MinGW 3.8
2016-11-28 12:39:41 +00:00
wen
399b2fbc11 Update to 2.87
Upstream changes:
$Revision: 2.87 $ $Date: 2016/10/28 05:03:52 $
! Encode.xs t/taint.t
  Pulled: Disable _utf8_on and _utf8_off for tainted values
  https://github.com/dankogai/p5-encode/pull/74
! Encode.xs MANIFEST t/rt65541.t t/rt76824.t t/rt86327.t
  Pulled: Fix crash 'panic: sv_setpvn called with negative strlen'
  https://github.com/dankogai/p5-encode/pull/73
! Encode.xs MANIFEST t/rt113164.t
  Pulled: Fix crash caused by undefined behaviour between
  two sequence points
  https://github.com/dankogai/p5-encode/pull/72
! Encode.xs  MANIFEST lib/Encode/CN/HZ.pm lib/Encode/Encoder.pm
  t/decode.t t/magic.t t/rt85489.t t/utf8ref.t
  Pulled: Fix handling of undef, ref, typeglob, UTF8, COW and magic
  scalar argument in all XS functions
  https://github.com/dankogai/p5-encode/pull/70
! Encode/_T.e2x t/at-cn.t t/at-tw.t t/enc_data.t t/enc_module.t
  t/encoding-locale.t t/encoding.t t/jperl.t t/mime-name.t t/undef.t
  Pulled: Fix unit tests
  https://github.com/dankogai/p5-encode/pull/69
! Encode.pm lib/Encode/MIME/Header.pm lib/Encode/MIME/Name.pm
  t/mime-header.t t/mime-name.t t/taint.t
  Pulled: Encode::MIME::Header clean up
  https://github.com/dankogai/p5-encode/pull/68
! Encode.xs
  Pulled: Generate CHECK value functions with newCONSTSUB()
    instead with direct XS
  https://github.com/dankogai/p5-encode/pull/67
! Encode.xs
  Pulled: Encode::utf8: Fix count of replacement characters
  for overflowed and overlong UTF-8 sequences
  https://github.com/dankogai/p5-encode/pull/65
! Encode.xs t/fallback.t t/utf8strict.t
  Pulled: Encode::utf8: Fix processing invalid UTF-8 subsequences
  https://github.com/dankogai/p5-encode/pull/63
! Encode.pm t/utf8ref.t
  Pulled: Fix return value of Encode::encode_utf8(undef)
  https://rt.cpan.org/Ticket/Display.html?id=116904
  https://github.com/dankogai/p5-encode/pull/62
2016-11-28 12:22:23 +00:00
wen
bbf5920187 Update to 3.52
Upstream changes:
3.52 - 2016-11-23  - minor maintenance release

- fixed: the previous fix was buggy...

3.51 - 2016-11-23  - minor maintenance release

- fixed: failing tests when XML::XPathEngine and XML::XPath not available

3.50 - 2016-11-22  - minor maintenance release

- added: the no_xxe option to XML::Twig::new, which causes the parse
  to fail if external entities are used (to prevent malicious XML to
  access the filesystem).
  See RT#118097 https://rt.cpan.org/Public/Bug/Display.html?id=118097

- fixed: warning (and soon error) due to unescaped literal left braces
  in regular expressions in the code generating Twig.pm
  reported by trwyant
  https://github.com/mirod/xmltwig/issues/26

- fixed: (partial fix) implement getNamespaces in XML::Twig::XPath::Elt
  the expression doesn't crash the code, but doesn't return anything
  interesting (yet)
  reported by Nathan Glenn
  https://github.com/mirod/xmltwig/issues/12

- fixed: various spelling mistakes
  https://github.com/mirod/xmltwig/pull/24
  thanks to James McCoy for the patch

- git repo cleanup, thanks to mjg17
2016-11-28 12:14:05 +00:00
taca
c47c20d756 Solve build problem after enabling use of ${PREFIX}/etc/php.d and incomplete
fix of previous commit.

Bump PKGREVISION due to PLIST change.
2016-11-27 14:55:30 +00:00
marino
e7a91fc2fa Upgrade USE_LANGUAGES=ada to use lang/gcc5-aux instead of lang/gcc-aux
This large commit accomplishes the following:

1) Switch USE_LANGUAGES=ada to require lang/gcc5-aux (gcc 5.4) instead
   of lang/gcc-aux (gcc 4.9.2) on gcc.mk
2) Bump affected ports and fix paths as necessary
3) Upgrade devel/gprbuild to the latest release
   - No longer requires lang/gnat_util
   - gprslave requires gcc6-aux, so it was disabled for now
4) Fix lang/gnat_util but set PKG_SKIP_REASON
   - It has no further purpose in the pkgsrc tree
   - It has no practical purpose outside of the pkgsrc tree
   - Indicate intent to remove from tree in Jan. 2017
5) Set devel/GPS as failed with PKG_FAIL_REASON
   - This version of GPS is several years old and at the time they were
     strongly tied to compiler.
   - Latest release of GPS require gcc6-aux (not available) and several
     new and complex dependencies
   - maintainer (me) has no interest to continue supporting it
   - Leaving GPS in place until Jan 2017 to give another person chance to
     upgrade and take over support
   - Latest version in FreeBSD Ports Collection as a reference point
2016-11-25 20:36:49 +00:00
wiz
455c25ee32 Recognize libpthread_dbg. 2016-11-24 12:09:14 +00:00
wiedi
134b297b04 link network libs on SunOS 2016-11-23 16:11:52 +00:00
wiz
1d69bdaa58 Add 5 new perl packages. 2016-11-23 09:26:31 +00:00
wiz
d6f82b0b7f Import p5-XML-Compile-SOAP12-3.04 as textproc/p5-XML-Compile-SOAP12.
This perl module handles the SOAP protocol version 1.2.
2016-11-23 09:26:15 +00:00
wiz
b9f933f51e Import p5-XML-Compile-SOAP-3.20 as textproc/p5-XML-Compile-SOAP.
This perl module handles the SOAP protocol. The first implementation
is SOAP1.1, which is still most often used. The SOAP1.2 definition
is provided via the separate distribution XML::Compile::SOAP12.
2016-11-23 09:23:37 +00:00
wiz
c31e24d74d Import p5-XML-Compile-Cache-1.05 as textproc/p5-XML-Compile-Cache.
Cache compiled XML translators for p5-XML-Compile.
2016-11-23 09:21:14 +00:00
wiz
1050e52930 Import p5-XML-Compile-1.54 as textproc/p5-XML-Compile.
Many (professional) applications process XML messages based on a
formal specification, expressed in XML Schemas. XML::Compile
translates between XML and Perl with the help of such schemas. Your
Perl program only handles a tree of nested HASHes and ARRAYs, and
does not need to understand namespaces and other general XML and
schema nastiness.
2016-11-23 09:17:14 +00:00
wiz
413c82d591 Import p5-XML-Compile-Tester-0.90 as textproc/p5-XML-Compile-Tester.
The XML::Compile module suite has extensive regression testing.
Probably, you want to do regression testing as well. This module
provide functions which simplify writing tests for XML::Compile
related distributions.
2016-11-23 09:15:27 +00:00
alnsn
f7e3b85867 Update textproc/LDoc to 1.4.5.
Promted by beta.repology.org.
2016-11-20 10:57:31 +00:00