diff options
77 files changed, 496 insertions, 148 deletions
| diff --git a/.gitattributes b/.gitattributes index c8c0bdb7..cb22cb99 100644 --- a/.gitattributes +++ b/.gitattributes @@ -761,6 +761,11 @@ demos/quickstart/protected/index/ZendSearch.php -text  demos/quickstart/protected/index/quickstart/_0.cfs -text  demos/quickstart/protected/index/quickstart/deletable -text  demos/quickstart/protected/index/quickstart/segments -text +demos/quickstart/protected/pages/ActiveControls/Home.page -text +demos/quickstart/protected/pages/ActiveControls/TActiveButtonClass.png -text +demos/quickstart/protected/pages/ActiveControls/TActiveButtonClass.vsd -text +demos/quickstart/protected/pages/ActiveControls/postback-callback.png -text +demos/quickstart/protected/pages/ActiveControls/postback-callback.vsd -text  demos/quickstart/protected/pages/Advanced/Assets.page -text  demos/quickstart/protected/pages/Advanced/Auth.page -text  demos/quickstart/protected/pages/Advanced/Collections.page -text diff --git a/buildscripts/classtree/build.php b/buildscripts/classtree/build.php index 351a0d28..9708d4e7 100644 --- a/buildscripts/classtree/build.php +++ b/buildscripts/classtree/build.php @@ -14,6 +14,7 @@ $exclusions=array(  	'.svn',
  	'/I18N/core',
  	'/3rdParty',
 +	'/DataAccess/SQLMap'
  	);
  $a=new ClassTreeBuilder($frameworkPath,$exclusions);
  $a->buildTree();
 diff --git a/demos/quickstart/protected/controls/TopicList.tpl b/demos/quickstart/protected/controls/TopicList.tpl index 1302338d..6a335442 100644 --- a/demos/quickstart/protected/controls/TopicList.tpl +++ b/demos/quickstart/protected/controls/TopicList.tpl @@ -44,7 +44,7 @@      <li><a href="?page=Controls.Validation">Validation Controls</a></li>
      <li><a href="?page=Controls.List">List Controls</a></li>
      <li><a href="?page=Controls.Data">Data Controls</a></li>
 -    <li><a href="?page=Construction">Active Controls</a></li>
 +    <li><a href="?page=ActiveControls.Home">Active Controls (AJAX)</a></li>
      <li><a href="?page=Controls.NewControl">Writing New Controls</a></li>
  </ul>
  </div>
 diff --git a/demos/quickstart/protected/pages/ActiveControls/Home.page b/demos/quickstart/protected/pages/ActiveControls/Home.page new file mode 100644 index 00000000..e3f13640 --- /dev/null +++ b/demos/quickstart/protected/pages/ActiveControls/Home.page @@ -0,0 +1,338 @@ +<com:TContent ID="body" >
 +<h1>ActiveControls (AJAX)</h1>
 +<p>Active Controls allows the browser to communicate with server
 +without refreshing the current page.
 +
 +<h2>Standard Active Controls</h2>
 +<ul>
 +  <li>
 +  <a href="?page=ActiveControls.ActiveButton">TActiveButton</a>
 +  represents a click button on a Web page. It can be used to trigger a callback request.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.ActiveCheckBox">TActiveCheckBox</a>
 +  represents a checkbox on a Web page. It can be used to collect two-state user input
 +  and can trigger a callback request.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.ActiveCustomValidator">TActiveCustomValidator</a>
 +  validates a particular control using a callback request.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.ActiveHyperLink">TActiveHyperLink</a>
 +  represents a hyperlink on a Web page.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.ActiveImage">TActiveImage</a>
 +  represents an image on a Web page.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.ActiveImageButton">TActiveImageButton</a>
 +  represents a click button that has an image as the background.
 +  It is can be used to trigger a callback request.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.ActiveLabel">TActiveLabel</a>
 +	represents a label on a Web page.
 +	The label can be customized via various CSS attributes.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.ActiveLinkButton">TActiveLinkButton</a>
 +	represents a hyperlink that can perform a callback request.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.ActivePanel">TActivePanel</a>
 +  represents a container for other controls on a Web page. In HTML,
 +  it is displayed as a <div> element. The panel's contents
 +  can be replaced during a callback request.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.ActiveRadioButton">TActiveRadioButton</a>
 +  represents a radiobutton on a Web page.
 +  It is mainly used in a group from which users make a choice. It can
 +  be used to perform a callback request.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.ActiveTextBox">TActiveTextBox</a>
 +	represents a text input field on a Web page.
 +	It can collect single-line, multi-line or password text input from users.
 +	It can be used to perform a callback request.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.CallbackOptions">TCallbackOptions</a>
 +  	callback options such as <tt>OnLoading</tt/> client-side event handlers.
 +  </li>
 +
 +</ul>
 +
 +<h2>Active List Controls</h2>
 +<ul>
 +  <li>
 +  <a href="?page=ActiveControls.ActiveCheckBoxList">TActiveCheckBoxList</a>
 +  displays a list of checkboxes on a Web page and each checkbox
 +  	can trigger a callback request.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.ActiveDropDownList">TActiveDropDownList</a>
 +  displays a dropdown list box that allows users to select a
 +  single option from a few prespecified ones. It can be used
 +  to perform a callback request.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.ActiveListBox">TActiveListBox</a>
 +  displays a list box that allows single or multiple selection. It can be used
 +  to perform a callback request.
 +  </li>
 +
 +  <li>
 +  <a href="?page=ActiveControls.ActiveRadioButtonList">TActiveRadioButtonList</a>
 +  is similar to TActiveCheckBoxList in every aspect except that each
 +  TActiveRadioButtonList displays a group of radiobuttons. Each radio button
 +  can perform a callback request.
 +  </li>
 +</ul>
 +
 +<h2>Extended Active Controls</h2>
 +
 +
 +<ul>
 +	<li>
 +	<a href="?page=ActiveControls.AutoComplete">TAutoComplete</a>
 +	extends TActiveTextBox to offer text completion suggestions.
 +	</li>
 +
 +	<li>
 +	<a href="?page=ActiveControls.Callback">TCallback</a>
 +	a generic control that can perform callback requests.
 +	</li>
 +
 +	<li>
 +	<a href="?page=ActiveControls.EventTriggeredCallback">TEventTriggeredCallback</a>
 +	triggers a callback request based on HTML DOM events.
 +	</li>
 +
 +	<li>
 +	<a href="?page=ActiveControls.InPlaceTextBox">TInPlaceTextBox</a>
 +	represents a label that can be edited by clicked.
 +	</li>
 +
 +	<li>
 +	<a href="?page=ActiveControls.TimeTriggeredCallback">TTimeTriggeredCallback</a>
 +	triggers a callback request based on time elapsed.
 +	</li>
 +
 +	<li>
 +	<a href="?page=ActiveControls.ValueTriggeredCallback">TValueTriggeredCallback</a>
 +	monitors (using a timer) an attribute of an HTML element and triggers a callback request
 +	when the attribute value changes.
 +	</li>
 +
 +</ul>
 +
 +<h2>Active Control Abilities</h2>
 +
 +<!-- tabular: align=|l|l|l|, width=(0.55 0.15 0.15 0.15) -->
 +<table class="tabular">
 +	<tr>
 +		<th>Control Name</th>
 +		<th>Can Update</th>
 +		<th>Triggers Callback</th>
 +		<th>Can Degrade</th>
 +  </tr>
 +  <tr><td>
 +  		<a href="?page=ActiveControls.ActiveButton">TActiveButton</a>
 +  	</td>
 +  	<td>Yes</td><td>Yes</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +  	<a href="?page=ActiveControls.ActiveCheckBox">TActiveCheckBox</a>
 +  	</td>
 +  	<td>Yes</td><td>Yes</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +  	<a href="?page=ActiveControls.ActiveCustomValidator">TActiveCustomValidator</a>
 +  	</td>
 +  	<td>No</td><td>Yes</td><td>No</td>
 +  </tr>
 +
 +  <tr><td>
 +  	<a href="?page=ActiveControls.ActiveHyperLink">TActiveHyperLink</a>
 +  	</td>
 +  	<td>Yes</td><td>No</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +  	<a href="?page=ActiveControls.ActiveImage">TActiveImage</a>
 +  </td>
 +  <td>Yes</td><td>No</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +  	<a href="?page=ActiveControls.ActiveImageButton">TActiveImageButton</a>
 +	</td>
 +	<td>Yes</td><td>Yes</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +  <a href="?page=ActiveControls.ActiveLabel">TActiveLabel</a>
 +	</td>
 +	<td>Yes</td><td>No</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +  <a href="?page=ActiveControls.ActiveLinkButton">TActiveLinkButton</a>
 +	</td>
 +	<td>Yes</td><td>Yes</td><td>No</td>
 +  </tr>
 +
 +  <tr><td>
 +  <a href="?page=ActiveControls.ActivePanel">TActivePanel</a>
 +  </td>
 +  <td>Yes</td><td>No</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +  <a href="?page=ActiveControls.ActiveRadioButton">TActiveRadioButton</a>
 +  </td>
 +  <td>Yes</td><td>Yes</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +  <a href="?page=ActiveControls.ActiveTextBox">TActiveTextBox</a>
 +	</td>
 +	<td>Yes</td><td>Yes</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +  <a href="?page=ActiveControls.CallbackOptions">TCallbackOptions</a>
 +	</td>
 +	<td>No</td><td>No</td><td>N/A</td>
 +  </tr>
 +
 +
 +  <tr><td>
 +  <a href="?page=ActiveControls.ActiveCheckBoxList">TActiveCheckBoxList</a>
 +  </td>
 +  <td>Yes</td><td>Yes</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +  <a href="?page=ActiveControls.ActiveDropDownList">TActiveDropDownList</a>
 +  </td>
 +  <td>Yes</td><td>Yes</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +  <a href="?page=ActiveControls.ActiveListBox">TActiveListBox</a>
 +  </td>
 +  <td>Yes</td><td>Yes</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +  <a href="?page=ActiveControls.ActiveRadioButtonList">TActiveRadioButtonList</a>
 +  </td>
 +  <td>Yes</td><td>Yes</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +	<a href="?page=ActiveControls.AutoComplete">TAutoComplete</a>
 +  </td>
 +  <td>Yes</td><td>Yes</td><td>Yes</td>
 +  </tr>
 +
 +  <tr><td>
 +	<a href="?page=ActiveControls.Callback">TCallback</a>
 +  </td>
 +  <td>No</td><td>Yes</td><td>No</td>
 +  </tr>
 +
 +  <tr><td>
 +	<a href="?page=ActiveControls.EventTriggeredCallback">TEventTriggeredCallback</a>
 +  </td>
 +  <td>No</td><td>Yes</td><td>No</td>
 +  </tr>
 +
 + <tr><td>
 +	<a href="?page=ActiveControls.InPlaceTextBox">TInPlaceTextBox</a>
 +  </td>
 +  <td>Yes</td><td>Yes</td><td>No</td>
 +  </tr>
 +
 + <tr><td>
 +	<a href="?page=ActiveControls.TimeTriggeredCallback">TTimeTriggeredCallback</a>
 +	</td>
 +	<td>No</td><td>Yes</td><td>No</td>
 +  </tr>
 +
 +  <tr><td>
 +	<a href="?page=ActiveControls.ValueTriggeredCallback">TValueTriggeredCallback</a>
 +	</td>
 +	<td>No</td><td>Yes</td><td>No</td>
 +  </tr>
 +</table>
 +
 +<h2>Active Control Infrastructure Classes</h2>
 +<p>The following classes provide the basic infrastructure classes required to
 +realize the active controls.</p>
 +<ul>
 +	<li>
 +	<a href="?page=ActiveControls.ActiveControlAdapter">TActiveControlAdapter</a>
 +	tracks the viewstate values of the control and update differences of the client-side HTML
 +	element attributes.
 +	</li>
 +
 +	<li>
 +	<a href="?page=ActiveControls.ActiveListControlAdapter">TActiveListControlAdapter</a>
 +	allows the adapted list controls to change the selections on the client-side during
 +	a callback request.
 +	</li>
 +
 +	<li>
 +	<a href="?page=ActiveControls.ActivePageAdapter">TActivePageAdapter</a>
 +	process the page life-cycle for callback requests.
 +	</li>
 +
 +	<li>
 +	<a href="?page=ActiveControls.BaseActiveControl">TBaseActiveControl</a>
 +	common active control methods and options.
 +	</li>
 +
 +	<li>
 +	<a href="?page=ActiveControls.CallbackClientScript">TCallbackClientScript</a>
 +	methods to manipulate the client-side HTML elements, also includes methods
 +	to invoke javascript Effects on HTML elements.
 +	</li>
 +
 +	<li>
 +	<a href="?page=ActiveControls.CallbackClientSide">TCallbackClientSide</a>
 +	common client-side callback request options, and client-side event handlers.
 +	</li>
 +
 +	<li>
 +	<a href="?page=ActiveControls.CallbackResponseAdapter">TCallbackResponseAdapter</a>
 +	HTTP response for callback requests.
 +	</li>
 +
 +</ul>
 +<p>
 +<img src="<%~ postback-callback.png %>" class="figure" />
 +</p>
 +<p>
 +<img src="<%~ TActiveButtonClass.png %>" class="figure"/>
 +</p>
 +</com:TContent>
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/ActiveControls/TActiveButtonClass.png b/demos/quickstart/protected/pages/ActiveControls/TActiveButtonClass.pngBinary files differ new file mode 100644 index 00000000..632d9a45 --- /dev/null +++ b/demos/quickstart/protected/pages/ActiveControls/TActiveButtonClass.png diff --git a/demos/quickstart/protected/pages/ActiveControls/TActiveButtonClass.vsd b/demos/quickstart/protected/pages/ActiveControls/TActiveButtonClass.vsdBinary files differ new file mode 100644 index 00000000..b9127223 --- /dev/null +++ b/demos/quickstart/protected/pages/ActiveControls/TActiveButtonClass.vsd diff --git a/demos/quickstart/protected/pages/ActiveControls/postback-callback.png b/demos/quickstart/protected/pages/ActiveControls/postback-callback.pngBinary files differ new file mode 100644 index 00000000..031dcde3 --- /dev/null +++ b/demos/quickstart/protected/pages/ActiveControls/postback-callback.png diff --git a/demos/quickstart/protected/pages/ActiveControls/postback-callback.vsd b/demos/quickstart/protected/pages/ActiveControls/postback-callback.vsdBinary files differ new file mode 100644 index 00000000..7e054833 --- /dev/null +++ b/demos/quickstart/protected/pages/ActiveControls/postback-callback.vsd diff --git a/demos/time-tracker/protected/App_Code/Dao/BaseDao.php b/demos/time-tracker/protected/App_Code/Dao/BaseDao.php index 63b91def..cf27afc9 100644 --- a/demos/time-tracker/protected/App_Code/Dao/BaseDao.php +++ b/demos/time-tracker/protected/App_Code/Dao/BaseDao.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -14,7 +14,7 @@   * Base DAO class.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/App_Code/Dao/ProjectDao.php b/demos/time-tracker/protected/App_Code/Dao/ProjectDao.php index 0a0771e3..3d3ced1d 100644 --- a/demos/time-tracker/protected/App_Code/Dao/ProjectDao.php +++ b/demos/time-tracker/protected/App_Code/Dao/ProjectDao.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -14,7 +14,7 @@   * Project DAO class.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/App_Code/Dao/ProjectRecord.php b/demos/time-tracker/protected/App_Code/Dao/ProjectRecord.php index 9739d443..7812751b 100644 --- a/demos/time-tracker/protected/App_Code/Dao/ProjectRecord.php +++ b/demos/time-tracker/protected/App_Code/Dao/ProjectRecord.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -14,7 +14,7 @@   * Time Tracker Project class.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/App_Code/Dao/UserDao.php b/demos/time-tracker/protected/App_Code/Dao/UserDao.php index 95a85410..28719d81 100644 --- a/demos/time-tracker/protected/App_Code/Dao/UserDao.php +++ b/demos/time-tracker/protected/App_Code/Dao/UserDao.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -17,7 +17,7 @@   * this token can be used to perform persistent cookie login.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/App_Code/DaoManager.php b/demos/time-tracker/protected/App_Code/DaoManager.php index ac546054..5e3eef56 100644 --- a/demos/time-tracker/protected/App_Code/DaoManager.php +++ b/demos/time-tracker/protected/App_Code/DaoManager.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -16,7 +16,7 @@   * A Registry for Dao and an implementation of that type.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/App_Code/TimeTrackerException.php b/demos/time-tracker/protected/App_Code/TimeTrackerException.php index 64b11405..41632c01 100644 --- a/demos/time-tracker/protected/App_Code/TimeTrackerException.php +++ b/demos/time-tracker/protected/App_Code/TimeTrackerException.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -15,7 +15,7 @@   * "exceptions.txt"
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/App_Code/TimeTrackerUser.php b/demos/time-tracker/protected/App_Code/TimeTrackerUser.php index 99ac1209..b519fcde 100644 --- a/demos/time-tracker/protected/App_Code/TimeTrackerUser.php +++ b/demos/time-tracker/protected/App_Code/TimeTrackerUser.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -20,7 +20,7 @@ Prado::using('System.Security.TUserManager');   * User class for Time Tracker application.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/App_Code/TrackerAuthManager.php b/demos/time-tracker/protected/App_Code/TrackerAuthManager.php index 4ee01a37..989fcc54 100644 --- a/demos/time-tracker/protected/App_Code/TrackerAuthManager.php +++ b/demos/time-tracker/protected/App_Code/TrackerAuthManager.php @@ -4,7 +4,7 @@   * a string token saved in the cookie.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/App_Code/UserManager.php b/demos/time-tracker/protected/App_Code/UserManager.php index 1327dc3c..b4a4ad68 100644 --- a/demos/time-tracker/protected/App_Code/UserManager.php +++ b/demos/time-tracker/protected/App_Code/UserManager.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -14,7 +14,7 @@   * User manager module class for time tracker application.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/App_Data/TimeTrackerUserTypeHandler.php b/demos/time-tracker/protected/App_Data/TimeTrackerUserTypeHandler.php index 07c46acc..c2d5c4d6 100644 --- a/demos/time-tracker/protected/App_Data/TimeTrackerUserTypeHandler.php +++ b/demos/time-tracker/protected/App_Data/TimeTrackerUserTypeHandler.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -15,7 +15,7 @@   * The TimeTrackerUser requires an instance of IUserManager in constructor.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/pages/TimeTracker/Login.php b/demos/time-tracker/protected/pages/TimeTracker/Login.php index aa12e716..2bd02cc1 100644 --- a/demos/time-tracker/protected/pages/TimeTracker/Login.php +++ b/demos/time-tracker/protected/pages/TimeTracker/Login.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -17,7 +17,7 @@   * if successful.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/pages/TimeTracker/Logout.php b/demos/time-tracker/protected/pages/TimeTracker/Logout.php index 08fdfaf6..2e3d3ccc 100644 --- a/demos/time-tracker/protected/pages/TimeTracker/Logout.php +++ b/demos/time-tracker/protected/pages/TimeTracker/Logout.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -14,7 +14,7 @@   * Logout page class.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/pages/TimeTracker/SiteMap.php b/demos/time-tracker/protected/pages/TimeTracker/SiteMap.php index 1beed757..dde4b44d 100644 --- a/demos/time-tracker/protected/pages/TimeTracker/SiteMap.php +++ b/demos/time-tracker/protected/pages/TimeTracker/SiteMap.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $17/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -14,7 +14,7 @@   * SiteMap menu is rendered depending on user roles.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $17/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/pages/TimeTracker/UserCreate.php b/demos/time-tracker/protected/pages/TimeTracker/UserCreate.php index ed8ea4f1..8ee077ac 100644 --- a/demos/time-tracker/protected/pages/TimeTracker/UserCreate.php +++ b/demos/time-tracker/protected/pages/TimeTracker/UserCreate.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -17,7 +17,7 @@   * If logged in as admin, the user role can be change during creation.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $16/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 diff --git a/demos/time-tracker/protected/pages/TimeTracker/UserList.php b/demos/time-tracker/protected/pages/TimeTracker/UserList.php index 175a731a..22974d29 100644 --- a/demos/time-tracker/protected/pages/TimeTracker/UserList.php +++ b/demos/time-tracker/protected/pages/TimeTracker/UserList.php @@ -6,7 +6,7 @@   * @link http://www.pradosoft.com/
   * @copyright Copyright © 2005-2006 PradoSoft
   * @license http://www.pradosoft.com/license/
 - * @version $Revision: $  $18/07/2006: $
 + * @version $Id$
   * @package Demos
   */
 @@ -14,7 +14,7 @@   * List all users in a repeater.
   *
   * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
 - * @version $Revision: $  $18/07/2006: $
 + * @version $Id$
   * @package Demos
   * @since 3.1
   */
 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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 © 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
   */
 diff --git a/tests/test_tools/selenium/php/selenium.php b/tests/test_tools/selenium/php/selenium.php index 9ad4955b..683bcaa2 100644 --- a/tests/test_tools/selenium/php/selenium.php +++ b/tests/test_tools/selenium/php/selenium.php @@ -17,7 +17,7 @@   * {@link http://prado.sourceforge.net/}   *   * @author Wei Zhuo <weizhuo[at]gmail[dot]com> - * @version $Revision: 1.66 $  $Date: Wed Nov 02 10:13:17 EST 2005 10:13:17 $ + * @version $Id$   * @package Prado.tests   */ @@ -25,7 +25,7 @@   * Selenium automatic client runner,   *   * @author Wei Zhuo<weizhuo[at]gmail[dot]com> - * @version $Revision: 1.66 $  $Date: Fri Nov 04 13:20:12 EST 2005 13:20:12 $ + * @version $Id$   * @package Prado.tests   */ | 
