phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] CVS: phpgwapi/templates/default app_delete.xsl,1.6,1.


From: Bettina Gille <address@hidden>
Subject: [Phpgroupware-cvs] CVS: phpgwapi/templates/default app_delete.xsl,1.6,1.7 filter_select.xsl,1.5,1.6search_field.xsl,1.5,1.6
Date: Sun, 20 Apr 2003 18:14:42 -0400

Update of /cvsroot/phpgroupware/phpgwapi/templates/default
In directory subversions:/tmp/cvs-serv757/default

Modified Files:
        app_delete.xsl cat_filter.xsl filter_select.xsl 
        search_field.xsl 
Log Message:
update xslt tpls

Index: app_delete.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/templates/default/app_delete.xsl,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** app_delete.xsl      20 Apr 2003 14:15:01 -0000      1.6
--- app_delete.xsl      20 Apr 2003 22:14:38 -0000      1.7
***************
*** 8,13 ****
--- 8,34 ----
                        <table cellpadding="2" cellspacing="2" align="center">
                                <tr>
+                                       <td align="center" 
colspan="2"><xsl:value-of select="lang_error_msg"/></td>
+                               </tr>
+                               <tr>
                                        <td align="center" 
colspan="2"><xsl:value-of select="lang_confirm_msg"/></td>
                                </tr>
+                               <xsl:choose>
+                                       <xsl:when test="subs = 'yes'">
+                                               <tr>
+                                                       <td align="center" 
colspan="2">
+                                                               <table>
+                                                                       <tr>
+                                                                               
<td><input type="radio" name="subs" value="move"/></td>
+                                                                               
<td><xsl:value-of select="lang_sub_select_move"/></td>
+                                                                       </tr>
+                                                                       <tr>
+                                                                               
<td><input type="radio" name="subs" value="drop"/></td>
+                                                                               
<td><xsl:value-of select="lang_sub_select_drop"/></td>
+                                                                       </tr>
+                                                               </table>
+                                                       </td>
+                                               </tr>
+                                       </xsl:when>
+                               </xsl:choose>
                                <tr>
                                        <td>

Index: cat_filter.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/templates/default/cat_filter.xsl,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** cat_filter.xsl      20 Oct 2002 22:01:21 -0000      1.8
--- cat_filter.xsl      20 Apr 2003 22:14:38 -0000      1.9
***************
*** 2,9 ****
  
        <xsl:template name="cat_filter">
!               <xsl:variable name="select_action"><xsl:value-of 
select="select_action"/></xsl:variable>
                <xsl:variable name="select_name"><xsl:value-of 
select="select_name"/></xsl:variable>
                <xsl:variable name="lang_submit"><xsl:value-of 
select="lang_submit"/></xsl:variable>
!               <form method="post" action="{$select_action}">
                        <select name="{$select_name}" 
onChange="this.form.submit();" onMouseout="window.status='';return true;">
                                <xsl:attribute name="onMouseover">
--- 2,9 ----
  
        <xsl:template name="cat_filter">
!               <xsl:variable name="select_url"><xsl:value-of 
select="select_url"/></xsl:variable>
                <xsl:variable name="select_name"><xsl:value-of 
select="select_name"/></xsl:variable>
                <xsl:variable name="lang_submit"><xsl:value-of 
select="lang_submit"/></xsl:variable>
!               <form method="post" action="{$select_url}">
                        <select name="{$select_name}" 
onChange="this.form.submit();" onMouseout="window.status='';return true;">
                                <xsl:attribute name="onMouseover">
***************
*** 25,29 ****
        <xsl:variable name="cat_id"><xsl:value-of 
select="cat_id"/></xsl:variable>
                <xsl:choose>
!                       <xsl:when test="selected">
                                <option value="{$cat_id}" 
selected="selected"><xsl:value-of disable-output-escaping="yes" 
select="name"/></option>
                        </xsl:when>
--- 25,29 ----
        <xsl:variable name="cat_id"><xsl:value-of 
select="cat_id"/></xsl:variable>
                <xsl:choose>
!                       <xsl:when test="selected = 'selected'">
                                <option value="{$cat_id}" 
selected="selected"><xsl:value-of disable-output-escaping="yes" 
select="name"/></option>
                        </xsl:when>

Index: filter_select.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/templates/default/filter_select.xsl,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** filter_select.xsl   6 Oct 2002 18:04:05 -0000       1.5
--- filter_select.xsl   20 Apr 2003 22:14:38 -0000      1.6
***************
*** 2,8 ****
  
        <xsl:template name="filter_select">
!               <xsl:variable name="select_action"><xsl:value-of 
select="select_action"/></xsl:variable>
                <xsl:variable name="lang_submit"><xsl:value-of 
select="lang_submit"/></xsl:variable>
!               <form method="post" action="{$select_action}">
                        <select name="filter" onChange="this.form.submit()" 
onMouseout="window.status='';return true;">
                                <xsl:attribute name="onMouseover">
--- 2,8 ----
  
        <xsl:template name="filter_select">
!               <xsl:variable name="select_url"><xsl:value-of 
select="select_url"/></xsl:variable>
                <xsl:variable name="lang_submit"><xsl:value-of 
select="lang_submit"/></xsl:variable>
!               <form method="post" action="{$select_url}">
                        <select name="filter" onChange="this.form.submit()" 
onMouseout="window.status='';return true;">
                                <xsl:attribute name="onMouseover">

Index: search_field.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/templates/default/search_field.xsl,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** search_field.xsl    19 Apr 2003 22:23:23 -0000      1.5
--- search_field.xsl    20 Apr 2003 22:14:38 -0000      1.6
***************
*** 2,9 ****
  
        <xsl:template name="search_field">
!               <xsl:variable name="search_url"><xsl:value-of 
select="search_url"/></xsl:variable>
                <xsl:variable name="query"><xsl:value-of 
select="query"/></xsl:variable>
                <xsl:variable name="lang_search"><xsl:value-of 
select="lang_search"/></xsl:variable>
!                       <form method="post" action="{$search_url}">
                                <input type="text" name="query" 
value="{$query}" onMouseout="window.status='';return true;">
                                        <xsl:attribute name="onMouseover">
--- 2,9 ----
  
        <xsl:template name="search_field">
!               <xsl:variable name="select_url"><xsl:value-of 
select="select_url"/></xsl:variable>
                <xsl:variable name="query"><xsl:value-of 
select="query"/></xsl:variable>
                <xsl:variable name="lang_search"><xsl:value-of 
select="lang_search"/></xsl:variable>
!                       <form method="post" action="{$select_url}">
                                <input type="text" name="query" 
value="{$query}" onMouseout="window.status='';return true;">
                                        <xsl:attribute name="onMouseover">





reply via email to

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