summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorwei <>2006-09-09 03:08:55 +0000
committerwei <>2006-09-09 03:08:55 +0000
commite6105cdbe66420c4f30639ee1d652ce740054849 (patch)
treee046806b91241a1e6b18ae721f8358f0273e5924 /framework
parent90b3f22cba8ad85ef2eb38c158fa2da46d798cf8 (diff)
Add basic active control docs.
Diffstat (limited to 'framework')
-rw-r--r--framework/3rdParty/WsdlGen/Wsdl.php2
-rw-r--r--framework/3rdParty/WsdlGen/WsdlGenerator.php2
-rw-r--r--framework/3rdParty/WsdlGen/WsdlMessage.php2
-rw-r--r--framework/3rdParty/WsdlGen/WsdlOperation.php2
-rw-r--r--framework/Collections/TQueue.php6
-rw-r--r--framework/DataAccess/SQLMap/Configuration/TSqlMapConditionalTag.php2
-rw-r--r--framework/DataAccess/SQLMap/DataMapper/TSqlMapCache.php8
-rw-r--r--framework/DataAccess/SQLMap/DataMapper/TSqlMapPagedList.php2
-rw-r--r--framework/DataAccess/SQLMap/Statements/TCachingStatement.php2
-rw-r--r--framework/DataAccess/SQLMap/Statements/TMappedStatement.php6
-rw-r--r--framework/DataAccess/SQLMap/TMapper.php2
-rw-r--r--framework/DataAccess/SQLMap/TSqlMapClient.php2
-rw-r--r--framework/DataAccess/SQLMap/TSqlMapper.php2
-rw-r--r--framework/DataAccess/TActiveRecord.php2
-rw-r--r--framework/DataAccess/TAdodb.php6
-rw-r--r--framework/DataAccess/TDatabaseProvider.php8
-rw-r--r--framework/Security/TMembershipManager.php6
-rw-r--r--framework/Util/TDateTimeStamp.php4
-rw-r--r--framework/Web/Services/TFeedService.php2
-rw-r--r--framework/Web/THttpResponseAdapter.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveButton.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveCheckBox.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveCheckBoxList.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveControlAdapter.php14
-rw-r--r--framework/Web/UI/ActiveControls/TActiveCustomValidator.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveDropDownList.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveHyperLink.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveImage.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveImageButton.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveLabel.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveLinkButton.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveListBox.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveListControlAdapter.php6
-rw-r--r--framework/Web/UI/ActiveControls/TActivePageAdapter.php10
-rw-r--r--framework/Web/UI/ActiveControls/TActivePanel.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveRadioButton.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveRadioButtonList.php4
-rw-r--r--framework/Web/UI/ActiveControls/TActiveTextBox.php4
-rw-r--r--framework/Web/UI/ActiveControls/TAutoComplete.php6
-rw-r--r--framework/Web/UI/ActiveControls/TBaseActiveControl.php6
-rw-r--r--framework/Web/UI/ActiveControls/TCallback.php4
-rw-r--r--framework/Web/UI/ActiveControls/TCallbackClientScript.php4
-rw-r--r--framework/Web/UI/ActiveControls/TCallbackClientSide.php6
-rw-r--r--framework/Web/UI/ActiveControls/TCallbackOptions.php4
-rwxr-xr-xframework/Web/UI/ActiveControls/TCallbackResponseAdapter.php6
-rw-r--r--framework/Web/UI/ActiveControls/TEventTriggeredCallback.php6
-rw-r--r--framework/Web/UI/ActiveControls/TInPlaceTextBox.php4
-rw-r--r--framework/Web/UI/ActiveControls/TTimeTriggeredCallback.php4
-rw-r--r--framework/Web/UI/ActiveControls/TTriggeredCallback.php4
-rw-r--r--framework/Web/UI/ActiveControls/TValueTriggeredCallback.php4
-rw-r--r--framework/Web/UI/TSessionPageStatePersister.php4
-rw-r--r--framework/Web/UI/WebControls/TOutputCache.php8
-rw-r--r--framework/interfaces.php4
53 files changed, 120 insertions, 116 deletions
diff --git a/framework/3rdParty/WsdlGen/Wsdl.php b/framework/3rdParty/WsdlGen/Wsdl.php
index e960bbf5..dcccc5cd 100644
--- a/framework/3rdParty/WsdlGen/Wsdl.php
+++ b/framework/3rdParty/WsdlGen/Wsdl.php
@@ -11,7 +11,7 @@
* This file is part of the PRADO framework from {@link http://www.xisc.com}
*
* @author Marcus Nyeholt <tanus@users.sourceforge.net>
- * @version $Revision$
+ * @version $Id$
* @package System.Web.Services.SOAP
*/
diff --git a/framework/3rdParty/WsdlGen/WsdlGenerator.php b/framework/3rdParty/WsdlGen/WsdlGenerator.php
index 958f5da4..3d788769 100644
--- a/framework/3rdParty/WsdlGen/WsdlGenerator.php
+++ b/framework/3rdParty/WsdlGen/WsdlGenerator.php
@@ -11,7 +11,7 @@
* This file is part of the PRADO framework from {@link http://www.xisc.com}
*
* @author Marcus Nyeholt <tanus@users.sourceforge.net>
- * @version $Revision$
+ * @version $Id$
* @package System.Web.Services.SOAP
*/
diff --git a/framework/3rdParty/WsdlGen/WsdlMessage.php b/framework/3rdParty/WsdlGen/WsdlMessage.php
index 5cb9e13f..74165dae 100644
--- a/framework/3rdParty/WsdlGen/WsdlMessage.php
+++ b/framework/3rdParty/WsdlGen/WsdlMessage.php
@@ -11,7 +11,7 @@
* This file is part of the PRADO framework from {@link http://www.xisc.com}
*
* @author Marcus Nyeholt <tanus@users.sourceforge.net>
- * @version $Revision$
+ * @version $Id$
* @package System.Web.Services.SOAP
*/
diff --git a/framework/3rdParty/WsdlGen/WsdlOperation.php b/framework/3rdParty/WsdlGen/WsdlOperation.php
index 38cee0d8..ae561a16 100644
--- a/framework/3rdParty/WsdlGen/WsdlOperation.php
+++ b/framework/3rdParty/WsdlGen/WsdlOperation.php
@@ -11,7 +11,7 @@
* This file is part of the PRADO framework from {@link http://www.xisc.com}
*
* @author Marcus Nyeholt <tanus@users.sourceforge.net>
- * @version $Revision$
+ * @version $Id$
* @package System.Web.Services.SOAP
*/
diff --git a/framework/Collections/TQueue.php b/framework/Collections/TQueue.php
index e58d05c6..e70b0ded 100644
--- a/framework/Collections/TQueue.php
+++ b/framework/Collections/TQueue.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Collections
*/
@@ -27,7 +27,7 @@
* </code>
*
* @author Qiang Xue <qiang.xue@gmail.com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Collections
* @since 3.1
*/
@@ -171,7 +171,7 @@ class TQueue extends TComponent implements IteratorAggregate
* for traversing the items in the queue.
*
* @author Qiang Xue <qiang.xue@gmail.com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Collections
* @since 3.1
*/
diff --git a/framework/DataAccess/SQLMap/Configuration/TSqlMapConditionalTag.php b/framework/DataAccess/SQLMap/Configuration/TSqlMapConditionalTag.php
index 00f55e06..dfb98223 100644
--- a/framework/DataAccess/SQLMap/Configuration/TSqlMapConditionalTag.php
+++ b/framework/DataAccess/SQLMap/Configuration/TSqlMapConditionalTag.php
@@ -4,7 +4,7 @@
* TSqlMapConditionalTag class.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version : $ Wed Jun 7 07:57:22 EST 2006 $
+ * @version $Id$
* @package System.DataAccess.SQLMap.Configuration
* @since 3.0
*/
diff --git a/framework/DataAccess/SQLMap/DataMapper/TSqlMapCache.php b/framework/DataAccess/SQLMap/DataMapper/TSqlMapCache.php
index a62a7432..4d319869 100644
--- a/framework/DataAccess/SQLMap/DataMapper/TSqlMapCache.php
+++ b/framework/DataAccess/SQLMap/DataMapper/TSqlMapCache.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess.SQLMap
*/
@@ -29,7 +29,7 @@ interface ISqLMapCache
* a least-recently-used cache implementation.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess.SQLMap
* @since 3.0
*/
@@ -87,7 +87,7 @@ abstract class TSqlMapCache implements ISqlMapCache
* object that was first added when the cache is full.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess.SQLMap
* @since 3.0
*/
@@ -123,7 +123,7 @@ class TSqlMapFifoCache extends TSqlMapCache
* object that was accessed last when the cache is full.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess.SQLMap
* @since 3.0
*/
diff --git a/framework/DataAccess/SQLMap/DataMapper/TSqlMapPagedList.php b/framework/DataAccess/SQLMap/DataMapper/TSqlMapPagedList.php
index cded4b32..b436105c 100644
--- a/framework/DataAccess/SQLMap/DataMapper/TSqlMapPagedList.php
+++ b/framework/DataAccess/SQLMap/DataMapper/TSqlMapPagedList.php
@@ -4,7 +4,7 @@
* TSQLMapPagedList
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.WebControls
* @since 3.0
*/
diff --git a/framework/DataAccess/SQLMap/Statements/TCachingStatement.php b/framework/DataAccess/SQLMap/Statements/TCachingStatement.php
index 8e4e2a3d..085fa9e6 100644
--- a/framework/DataAccess/SQLMap/Statements/TCachingStatement.php
+++ b/framework/DataAccess/SQLMap/Statements/TCachingStatement.php
@@ -4,7 +4,7 @@
*
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.WebControls
* @since 3.0
*/
diff --git a/framework/DataAccess/SQLMap/Statements/TMappedStatement.php b/framework/DataAccess/SQLMap/Statements/TMappedStatement.php
index ef2a5273..aa715946 100644
--- a/framework/DataAccess/SQLMap/Statements/TMappedStatement.php
+++ b/framework/DataAccess/SQLMap/Statements/TMappedStatement.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess.SQLMap.Statements
*/
@@ -17,7 +17,7 @@
* This class is usualy instantiated during SQLMap configuration by TSqlDomBuilder.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess.SQLMap.Statements
* @since 3.0
*/
@@ -915,7 +915,7 @@ class TPostSelectBinding
* build using the {@link collect} method.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $27/07/2006: $
+ * @version $Id$
* @package System.DataAccess.SQLMap.Statements
* @since 3.1
*/
diff --git a/framework/DataAccess/SQLMap/TMapper.php b/framework/DataAccess/SQLMap/TMapper.php
index 4427c012..678306a6 100644
--- a/framework/DataAccess/SQLMap/TMapper.php
+++ b/framework/DataAccess/SQLMap/TMapper.php
@@ -16,7 +16,7 @@ require_once(dirname(__FILE__).'/TSqlMapClient.php');
* configure() call.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess.SQLMap
* @since 3.0
*/
diff --git a/framework/DataAccess/SQLMap/TSqlMapClient.php b/framework/DataAccess/SQLMap/TSqlMapClient.php
index 5f531f64..33b4131b 100644
--- a/framework/DataAccess/SQLMap/TSqlMapClient.php
+++ b/framework/DataAccess/SQLMap/TSqlMapClient.php
@@ -17,7 +17,7 @@ require_once(dirname(__FILE__).'/TSqlMapper.php');
* cacheConfiguration().
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess.SQLMap
* @since 3.0
*/
diff --git a/framework/DataAccess/SQLMap/TSqlMapper.php b/framework/DataAccess/SQLMap/TSqlMapper.php
index 2c760c1e..652b6e50 100644
--- a/framework/DataAccess/SQLMap/TSqlMapper.php
+++ b/framework/DataAccess/SQLMap/TSqlMapper.php
@@ -28,7 +28,7 @@ Prado::using('System.DataAccess.TAdodb');
* instances.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess.SQLMap
* @since 3.0
*/
diff --git a/framework/DataAccess/TActiveRecord.php b/framework/DataAccess/TActiveRecord.php
index 0c33fde3..e0a4f596 100644
--- a/framework/DataAccess/TActiveRecord.php
+++ b/framework/DataAccess/TActiveRecord.php
@@ -39,7 +39,7 @@ Prado::using('System.3rdParty.adodb.ADOdb_Active_Record');
*
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess
* @since 3.0
*/
diff --git a/framework/DataAccess/TAdodb.php b/framework/DataAccess/TAdodb.php
index a9b55e1e..078d2c1a 100644
--- a/framework/DataAccess/TAdodb.php
+++ b/framework/DataAccess/TAdodb.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess
*/
@@ -97,7 +97,7 @@ Prado::using('System.DataAccess.TDatabaseProvider');
* TAdodbConnection class.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess
* @since 3.0
*/
@@ -278,7 +278,7 @@ class TAdodb extends TDatabaseProvider
* </code>
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess
* @since 3.0
*/
diff --git a/framework/DataAccess/TDatabaseProvider.php b/framework/DataAccess/TDatabaseProvider.php
index 88c78505..aebadb5c 100644
--- a/framework/DataAccess/TDatabaseProvider.php
+++ b/framework/DataAccess/TDatabaseProvider.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess
*/
@@ -32,7 +32,7 @@
* be obtained from the protected method {@link buildConnectionString} method.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess
* @since 3.0
*/
@@ -228,7 +228,7 @@ abstract class TDatabaseProvider extends TModule
* and results are returned within the context of a connection.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess
* @since 3.0
*/
@@ -297,7 +297,7 @@ interface IDbConnection
* and provides an interface for executing SQL statements and transactions.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.DataAccess
* @since 3.0
*/
diff --git a/framework/Security/TMembershipManager.php b/framework/Security/TMembershipManager.php
index a3c1ae55..b5986ac5 100644
--- a/framework/Security/TMembershipManager.php
+++ b/framework/Security/TMembershipManager.php
@@ -1,5 +1,6 @@
<?php
+Prado::using('System.Security.TUser');
interface IMembershipUser
{
@@ -33,13 +34,14 @@ interface IMembershipUser
public function resetPassword($passwordAnswer=null);
}
+/*
interface IUserManager
{
-}
+}*/
-class TMembershipUser extends TUser implements IMembershipUser
+abstract class TMembershipUser extends TUser implements IMembershipUser
{
}
diff --git a/framework/Util/TDateTimeStamp.php b/framework/Util/TDateTimeStamp.php
index 6a9c9553..659b98aa 100644
--- a/framework/Util/TDateTimeStamp.php
+++ b/framework/Util/TDateTimeStamp.php
@@ -11,7 +11,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: 30/08/2006 $
+ * @version $Id$
* @package System.Util
*/
@@ -59,7 +59,7 @@ if (!defined('ADODB_ALLOW_NEGATIVE_TS')
* the 32-bit signed integer range.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ 30/08/2006 $
+ * @version $Id$
* @package System.Util
* @since 3.0.4
*/
diff --git a/framework/Web/Services/TFeedService.php b/framework/Web/Services/TFeedService.php
index 96f6cef4..e1f38f04 100644
--- a/framework/Web/Services/TFeedService.php
+++ b/framework/Web/Services/TFeedService.php
@@ -112,7 +112,7 @@ class TFeedService extends TService
* an XML string that represents the feed content.
*
* @author Qiang Xue <qiang.xue@gmail.com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Services
* @since 3.1
*/
diff --git a/framework/Web/THttpResponseAdapter.php b/framework/Web/THttpResponseAdapter.php
index 6931eda8..beb585d4 100644
--- a/framework/Web/THttpResponseAdapter.php
+++ b/framework/Web/THttpResponseAdapter.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web
*/
@@ -17,7 +17,7 @@
* without change the class hierachy.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version : $ Fri Jun 16 07:03:03 EST 2006 $
+ * @version $Id$
* @package System.Web
* @since 3.0
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveButton.php b/framework/Web/UI/ActiveControls/TActiveButton.php
index a96c1580..030361fb 100644
--- a/framework/Web/UI/ActiveControls/TActiveButton.php
+++ b/framework/Web/UI/ActiveControls/TActiveButton.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -29,7 +29,7 @@ Prado::using('System.Web.UI.ActiveControls.TActiveControlAdapter');
* will update the button's caption upon callback response completion.
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveCheckBox.php b/framework/Web/UI/ActiveControls/TActiveCheckBox.php
index 3752c820..d6de63e3 100644
--- a/framework/Web/UI/ActiveControls/TActiveCheckBox.php
+++ b/framework/Web/UI/ActiveControls/TActiveCheckBox.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -26,7 +26,7 @@ Prado::using('System.Web.UI.ActiveControls.TActiveControlAdapter');
* changed during a callback.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version : $ Tue Jun 20 01:29:35 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveCheckBoxList.php b/framework/Web/UI/ActiveControls/TActiveCheckBoxList.php
index 458a26f6..1cb2c442 100644
--- a/framework/Web/UI/ActiveControls/TActiveCheckBoxList.php
+++ b/framework/Web/UI/ActiveControls/TActiveCheckBoxList.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -28,7 +28,7 @@ Prado::using('System.Web.UI.ActiveControls.TActiveListControlAdapter');
* on the client side.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version : $ Sun Jun 25 01:50:27 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveControlAdapter.php b/framework/Web/UI/ActiveControls/TActiveControlAdapter.php
index 0ea10f4e..58b65486 100644
--- a/framework/Web/UI/ActiveControls/TActiveControlAdapter.php
+++ b/framework/Web/UI/ActiveControls/TActiveControlAdapter.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -29,7 +29,7 @@ Prado::using('System.Web.UI.ActiveControls.TBaseActiveControl');
* corresponding client-side properties.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Sun Jun 18 20:35:34 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
@@ -177,7 +177,7 @@ class TActiveControlAdapter extends TControlAdapter
* Tracking changes to the page state during callback.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Sun Jun 18 20:51:25 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
@@ -367,7 +367,7 @@ class TCallbackPageStateTracker
* Calculates the viewstate changes during the request.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Thu Jun 22 02:50:45 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
@@ -411,7 +411,7 @@ abstract class TViewStateDiff
* Calculate the changes to a scalar value.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Thu Jun 22 02:54:42 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
@@ -436,7 +436,7 @@ class TScalarDiff extends TViewStateDiff
* Calculates the changes to the Style properties.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Thu Jun 22 02:55:47 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
@@ -528,7 +528,7 @@ class TStyleDiff extends TViewStateDiff
* Calculate the changes to attributes collection.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Thu Jun 22 02:54:42 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveCustomValidator.php b/framework/Web/UI/ActiveControls/TActiveCustomValidator.php
index 2964eaed..7c4ab16b 100644
--- a/framework/Web/UI/ActiveControls/TActiveCustomValidator.php
+++ b/framework/Web/UI/ActiveControls/TActiveCustomValidator.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: 31/08/2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -26,7 +26,7 @@
* will be true when validation is made during a callback request.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ 31/08/2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveDropDownList.php b/framework/Web/UI/ActiveControls/TActiveDropDownList.php
index 302b0afa..32f309c2 100644
--- a/framework/Web/UI/ActiveControls/TActiveDropDownList.php
+++ b/framework/Web/UI/ActiveControls/TActiveDropDownList.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -30,7 +30,7 @@ Prado::using('System.Web.UI.ActiveControls.TActiveListControlAdapter');
* on the client side.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version : $ Sun Jun 25 19:55:19 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveHyperLink.php b/framework/Web/UI/ActiveControls/TActiveHyperLink.php
index 946625b5..44638759 100644
--- a/framework/Web/UI/ActiveControls/TActiveHyperLink.php
+++ b/framework/Web/UI/ActiveControls/TActiveHyperLink.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -21,7 +21,7 @@
* {@link setNavigateUrl NavigateUrl} and {@link setTarget Target}.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version : $ Mon Jun 26 00:08:24 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveImage.php b/framework/Web/UI/ActiveControls/TActiveImage.php
index 6d18d61d..031243b9 100644
--- a/framework/Web/UI/ActiveControls/TActiveImage.php
+++ b/framework/Web/UI/ActiveControls/TActiveImage.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.WebControls
*/
@@ -19,7 +19,7 @@
* a callback request.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version : $ Mon Jun 26 00:44:25 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveImageButton.php b/framework/Web/UI/ActiveControls/TActiveImageButton.php
index 5c599120..fe4cb385 100644
--- a/framework/Web/UI/ActiveControls/TActiveImageButton.php
+++ b/framework/Web/UI/ActiveControls/TActiveImageButton.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -21,7 +21,7 @@
* and it is raise <b>after</b> the {@link onClick OnClick} event.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version : $ Mon Jun 26 00:45:39 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveLabel.php b/framework/Web/UI/ActiveControls/TActiveLabel.php
index c4b38cb4..f008f02a 100644
--- a/framework/Web/UI/ActiveControls/TActiveLabel.php
+++ b/framework/Web/UI/ActiveControls/TActiveLabel.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -26,7 +26,7 @@ Prado::using('System.Web.UI.ActiveControls.TActiveControlAdapter');
* the client-side "for" attribute on the label.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveLinkButton.php b/framework/Web/UI/ActiveControls/TActiveLinkButton.php
index 28bba04b..cdb346f9 100644
--- a/framework/Web/UI/ActiveControls/TActiveLinkButton.php
+++ b/framework/Web/UI/ActiveControls/TActiveLinkButton.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -24,7 +24,7 @@
* will update the link text upon callback response completion.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version : $ Mon Jun 26 00:49:25 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveListBox.php b/framework/Web/UI/ActiveControls/TActiveListBox.php
index cb982be2..0620e734 100644
--- a/framework/Web/UI/ActiveControls/TActiveListBox.php
+++ b/framework/Web/UI/ActiveControls/TActiveListBox.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -14,7 +14,7 @@
* TActiveListBox class.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version : $ Mon Jun 26 00:50:16 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveListControlAdapter.php b/framework/Web/UI/ActiveControls/TActiveListControlAdapter.php
index 5280e419..9bdef077 100644
--- a/framework/Web/UI/ActiveControls/TActiveListControlAdapter.php
+++ b/framework/Web/UI/ActiveControls/TActiveListControlAdapter.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -23,7 +23,7 @@ Prado::using('System.Web.UI.WebControls.TListControl');
* during callback response.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Sun Jun 25 04:53:43 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
@@ -133,7 +133,7 @@ class TActiveListControlAdapter extends TActiveControlAdapter implements IListCo
* repopulate the client-side options.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Sun Jun 25 21:15:05 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActivePageAdapter.php b/framework/Web/UI/ActiveControls/TActivePageAdapter.php
index 5dce985a..c3ca8947 100644
--- a/framework/Web/UI/ActiveControls/TActivePageAdapter.php
+++ b/framework/Web/UI/ActiveControls/TActivePageAdapter.php
@@ -7,7 +7,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -22,7 +22,7 @@ Prado::using('System.Web.UI.ActiveControls.TCallbackResponseAdapter');
* Callback request handler.
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
@@ -256,7 +256,7 @@ class TActivePageAdapter extends TControlAdapter
* callback handler function) can be set using {@link setData Data} property.
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
@@ -322,7 +322,7 @@ class TCallbackEventParameter extends TEventParameter
* the error stack trace.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Sun Jun 18 19:11:47 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
@@ -382,7 +382,7 @@ class TCallbackErrorHandler extends TErrorHandler
* TInvalidCallbackException class.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Sun Jun 18 19:17:13 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActivePanel.php b/framework/Web/UI/ActiveControls/TActivePanel.php
index 45817541..44f570b3 100644
--- a/framework/Web/UI/ActiveControls/TActivePanel.php
+++ b/framework/Web/UI/ActiveControls/TActivePanel.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version : :
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -32,7 +32,7 @@ Prado::using('System.Web.UI.ActiveControls.TActiveControlAdapter');
* </code>
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Sun Jun 18 01:23:54 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveRadioButton.php b/framework/Web/UI/ActiveControls/TActiveRadioButton.php
index 93f89148..fe26165c 100644
--- a/framework/Web/UI/ActiveControls/TActiveRadioButton.php
+++ b/framework/Web/UI/ActiveControls/TActiveRadioButton.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -25,7 +25,7 @@
* and can not be changed using javascript.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Mon Jun 26 00:47:14 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveRadioButtonList.php b/framework/Web/UI/ActiveControls/TActiveRadioButtonList.php
index a54fa2d5..a3236e4d 100644
--- a/framework/Web/UI/ActiveControls/TActiveRadioButtonList.php
+++ b/framework/Web/UI/ActiveControls/TActiveRadioButtonList.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -23,7 +23,7 @@
* on the client side.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version : $ Mon Jun 26 00:48:08 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TActiveTextBox.php b/framework/Web/UI/ActiveControls/TActiveTextBox.php
index 20358a36..bee97dbb 100644
--- a/framework/Web/UI/ActiveControls/TActiveTextBox.php
+++ b/framework/Web/UI/ActiveControls/TActiveTextBox.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -25,7 +25,7 @@ Prado::using('System.Web.UI.ActiveControls.TActiveControlAdapter');
* event.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Sun Jun 18 20:05:16 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TAutoComplete.php b/framework/Web/UI/ActiveControls/TAutoComplete.php
index fe446f99..dadb723a 100644
--- a/framework/Web/UI/ActiveControls/TAutoComplete.php
+++ b/framework/Web/UI/ActiveControls/TAutoComplete.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -62,7 +62,7 @@ Prado::using('System.Web.UI.ActiveControls.TActiveTextBox');
* "informal" are ignored as text for suggestions.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Mon Jun 19 03:50:05 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
@@ -317,7 +317,7 @@ class TAutoComplete extends TActiveTextBox implements INamingContainer
* item template.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Mon Jun 19 03:50:05 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TBaseActiveControl.php b/framework/Web/UI/ActiveControls/TBaseActiveControl.php
index 0c54521d..000e896f 100644
--- a/framework/Web/UI/ActiveControls/TBaseActiveControl.php
+++ b/framework/Web/UI/ActiveControls/TBaseActiveControl.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -23,7 +23,7 @@ Prado::using('System.Web.UI.ActiveControls.TCallbackClientSide');
* response returns.
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
@@ -154,7 +154,7 @@ class TBaseActiveControl extends TComponent
* </code>
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Fri Jun 16 08:40:43 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TCallback.php b/framework/Web/UI/ActiveControls/TCallback.php
index 22d6a01e..b7444127 100644
--- a/framework/Web/UI/ActiveControls/TCallback.php
+++ b/framework/Web/UI/ActiveControls/TCallback.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -36,7 +36,7 @@ Prado::using('System.Web.UI.ActiveControls.TActiveControlAdapter');
* </code>
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TCallbackClientScript.php b/framework/Web/UI/ActiveControls/TCallbackClientScript.php
index 498aa681..11f3d1ff 100644
--- a/framework/Web/UI/ActiveControls/TCallbackClientScript.php
+++ b/framework/Web/UI/ActiveControls/TCallbackClientScript.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -28,7 +28,7 @@
* </code>
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TCallbackClientSide.php b/framework/Web/UI/ActiveControls/TCallbackClientSide.php
index 6d298a4f..ac5e32c8 100644
--- a/framework/Web/UI/ActiveControls/TCallbackClientSide.php
+++ b/framework/Web/UI/ActiveControls/TCallbackClientSide.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -42,7 +42,7 @@
* enabled.
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
@@ -117,7 +117,7 @@ class TCallbackClientSide extends TClientSideOptions
/**
* @param string javascript code for client-side onInteractive event.
*/
- public function setonInteractive($javascript)
+ public function setOnInteractive($javascript)
{
$this->setFunction('onInteractive', $javascript);
}
diff --git a/framework/Web/UI/ActiveControls/TCallbackOptions.php b/framework/Web/UI/ActiveControls/TCallbackOptions.php
index 9a603b6f..7a69a67c 100644
--- a/framework/Web/UI/ActiveControls/TCallbackOptions.php
+++ b/framework/Web/UI/ActiveControls/TCallbackOptions.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -17,7 +17,7 @@
* to be attached to other active controls.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Sun Jun 18 08:10:50 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TCallbackResponseAdapter.php b/framework/Web/UI/ActiveControls/TCallbackResponseAdapter.php
index d59b66ba..922e6cc6 100755
--- a/framework/Web/UI/ActiveControls/TCallbackResponseAdapter.php
+++ b/framework/Web/UI/ActiveControls/TCallbackResponseAdapter.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ Sun Jun 18 07:52:14 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -22,7 +22,7 @@
* property.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Sun Jun 18 07:52:14 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
@@ -89,7 +89,7 @@ class TCallbackResponseAdapter extends THttpResponseAdapter
* is generated using microtime.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ Sun Jun 18 08:02:21 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TEventTriggeredCallback.php b/framework/Web/UI/ActiveControls/TEventTriggeredCallback.php
index e9b7a1b2..e4b75558 100644
--- a/framework/Web/UI/ActiveControls/TEventTriggeredCallback.php
+++ b/framework/Web/UI/ActiveControls/TEventTriggeredCallback.php
@@ -6,10 +6,12 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: 27/08/2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
+Prado::using('System.Web.UI.ActiveControls.TTriggeredCallback');
+
/**
* TEventTriggeredCallback Class
*
@@ -20,7 +22,7 @@
* {@link setPreventDefaultAction PreventDefaultAction} is set to true.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ 27/08/2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TInPlaceTextBox.php b/framework/Web/UI/ActiveControls/TInPlaceTextBox.php
index 5763fd5b..5bfd9456 100644
--- a/framework/Web/UI/ActiveControls/TInPlaceTextBox.php
+++ b/framework/Web/UI/ActiveControls/TInPlaceTextBox.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: 30/08/2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -35,7 +35,7 @@
* the textbox will be hidden and the label is then shown.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ 30/08/2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TTimeTriggeredCallback.php b/framework/Web/UI/ActiveControls/TTimeTriggeredCallback.php
index 52106f1e..ea0c942c 100644
--- a/framework/Web/UI/ActiveControls/TTimeTriggeredCallback.php
+++ b/framework/Web/UI/ActiveControls/TTimeTriggeredCallback.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ : $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -27,7 +27,7 @@ Prado::using('System.Web.UI.ActiveControls.TCallback');
* 'Exponential', 'Linear', 'Quadratic' or 'Cubic'.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version : $ Mon Jun 19 21:29:42 EST 2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TTriggeredCallback.php b/framework/Web/UI/ActiveControls/TTriggeredCallback.php
index b75d5fa9..adf6377a 100644
--- a/framework/Web/UI/ActiveControls/TTriggeredCallback.php
+++ b/framework/Web/UI/ActiveControls/TTriggeredCallback.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: 27/08/2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -17,7 +17,7 @@
* property sets the control ID to observe the trigger.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ 27/08/2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/ActiveControls/TValueTriggeredCallback.php b/framework/Web/UI/ActiveControls/TValueTriggeredCallback.php
index ae9263ab..3ec830b8 100644
--- a/framework/Web/UI/ActiveControls/TValueTriggeredCallback.php
+++ b/framework/Web/UI/ActiveControls/TValueTriggeredCallback.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: 27/08/2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
*/
@@ -25,7 +25,7 @@
* observe, the polling interval is reset to the original value.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ 27/08/2006 $
+ * @version $Id$
* @package System.Web.UI.ActiveControls
* @since 3.1
*/
diff --git a/framework/Web/UI/TSessionPageStatePersister.php b/framework/Web/UI/TSessionPageStatePersister.php
index b003c4bd..964ad366 100644
--- a/framework/Web/UI/TSessionPageStatePersister.php
+++ b/framework/Web/UI/TSessionPageStatePersister.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2005 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI
*/
@@ -39,7 +39,7 @@
* </code>
*
* @author Qiang Xue <qiang.xue@gmail.com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI
* @since 3.1
*/
diff --git a/framework/Web/UI/WebControls/TOutputCache.php b/framework/Web/UI/WebControls/TOutputCache.php
index ff07a6db..5e97a5d9 100644
--- a/framework/Web/UI/WebControls/TOutputCache.php
+++ b/framework/Web/UI/WebControls/TOutputCache.php
@@ -6,7 +6,7 @@
* @link http://www.pradosoft.com/
* @copyright Copyright &copy; 2006 PradoSoft
* @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.WebControls
*/
@@ -63,7 +63,7 @@
* to determine whether the content is cached or not.
*
* @author Qiang Xue <qiang.xue@gmail.com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.WebControls
* @since 3.1
*/
@@ -465,7 +465,7 @@ class TOutputCache extends TControl implements INamingContainer
* <b>OnCheckDependency</b> event of {@link TOutputCache} control.
*
* @author Qiang Xue <qiang.xue@gmail.com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.WebControls
* @since 3.0
*/
@@ -501,7 +501,7 @@ class TOutputCacheCheckDependencyEventParameter extends TEventParameter
* <b>OnCalculateKey</b> event of {@link TOutputCache} control.
*
* @author Qiang Xue <qiang.xue@gmail.com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System.Web.UI.WebControls
* @since 3.0
*/
diff --git a/framework/interfaces.php b/framework/interfaces.php
index ee31cfaf..e5da7bcd 100644
--- a/framework/interfaces.php
+++ b/framework/interfaces.php
@@ -286,7 +286,7 @@ interface IBindable
* Active controls must implement IActiveControl interface.
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System
* @since 3.0
*/
@@ -305,7 +305,7 @@ interface IActiveControl
* interface.
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
- * @version $Revision: $ $Date: $
+ * @version $Id$
* @package System
* @since 3.0
*/