phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] api/skins/default account_mgr.xsl, 1.1.2.7, 1.1.2.8 p


From: Joseph Engo <address@hidden>
Subject: [Phpgroupware-cvs] api/skins/default account_mgr.xsl, 1.1.2.7, 1.1.2.8 phpgw.xsl, 1.1.1.1.2.17, 1.1.1.1.2.18 widgets.xsl, 1.1.1.1.2.8, 1.1.1.1.2.9
Date: Wed, 29 Oct 2003 11:09:29 +0000

Update of /cvsroot/phpgroupware/api/skins/default
In directory subversions:/tmp/cvs-serv13120/api/skins/default

Modified Files:
      Tag: proposal-branch
        account_mgr.xsl phpgw.xsl widgets.xsl 
Log Message:
- Added in some experimental timezone and localization support
  This has NOT been fully tested with windows or all versions of PHP.


Index: widgets.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/api/skins/default/widgets.xsl,v
retrieving revision 1.1.1.1.2.8
retrieving revision 1.1.1.1.2.9
diff -C2 -d -r1.1.1.1.2.8 -r1.1.1.1.2.9
*** widgets.xsl 28 Oct 2003 10:13:29 -0000      1.1.1.1.2.8
--- widgets.xsl 29 Oct 2003 11:09:27 -0000      1.1.1.1.2.9
***************
*** 237,245 ****
        <xsl:choose>
                <xsl:when test="$checked = 1">
!                       <td align="left"><input type="checkbox" name="{$name}" 
value="{$value}" checked="checked" /></td>
                </xsl:when>
  
                <xsl:otherwise>
!                       <td align="left"><input type="checkbox" name="{$name}" 
value="{$value}" /></td>
                </xsl:otherwise>
        </xsl:choose>
--- 237,245 ----
        <xsl:choose>
                <xsl:when test="$checked = 1">
!                       <td align="left"><input type="checkbox" 
name="new_prefs[{$name}]" value="{$value}" checked="checked" /></td>
                </xsl:when>
  
                <xsl:otherwise>
!                       <td align="left"><input type="checkbox" 
name="new_prefs[{$name}]" value="{$value}" /></td>
                </xsl:otherwise>
        </xsl:choose>
***************
*** 254,258 ****
        <tr>
                <td valign="top"><xsl:value-of select="$label" />:</td>
!               <td align="left"><input name="{$name}" value="{$value}" /></td>
        </tr>
  </xsl:template>
--- 254,258 ----
        <tr>
                <td valign="top"><xsl:value-of select="$label" />:</td>
!               <td align="left"><input name="new_prefs[{$name}]" 
value="{$value}" /></td>
        </tr>
  </xsl:template>
***************
*** 267,271 ****
        <tr>
                <td valign="top"><xsl:value-of select="$label" />:</td>
!               <td align="left"><select name="{$name}">
  
                <xsl:if test="multiple = 1">
--- 267,271 ----
        <tr>
                <td valign="top"><xsl:value-of select="$label" />:</td>
!               <td align="left"><select name="new_prefs[{$name}]">
  
                <xsl:if test="multiple = 1">
***************
*** 274,284 ****
  
                <xsl:for-each select="values/values_item">
                        <xsl:choose>
                                <xsl:when test="selected = 1">
!                                       <option value="value" 
selected="selected"><xsl:value-of select="text" /></option>
                                </xsl:when>
  
                                <xsl:otherwise>
!                                       <option value="value"><xsl:value-of 
select="text" /></option>
                                </xsl:otherwise>
                        </xsl:choose>
--- 274,286 ----
  
                <xsl:for-each select="values/values_item">
+                       <xsl:variable name="value" select="value" />
+ 
                        <xsl:choose>
                                <xsl:when test="selected = 1">
!                                       <option value="{$value}" 
selected="selected"><xsl:value-of select="text" /></option>
                                </xsl:when>
  
                                <xsl:otherwise>
!                                       <option value="{$value}"><xsl:value-of 
select="text" /></option>
                                </xsl:otherwise>
                        </xsl:choose>

Index: phpgw.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/api/skins/default/phpgw.xsl,v
retrieving revision 1.1.1.1.2.17
retrieving revision 1.1.1.1.2.18
diff -C2 -d -r1.1.1.1.2.17 -r1.1.1.1.2.18
*** phpgw.xsl   27 Oct 2003 10:25:02 -0000      1.1.1.1.2.17
--- phpgw.xsl   29 Oct 2003 11:09:27 -0000      1.1.1.1.2.18
***************
*** 51,55 ****
                                <tr>
                                        <td align="left" vAlign="top" 
class="mainnote"><b>User: <xsl:value-of 
select="/PHPGW/API/user/fullname"/></b></td>
!                                       <td align="right" vAlign="top" 
class="mainnote"><xsl:value-of select="/PHPGW/API/date" /><!-- current_users 
--></td>
                                </tr>
                        </xsl:if>
--- 51,55 ----
                                <tr>
                                        <td align="left" vAlign="top" 
class="mainnote"><b>User: <xsl:value-of 
select="/PHPGW/API/user/fullname"/></b></td>
!                                       <td align="right" vAlign="top" 
class="mainnote"><xsl:value-of select="/PHPGW/API/currentdate" /><!-- 
current_users --></td>
                                </tr>
                        </xsl:if>

Index: account_mgr.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/api/skins/default/Attic/account_mgr.xsl,v
retrieving revision 1.1.2.7
retrieving revision 1.1.2.8
diff -C2 -d -r1.1.2.7 -r1.1.2.8
*** account_mgr.xsl     28 Oct 2003 05:26:35 -0000      1.1.2.7
--- account_mgr.xsl     29 Oct 2003 11:09:27 -0000      1.1.2.8
***************
*** 147,151 ****
                <tr>
                        <td class="sideboxcontent" bgColor="#efefef">
!                               <table class="sideboxtext" cellSpacing="0" 
cellPadding="0" width="50%" border="0" valign="top" align="center">
                                        <tr>
                                                <td>Login ID:</td>
--- 147,151 ----
                <tr>
                        <td class="sideboxcontent" bgColor="#efefef">
!                               <table class="sideboxtext" cellSpacing="0" 
cellPadding="0" width="70%" border="0" valign="top" align="center">
                                        <tr>
                                                <td>Login ID:</td>





reply via email to

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