r38782 - in /branches/upstream/libtitanium-perl/current: Changes META.yml Makefile.PL README lib/Titanium.pm

nhandler-guest at users.alioth.debian.org nhandler-guest at users.alioth.debian.org
Fri Jun 26 21:50:21 UTC 2009


Author: nhandler-guest
Date: Fri Jun 26 21:50:13 2009
New Revision: 38782

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=38782
Log:
[svn-upgrade] Integrating new upstream version, libtitanium-perl (1.02)

Modified:
    branches/upstream/libtitanium-perl/current/Changes
    branches/upstream/libtitanium-perl/current/META.yml
    branches/upstream/libtitanium-perl/current/Makefile.PL
    branches/upstream/libtitanium-perl/current/README
    branches/upstream/libtitanium-perl/current/lib/Titanium.pm

Modified: branches/upstream/libtitanium-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtitanium-perl/current/Changes?rev=38782&op=diff
==============================================================================
--- branches/upstream/libtitanium-perl/current/Changes (original)
+++ branches/upstream/libtitanium-perl/current/Changes Fri Jun 26 21:50:13 2009
@@ -1,9 +1,14 @@
 Revision history for Titantium.
+
+1.02 June 22, 2009
+  (No code changes in this release)
+  * Fix "framework" typo (David Blank-Edelman)
+  * Fix typo in "setup()" example. (Justin Simoni).
 
 1.01 Dec 6, 2008
   * Update Build.PL to require CGI::Application::Plugin::ErrorPage 1.20, a bugfix release. 
   * Remove "titanium-starter" from the TODO list. (Jaldhar) 
-  * Add initial INSTALL file (RT#41276, David
+  * Add initial INSTALL file (RT#41276, David)
 
 1.00 Sep 4, 2008
   * Declaring Stable  

Modified: branches/upstream/libtitanium-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtitanium-perl/current/META.yml?rev=38782&op=diff
==============================================================================
--- branches/upstream/libtitanium-perl/current/META.yml (original)
+++ branches/upstream/libtitanium-perl/current/META.yml Fri Jun 26 21:50:13 2009
@@ -1,9 +1,9 @@
 ---
 name: Titanium
-version: 1.01
+version: 1.02
 author:
   - 'Mark Stosberg <mark at summersault.com>'
-abstract: A strong, lightweight web application famework
+abstract: A strong, lightweight web application framework
 license: perl
 requires:
   CGI::Application: 4
@@ -24,13 +24,13 @@
   CGI::Application::Standard::Config: 0
   Module::Starter::Plugin::CGIApp: 0.05
   Test::WWW::Mechanize::CGIApp: 0
-generated_by: Module::Build version 0.2808
+generated_by: Module::Build version 0.32
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.2.html
   version: 1.2
 provides:
   Titanium:
     file: lib/Titanium.pm
-    version: 1.01
+    version: 1.02
 resources:
-  license: http://dev.perl.org/licenses/
+  license: ~

Modified: branches/upstream/libtitanium-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtitanium-perl/current/Makefile.PL?rev=38782&op=diff
==============================================================================
--- branches/upstream/libtitanium-perl/current/Makefile.PL (original)
+++ branches/upstream/libtitanium-perl/current/Makefile.PL Fri Jun 26 21:50:13 2009
@@ -1,8 +1,7 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.03
+# Note: this file was auto-generated by Module::Build::Compat version 0.32
 use ExtUtils::MakeMaker;
 WriteMakefile
 (
-          'PL_FILES' => {},
           'INSTALLDIRS' => 'site',
           'NAME' => 'Titanium',
           'EXE_FILES' => [],

Modified: branches/upstream/libtitanium-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtitanium-perl/current/README?rev=38782&op=diff
==============================================================================
--- branches/upstream/libtitanium-perl/current/README (original)
+++ branches/upstream/libtitanium-perl/current/README Fri Jun 26 21:50:13 2009
@@ -1,5 +1,5 @@
 NAME
-    Titanium - A strong, lightweight web application famework
+    Titanium - A strong, lightweight web application framework
 
 SYNOPSIS
   Coding
@@ -14,7 +14,7 @@
             $c->run_modes([qw/
             form_display
             form_process
-            /);
+            /]);
       }
       sub form_display { 
             my $c = shift;
@@ -25,7 +25,7 @@
             return $t->output;
       }
       sub form_process {
-           my $ c= shift;
+           my $c = shift;
 
            # Validate the form against a profile. If it fails validation, re-display
            # the form for the user with their data pre-filled and the errors highlighted. 

Modified: branches/upstream/libtitanium-perl/current/lib/Titanium.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtitanium-perl/current/lib/Titanium.pm?rev=38782&op=diff
==============================================================================
--- branches/upstream/libtitanium-perl/current/lib/Titanium.pm (original)
+++ branches/upstream/libtitanium-perl/current/lib/Titanium.pm Fri Jun 26 21:50:13 2009
@@ -2,7 +2,7 @@
 use base 'CGI::Application';
 
 use vars '$VERSION';
-$VERSION = '1.01';
+$VERSION = '1.02';
 
 # Just load a few recommended plugins by default. 
 use CGI::Application::Plugin::Forward;
@@ -25,7 +25,7 @@
 
 =head1 NAME
 
-Titanium - A strong, lightweight web application famework
+Titanium - A strong, lightweight web application framework
 
 =head1 SYNOPSIS
 
@@ -42,7 +42,7 @@
 	$c->run_modes([qw/
         form_display
         form_process
-	/);
+	/]);
   }
   sub form_display { 
         my $c = shift;
@@ -53,7 +53,7 @@
         return $t->output;
   }
   sub form_process {
-       my $ c= shift;
+       my $c = shift;
 
        # Validate the form against a profile. If it fails validation, re-display
        # the form for the user with their data pre-filled and the errors highlighted. 




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