r42965 - in /trunk/libtext-multimarkdown-perl: Changes MANIFEST MANIFEST.skip META.yml Makefile.PL debian/changelog lib/Text/MultiMarkdown.pm t/20fulldocs-text-multimarkdown.t t/36footnotes.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Thu Aug 27 00:36:54 UTC 2009


Author: jawnsy-guest
Date: Thu Aug 27 00:36:48 2009
New Revision: 42965

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=42965
Log:
Apply new upstream version, should include fixes for the warnings we were getting

Added:
    trunk/libtext-multimarkdown-perl/MANIFEST.skip
      - copied unchanged from r42964, branches/upstream/libtext-multimarkdown-perl/current/MANIFEST.skip
    trunk/libtext-multimarkdown-perl/t/36footnotes.t
      - copied unchanged from r42964, branches/upstream/libtext-multimarkdown-perl/current/t/36footnotes.t
Modified:
    trunk/libtext-multimarkdown-perl/Changes
    trunk/libtext-multimarkdown-perl/MANIFEST
    trunk/libtext-multimarkdown-perl/META.yml
    trunk/libtext-multimarkdown-perl/Makefile.PL
    trunk/libtext-multimarkdown-perl/debian/changelog
    trunk/libtext-multimarkdown-perl/lib/Text/MultiMarkdown.pm
    trunk/libtext-multimarkdown-perl/t/20fulldocs-text-multimarkdown.t

Modified: trunk/libtext-multimarkdown-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-multimarkdown-perl/Changes?rev=42965&op=diff
==============================================================================
--- trunk/libtext-multimarkdown-perl/Changes (original)
+++ trunk/libtext-multimarkdown-perl/Changes Thu Aug 27 00:36:48 2009
@@ -205,9 +205,14 @@
           to enable <li value='X'> output for list numbering.
           This feature is disabled by default.
 
-1.0.25 Tue Jun  9 22:52:13 BST 2009
+1.0.25 2009-06-09T22:52:13
         - Split Text::MultiMarkdown back out into it's own dist.
 
-1.0.26 Wed Jul  1 08:35:00 BST 2009
+1.0.26 2009-07-01T08:35:00
         - Fix to depend on the Text::Markdown package.
 
+1.0.27 2009-08-27T00:49:50
+        - Change bug tracker metadata to the github issue tracker.
+        - Fix http://github.com/bobtfish/text-multimarkdown/issues#issue/5
+          regression causing specialchars to not be unhashed in footnotes.
+

Modified: trunk/libtext-multimarkdown-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-multimarkdown-perl/MANIFEST?rev=42965&op=diff
==============================================================================
--- trunk/libtext-multimarkdown-perl/MANIFEST (original)
+++ trunk/libtext-multimarkdown-perl/MANIFEST Thu Aug 27 00:36:48 2009
@@ -11,6 +11,7 @@
 License.text
 Makefile.PL
 MANIFEST			This list of files
+MANIFEST.skip
 META.yml
 README
 Readme.text
@@ -41,6 +42,7 @@
 t/29fulldocs-maruku-unittest.t
 t/30disable_multimarkdown_features.t
 t/35commandlinemultimarkdown.t
+t/36footnotes.t
 t/docs-maruku-unittest/abbreviations.html
 t/docs-maruku-unittest/abbreviations.text
 t/docs-maruku-unittest/alt.html

Modified: trunk/libtext-multimarkdown-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-multimarkdown-perl/META.yml?rev=42965&op=diff
==============================================================================
--- trunk/libtext-multimarkdown-perl/META.yml (original)
+++ trunk/libtext-multimarkdown-perl/META.yml Thu Aug 27 00:36:48 2009
@@ -13,7 +13,7 @@
 configure_requires:
   ExtUtils::MakeMaker: 6.42
 distribution_type: module
-generated_by: 'Module::Install version 0.91'
+generated_by: 'Module::Install version 0.910'
 license: bsd
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -29,6 +29,7 @@
   Text::Markdown: 1.0.24
   perl: 5.8.0
 resources:
+  bugtracker: http://github.com/bobtfish/text-multimarkdown/issues
   license: http://opensource.org/licenses/bsd-license.php
-  repository: http://bobtfish.github.com/text-multimarkdown/tree/master
-version: 1.0.26
+  repository: http://github.com/bobtfish/text-multimarkdown/
+version: 1.0.27

