cvsuser 05/08/09 12:29:17
Modified: App-Widget TODO CHANGES Makefile.PL
Log:
freeze for 0.95
Revision Changes Path
1.2 +4 -1 p5ee/App-Widget/TODO
Index: TODO
===================================================================
RCS file: /cvs/public/p5ee/App-Widget/TODO,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TODO 12 Oct 2002 03:13:07 -0000 1.1
+++ TODO 9 Aug 2005 19:29:16 -0000 1.2
@@ -2,3 +2,6 @@
## File: $Id$
######################################################################
+To get to Version 1.0
+ o go over the documentation which has been completely neglected
+
1.2 +7 -0 p5ee/App-Widget/CHANGES
Index: CHANGES
===================================================================
RCS file: /cvs/public/p5ee/App-Widget/CHANGES,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- CHANGES 12 Oct 2002 03:13:07 -0000 1.1
+++ CHANGES 9 Aug 2005 19:29:16 -0000 1.2
@@ -2,3 +2,10 @@
# CHANGE LOG
#########################################
+VERSION 0.95
+ x Widget containership is defined in the widget name by dashes ("-")
instead of dots (".") (better for CSS)
+ x Added better support for JavaScript and CSS (style sheets)
+
+VERSION 0.93
+ x Initial release (first one I started keeping this change log, anyway)
+
1.5 +2 -7 p5ee/App-Widget/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /cvs/public/p5ee/App-Widget/Makefile.PL,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- Makefile.PL 2 Sep 2004 21:05:00 -0000 1.4
+++ Makefile.PL 9 Aug 2005 19:29:16 -0000 1.5
@@ -20,21 +20,16 @@
%opts = (
'NAME' => 'App-Widget',
'DISTNAME' => 'App-Widget',
- 'VERSION' => '0.90',
+ 'VERSION' => '0.95',
'EXE_FILES' => [ @programs ],
'PREREQ_PM' => { # I haven't yet determined what the minimum versions
should be
- #'Aspect' => 0, # used for
debugging
- #'Class::MethodMaker' => 0, # [prereq for
Aspect] auto-generate methods
'Compress::Zlib' => 0, # for compressed
serialization and browser responses
'Data::Dumper' => 0, # used for debugging
'Date::Parse' => 0, # date support
'Date::Format' => 0, # date support
- #'Error' => 0, # allows try/catch
syntax for exceptions (deprecated)
'Exception::Class' => 0, # allows exception
hierarchies
'Class::Data::Inheritable' => 0, # [prereq for
Exception::Class]
'Devel::StackTrace' => 0, # [prereq for
Exception::Class]
- #'Fatal' => 0, # causes perl
functions to throw exceptions
- #'Hook::LexWrap' => 0, # [prereq for
Aspect] support PRE/POST processing for subs
'MIME::Base64' => "2.1", # used for
turning binary (serialized?) data into text (Sessions)
'Storable' => 0, # used for
serialization everywhere
},