summaryrefslogtreecommitdiff
path: root/cpan/Pod-Simple
Commit message (Collapse)AuthorAgeFilesLines
* Remove all IGNORABLE files under cpan/Steve Hay2013-10-182-821/+0
| | | | | | | | | | | | | | | | This was discussed on p5p: http://www.nntp.perl.org/group/perl.perl5.porters/2013/10/msg208635.html One LICENSE file (Locale-Codes) has been removed (contrary to one suggestion in that thread) since it was the only one, and only says "This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself." anyway. Two files that I had previously suggested retaining for the sake of tests have also been removed. In one case, a test script has been modified (in Digest-MD5; I will send a ticket upstream); in the other case (in Test-Harness) I have removed the test which depended on the MANIFEST files, as suggested in the above thread.
* Update Pod-Simple to CPAN version 3.28Chris 'BinGOs' Williams2013-05-1234-164/+305
| | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 2013-05-04 David E. Wheeler <david@justatheory.org> * Release 3.28 Removed use of 'done_testing' in t/white.t, which was added in v3.27. Thanks to Paul Howarth for the catch. Fixed inproperly calculated number of skipped tests in t/xhtml01.t when HTML::Entities is not intalled. 2013-05-03 David E. Wheeler <david@justatheory.org> * Release 3.27 Added new warnings as defined by Pod::Checker, thanks to RJBS: + "=over" without "=back" + "L<>" starts or ends with whitespace + raw "|" or "/" in "L<text|link>" text Added ->keep_encoding_directive, which is false by default, to prevent formatters from emitting a document's '=encoding' directive in most cases. That they emitted the encoding was a bug introduced in v3.26 (RT #84093). Now, only the DumpAsText and DumpAsXML formats set it to true. Patch from Patrice Dumas.
* Update Pod-Simple to CPAN version 3.26Chris 'BinGOs' Williams2013-02-2867-154/+678
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 2013-02-27 David E. Wheeler <david@justatheory.org> * Release 3.26 Fixed another test script to skip all tests when Encode is not installed. Added 'encoding()' and 'detected_encoding()' to return the current encoding and the encoding actually to decode the input file. The value from "=encoding" is also now kept in the output tree. Patch from Patrice Dumas (RT #74390). 2013-02-16 David E. Wheeler <david@justatheory.org> * Release 3.25 Improved the warning when "=item" types mismatch within one "=over"/"=back" block. 2013-02-14 David E. Wheeler <david@justatheory.org> * Release 3.24 Fixed corner case bug for unlikely scenario in which non-UTF-8 text could be parsed as UTF-8. Grant McLean. XHTML IDs can no longer end with punctuation. Thanks to Smylers for the patch. Fixed test failure on Perl 5.6.2. Changed the default installation location from "perl" to "site" on 5.12 and higher, since as of that version of Perl, dual-life modules no longer need to be installed in "perl" to replace in-core versions. Patch from tzccinct. Fixed hash order dependency test failures on Perl 5.17. Thanks to Yves Orton for the patch. Inlined the code that tries to guess a Pod file's encoding. This reduces the time Pod::Simple takes to build the core Perl documentation by 15-20%. Thanks to Dagfinn Ilmari Mannsåker for the patch! Added a warning when "=item" types mismatch within one "=over"/"=back" block. Marc Green/Google Summer of Code, with assist from RJBS. Fixed regression introduced in 3.22 in which "C< >" tags were incorrectly treated as verbatim text in table of contents items emitted by Pod::Simple::XHTML. Thanks to Randy Stauner for the report and to Thomas Sibley for the fix! Loosened up the matching of "L< >" tags for man pages so that they allow names with dots, underscores, and any other chararacters other than "/", just so long as they end in '[(][-a-zA-Z0-9]+[)]'. Thanks to Dave Rolsky and Kevin Ryde for the reports (RT #82975 & RT #82972). Fixed inverted mapping of "keyboard" to "kbd" in Pod::Simple::HTML. Thanks to Robert Boisvert for the bug report (RT #79201). Added two new Tagmap entries to Pod::Simple::HTML: "preformat" maps to "pre", and "teletype" maps to "tt". Suggested by Robert Boisvert (RT #79201). "X< >" tags are now ignored by the pull parser when it searches for titles, as is any trailing whitespace. Thanks to Patrice Dumas for the report (RT #74389).
* Upgrade to Pod-Simple 3.23Steve Hay2012-08-1562-718/+1076
|
* Revert "bump Pod::Simple to CPAN version 3.22"Jesse Luehrs2012-06-1760-954/+705
| | | | | | | This reverts commit 74216f0477933a6ab02c6e6041e0dc98eb109017. this update breaks podlators and Pod::HTML, so reverting it until i figure out how to get those updated
* bump Pod::Simple to CPAN version 3.22Jesse Luehrs2012-06-1760-705/+954
|
* Upgrade Pod-Simple to 3.20. This should fix issue 111520.Abigail2012-03-1137-48/+116
|
* Fix Pod::Simple search test for VMS.Craig A. Berry2012-02-141-2/+2
| | | | | | Awaiting upstream integration at: https://rt.cpan.org/Public/Bug/Display.html?id=72551
* Upgrade Pod::Simple from version 3.18 to 3.19Florian Ragwitz2011-08-2341-190/+810
|
* Update Pod-Simple to CPAN version 3.18Chris 'BinGOs' Williams2011-07-1730-33/+60
| | | | | | | | | | | | | | [DELTA] 2011-07-16 David E. Wheeler <david@justatheory.org> * Release 3.18 Pod::Simple now properly parses Pod files using Mac OS Classic line- endings (\r). Marc Green/Google Summer of Code. Fixed test failure in 't/search50.t when the test finds a .pod but the module is in a .pm. Thanks to the cpan-testers who reported this when the test searched for Capture::Tiny.
* Update Pod-Simple to CPAN version 3.17Chris 'BinGOs' Williams2011-07-1037-59/+587
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 2011-07-09 David E. Wheeler <david@justatheory.org> * Release 3.17 Documented tertiary methods. Patch from Shawn H Corey. Added "backlink" option to Pod::Simple::XHTML. Thanks to Marc Green/Google Summer of Code for the pull request. Typos fixed in Pod::Simple::HTMLBatch. Reported by Shawn H Corey. Fixed quoting of value returned by a "strip_verbatim_indent()" code reference so that regex meta characters are properly escaped. Added "anchor_items" option to Pod::Simple::XHMTL. This allows text items (which are output as <dt> elements) to have IDs that can be referenced in the "#" part of a URL. Marc Green/Google Summer of Code. Added "recurse" option to Pod::Simple::Search. It's enabled by default; disable it to turn off recursion into subdirectories. Marc Green/Google Summer of Code. Added documentation to clarify the behavior of the "content_seen" method. Thanks to Olaf Alders for the pull request.
* Update Pod-Simple to CPAN version 3.16Chris 'BinGOs' Williams2011-03-1534-110/+354
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 2011-03-14 David E. Wheeler <david@justatheory.org> * Release 3.16 Fixed invalid HTML generated for nested lists by Pod::Simple::XHTML (Fitz Elliott). Replaced the invalid "<nobr>" tag -- created for "S<>" -- with '<span style="white-space: nowrap;">' (Fitz Elliott). Fixed some nerbles in our own Pod (Michael Stevens) Improved the "Minimal code" example in Pod::Simple::HTML. The key is to use pase_file(), not parse_from_file() (which should otherwise be undocumented, and is just there for Pod::Parser compatibility. Thanks to prodding from Ævar Arnfjörð Bjarmason (RT #65428). Added the html_charset() and html_encode_chars() attributes to Pod::Simple::XHTML. Inspired by a bug report from Agent Zhang (章亦春) (RT #29587). Added "Minimal code" example to the Pod::Simple::XHTML documentation. Fixed mispelling of the "=encoding" markup in the parser (it was spelled "=encode"). Thanks to "TTY" for the patch. (RT #24820).
* Update Pod-Simple to CPAN version 3.15Chris 'BinGOs' Williams2010-11-1234-57/+268
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 2010-11-11 David E. Wheeler <david@justatheory.org> * Release 3.15 Removed "perlpod.pod" and "perlpodspec.pod". These now just live in the Perl core. Fixed stylesheet names output by HTMLBatch to match the names of the actual stylesheet files (broken in 3.09). Thanks to Kevin Ryde for the report (RT #56725). Added missing closing slash to the CSS links in the XHTML output. Thanks to HarleyPig for the patch! Added parens around bar "qw(...)" in t/xhtml05.t. Thanks to Jerry D. Hedden for the patch. Improved the Pod::Simple::HTML docs. Thanks to Gabor Szabo for the patch. Pod::Simple::XHTML now properly encodes entities in URLs in the anchor tag. Thanks to John McNamara for the report (RT-60249). Pod::Simple::HTML and XHTML now strip whitespace from the end of section names that appear as anchor names for headers (in HTML) and IDs (in XHTML). Such whitespace appeared when "X<>" entities were stripped out but not the space between them (RT-56572). Make test "t/search50.t" always pass on case-insensitive file systems rather than just skip VMS.
* import Pod-Simple 3.14 for C<< >> fixRicardo Signes2010-04-2833-83/+79
|
* Upgrade to Pod::Simple 3.13 from CPAN to fix a regression (in 3.08) that ↵Jesse Vincent2009-12-1835-170/+262
| | | | broke html output
* Updated to Pod::Simple 3.11 from CPAN [perl #71004]Jesse Vincent2009-12-1036-168/+1318
|
* Bring Pod::Simple up to 3.10David E. Wheeler2009-11-124-8/+143
| | | | | | This is the same as the version just released to CPAN. Notable changes are skipping failing tests on VMS and fixing nested definition lists in the XHTML formatter.
* Skip some Pod::Simple tests on VMS that think case is always preserved.Craig A. Berry2009-11-076-14/+38
| | | | | | Already in the upstream queue at: https://rt.cpan.org/Ticket/Display.html?id=51184
* Convert all Pod::Simple files to Unix line endings.David E. Wheeler2009-10-2925-1242/+1242
| | | | | In response to Steve Hay's report in [RT #50922](https://rt.cpan.org/Ticket/Display.html?id=50922).
* Bring Pod::Simple up to 3.09 as on CPAN.David E. Wheeler2009-10-2824-162/+1175
|
* Upgrade to Pod-Simple-3.08Steve Hay2009-10-113-3/+12
|
* Sync Pod-Simple test scripts with CPAN versionsSteve Hay2009-10-1119-7/+19
| | | | | | Retained local changes in: corpus.t, reinit.t, search20.t, search22.t, search50.t because they look more significant
* Move Pod::Simple from ext/ to cpan/Nicholas Clark2009-10-02174-0/+26756