phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] CVS: filemanager index.php,1.37,1.38 preferences.php,


From: Jason Wies <address@hidden>
Subject: [Phpgroupware-cvs] CVS: filemanager index.php,1.37,1.38 preferences.php,1.8,1.9 test.php,1.8,1.9
Date: Sat, 21 Sep 2002 01:26:46 -0400

Update of /cvsroot/phpgroupware/filemanager
In directory subversions:/tmp/cvs-serv17953

Modified Files:
        index.php preferences.php test.php 
Log Message:
Updates needed for phpwebhosting -> filemanager name change, some quotes fixes 
and some other misc. cleanup

Index: index.php
===================================================================
RCS file: /cvsroot/phpgroupware/filemanager/index.php,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -r1.37 -r1.38
*** index.php   2 Sep 2002 00:21:39 -0000       1.37
--- index.php   21 Sep 2002 05:26:43 -0000      1.38
***************
*** 4,10 ****
  # DEV NOTE:
  #
! # index.php is depreciated by the inc/class.xxphpwebhosting.inc.php files.
  # index.php is still used in the 0.9.14 release, but all future changes 
should be
! # made to the inc/class.xxphpwebhosting.inc.php files (3-tiered).  This 
includes using templates.
  ###
  
--- 4,10 ----
  # DEV NOTE:
  #
! # index.php is depreciated by the inc/class.xxfilemanager.inc.php files.
  # index.php is still used in the 0.9.14 release, but all future changes 
should be
! # made to the inc/class.xxfilemanager.inc.php files (3-tiered).  This 
includes using templates.
  ###
  
***************
*** 86,90 ****
  $GLOBALS['phpgw_info']['flags'] = array
  (
!       'currentapp'    => 'phpwebhosting',
        'noheader'      => $noheader,
        'nofooter'      => $nofooter,
--- 86,90 ----
  $GLOBALS['phpgw_info']['flags'] = array
  (
!       'currentapp'    => 'filemanager',
        'noheader'      => $noheader,
        'nofooter'      => $nofooter,
***************
*** 166,170 ****
  if ($phpwh_debug)
  {
!       echo "<b>PHPWebHosting debug:</b><br>
                path: $path<br>
                disppath: $disppath<br>
--- 166,170 ----
  if ($phpwh_debug)
  {
!       echo "<b>Filemanager debug:</b><br>
                path: $path<br>
                disppath: $disppath<br>

Index: preferences.php
===================================================================
RCS file: /cvsroot/phpgroupware/filemanager/preferences.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** preferences.php     18 Jun 2002 06:33:44 -0000      1.8
--- preferences.php     21 Sep 2002 05:26:43 -0000      1.9
***************
*** 1,5 ****
  <?php
    /**************************************************************************\
!   * phpGroupWare - PHPWebHosting                                             *
    * http://www.phpgroupware.org                                              *
    * --------------------------------------------                             *
--- 1,5 ----
  <?php
    /**************************************************************************\
!   * phpGroupWare - Filemanager                                               *
    * http://www.phpgroupware.org                                              *
    * --------------------------------------------                             *
***************
*** 14,24 ****
        $phpgw_info["flags"] = array
        (
!               "currentapp" => "phpwebhosting",
!               "enable_nextmatchs_class" => True,
!               "noheader" => True,
!               "nonavbar" => True
        );
  
!       include("../header.inc.php");
  
        /*
--- 14,24 ----
        $phpgw_info["flags"] = array
        (
!               'currentapp' => 'filemanger',
!               'enable_nextmatchs_class' => True,
!               'noheader' => True,
!               'nonavbar' => True
        );
  
!       include('../header.inc.php');
  
        /*
***************
*** 78,82 ****
        echo parse_navbar ();
  
!       $p = CreateObject ('phpgwapi.Template', $phpgw->common->get_tpl_dir 
('phpwebhosting'));
        $templates = array (
                'pref'                  => 'pref.tpl',
--- 78,82 ----
        echo parse_navbar ();
  
!       $p = CreateObject ('phpgwapi.Template', $phpgw->common->get_tpl_dir 
('filemanager'));
        $templates = array (
                'pref'                  => 'pref.tpl',
***************
*** 87,91 ****
  
        $var = array (
!               'title'                 =>      lang ('PHPWebHosting 
preferences'),
                'action_url'    =>      $phpgw->link ('/' . 
$phpgw_info['flags']['currentapp'] . '/preferences.php'),
                'bg_color'              =>      $phpgw_info['theme']['th_bg'],
--- 87,91 ----
  
        $var = array (
!               'title'                 =>      lang ('Filemanager 
preferences'),
                'action_url'    =>      $phpgw->link ('/' . 
$phpgw_info['flags']['currentapp'] . '/preferences.php'),
                'bg_color'              =>      $phpgw_info['theme']['th_bg'],
***************
*** 105,109 ****
        {
                unset ($checked);
!               if 
($phpgw_info["user"]["preferences"]["phpwebhosting"][$internal])
                {
                        $checked = 1;
--- 105,109 ----
        {
                unset ($checked);
!               if 
($phpgw_info['user']['preferences']['filemanager'][$internal])
                {
                        $checked = 1;
***************
*** 119,123 ****
        {
                unset ($checked);
!               if 
($phpgw_info["user"]["preferences"]["phpwebhosting"][$internal])
                {
                        $checked = 1;
--- 119,123 ----
        {
                unset ($checked);
!               if 
($phpgw_info['user']['preferences']['filemanager'][$internal])
                {
                        $checked = 1;
***************
*** 141,145 ****
                        }
  
!                       $options .= html_form_option ($value, $value, 
$phpgw_info["user"]["preferences"]["phpwebhosting"][$internal] == $value, True);
                }
  
--- 141,145 ----
                        }
  
!                       $options .= html_form_option ($value, $value, 
$phpgw_info['user']['preferences']['filemanager'][$internal] == $value, True);
                }
  

Index: test.php
===================================================================
RCS file: /cvsroot/phpgroupware/filemanager/test.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** test.php    10 Feb 2002 04:17:19 -0000      1.8
--- test.php    21 Sep 2002 05:26:43 -0000      1.9
***************
*** 1,10 ****
  <?php
  
! $phpgw_info["flags"] = array("currentapp" => "phpwebhosting",
!                                 "noheader" => False,
!                                 "noappheader" => False,
!                                 "enable_vfs_class" => True);
  
! include("../header.inc.php");
  
  /*
--- 1,10 ----
  <?php
  
! $phpgw_info['flags'] = array('currentapp' => 'filemanager',
!                                 'noheader' => False,
!                                 'noappheader' => False,
!                                 'enable_vfs_class' => True);
  
! include('../header.inc.php');
  
  /*
***************
*** 273,277 ****
  
  html_break (2);
! html_text_bold ("The less output, the better.  Please file errors as a " . 
html_link ("https://sourceforge.net/tracker/?group_id=7305&atid=107305";, "bug 
report", True, False) .  ". Be sure to include the system information line at 
the top, and anything special about your setup.  Thanks!");
  
  html_page_close ();
--- 273,277 ----
  
  html_break (2);
! html_text_bold ("The less output, the better.  Please file errors as a " . 
html_link ('https://savannah.gnu.org/bugs/?group=phpgroupware', 'bug report', 
True, False) .  ". Be sure to include the system information line at the top, 
and anything special about your setup.  Thanks!");
  
  html_page_close ();





reply via email to

[Prev in Thread] Current Thread [Next in Thread]