r26841 - in /branches/upstream/libcatalyst-plugin-textile-perl: ./ current/ current/Changes current/MANIFEST current/META.yml current/Makefile.PL current/README current/Textile.pm current/t/ current/t/01use.t current/t/02pod.t current/t/03podcoverage.t

diocles-guest at users.alioth.debian.org diocles-guest at users.alioth.debian.org
Fri Nov 14 12:01:27 UTC 2008


Author: diocles-guest
Date: Fri Nov 14 12:01:23 2008
New Revision: 26841

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=26841
Log:
[svn-inject] Installing original source of libcatalyst-plugin-textile-perl

Added:
    branches/upstream/libcatalyst-plugin-textile-perl/
    branches/upstream/libcatalyst-plugin-textile-perl/current/
    branches/upstream/libcatalyst-plugin-textile-perl/current/Changes
    branches/upstream/libcatalyst-plugin-textile-perl/current/MANIFEST
    branches/upstream/libcatalyst-plugin-textile-perl/current/META.yml
    branches/upstream/libcatalyst-plugin-textile-perl/current/Makefile.PL
    branches/upstream/libcatalyst-plugin-textile-perl/current/README
    branches/upstream/libcatalyst-plugin-textile-perl/current/Textile.pm
    branches/upstream/libcatalyst-plugin-textile-perl/current/t/
    branches/upstream/libcatalyst-plugin-textile-perl/current/t/01use.t
    branches/upstream/libcatalyst-plugin-textile-perl/current/t/02pod.t
    branches/upstream/libcatalyst-plugin-textile-perl/current/t/03podcoverage.t

Added: branches/upstream/libcatalyst-plugin-textile-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-plugin-textile-perl/current/Changes?rev=26841&op=file
==============================================================================
--- branches/upstream/libcatalyst-plugin-textile-perl/current/Changes (added)
+++ branches/upstream/libcatalyst-plugin-textile-perl/current/Changes Fri Nov 14 12:01:23 2008
@@ -1,0 +1,4 @@
+Revision history for Perl extension Catalyst::Plugin::Textile
+
+0.01  Thu Apr 07 16:00:00 2005
+        - original version.

Added: branches/upstream/libcatalyst-plugin-textile-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-plugin-textile-perl/current/MANIFEST?rev=26841&op=file
==============================================================================
--- branches/upstream/libcatalyst-plugin-textile-perl/current/MANIFEST (added)
+++ branches/upstream/libcatalyst-plugin-textile-perl/current/MANIFEST Fri Nov 14 12:01:23 2008
@@ -1,0 +1,9 @@
+Changes
+Makefile.PL
+MANIFEST			This list of files
+README
+t/01use.t
+t/02pod.t
+t/03podcoverage.t
+Textile.pm
+META.yml                                 Module meta-data (added by MakeMaker)

Added: branches/upstream/libcatalyst-plugin-textile-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-plugin-textile-perl/current/META.yml?rev=26841&op=file
==============================================================================
--- branches/upstream/libcatalyst-plugin-textile-perl/current/META.yml (added)
+++ branches/upstream/libcatalyst-plugin-textile-perl/current/META.yml Fri Nov 14 12:01:23 2008
@@ -1,0 +1,12 @@
+# http://module-build.sourceforge.net/META-spec.html
+#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
+name:         Catalyst-Plugin-Textile
+version:      0.01
+version_from: Textile.pm
+installdirs:  site
+requires:
+    Catalyst:                      5
+    Text::Textile:                 0
+
+distribution_type: module
+generated_by: ExtUtils::MakeMaker version 6.17

Added: branches/upstream/libcatalyst-plugin-textile-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-plugin-textile-perl/current/Makefile.PL?rev=26841&op=file
==============================================================================
--- branches/upstream/libcatalyst-plugin-textile-perl/current/Makefile.PL (added)
+++ branches/upstream/libcatalyst-plugin-textile-perl/current/Makefile.PL Fri Nov 14 12:01:23 2008
@@ -1,0 +1,7 @@
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+    'NAME'         => 'Catalyst::Plugin::Textile',
+    'VERSION_FROM' => 'Textile.pm',
+    'PREREQ_PM'    => { Catalyst => 5, Text::Textile => 0 }
+);

