[limb-svn] r7029 - syncman/trunk/src
svn at limb-project.com
svn at limb-project.com
Mon May 19 13:55:50 MSD 2008
Author: hidrarg
Date: 2008-05-19 13:55:50 +0400 (Mon, 19 May 2008)
New Revision: 7029
URL: http://fisheye.limb-project.com/changelog/limb/?cs=7029
Modified:
syncman/trunk/src/SyncmanApplication.class.php
Log:
-- bag: dual challenge of filters
Modified: syncman/trunk/src/SyncmanApplication.class.php
===================================================================
--- syncman/trunk/src/SyncmanApplication.class.php 2008-05-18 12:28:45 UTC (rev 7028)
+++ syncman/trunk/src/SyncmanApplication.class.php 2008-05-19 09:55:50 UTC (rev 7029)
@@ -1,11 +1,12 @@
<?php
-lmb_require('limb/web_app/src/lmbWebApplication.class.php');
-class SyncmanApplication extends lmbWebApplication
+lmb_require('limb/filter_chain/src/lmbFilterChain.class.php');
+lmb_require('limb/web_app/src/controller/lmbController.class.php');
+lmb_require('limb/core/src/lmbHandle.class.php');
+class SyncmanApplication extends lmbFilterChain
{
-
- function __construct()
+ function process()
{
$this->registerFilter(new lmbHandle('limb/web_app/src/filter/lmbUncaughtExceptionHandlingFilter'));
$this->registerFilter(new lmbHandle('limb/web_app/src/filter/lmbSessionStartupFilter'));
@@ -14,8 +15,7 @@
$this->registerFilter(new lmbHandle('limb/web_app/src/filter/lmbResponseTransactionFilter'));
$this->registerFilter(new lmbHandle('limb/web_app/src/filter/lmbActionPerformingFilter'));
$this->registerFilter(new lmbHandle('limb/web_app/src/filter/lmbViewRenderingFilter'));
+
+ parent :: process();
}
-
}
-
-?>
More information about the limb-svn
mailing list