phpgroupware-cvs
[Top][All Lists]
Advanced

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

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


From: Caeies
Subject: [Phpgroupware-cvs] developer_tools/inc class.uichangelogs.inc.php ...
Date: Wed, 24 Jan 2007 17:24:05 +0000

CVSROOT:        /cvsroot/phpgroupware
Module name:    developer_tools
Changes by:     Caeies <Caeies> 07/01/24 17:24:05

Modified files:
        inc            : class.uichangelogs.inc.php 
                         class.uilangfile.inc.php 
                         class.uisf_project_tracker.inc.php 
                         header.inc.php hook_preferences.inc.php 

Log message:
        some call to link() fixed

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/developer_tools/inc/class.uichangelogs.inc.php?cvsroot=phpgroupware&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/developer_tools/inc/class.uilangfile.inc.php?cvsroot=phpgroupware&r1=1.13&r2=1.14
http://cvs.savannah.gnu.org/viewcvs/developer_tools/inc/class.uisf_project_tracker.inc.php?cvsroot=phpgroupware&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/developer_tools/inc/header.inc.php?cvsroot=phpgroupware&r1=1.10&r2=1.11
http://cvs.savannah.gnu.org/viewcvs/developer_tools/inc/hook_preferences.inc.php?cvsroot=phpgroupware&r1=1.5&r2=1.6

Patches:
Index: class.uichangelogs.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/developer_tools/inc/class.uichangelogs.inc.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- class.uichangelogs.inc.php  22 Feb 2003 13:48:08 -0000      1.4
+++ class.uichangelogs.inc.php  24 Jan 2007 17:24:05 -0000      1.5
@@ -9,7 +9,7 @@
        *  option) any later version.                                           
   *
        
\**************************************************************************/
 
-       /* $Id: class.uichangelogs.inc.php,v 1.4 2003/02/22 13:48:08 ralfbecker 
Exp $ */
+       /* $Id: class.uichangelogs.inc.php,v 1.5 2007/01/24 17:24:05 Caeies Exp 
$ */
 
        class uichangelogs
        {
@@ -38,10 +38,10 @@
 
                        
$this->template->set_file('_header','changelog_header.tpl');
                        
$this->template->set_var('lang_header',lang('Changelogs'));
-                       $this->template->set_var('lang_list_changelogs','<a 
href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uichangelogs.list_changelogs')
 . '">' . lang('List changelogs') . '</a>');
-                       $this->template->set_var('lang_add_changelogs','<a 
href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uichangelogs.add')
 . '">' . lang('Add change') . '</a>');
-                       $this->template->set_var('lang_search_changelogs','<a 
href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uichangelogs.search')
 . '">' . lang('Search changelogs') . '</a>');
-                       $this->template->set_var('lang_sgml','<a href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uichangelogs.create_sgml')
 . '">' . lang('Create SGML file') . '</a>');
+                       $this->template->set_var('lang_list_changelogs','<a 
href="' . $GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'developer_tools.uichangelogs.list_changelogs')) . '">' . lang('List 
changelogs') . '</a>');
+                       $this->template->set_var('lang_add_changelogs','<a 
href="' . $GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'developer_tools.uichangelogs.add')) . '">' . lang('Add change') . '</a>');
+                       $this->template->set_var('lang_search_changelogs','<a 
href="' . $GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'developer_tools.uichangelogs.search')) . '">' . lang('Search changelogs') . 
'</a>');
+                       $this->template->set_var('lang_sgml','<a href="' . 
$GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'developer_tools.uichangelogs.create_sgml')) . '">' . lang('Create SGML file') 
. '</a>');
 
                        $this->template->pfp('out','_header');
                }
@@ -70,7 +70,7 @@
                                }
                        }
 
-                       
$this->template->set_var('form_action',$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.bochangelogs.add'));
+                       
$this->template->set_var('form_action',$GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'developer_tools.bochangelogs.add')));
                        
$this->template->set_var('lang_project',lang('Project'));
                        
$this->template->set_var('lang_version',lang('Version'));
                        $this->template->set_var('lang_change',lang('Change'));

