From 6b3c986a0a4634335b58ddf83a34032b5b783fce Mon Sep 17 00:00:00 2001 From: knut <> Date: Thu, 2 Feb 2006 18:10:17 +0000 Subject: added missing page level and class level docblocks --- framework/Data/TTarFileExtractor.php | 20 +++++++++++++++++++- framework/Web/THttpUtility.php | 18 ++++++++++++++++++ framework/Web/UI/TClientScriptManager.php | 18 ++++++++++++++++++ framework/Web/UI/TForm.php | 20 +++++++++++++++++++- framework/Web/UI/THtmlWriter.php | 18 ++++++++++++++++++ framework/Web/UI/TPage.php | 19 +++++++++++++++++++ framework/Web/UI/WebControls/TSafeHtml.php | 21 +++++++++++++++------ 7 files changed, 126 insertions(+), 8 deletions(-) diff --git a/framework/Data/TTarFileExtractor.php b/framework/Data/TTarFileExtractor.php index fc748c21..3a63ec7c 100644 --- a/framework/Data/TTarFileExtractor.php +++ b/framework/Data/TTarFileExtractor.php @@ -1,4 +1,15 @@ + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005 PradoSoft + * @license http://www.pradosoft.com/license/ + * @version $Revision: $ $Date: $ + * @package System.Data + */ + /* vim: set ts=4 sw=4: */ // +----------------------------------------------------------------------+ // | PHP Version 4 | @@ -18,7 +29,14 @@ // // $Id: Tar.php,v 1.29 2005/03/17 21:02:31 vblavet Exp $ - +/** + * TTarFileExtractor class + * + * @author Vincent Blavet + * @version $Revision: $ $Date: $ + * @package System.Data + * @since 3.0 + */ class TTarFileExtractor { /** diff --git a/framework/Web/THttpUtility.php b/framework/Web/THttpUtility.php index c3ef2b4c..6aadb65d 100644 --- a/framework/Web/THttpUtility.php +++ b/framework/Web/THttpUtility.php @@ -1,5 +1,23 @@ + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005 PradoSoft + * @license http://www.pradosoft.com/license/ + * @version $Revision: $ $Date: $ + * @package System.Web + */ +/** + * THttpUtility class + * + * @author Qiang Xue + * @version $Revision: $ $Date: $ + * @package System.Web + * @since 3.0 + */ class THttpUtility { private static $_entityTable=null; diff --git a/framework/Web/UI/TClientScriptManager.php b/framework/Web/UI/TClientScriptManager.php index 7b85dbab..0ff99aa2 100644 --- a/framework/Web/UI/TClientScriptManager.php +++ b/framework/Web/UI/TClientScriptManager.php @@ -1,4 +1,14 @@ + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005 PradoSoft + * @license http://www.pradosoft.com/license/ + * @version $Revision: $ $Date: $ + * @package System.Web.UI + */ /*class TPostBackOptions extends TComponent { @@ -72,6 +82,14 @@ */ Prado::using('System.Web.Javascripts.*'); +/** + * TClientScriptManager class + * + * @author Qiang Xue + * @version $Revision: $ $Date: $ + * @package System.Web.UI + * @since 3.0 + */ class TClientScriptManager extends TComponent { const SCRIPT_DIR='Web/Javascripts/js'; diff --git a/framework/Web/UI/TForm.php b/framework/Web/UI/TForm.php index 4cd7e5cc..839d6c52 100644 --- a/framework/Web/UI/TForm.php +++ b/framework/Web/UI/TForm.php @@ -1,5 +1,23 @@ + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005 PradoSoft + * @license http://www.pradosoft.com/license/ + * @version $Revision: $ $Date: $ + * @package System.Web.UI + */ + +/** + * TForm class + * + * @author Qiang Xue + * @version $Revision: $ $Date: $ + * @package System.Web.UI + * @since 3.0 + */ class TForm extends TControl { public function onInit($param) diff --git a/framework/Web/UI/THtmlWriter.php b/framework/Web/UI/THtmlWriter.php index abfc666c..dc867b77 100644 --- a/framework/Web/UI/THtmlWriter.php +++ b/framework/Web/UI/THtmlWriter.php @@ -1,9 +1,27 @@ + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005 PradoSoft + * @license http://www.pradosoft.com/license/ + * @version $Revision: $ $Date: $ + * @package System.Web.UI + */ // todo: test if an attribute is a url // keep nonclosing tag only // add more utility methods (e.g. render....) // implment encoding (for text and url) +/** + * THtmlWriter class + * + * @author Qiang Xue + * @version $Revision: $ $Date: $ + * @package System.Web.UI + * @since 3.0 + */ class THtmlWriter extends TComponent implements ITextWriter { const TAG_INLINE=0; diff --git a/framework/Web/UI/TPage.php b/framework/Web/UI/TPage.php index 4e23681a..5f583f0b 100644 --- a/framework/Web/UI/TPage.php +++ b/framework/Web/UI/TPage.php @@ -1,4 +1,14 @@ + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005 PradoSoft + * @license http://www.pradosoft.com/license/ + * @version $Revision: $ $Date: $ + * @package System.Web.UI + */ //Prado::using('System.Web.UI.*'); Prado::using('System.Web.UI.WebControls.*'); @@ -8,6 +18,15 @@ Prado::using('System.Web.UI.TForm'); Prado::using('System.Web.UI.TClientScriptManager'); //Prado::using('System.Web + +/** + * TPage class + * + * @author Qiang Xue + * @version $Revision: $ $Date: $ + * @package System.Web.UI + * @since 3.0 + */ class TPage extends TTemplateControl { const FIELD_POSTBACK_TARGET='PRADO_POSTBACK_TARGET'; diff --git a/framework/Web/UI/WebControls/TSafeHtml.php b/framework/Web/UI/WebControls/TSafeHtml.php index 83e72167..f605608a 100644 --- a/framework/Web/UI/WebControls/TSafeHtml.php +++ b/framework/Web/UI/WebControls/TSafeHtml.php @@ -1,13 +1,22 @@ + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005 PradoSoft + * @license http://www.pradosoft.com/license/ + * @version $Revision: $ $Date: $ + * @package System.Web.UI.WebControls + */ + +/** + * TSafeHtml class * - * @author Wei Zhuo - * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $ - * @package ${package} + * @author Wei Zhuo + * @version $Revision: $ $Date: $ + * @package System.Web.UI.WebControls + * @since 3.0 */ class TSafeHtml extends TControl { -- cgit v1.2.3