Update of /cvsroot/phpwebapp/web_app/boxes/fileView
In directory sc8-pr-cvs1:/tmp/cvs-serv29261/boxes/fileView
Modified Files:
viewUnknown.php viewPHP.php viewImage.php fileView.php
Log Message:
* added some comments (that are handled by phpDocumentor)
for dividing the code into packages and subpackages
* replaced .gif images by .png images
Index: viewUnknown.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/boxes/fileView/viewUnknown.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** viewUnknown.php 7 Aug 2003 16:12:22 -0000 1.2
--- viewUnknown.php 11 Aug 2003 16:17:52 -0000 1.3
***************
*** 1,3 ****
--- 1,7 ----
<?php
+ /**
+ * @package boxes
+ * @subpackage fileView
+ */
class viewUnknown extends WebObject
{
Index: viewPHP.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/boxes/fileView/viewPHP.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** viewPHP.php 21 Feb 2003 08:15:50 -0000 1.1.1.1
--- viewPHP.php 11 Aug 2003 16:17:52 -0000 1.2
***************
*** 1,3 ****
--- 1,7 ----
<?php
+ /**
+ * @package boxes
+ * @subpackage fileView
+ */
class viewPHP extends WebObject
{
Index: viewImage.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/boxes/fileView/viewImage.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** viewImage.php 7 Aug 2003 16:12:22 -0000 1.2
--- viewImage.php 11 Aug 2003 16:17:52 -0000 1.3
***************
*** 1,3 ****
--- 1,7 ----
<?php
+ /**
+ * @package boxes
+ * @subpackage fileView
+ */
class viewImage extends WebObject
{
Index: fileView.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/boxes/fileView/fileView.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** fileView.php 16 Jul 2003 09:27:59 -0000 1.2
--- fileView.php 11 Aug 2003 16:17:52 -0000 1.3
***************
*** 1,3 ****
--- 1,7 ----
<?php
+ /**
+ * @package boxes
+ * @subpackage fileView
+ */
class fileView extends WebObject
{
***************
*** 30,33 ****
--- 34,38 ----
case ".gif":
case ".jpg":
+ case ".png":
$file_type = "IMG";
break;
|