[Catalyst-commits] r8857 - in Catalyst-View-TT-XHTML/1.000/trunk: .
lib/Catalyst/View/TT
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Sat Dec 13 11:11:06 GMT 2008
Author: t0m
Date: 2008-12-13 11:11:05 +0000 (Sat, 13 Dec 2008)
New Revision: 8857
Modified:
Catalyst-View-TT-XHTML/1.000/trunk/Changes
Catalyst-View-TT-XHTML/1.000/trunk/MANIFEST.SKIP
Catalyst-View-TT-XHTML/1.000/trunk/Makefile.PL
Catalyst-View-TT-XHTML/1.000/trunk/lib/Catalyst/View/TT/XHTML.pm
Log:
Checking in changes prior to tagging of version 1.002. Changelog diff is:
=== Changes
==================================================================
--- Changes (revision 9986)
+++ Changes (local)
@@ -1,7 +1,10 @@
+1.002 2008-12-13
+ - Add 'use Class::C3' so that the module works on the currently
+ released Catalyst version.
1.001 2008-12-12
- Add tests for other Accept header cases where the current code
- will get it wrong (David Dorward)
- - Fix all of these tests (t0m)
+ will get it wrong. (David Dorward)
+ - Fix all of these tests. (t0m)
1.000 2008-12-12
- First working version of the module extracted from the quick hack
I have in every Catalyst application I've ever written.
Modified: Catalyst-View-TT-XHTML/1.000/trunk/Changes
===================================================================
--- Catalyst-View-TT-XHTML/1.000/trunk/Changes 2008-12-13 10:52:43 UTC (rev 8856)
+++ Catalyst-View-TT-XHTML/1.000/trunk/Changes 2008-12-13 11:11:05 UTC (rev 8857)
@@ -1,7 +1,10 @@
+1.002 2008-12-13
+ - Add 'use Class::C3' so that the module works on the currently
+ released Catalyst version.
1.001 2008-12-12
- Add tests for other Accept header cases where the current code
- will get it wrong (David Dorward)
- - Fix all of these tests (t0m)
+ will get it wrong. (David Dorward)
+ - Fix all of these tests. (t0m)
1.000 2008-12-12
- First working version of the module extracted from the quick hack
I have in every Catalyst application I've ever written.
Modified: Catalyst-View-TT-XHTML/1.000/trunk/MANIFEST.SKIP
===================================================================
--- Catalyst-View-TT-XHTML/1.000/trunk/MANIFEST.SKIP 2008-12-13 10:52:43 UTC (rev 8856)
+++ Catalyst-View-TT-XHTML/1.000/trunk/MANIFEST.SKIP 2008-12-13 11:11:05 UTC (rev 8857)
@@ -6,4 +6,4 @@
cover_db
Makefile$
Makefile.old$
-.shipt
+.shipit
Modified: Catalyst-View-TT-XHTML/1.000/trunk/Makefile.PL
===================================================================
--- Catalyst-View-TT-XHTML/1.000/trunk/Makefile.PL 2008-12-13 10:52:43 UTC (rev 8856)
+++ Catalyst-View-TT-XHTML/1.000/trunk/Makefile.PL 2008-12-13 11:11:05 UTC (rev 8857)
@@ -6,6 +6,7 @@
requires 'Catalyst::Runtime';
requires 'Catalyst::View::TT';
requires 'HTTP::Negotiate';
+requires 'Class::C3';
build_requires 'Catalyst::Action::RenderView';
build_requires 'Test::WWW::Mechanize::Catalyst';
Modified: Catalyst-View-TT-XHTML/1.000/trunk/lib/Catalyst/View/TT/XHTML.pm
===================================================================
--- Catalyst-View-TT-XHTML/1.000/trunk/lib/Catalyst/View/TT/XHTML.pm 2008-12-13 10:52:43 UTC (rev 8856)
+++ Catalyst-View-TT-XHTML/1.000/trunk/lib/Catalyst/View/TT/XHTML.pm 2008-12-13 11:11:05 UTC (rev 8857)
@@ -2,9 +2,10 @@
use strict;
use warnings;
use HTTP::Negotiate qw(choose);
+use Class::C3;
use base qw/Catalyst::View::TT/;
-our $VERSION = '1.001';
+our $VERSION = '1.002';
our $variants = [
[qw| xhtml 1.000 application/xhtml+xml |],
More information about the Catalyst-commits
mailing list