phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] CVS: sitemgr/modules class.module_appdir.inc.php,1.3


From: Michael Totschnig <address@hidden>
Subject: [Phpgroupware-cvs] CVS: sitemgr/modules class.module_appdir.inc.php,1.3,1.4 class.module_bookmarks.inc.php,1.5,1.6class.module_galerie.inc.php,1.3,1.4 class.module_html.inc.php,1.3,1.4class.module_sitetree.inc.php,1.3,1.4
Date: Fri, 13 Jun 2003 23:34:04 -0400

Update of /cvsroot/phpgroupware/sitemgr/modules
In directory subversions:/tmp/cvs-serv19662/modules

Modified Files:
        class.module_appdir.inc.php class.module_bookmarks.inc.php 
        class.module_galerie.inc.php class.module_html.inc.php 
        class.module_sitetree.inc.php 
Log Message:
minor adjustments


Index: class.module_appdir.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/sitemgr/modules/class.module_appdir.inc.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** class.module_appdir.inc.php 9 Jun 2003 20:20:22 -0000       1.3
--- class.module_appdir.inc.php 14 Jun 2003 03:34:02 -0000      1.4
***************
*** 34,38 ****
                        foreach(array('name','maintainer','url','description') 
as $key)
                        {
!                               $elementname = 'element[' .$key . '][' . $i 
.']';
                                $element['label'] = ucfirst($key);
                                $element['form'] = $this->build_input_element(
--- 34,38 ----
                        foreach(array('name','maintainer','url','description') 
as $key)
                        {
!                               $elementname = 'element[' . 
$this->block->version . '][' .$key . '][' . $i .']';
                                $element['label'] = ucfirst($key);
                                $element['form'] = $this->build_input_element(
***************
*** 49,53 ****
                                array('type' => 'checkbox'),
                                False,
!                               'element[delete][' . $i . ']'
                        );
                        $interface[] = $element;
--- 49,53 ----
                                array('type' => 'checkbox'),
                                False,
!                               'element[' . $this->block->version . 
'][delete][' . $i . ']'
                        );
                        $interface[] = $element;
***************
*** 61,65 ****
                        array('type' => 'checkbox'),
                        False,
!                       'element[addnew]'
                );
                $interface[] = $element;
--- 61,65 ----
                        array('type' => 'checkbox'),
                        False,
!                       'element[' . $this->block->version . '][addnew]'
                );
                $interface[] = $element;

Index: class.module_bookmarks.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/sitemgr/modules/class.module_bookmarks.inc.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** class.module_bookmarks.inc.php      9 Jun 2003 20:20:22 -0000       1.5
--- class.module_bookmarks.inc.php      14 Jun 2003 03:34:02 -0000      1.6
***************
*** 13,17 ****
                $this->arguments = array(
                        'category' => array(
!                               'type' => select, 
                                'label' => lang('Choose the categories to 
display'), 
                                'options' => array(),
--- 13,17 ----
                $this->arguments = array(
                        'category' => array(
!                               'type' => 'select', 
                                'label' => lang('Choose the categories to 
display'), 
                                'options' => array(),
***************
*** 41,45 ****
                {
                        require_once(PHPGW_INCLUDE_ROOT . SEP . 'sitemgr' . SEP 
. 'inc' . SEP . 'class.xslt_transform.inc.php');
!                       $this->add_transformer(new 
xslt_transform($this->find_template_dir() . SEP . 'xbel.xsl'));
                }
        }
--- 41,48 ----
                {
                        require_once(PHPGW_INCLUDE_ROOT . SEP . 'sitemgr' . SEP 
. 'inc' . SEP . 'class.xslt_transform.inc.php');
!                       $this->add_transformer(new xslt_transform(
!                               $this->find_template_dir() . SEP . 'xbel.xsl',
!                               array('blockid' => $this->block->id)
!                       ));
                }
        }

Index: class.module_galerie.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/sitemgr/modules/class.module_galerie.inc.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** class.module_galerie.inc.php        9 Jun 2003 20:20:22 -0000       1.3
--- class.module_galerie.inc.php        14 Jun 2003 03:34:02 -0000      1.4
***************
*** 5,8 ****
--- 5,9 ----
        function module_galerie()
        {
+               $this->i18n = True;
                $this->arguments = array(
                        'imagedirurl' => array(

Index: class.module_html.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/sitemgr/modules/class.module_html.inc.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** class.module_html.inc.php   30 May 2003 04:01:43 -0000      1.3
--- class.module_html.inc.php   14 Jun 2003 03:34:02 -0000      1.4
***************
*** 5,8 ****
--- 5,9 ----
                function module_html()
                {
+                       $this->i18n = true;
                        $this->arguments = array(
                                'htmlcontent' => array(

Index: class.module_sitetree.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/sitemgr/modules/class.module_sitetree.inc.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** class.module_sitetree.inc.php       3 May 2003 21:08:11 -0000       1.3
--- class.module_sitetree.inc.php       14 Jun 2003 03:34:02 -0000      1.4
***************
*** 85,89 ****
  function add(catid)
  {
!       document.cookie = '".$this->block->module_name."[menutree][' + catid + 
']=';
  }
  
--- 85,89 ----
  function add(catid)
  {
!       document.cookie = 'block[" . $this->block->id . "][menutree][' + catid 
+ ']=';
  }
  
***************
*** 91,95 ****
  {
        var now = new Date();
!       document.cookie = '".$this->block->module_name."[menutree][' + catid + 
']=; expires=' + now.toGMTString();
  }
  
--- 91,95 ----
  {
        var now = new Date();
!       document.cookie = 'block[" . $this->block->id . "][menutree][' + catid 
+ ']=; expires=' + now.toGMTString();
  }
  





reply via email to

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