Modified: trunk/libtext-multimarkdown-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-multimarkdown-perl/Makefile.PL?rev=42965&op=diff
==============================================================================
--- trunk/libtext-multimarkdown-perl/Makefile.PL (original)
+++ trunk/libtext-multimarkdown-perl/Makefile.PL Thu Aug 27 00:36:48 2009
@@ -6,7 +6,8 @@
 author          'Tomas Doran <bobtfish at bobtfish.net>';
 license         'bsd';
 all_from        'lib/Text/MultiMarkdown.pm';
-resources repository => 'http://bobtfish.github.com/text-multimarkdown/tree/master';
+resources repository => 'http://github.com/bobtfish/text-multimarkdown/';
+resources bugtracker => 'http://github.com/bobtfish/text-multimarkdown/issues';
 
 # Specific dependencies
 perl_version    '5.008';

Modified: trunk/libtext-multimarkdown-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-multimarkdown-perl/debian/changelog?rev=42965&op=diff
==============================================================================
--- trunk/libtext-multimarkdown-perl/debian/changelog (original)
+++ trunk/libtext-multimarkdown-perl/debian/changelog Thu Aug 27 00:36:48 2009
@@ -1,9 +1,5 @@
-libtext-multimarkdown-perl (1.0.26-1) UNRELEASED; urgency=low
-
-  WAITS FOR new upstream version. Did lots of bug hunting/fixing on
-  IRC with the author; he'll cut a new release in a bit, as this is
-  considered a serious regression.
+libtext-multimarkdown-perl (1.0.27-1) UNRELEASED; urgency=low
 
   * Initial Release (Closes: #543755)
 
- -- Jonathan Yu <frequency at cpan.org>  Wed, 26 Aug 2009 09:52:05 -0400
+ -- Jonathan Yu <frequency at cpan.org>  Wed, 26 Aug 2009 16:32:14 -0400

Modified: trunk/libtext-multimarkdown-perl/lib/Text/MultiMarkdown.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-multimarkdown-perl/lib/Text/MultiMarkdown.pm?rev=42965&op=diff
==============================================================================
--- trunk/libtext-multimarkdown-perl/lib/Text/MultiMarkdown.pm (original)
+++ trunk/libtext-multimarkdown-perl/lib/Text/MultiMarkdown.pm Thu Aug 27 00:36:48 2009
@@ -9,7 +9,7 @@
 use Carp        qw(croak);
 use base        qw(Text::Markdown);
 
-our $VERSION   = '1.0.26';
+our $VERSION   = '1.0.27';
 our @EXPORT_OK = qw(markdown);
 
 =head1 NAME
@@ -659,7 +659,7 @@
     # First, run routines that get skipped in footnotes
     foreach my $label (sort keys %{ $self->{_footnotes} }) {
         my $footnote = $self->_RunBlockGamut($self->{_footnotes}{$label});
-
+        $footnote = $self->_UnescapeSpecialChars($footnote);
         $footnote = $self->_DoMarkdownCitations($footnote);
         $self->{_footnotes}{$label} = $footnote;
     }
@@ -704,10 +704,10 @@
     foreach my $id (@{ $self->{_used_footnotes} }) {
         $footnote_counter++;
         my $footnote = $self->{_footnotes}{$id};
-        my $footnote_closing_tag = '';
 
         $footnote =~ s/(\<\/(p(re)?|ol|ul)\>)$//;
-        $footnote_closing_tag = $1;
+        my $footnote_closing_tag = $1;
+        $footnote_closing_tag = '' if !defined $footnote_closing_tag;
 
         if ($footnote =~ s/^glossary:\s*//i) {
             # Add some formatting for glossary entries

Modified: trunk/libtext-multimarkdown-perl/t/20fulldocs-text-multimarkdown.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-multimarkdown-perl/t/20fulldocs-text-multimarkdown.t?rev=42965&op=diff
==============================================================================
--- trunk/libtext-multimarkdown-perl/t/20fulldocs-text-multimarkdown.t (original)
+++ trunk/libtext-multimarkdown-perl/t/20fulldocs-text-multimarkdown.t Thu Aug 27 00:36:48 2009
@@ -100,6 +100,7 @@
         $processed =~ s/\s+\z//; # trim trailing whitespace
     
         if ($TIDY) {
+            local $SIG{__WARN__} = sub {};
             my $t = HTML::Tidy->new;
             $output = $t->clean($output);
             $processed = $t->clean($processed);




More information about the Pkg-perl-cvs-commits mailing list