Update of /cvsroot/phpwebapp/web_app/tools/fileBrowser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25443/tools/fileBrowser
Modified Files:
fileBrowser.php
Log Message:
automatic code documentation generation
Index: fileBrowser.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/tools/fileBrowser/fileBrowser.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** fileBrowser.php 22 Jul 2004 16:25:36 -0000 1.3
--- fileBrowser.php 2 Nov 2005 15:17:54 -0000 1.4
***************
*** 20,23 ****
--- 20,36 ----
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+
+ /**
+ * The 'fileBrowser' tool of WebApp is a WebBox which is used to
+ * preview the templates and WebBox-es of a WebApp application.
+ * It allows the users to browse the folders of the application
+ * and to display the files. The files are displayed according
+ * to their types, e.g. a php file is displayed as code, an image
+ * file is displayed as an image, an HTML file can be displayed
+ * both as HTML code and as rendered HTML, etc.
+ *
+ * @package tools
+ * @subpackage fileBrowser
+ */
class fileBrowser extends WebObject
{
|