[Catalyst-commits] r7541 - in Catalyst-Plugin-SmartURI/1.000/trunk:
. lib/Catalyst/Plugin
caelum at dev.catalyst.perl.org
caelum at dev.catalyst.perl.org
Tue Apr 1 16:39:20 BST 2008
Author: caelum
Date: 2008-04-01 16:39:19 +0100 (Tue, 01 Apr 2008)
New Revision: 7541
Added:
Catalyst-Plugin-SmartURI/1.000/trunk/MANIFEST
Catalyst-Plugin-SmartURI/1.000/trunk/MANIFEST.SKIP
Catalyst-Plugin-SmartURI/1.000/trunk/META.yml
Catalyst-Plugin-SmartURI/1.000/trunk/Makefile.PL
Catalyst-Plugin-SmartURI/1.000/trunk/README
Removed:
Catalyst-Plugin-SmartURI/1.000/trunk/inc/
Modified:
Catalyst-Plugin-SmartURI/1.000/trunk/Changes
Catalyst-Plugin-SmartURI/1.000/trunk/lib/Catalyst/Plugin/SmartURI.pm
Log:
First dev release for CPAN.
Modified: Catalyst-Plugin-SmartURI/1.000/trunk/Changes
===================================================================
--- Catalyst-Plugin-SmartURI/1.000/trunk/Changes 2008-04-01 14:15:47 UTC (rev 7540)
+++ Catalyst-Plugin-SmartURI/1.000/trunk/Changes 2008-04-01 15:39:19 UTC (rev 7541)
@@ -2,3 +2,6 @@
0.01 2008-03-08 03:30:31
First version.
+
+0.01_01 2008-04-01 08:33:13
+ First dev release.
Added: Catalyst-Plugin-SmartURI/1.000/trunk/MANIFEST
===================================================================
--- Catalyst-Plugin-SmartURI/1.000/trunk/MANIFEST (rev 0)
+++ Catalyst-Plugin-SmartURI/1.000/trunk/MANIFEST 2008-04-01 15:39:19 UTC (rev 7541)
@@ -0,0 +1,63 @@
+Changes
+inc/Module/AutoInstall.pm
+inc/Module/Install.pm
+inc/Module/Install/AutoInstall.pm
+inc/Module/Install/Base.pm
+inc/Module/Install/Can.pm
+inc/Module/Install/Fetch.pm
+inc/Module/Install/Include.pm
+inc/Module/Install/Makefile.pm
+inc/Module/Install/Metadata.pm
+inc/Module/Install/Win32.pm
+inc/Module/Install/WriteAll.pm
+lib/Catalyst/Plugin/SmartURI.pm
+lib/Catalyst/SmartURI.pm
+Makefile.PL
+MANIFEST This list of files
+MANIFEST.SKIP
+META.yml
+README
+t/00-load.t
+t/01-basic.t
+t/02-c-a-rest-compat.t
+t/03-smart-uris.t
+t/04-smart-uri-subclass.t
+t/boilerplate.t
+t/pod.t
+t/uri/abs.t
+t/uri/clone.t
+t/uri/data.t
+t/uri/escape.t
+t/uri/file.t
+t/uri/ftp.t
+t/uri/generic.t
+t/uri/heuristic.t
+t/uri/http.t
+t/uri/ldap.t
+t/uri/mailto.t
+t/uri/mix.t
+t/uri/mms.t
+t/uri/news.t
+t/uri/old-absconf.t
+t/uri/old-base.t
+t/uri/old-file.t
+t/uri/old-relbase.t
+t/uri/pop.t
+t/uri/query-param.t
+t/uri/query.t
+t/uri/README
+t/uri/rel.t
+t/uri/rfc2732.t
+t/uri/roy-test.t
+t/uri/roytest1.html
+t/uri/roytest2.html
+t/uri/roytest3.html
+t/uri/roytest4.html
+t/uri/roytest5.html
+t/uri/rsync.t
+t/uri/rtsp.t
+t/uri/sip.t
+t/uri/split.t
+t/uri/storable-test.pl
+t/uri/storable.t
+t/uri/urn-oid.t
Added: Catalyst-Plugin-SmartURI/1.000/trunk/MANIFEST.SKIP
===================================================================
--- Catalyst-Plugin-SmartURI/1.000/trunk/MANIFEST.SKIP (rev 0)
+++ Catalyst-Plugin-SmartURI/1.000/trunk/MANIFEST.SKIP 2008-04-01 15:39:19 UTC (rev 7541)
@@ -0,0 +1,5 @@
+\..*\.swp
+.svn
+.exists
+MANIFEST.bak
+Makefile.old
Added: Catalyst-Plugin-SmartURI/1.000/trunk/META.yml
===================================================================
--- Catalyst-Plugin-SmartURI/1.000/trunk/META.yml (rev 0)
+++ Catalyst-Plugin-SmartURI/1.000/trunk/META.yml 2008-04-01 15:39:19 UTC (rev 7541)
@@ -0,0 +1,27 @@
+---
+abstract: 'Configurable URIs for Catalyst'
+author:
+ - 'Rafael Kitover <rkitover at cpan.org>'
+build_requires:
+ Test::More: 0
+distribution_type: module
+generated_by: 'Module::Install version 0.71'
+license: perl
+meta-spec:
+ url: http://module-build.sourceforge.net/META-spec-v1.3.html
+ version: 1.3
+name: Catalyst-Plugin-SmartURI
+no_index:
+ directory:
+ - inc
+ - t
+requires:
+ Catalyst: 5.7007
+ Class::Accessor::Fast: 0
+ Class::C3::Componentised: 0
+ Class::Data::Inheritable: 0
+ File::Find::Rule: 0
+ List::MoreUtils: 0
+ List::Util: 0
+tests: 't/*.t t/*/*.t'
+version: 0.01_01
Added: Catalyst-Plugin-SmartURI/1.000/trunk/Makefile.PL
===================================================================
--- Catalyst-Plugin-SmartURI/1.000/trunk/Makefile.PL (rev 0)
+++ Catalyst-Plugin-SmartURI/1.000/trunk/Makefile.PL 2008-04-01 15:39:19 UTC (rev 7541)
@@ -0,0 +1,21 @@
+use inc::Module::Install;
+
+name 'Catalyst-Plugin-SmartURI';
+all_from 'lib/Catalyst/Plugin/SmartURI.pm';
+author 'Rafael Kitover <rkitover at cpan.org>';
+
+requires 'Catalyst' => '5.7007';
+requires 'Class::C3::Componentised';
+requires 'File::Find::Rule';
+requires 'List::Util';
+requires 'List::MoreUtils';
+requires 'Class::Accessor::Fast';
+requires 'Class::Data::Inheritable';
+
+build_requires 'Test::More';
+
+tests 't/*.t t/*/*.t';
+
+auto_install;
+
+WriteAll;
Added: Catalyst-Plugin-SmartURI/1.000/trunk/README
===================================================================
--- Catalyst-Plugin-SmartURI/1.000/trunk/README (rev 0)
+++ Catalyst-Plugin-SmartURI/1.000/trunk/README 2008-04-01 15:39:19 UTC (rev 7541)
@@ -0,0 +1,42 @@
+Catalyst-Plugin-SmartURI
+
+This plugin changes the behaviour of $c->uri_for and $c->req->uri_with.
+
+INSTALLATION
+
+To install this module, run the following commands:
+
+ perl Makefile.PL
+ make
+ make test
+ make install
+
+SUPPORT AND DOCUMENTATION
+
+After installing, you can find documentation for this module with the
+perldoc command.
+
+ perldoc Catalyst::Plugin::SmartURI
+
+You can also look for information at:
+
+ RT, CPAN's request tracker
+ http://rt.cpan.org/NoAuth/Bugs.html?Dist=Catalyst-Plugin-SmartURI
+
+ AnnoCPAN, Annotated CPAN documentation
+ http://annocpan.org/dist/Catalyst-Plugin-SmartURI
+
+ CPAN Ratings
+ http://cpanratings.perl.org/d/Catalyst-Plugin-SmartURI
+
+ Search CPAN
+ http://search.cpan.org/dist/Catalyst-Plugin-SmartURI
+
+
+COPYRIGHT AND LICENCE
+
+Copyright (C) 2008 Rafael Kitover
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Catalyst-Plugin-SmartURI/1.000/trunk/lib/Catalyst/Plugin/SmartURI.pm
===================================================================
--- Catalyst-Plugin-SmartURI/1.000/trunk/lib/Catalyst/Plugin/SmartURI.pm 2008-04-01 14:15:47 UTC (rev 7540)
+++ Catalyst-Plugin-SmartURI/1.000/trunk/lib/Catalyst/Plugin/SmartURI.pm 2008-04-01 15:39:19 UTC (rev 7541)
@@ -6,15 +6,15 @@
=head1 NAME
-Catalyst::Plugin::SmartURI - Configurable URI disposition
+Catalyst::Plugin::SmartURI - Configurable URIs for Catalyst
=head1 VERSION
-Version 0.01
+Version 0.01_01
=cut
-our $VERSION = '0.01';
+our $VERSION = '0.01_01';
=head1 SYNOPSIS
More information about the Catalyst-commits
mailing list