phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] CVS: admin/templates/default app_data.xsl,1.2,1.3


From: Bettina Gille <address@hidden>
Subject: [Phpgroupware-cvs] CVS: admin/templates/default app_data.xsl,1.2,1.3
Date: Sun, 20 Apr 2003 20:20:51 -0400

Update of /cvsroot/phpgroupware/admin/templates/default
In directory subversions:/tmp/cvs-serv26066

Modified Files:
        app_data.xsl 
Log Message:
update xslt tpls

Index: app_data.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/admin/templates/default/app_data.xsl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** app_data.xsl        20 Apr 2003 14:15:52 -0000      1.2
--- app_data.xsl        21 Apr 2003 00:20:49 -0000      1.3
***************
*** 7,14 ****
                        </xsl:when>
                        <xsl:when test="cat_list">
!                               <xsl:apply-templates select="cat_list"/>
                        </xsl:when>
                        <xsl:when test="cat_edit">
!                               <xsl:apply-templates select="cat_edit"/>
                        </xsl:when>
                        <xsl:otherwise>
--- 7,20 ----
                        </xsl:when>
                        <xsl:when test="cat_list">
!                               <xsl:call-template name="cats"/>
                        </xsl:when>
                        <xsl:when test="cat_edit">
!                               <xsl:call-template name="cats"/>
!                       </xsl:when>
!                       <xsl:when test="group_list">
!                               <xsl:call-template name="groups"/>
!                       </xsl:when>
!                       <xsl:when test="group_edit">
!                               <xsl:call-template name="groups"/>
                        </xsl:when>
                        <xsl:otherwise>
***************
*** 75,296 ****
                        <td colspan="2">&nbsp;&#8226;&nbsp;<a 
href="{$pref_link}"><xsl:value-of select="pref_text"/></a></td>
                </tr>