Index: class.uilangfile.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/developer_tools/inc/class.uilangfile.inc.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- class.uilangfile.inc.php    22 Feb 2003 13:48:08 -0000      1.13
+++ class.uilangfile.inc.php    24 Jan 2007 17:24:05 -0000      1.14
@@ -9,7 +9,7 @@
   *  option) any later version.                                              *
   \**************************************************************************/
 
-  /* $Id: class.uilangfile.inc.php,v 1.13 2003/02/22 13:48:08 ralfbecker Exp $ 
*/
+  /* $Id: class.uilangfile.inc.php,v 1.14 2007/01/24 17:24:05 Caeies Exp $ */
 
        class uilangfile
        {
@@ -88,7 +88,7 @@
                                $this->template->set_var('app_name','<input 
type="hidden" name="entry[app_name]" value="'.$app_name.'">');
 
                                
$this->template->set_var('lang_message',lang('Add new phrase'));
-                               
$this->template->set_var('form_action',$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uilangfile.addphrase'));
+                               
$this->template->set_var('form_action',$GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'developer_tools.uilangfile.addphrase')));
                                
$this->template->set_var('sourcelang',$sourcelang);
                                
$this->template->set_var('targetlang',$targetlang);
                                $this->template->set_var('app_name',$app_name);
@@ -207,7 +207,7 @@
                                }
                                $targetlangs .= '>' . $_lang['lang_name'] . 
'</option>' . "\n";
                        }
-                       
$this->template->set_var('action_url',$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uilangfile.missingphrase'));
+                       
$this->template->set_var('action_url',$GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'developer_tools.uilangfile.missingphrase')));
                        $this->template->set_var('sourcelangs',$sourcelangs);
                        $this->template->set_var('targetlangs',$targetlangs);
                        $this->template->set_var('app_name',$app_name);
@@ -324,10 +324,10 @@
                        
$this->template->set_block('langfile','tgtdownload','tgtdownload');
                        
$this->template->set_block('langfile','footer','footer');
 
-                       
$this->template->set_var('action_url',$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uilangfile.edit'));
-                       
$this->template->set_var('revert_url',$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uilangfile.edit'));
-                       
$this->template->set_var('cancel_link',$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uilangfile.index'));
-                       
$this->template->set_var('loaddb_url',$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uilangfile.load'));
+                       
$this->template->set_var('action_url',$GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'developer_tools.uilangfile.edit')));
+                       
$this->template->set_var('revert_url',$GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'developer_tools.uilangfile.edit')));
+                       
$this->template->set_var('cancel_link',$GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'developer_tools.uilangfile.index')));
+                       
$this->template->set_var('loaddb_url',$GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'developer_tools.uilangfile.load')));
                        $this->template->set_var('lang_remove',lang('Remove'));
                        $this->template->set_var('lang_loaddb',lang('Write to 
lang table'));
                        
$this->template->set_var('lang_application',lang('Application'));
@@ -471,8 +471,8 @@
                                
$this->template->set_var('sourcelang',$sourcelang);
                                
$this->template->set_var('targetlang',$targetlang);
                                $this->template->set_var('app_name',$app_name);
-                               
$this->template->set_var('missing_link',$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uilangfile.missingphrase'));
-                               
$this->template->set_var('phrase_link',$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uilangfile.addphrase'));
+                               
$this->template->set_var('missing_link',$GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'developer_tools.uilangfile.missingphrase')));
+                               
$this->template->set_var('phrase_link',$GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'developer_tools.uilangfile.addphrase')));
                                $this->template->pfp('out','postheader');
 
                                $langarray = 
$this->bo->add_app($app_name,$sourcelang);
@@ -644,7 +644,7 @@
 
                        $this->template->set_var('lang_edit',lang('Edit'));
                        
