diff Lib/IMPL/Web/Application.pm @ 59:0f3e369553bd

Rewritten property implementation (probably become slower but more flexible) Configuration infrastructure in progress (in the aspect of the lazy activation) Initial concept for the code generator
author wizard
date Tue, 09 Mar 2010 02:50:45 +0300
parents a35b60b16a99
children b0c068da93ac
line wrap: on
line diff
--- a/Lib/IMPL/Web/Application.pm	Fri Mar 05 20:14:45 2010 +0300
+++ b/Lib/IMPL/Web/Application.pm	Tue Mar 09 02:50:45 2010 +0300
@@ -13,7 +13,7 @@
 BEGIN {
     public property handlerError => prop_all;
     public property factoryAction => prop_all;
-    public property handlersQuery => prop_all;
+    public property handlersQuery => prop_all | prop_list;
 }
 
 # custom factory
@@ -60,7 +60,7 @@
 =head1 SYNOPSIS
 
 require MyApp;
-MyApp->instance('app.config')->Run();
+MyApp->spawn('app.config')->Run();
 
 =head1 DESCRIPTION