summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknut <>2006-02-02 18:10:17 +0000
committerknut <>2006-02-02 18:10:17 +0000
commit6b3c986a0a4634335b58ddf83a34032b5b783fce (patch)
treefffc7e9c8e6a266cf7d16c9db64ee2f57c0e776c
parente1ffc982a948fe3d4e46465dc11a633ee37dc03c (diff)
added missing page level and class level docblocks
-rw-r--r--framework/Data/TTarFileExtractor.php20
-rw-r--r--framework/Web/THttpUtility.php18
-rw-r--r--framework/Web/UI/TClientScriptManager.php18
-rw-r--r--framework/Web/UI/TForm.php20
-rw-r--r--framework/Web/UI/THtmlWriter.php18
-rw-r--r--framework/Web/UI/TPage.php19
-rw-r--r--framework/Web/UI/WebControls/TSafeHtml.php21
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 @@
<?php
+/**
+ * TTarFileExtractor class file
+ *
+ * @author Vincent Blavet <vincent@phpconcept.net>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 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 <vincent@phpconcept.net>
+ * @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 @@
<?php
+/**
+ * THttpUtility class file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 2005 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Revision: $ $Date: $
+ * @package System.Web
+ */
+/**
+ * THttpUtility class
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @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 @@
<?php
+/**
+ * TClientScriptManager class file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 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 <qiang.xue@gmail.com>
+ * @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 @@
<?php
-
+/**
+ * TForm class file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 2005 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI
+ */
+
+/**
+ * TForm class
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @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 @@
<?php
+/**
+ * THtmlWriter class file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 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 <qiang.xue@gmail.com>
+ * @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 @@
<?php
+/**
+ * TPage class file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 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 <qiang.xue@gmail.com>
+ * @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 @@
<?php
-
/**
- * ${classname}
+ * TSafeHtml class file
*
- * ${description}
+ * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 2005 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI.WebControls
+ */
+
+/**
+ * TSafeHtml class
*
- * @author Wei Zhuo<weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $
- * @package ${package}
+ * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI.WebControls
+ * @since 3.0
*/
class TSafeHtml extends TControl
{