//$this->template->set_var('lang_translate',lang('Translate'));
-                       
$this->template->set_var('new_action',$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uilangfile.create'));
+                       
$this->template->set_var('new_action',$GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'developer_tools.uilangfile.create')));
                        $this->template->set_var('create_new',lang('Create New 
Language File'));
 
                        @reset($applications);

Index: class.uisf_project_tracker.inc.php
===================================================================
RCS file: 
/cvsroot/phpgroupware/developer_tools/inc/class.uisf_project_tracker.inc.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- class.uisf_project_tracker.inc.php  22 Feb 2003 13:48:08 -0000      1.5
+++ class.uisf_project_tracker.inc.php  24 Jan 2007 17:24:05 -0000      1.6
@@ -9,7 +9,7 @@
        *  option) any later version.                                           
   *
        
\**************************************************************************/
 
-       /* $Id: class.uisf_project_tracker.inc.php,v 1.5 2003/02/22 13:48:08 
ralfbecker Exp $ */
+       /* $Id: class.uisf_project_tracker.inc.php,v 1.6 2007/01/24 17:24:05 
Caeies Exp $ */
 
        class uisf_project_tracker
        {
@@ -57,7 +57,7 @@
                                $this->template->set_var('message',$message);
                        }
 
-                       
$this->template->set_var('form_action',$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.bosf_project_tracker.preferences'));
+                       
$this->template->set_var('form_action',$GLOBALS['phpgw']->link('/index.php', 
array('menuaction' => 'developer_tools.bosf_project_tracker.preferences')));
 
                        
$this->template->set_var('header_message',lang('Developer tools - 
preferences'));
                        
$this->template->set_var('lang_header',lang('Sourceforge project tracker 
preferences'));

Index: header.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/developer_tools/inc/header.inc.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- header.inc.php      28 Dec 2006 19:39:06 -0000      1.10
+++ header.inc.php      24 Jan 2007 17:24:05 -0000      1.11
@@ -9,7 +9,7 @@
        *  option) any later version.                                           
   *
        
\**************************************************************************/
 
-       /* $Id: header.inc.php,v 1.10 2006/12/28 19:39:06 sigurdne Exp $ */
+       /* $Id: header.inc.php,v 1.11 2007/01/24 17:24:05 Caeies Exp $ */
 
        $GLOBALS['phpgw']->template->set_root(PHPGW_APP_TPL);
        $GLOBALS['phpgw']->template->set_file(array('header' => 'header.tpl'));
@@ -17,7 +17,7 @@
        
$GLOBALS['phpgw']->template->set_var('lang_developer_tools',lang('Developer 
tools'));
        $GLOBALS['phpgw']->template->set_var('link_diary',lang('Diary'));
        /*
-       $GLOBALS['phpgw']->template->set_var('link_sourceforge_project','<a 
href="' . 
$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uisf_project_tracker.display_tracker')
 . '">' . lang('SF Project tracker') . '</a>');
+       $GLOBALS['phpgw']->template->set_var('link_sourceforge_project','<a 
href="' . $GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'developer_tools.uisf_project_tracker.display_tracker')) . '">' . lang('SF 
Project tracker') . '</a>');
        */
        $GLOBALS['phpgw']->template->set_var('link_changelog','<a href="' . 
$GLOBALS['phpgw']->link('/index.php',array('menuaction'=>'developer_tools.uichangelogs.list_changelogs'))
 . '">' . lang('Changelogs') . '</a>');
        $GLOBALS['phpgw']->template->set_var('link_language_management','<a 
href="' . 
$GLOBALS['phpgw']->link('/index.php',array('menuaction'=>'developer_tools.uilangfile.index'))
 . '">' . lang('Language file management'));

Index: hook_preferences.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/developer_tools/inc/hook_preferences.inc.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- hook_preferences.inc.php    22 Feb 2003 13:48:08 -0000      1.5
+++ hook_preferences.inc.php    24 Jan 2007 17:24:05 -0000      1.6
@@ -10,11 +10,11 @@
        *  option) any later version.                                           
   *
        
\**************************************************************************/
 
-       /* $Id: hook_preferences.inc.php,v 1.5 2003/02/22 13:48:08 ralfbecker 
Exp $ */
+       /* $Id: hook_preferences.inc.php,v 1.6 2007/01/24 17:24:05 Caeies Exp $ 
*/
 
        $file  = array(
                'Edit Categories' => 
$GLOBALS['phpgw']->link('/index.php','menuaction=preferences.uicategories.index&cats_app=developer_tools&cats_level=True&global_cats=True')
-               //'SF Project tracker preferences' => 
$GLOBALS['phpgw']->link('/index.php','menuaction=developer_tools.uisf_project_tracker.preferences')
+               //'SF Project tracker preferences' => 
$GLOBALS['phpgw']->link('/index.php', array('menuaction' => 
'developer_tools.uisf_project_tracker.preferences'))
        );
 
        display_section('developer_tools',$file);




reply via email to

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