cvsuser     05/01/07 05:34:45

  Modified:    App-Context TODO CHANGES MANIFEST Makefile.PL
  Log:
  new release
  
  Revision  Changes    Path
  1.2       +3 -1      p5ee/App-Context/TODO
  
  Index: TODO
  ===================================================================
  RCS file: /cvs/public/p5ee/App-Context/TODO,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TODO      9 Sep 2002 01:34:10 -0000       1.1
  +++ TODO      7 Jan 2005 13:34:45 -0000       1.2
  @@ -1,4 +1,6 @@
   ######################################################################
  -## File: $Id: TODO,v 1.1 2002/09/09 01:34:10 spadkins Exp $
  +## File: $Id: TODO,v 1.2 2005/01/07 13:34:45 spadkins Exp $
   ######################################################################
   
  + o sort out my exception strategy (die vs. a class)
  +
  
  
  
  1.2       +4 -0      p5ee/App-Context/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /cvs/public/p5ee/App-Context/CHANGES,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- CHANGES   9 Sep 2002 01:34:10 -0000       1.1
  +++ CHANGES   7 Jan 2005 13:34:45 -0000       1.2
  @@ -2,3 +2,7 @@
   # CHANGE LOG
   #########################################
   
  +VERSION 0.93
  + x Initial release (first one I started keeping this change log, anyway)
  + x Implemented App::Reference->overlay() more completely
  +
  
  
  
  1.6       +29 -21    p5ee/App-Context/MANIFEST
  
  Index: MANIFEST
  ===================================================================
  RCS file: /cvs/public/p5ee/App-Context/MANIFEST,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- MANIFEST  2 Sep 2004 20:48:42 -0000       1.5
  +++ MANIFEST  7 Jan 2005 13:34:45 -0000       1.6
  @@ -1,46 +1,54 @@
  +CHANGES
  +MANIFEST
   Makefile.PL
   README
   TODO
  -CHANGES
  -MANIFEST
  +bin/app
  +bin/app-apache
  +bin/call
  +lib/Apache/Framework/App.pm
   lib/App.pm
  -lib/App/Exceptions.pm
  -lib/App/Reference.pm
  +lib/App/Authentication.pm
  +lib/App/Authorization.pm
  +lib/App/CallDispatcher.pm
  +lib/App/CallDispatcher/HTTPSimple.pm
   lib/App/Conf.pm
   lib/App/Conf.pod
   lib/App/Conf/File.pm
   lib/App/Conf/File.pod
   lib/App/Context.pm
  -lib/App/Context/HTTP.pm
   lib/App/Context/Cmd.pm
  -lib/App/Service.pm
  +lib/App/Context/HTTP.pm
  +lib/App/Exceptions.pm
  +lib/App/MessageDispatcher.pm
  +lib/App/Reference.pm
  +lib/App/Request.pm
  +lib/App/Request/CGI.pm
  +lib/App/Response.pm
   lib/App/Serializer.pm
  -lib/App/Serializer/Perl.pm
   lib/App/Serializer/Ini.pm
  +lib/App/Serializer/OneLine.pm
  +lib/App/Serializer/Perl.pm
   lib/App/Serializer/Properties.pm
  -lib/App/Serializer/Xml.pm
   lib/App/Serializer/Storable.pm
  -lib/App/Serializer/OneLine.pm
   lib/App/Serializer/TextArray.pm
  +lib/App/Serializer/Xml.pm
  +lib/App/Serializer/Yaml.pm
  +lib/App/Service.pm
   lib/App/Session.pm
  -lib/App/Session/HTMLHidden.pm
   lib/App/Session/Cookie.pm
  -lib/App/Request/CGI.pm
  -lib/App/Authentication.pm
  -lib/App/Authorization.pm
  -lib/App/MessageDispatcher.pm
  -lib/App/CallDispatcher.pm
  -lib/App/CallDispatcher/HTTPSimple.pm
  +lib/App/Session/HTMLHidden.pm
  +lib/App/SessionObject.pm
  +lib/App/UserAgent.pm
   lib/App/ValueDomain.pm
  -lib/Apache/Framework/App.pm
  -bin/app
  -bin/call
  -bin/app-apache
   t/App.t
  -t/Context.t
   t/Conf.t
  +t/Context.t
   t/Reference.t
   t/Serializer.t
  +t/Service.t
  +t/ServiceRemote.t
  +t/Session.t
   t/app.ini
   t/app.pl
   t/app.properties
  
  
  
  1.7       +2 -2      p5ee/App-Context/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /cvs/public/p5ee/App-Context/Makefile.PL,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Makefile.PL       2 Sep 2004 20:50:58 -0000       1.6
  +++ Makefile.PL       7 Jan 2005 13:34:45 -0000       1.7
  @@ -1,6 +1,6 @@
   
   ######################################################################
  -## File: $Id: Makefile.PL,v 1.6 2004/09/02 20:50:58 spadkins Exp $
  +## File: $Id: Makefile.PL,v 1.7 2005/01/07 13:34:45 spadkins Exp $
   ######################################################################
   
   use ExtUtils::MakeMaker;
  @@ -16,7 +16,7 @@
   %opts = (
       'NAME'        => 'App-Context',
       'DISTNAME'    => 'App-Context',
  -    'VERSION'     => '0.90',
  +    'VERSION'     => '0.93',
       'EXE_FILES'   => [ @programs ],
       'PREREQ_PM'   => {
           'App::Options'             => 0,     # for loading a startup 
configuration file
  
  
  

Reply via email to