Added: branches/upstream/libcatalyst-plugin-textile-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-plugin-textile-perl/current/README?rev=26841&op=file
==============================================================================
--- branches/upstream/libcatalyst-plugin-textile-perl/current/README (added)
+++ branches/upstream/libcatalyst-plugin-textile-perl/current/README Fri Nov 14 12:01:23 2008
@@ -1,0 +1,27 @@
+NAME
+    Catalyst::Plugin::Textile - Textile for Catalyst
+
+SYNOPSIS
+        # include it in plugin list
+        use Catalyst qw/Textile/;
+
+        my $html = $c->textile->process($text);
+
+DESCRIPTION
+    Persistent Textile processor for Catalyst.
+
+  METHODS
+   $c->textile;
+    Returns a ready to use Text::Textile object.
+
+SEE ALSO
+    Catalyst::Manual, Catalyst::Test, Catalyst::Request, Catalyst::Response,
+    Catalyst::Helper, Text::Textile
+
+AUTHOR
+    Sebastian Riedel, "sri at oook.de"
+
+LICENSE
+    This library is free software . You can redistribute it and/or modify it
+    under the same terms as perl itself.
+

Added: branches/upstream/libcatalyst-plugin-textile-perl/current/Textile.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-plugin-textile-perl/current/Textile.pm?rev=26841&op=file
==============================================================================
--- branches/upstream/libcatalyst-plugin-textile-perl/current/Textile.pm (added)
+++ branches/upstream/libcatalyst-plugin-textile-perl/current/Textile.pm Fri Nov 14 12:01:23 2008
@@ -1,0 +1,49 @@
+package Catalyst::Plugin::Textile;
+
+use strict;
+use base 'Class::Data::Inheritable';
+use Text::Textile;
+
+our $VERSION = '0.01';
+
+__PACKAGE__->mk_classdata('textile');
+__PACKAGE__->textile( Text::Textile->new );
+
+=head1 NAME
+
+Catalyst::Plugin::Textile - Textile for Catalyst
+
+=head1 SYNOPSIS
+
+    # include it in plugin list
+    use Catalyst qw/Textile/;
+
+    my $html = $c->textile->process($text);
+
+=head1 DESCRIPTION
+
+Persistent Textile processor for Catalyst.
+
+=head2 METHODS
+
+=head3 $c->textile;
+
+Returns a ready to use L<Text::Textile> object.
+
+=head1 SEE ALSO
+
+L<Catalyst::Manual>, L<Catalyst::Test>, L<Catalyst::Request>,
+L<Catalyst::Response>, L<Catalyst::Helper>, L<Text::Textile>
+
+=head1 AUTHOR
+
+Sebastian Riedel, C<sri at oook.de>
+
+=head1 LICENSE
+
+This library is free software . You can redistribute it and/or modify 
+it under the same terms as perl itself.
+
+=cut
+
+1;

Added: branches/upstream/libcatalyst-plugin-textile-perl/current/t/01use.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-plugin-textile-perl/current/t/01use.t?rev=26841&op=file
==============================================================================
--- branches/upstream/libcatalyst-plugin-textile-perl/current/t/01use.t (added)
+++ branches/upstream/libcatalyst-plugin-textile-perl/current/t/01use.t Fri Nov 14 12:01:23 2008
@@ -1,0 +1,4 @@
+use strict;
+use Test::More tests => 1;
+
+BEGIN { use_ok('Catalyst::Plugin::Textile') }

Added: branches/upstream/libcatalyst-plugin-textile-perl/current/t/02pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-plugin-textile-perl/current/t/02pod.t?rev=26841&op=file
==============================================================================
--- branches/upstream/libcatalyst-plugin-textile-perl/current/t/02pod.t (added)
+++ branches/upstream/libcatalyst-plugin-textile-perl/current/t/02pod.t Fri Nov 14 12:01:23 2008
@@ -1,0 +1,7 @@
+use Test::More;
+
+eval "use Test::Pod 1.14";
+plan skip_all => 'Test::Pod 1.14 required' if $@;
+plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
+
+all_pod_files_ok();

Added: branches/upstream/libcatalyst-plugin-textile-perl/current/t/03podcoverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-plugin-textile-perl/current/t/03podcoverage.t?rev=26841&op=file
==============================================================================
--- branches/upstream/libcatalyst-plugin-textile-perl/current/t/03podcoverage.t (added)
+++ branches/upstream/libcatalyst-plugin-textile-perl/current/t/03podcoverage.t Fri Nov 14 12:01:23 2008
@@ -1,0 +1,7 @@
+use Test::More;
+
+eval "use Test::Pod::Coverage 1.04";
+plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
+plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
+
+all_pod_coverage_ok();




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