-       </xsl:template>
- 
- <!-- BEGIN cat_list -->
- 
-       <xsl:template match="cat_list">
-               <center>
-               <table border="0" cellspacing="2" cellpadding="2">
-                       <tr>
-                               <td colspan="5" width="100%">
-                                       <xsl:call-template name="nextmatchs"/>
-                               </td>
-                       </tr>
-                       <tr>
-                               <td colspan="5" width="100%" align="right">
-                                       <xsl:call-template name="search_field"/>
-                               </td>
-                       </tr>
-                               <xsl:apply-templates select="cat_header"/>
-                               <xsl:apply-templates select="cat_data"/>
-                               <xsl:apply-templates select="cat_add"/>
-               </table>
-               </center>
-       </xsl:template>
- 
- <!-- BEGIN cat_header -->
- 
-       <xsl:template match="cat_header">
-               <xsl:variable name="sort_name" select="sort_name"/>
-               <xsl:variable name="sort_descr" select="sort_descr"/>
-               <xsl:variable name="lang_sort_statustext" 
select="lang_sort_statustext"/>
-               <tr class="th">
-                       <td width="20%"><a href="{$sort_name}" 
onMouseover="window.status='{$lang_sort_statustext}';return true;" 
onMouseout="window.status='';return true;" class="th_text"><xsl:value-of 
select="lang_name"/></a></td>
-                       <td width="32%"><a href="{$sort_descr}" 
onMouseover="window.status='{$lang_sort_statustext}';return true;" 
onMouseout="window.status='';return true;" class="th_text"><xsl:value-of 
select="lang_descr"/></a></td>
-                       <td width="8%" align="center"><xsl:value-of 
select="lang_add_sub"/></td>
-                       <td width="8%" align="center"><xsl:value-of 
select="lang_edit"/></td>
-                       <td width="8%" align="center"><xsl:value-of 
select="lang_delete"/></td>
-               </tr>
-       </xsl:template>
- 
- <!-- BEGIN cat_data -->
- 
-       <xsl:template match="cat_data">
-               <xsl:variable name="lang_add_sub_statustext"><xsl:value-of 
select="lang_add_sub_statustext"/></xsl:variable>
-               <xsl:variable name="lang_edit_statustext"><xsl:value-of 
select="lang_edit_statustext"/></xsl:variable>
-               <xsl:variable name="lang_delete_statustext"><xsl:value-of 
select="lang_delete_statustext"/></xsl:variable>
-               <tr>
-                       <xsl:attribute name="class">
-                               <xsl:choose>
-                                       <xsl:when test="@class">
-                                               <xsl:value-of select="@class"/>
-                                       </xsl:when>
-                                       <xsl:when test="position() mod 2 = 0">
-                                               <xsl:text>row_off</xsl:text>
-                                       </xsl:when>
-                                       <xsl:otherwise>
-                                               <xsl:text>row_on</xsl:text>
-                                       </xsl:otherwise>
-                               </xsl:choose>
-                       </xsl:attribute>
-                       <xsl:choose>
-                               <xsl:when test="main != ''">
-                                       <td class="alarm"><b><xsl:value-of 
disable-output-escaping="yes" select="name"/></b></td>
-                                       <td class="alarm"><b><xsl:value-of 
select="descr"/></b></td>
-                               </xsl:when>
-                               <xsl:otherwise>
-                                       <td><xsl:value-of 
disable-output-escaping="yes" select="name"/></td>
-                                       <td><xsl:value-of select="descr"/></td>
-                               </xsl:otherwise>
-                       </xsl:choose>
-                       <td align="center">
-                               <xsl:variable name="add_sub_url" 
select="add_sub_url"/>
-                               <a href="{$add_sub_url}" 
onMouseover="window.status='{$lang_add_sub_statustext}';return true;" 
onMouseout="window.status='';return true;" class="th_text"><xsl:value-of 
select="lang_add_sub"/></a>
-                       </td>
-                       <td align="center">
-                               <xsl:variable name="edit_url" 
select="edit_url"/>
-                               <a href="{$edit_url}" 
onMouseover="window.status='{$lang_edit_statustext}';return true;" 
onMouseout="window.status='';return true;" class="th_text"><xsl:value-of 
select="lang_edit"/></a>
-                       </td>
-                       <td align="center">
-                               <xsl:variable name="delete_url" 
select="delete_url"/>
-                               <a href="{$delete_url}" 
onMouseover="window.status='{$lang_delete_statustext}';return true;" 
onMouseout="window.status='';return true;" class="th_text"><xsl:value-of 
select="lang_delete"/></a>
-                       </td>
-               </tr>
-       </xsl:template>
- 
-       <xsl:template match="cat_add">
-                       <tr>
-                               <td height="50" valign="bottom">
-                                       <xsl:variable 
name="add_url"><xsl:value-of select="add_url"/></xsl:variable>
-                                       <xsl:variable 
name="lang_add"><xsl:value-of select="lang_add"/></xsl:variable>
-                                       <form method="post" action="{$add_url}">
-                                               <input type="submit" name="add" 
value="{$lang_add}" onMouseout="window.status='';return true;">
-                                                       <xsl:attribute 
name="onMouseover">
-                                                               
<xsl:text>window.status='</xsl:text>
-                                                                       
<xsl:value-of select="lang_add_statustext"/>
-                                                               <xsl:text>'; 
return true;</xsl:text>
-                                                       </xsl:attribute>
-                                               </input>
-                                       </form>
-                               </td>
-                       </tr>
-                       <tr>
-                               <td height="50" valign="bottom">
-                                       <xsl:variable 
name="done_url"><xsl:value-of select="done_url"/></xsl:variable>
-                                       <xsl:variable 
name="lang_done"><xsl:value-of select="lang_done"/></xsl:variable>
-                                       <form method="post" 
action="{$done_url}">
-                                               <input type="submit" 
name="done" value="{$lang_done}" onMouseout="window.status='';return true;">
-                                                       <xsl:attribute 
name="onMouseover">
-                                                               
<xsl:text>window.status='</xsl:text>
-                                                                       
<xsl:value-of select="lang_done_statustext"/>
-                                                               <xsl:text>'; 
return true;</xsl:text>
-                                                       </xsl:attribute>
-                                               </input>
-                                       </form>
-                               </td>
-                       </tr>
-       </xsl:template>
- 
- <!-- BEGIN cat_edit -->
- 
-       <xsl:template match="cat_edit">
-               <table cellpadding="2" cellspacing="2" width="100%" 
align="center">
-                       <tr>
-                               <td colspan="2" align="center">
-                                       <xsl:value-of select="message"/>
-                               </td>
-                       </tr>
-                       <xsl:variable name="edit_url" select="edit_url"/>
-                       <form method="post" action="{$edit_url}">
-                       <tr>
-                               <td>
-                                       <xsl:value-of select="lang_parent"/>
-                               </td>
-                               <td>
-                                       <xsl:call-template name="cat_select"/>
-                               </td>
-                       </tr>
-                       <tr>
-                               <td><xsl:value-of select="lang_name"/>:</td>
-                               <td><input name="values[name]" size="50" 
onMouseout="window.status='';return true;">
-                                               <xsl:attribute 
name="onMouseover">
-                                                       
<xsl:text>window.status='</xsl:text>
-                                                               <xsl:value-of 
select="lang_name_statustext"/>
-                                                       <xsl:text>'; return 
true;</xsl:text>
-                                               </xsl:attribute>
-                                               <xsl:attribute name="value">
-                                                       <xsl:value-of 
select="value_name"/>
-                                               </xsl:attribute>
-                                       </input>
-                               </td>
-                       </tr>
-                       <tr>
-                               <td valign="top"><xsl:value-of 
select="lang_descr"/>:</td>
-                               <td><textarea cols="60" rows="10" 
name="values[descr]" wrap="virtual" onMouseout="window.status='';return true;">
-                                               <xsl:attribute 
name="onMouseover">
-                                                       
<xsl:text>window.status='</xsl:text>
-                                                               <xsl:value-of 
select="lang_descr_statustext"/>
-                                                       <xsl:text>'; return 
true;</xsl:text>
-                                               </xsl:attribute>
-                                               <xsl:value-of 
select="value_descr"/>            
-                                       </textarea>
-                               </td>
-                       </tr>
- 
-                       <tr height="50">
-                               <td>
-                                       <xsl:variable 
name="lang_save"><xsl:value-of select="lang_save"/></xsl:variable>
-                                       <xsl:variable 
name="old_parent"><xsl:value-of select="old_parent"/></xsl:variable>
-                                       <input type="hidden" 
name="values[old_parent]" value="{$old_parent}"/>
-                                       <input type="submit" 
name="values[save]" value="{$lang_save}" onMouseout="window.status='';return 
true;">
-                                               <xsl:attribute 
name="onMouseover">
-                                                       
<xsl:text>window.status='</xsl:text>
-                                                               <xsl:value-of 
select="lang_save_statustext"/>
-                                                       <xsl:text>'; return 
true;</xsl:text>
-                                               </xsl:attribute>
-                                       </input>
-                               </td>
-                               <td>
-                                       <xsl:choose>
-                                               <xsl:when test="action = 'add'">
-                                                       <xsl:variable 
name="lang_reset" select="lang_reset"/>
-                                                       <input type="reset" 
name="reset" value="{$lang_reset}"/>
-                                               </xsl:when>
-                                               <xsl:otherwise>
-                                                       
<xsl:text>&nbsp;</xsl:text>
-                                               </xsl:otherwise>
-                                       </xsl:choose>
-                               </td>
-                       </tr>
-                       </form>
-                       <tr>
-                               <td>
-                                       <xsl:variable 
name="done_url"><xsl:value-of select="done_url"/></xsl:variable>
-                                       <xsl:variable 
name="lang_done"><xsl:value-of select="lang_done"/></xsl:variable>
-                                       <form method="post" 
action="{$done_url}">
-                                               <input type="submit" 
name="values[done]" value="{$lang_done}" onMouseout="window.status='';return 
true;">
-                                                       <xsl:attribute 
name="onMouseover">
-                                                               
<xsl:text>window.status='</xsl:text>
-                                                                       
<xsl:value-of select="lang_done_statustext"/>
-                                                               <xsl:text>'; 
return true;</xsl:text>
-                                                       </xsl:attribute>
-                                               </input>
-                                       </form>
-                               </td>
-                               <td>
-                                       <xsl:choose>
-                                               <xsl:when test="action = 
'edit'">
-                                                       <xsl:variable 
name="delete_url"><xsl:value-of select="delete_url"/></xsl:variable>
-                                                       <xsl:variable 
name="lang_delete"><xsl:value-of select="lang_delete"/></xsl:variable>
-                                                       <form method="POST" 
action="{$delete_url}">
-                                                               <input 
type="submit" name="values[delete]" value="{$lang_delete}"/>
-                                                       </form>
-                                               </xsl:when>
-                                               <xsl:otherwise>
-                                                       
<xsl:text>&nbsp;</xsl:text>
-                                               </xsl:otherwise>
-                                       </xsl:choose>
-                               </td>
-                       </tr>
-               </table>
        </xsl:template>
--- 81,83 ----





reply via email to

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