phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] CVS: developer_tools/inc class.uichangelogs.inc.php,


From: Ralf Becker <address@hidden>
Subject: [Phpgroupware-cvs] CVS: developer_tools/inc class.uichangelogs.inc.php,1.3,1.4 class.uilangfile.inc.php,1.12,1.13 class.uisf_project_tracker.inc.php,1.4,1.5 header.inc.php,1.8,1.9 hook_preferences.inc.php,1.4,1.5
Date: Sat, 22 Feb 2003 08:48:11 -0500

Update of /cvsroot/phpgroupware/developer_tools/inc
In directory subversions:/tmp/cvs-serv26122/inc

Modified Files:
        class.uichangelogs.inc.php class.uilangfile.inc.php 
        class.uisf_project_tracker.inc.php header.inc.php 
        hook_preferences.inc.php 
Log Message:
got developer tools working again:
1. changed in all templates:
- bgcolor="{th_bg}" to class="th"
- bgcolor="{...}" to class="{...}"
2. included the application-header manually, as this is no longer done by the 
api

Index: class.uichangelogs.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/developer_tools/inc/class.uichangelogs.inc.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** class.uichangelogs.inc.php  18 Nov 2001 08:01:50 -0000      1.3
--- class.uichangelogs.inc.php  22 Feb 2003 13:48:08 -0000      1.4
***************
*** 47,57 ****
                }
  
-               function common_template_vars()
-               {
-                       
$this->template->set_var('th_bg',$GLOBALS['phpgw_info']['theme']['th_bg']);
-                       
$this->template->set_var('row_on',$GLOBALS['phpgw_info']['theme']['row_on']);
-                       
$this->template->set_var('row_off',$GLOBALS['phpgw_info']['theme']['row_off']);
-               }
- 
                function list_changelogs()
                {
--- 47,50 ----
***************
*** 65,69 ****
                        $this->template->set_file('_form','changelog_form.tpl');
                        $this->template->set_block('_form','form');
-                       $this->common_template_vars();
  
                        if ($messages)
--- 58,61 ----

Index: class.uilangfile.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/developer_tools/inc/class.uilangfile.inc.php,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** class.uilangfile.inc.php    2 Jul 2002 23:59:14 -0000       1.12
--- class.uilangfile.inc.php    22 Feb 2003 13:48:08 -0000      1.13
***************
*** 219,223 ****
                                
$this->template->set_var('lang_original',lang('Original'));
                                
//$this->template->set_var('lang_translation',lang('Translation'));
-                               
$this->template->set_var('th_bg',$GLOBALS['phpgw_info']['theme']['th_bg']);
                                $this->template->set_var('view_link',
                                        $GLOBALS['phpgw']->link(
--- 219,222 ----
***************
*** 470,474 ****
                                
$this->template->set_var('lang_missingphrase',lang('Search for missing 
phrase'));
                                
$this->template->set_var('lang_addphrase',lang('Add Phrase'));
-                               
$this->template->set_var('th_bg',$GLOBALS['phpgw_info']['theme']['th_bg']);
                                
$this->template->set_var('sourcelang',$sourcelang);
                                
$this->template->set_var('targetlang',$targetlang);
--- 469,472 ----
***************
*** 639,644 ****
  
                        
$this->template->set_var('lang_installed',lang('Installed applications'));
-                       
$this->template->set_var('bg_color',$GLOBALS['phpgw_info']['theme']['bg_color']);
-                       
$this->template->set_var('th_bg',$GLOBALS['phpgw_info']['theme']['th_bg']);
  
                        
$this->template->set_var('sort_title',$this->nextmatchs->show_sort_order($sort,'title','title','/index.php',lang('Title'),'&menuaction=developer_tools.uilangfile.index'));
--- 637,640 ----

Index: class.uisf_project_tracker.inc.php
===================================================================
RCS file: 
/cvsroot/phpgroupware/developer_tools/inc/class.uisf_project_tracker.inc.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** class.uisf_project_tracker.inc.php  31 Aug 2001 08:52:39 -0000      1.4
--- class.uisf_project_tracker.inc.php  22 Feb 2003 13:48:08 -0000      1.5
***************
*** 60,67 ****
                        
$this->template->set_var('form_action',$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.bosf_project_tracker.preferences'));
  
-                       $this->template->set_var('th_bg',  
$GLOBALS['phpgw_info']['theme']['th_bg']);
-                       $this->template->set_var('row_on', 
$GLOBALS['phpgw_info']['theme']['row_on']);
-                       
$this->template->set_var('row_off',$GLOBALS['phpgw_info']['theme']['row_off']);
- 
                        
$this->template->set_var('header_message',lang('Developer tools - 
preferences'));
                        
$this->template->set_var('lang_header',lang('Sourceforge project tracker 
preferences'));
--- 60,63 ----

Index: header.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/developer_tools/inc/header.inc.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** header.inc.php      15 Jan 2002 01:58:38 -0000      1.8
--- header.inc.php      22 Feb 2003 13:48:08 -0000      1.9
***************
*** 15,19 ****
  
        
$GLOBALS['phpgw']->template->set_var('lang_developer_tools',lang('Developer 
tools'));
-       
$GLOBALS['phpgw']->template->set_var('th_bg',$GLOBALS['phpgw_info']['theme']['th_bg']);
        $GLOBALS['phpgw']->template->set_var('link_diary',lang('Diary'));
        /*
--- 15,18 ----

Index: hook_preferences.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/developer_tools/inc/hook_preferences.inc.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** hook_preferences.inc.php    15 Jan 2002 01:58:38 -0000      1.4
--- hook_preferences.inc.php    22 Feb 2003 13:48:08 -0000      1.5
***************
*** 18,21 ****
        );
  
!       display_section('developer_tools','Developer Tools',$file);
  ?>
--- 18,21 ----
        );
  
!       display_section('developer_tools',$file);
  ?>





reply via email to

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