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.2,1.


From: Bettina Gille <address@hidden>
Subject: [Phpgroupware-cvs] CVS: phpgwapi/templates/default app_delete.xsl,1.2,1.3 cat_filter.xsl,1.1,1.2 cat_select.xsl,1.4,1.5 filter_select.xsl,1.2,1.3 search_field.xsl,1.1,1.2
Date: Sat, 28 Sep 2002 11:35:28 -0400

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

Modified Files:
        app_delete.xsl cat_filter.xsl cat_select.xsl filter_select.xsl 
        search_field.xsl 
Log Message:
added docu to the status bar

Index: app_delete.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/templates/default/app_delete.xsl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** app_delete.xsl      27 Sep 2002 01:09:36 -0000      1.2
--- app_delete.xsl      28 Sep 2002 15:35:26 -0000      1.3
***************
*** 12,21 ****
                                                <xsl:variable 
name="lang_yes"><xsl:value-of select="lang_yes"/></xsl:variable>
                                                <form method="POST" 
action="{$delete_action}">
!                                                       <input type="submit" 
class="forms" name="confirm" value="{$lang_yes}"/>
                                                </form>
                                        </td>
                                        <td align="right">
                                                <xsl:variable 
name="done_action"><xsl:value-of select="done_action"/></xsl:variable>
!                                               <a 
href="{$done_action}"><xsl:value-of select="lang_no"/></a>
                                        </td>
                                </tr>
--- 12,21 ----
                                                <xsl:variable 
name="lang_yes"><xsl:value-of select="lang_yes"/></xsl:variable>
                                                <form method="POST" 
action="{$delete_action}">
!                                                       <input type="submit" 
class="forms" name="confirm" value="{$lang_yes}" 
onMouseover="window.status='Deletes the entry.';return true;" 
onMouseout="window.status='';return true;"/>
                                                </form>
                                        </td>
                                        <td align="right">
                                                <xsl:variable 
name="done_action"><xsl:value-of select="done_action"/></xsl:variable>
!                                               <a href="{$done_action}" 
onMouseover="window.status='Back to the list.';return true;" 
onMouseout="window.status='';return true;"><xsl:value-of select="lang_no"/></a>
                                        </td>
                                </tr>

Index: cat_filter.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/templates/default/cat_filter.xsl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** cat_filter.xsl      27 Sep 2002 01:09:37 -0000      1.1
--- cat_filter.xsl      28 Sep 2002 15:35:26 -0000      1.2
***************
*** 5,10 ****
                <xsl:variable name="lang_submit"><xsl:value-of 
select="lang_submit"/></xsl:variable>
                <form method="post" action="{$select_action}">
!                       <select name="cat_id" class="forms" 
onChange="this.form.submit();">
!                               <option value=""><xsl:value-of 
select="lang_select_category"/></option>
                                        <xsl:apply-templates select="cat_list"/>
                        </select>
--- 5,10 ----
                <xsl:variable name="lang_submit"><xsl:value-of 
select="lang_submit"/></xsl:variable>
                <form method="post" action="{$select_action}">
!                       <select name="cat_id" class="forms" 
onChange="this.form.submit();" onMouseover="window.status='Select the category. 
To show all entries select NONE.';return true;" 
onMouseout="window.status='';return true;">
!                               <option value=""><xsl:value-of 
select="lang_none"/></option>
                                        <xsl:apply-templates select="cat_list"/>
                        </select>

Index: cat_select.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/templates/default/cat_select.xsl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** cat_select.xsl      27 Sep 2002 01:09:37 -0000      1.4
--- cat_select.xsl      28 Sep 2002 15:35:26 -0000      1.5
***************
*** 2,6 ****
  
        <xsl:template name="cat_select">
!               <option value=""><xsl:value-of 
select="lang_select_category"/></option>
                        <xsl:apply-templates select="cat_list"/>
        </xsl:template>
--- 2,6 ----
  
        <xsl:template name="cat_select">
!               <option value=""><xsl:value-of select="lang_none"/></option>
                        <xsl:apply-templates select="cat_list"/>
        </xsl:template>

Index: filter_select.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/templates/default/filter_select.xsl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** filter_select.xsl   27 Sep 2002 00:15:09 -0000      1.2
--- filter_select.xsl   28 Sep 2002 15:35:26 -0000      1.3
***************
*** 5,9 ****
                <xsl:variable name="lang_submit"><xsl:value-of 
select="lang_submit"/></xsl:variable>
                <form method="post" action="{$select_action}">
!                       <select name="filter" class="forms" 
onChange="this.form.submit()">
                                <xsl:apply-templates select="filter_list"/>
                        </select>
--- 5,9 ----
                <xsl:variable name="lang_submit"><xsl:value-of 
select="lang_submit"/></xsl:variable>
                <form method="post" action="{$select_action}">
!                       <select name="filter" class="forms" 
onChange="this.form.submit()" onMouseover="window.status='Select the filter. To 
show all entries select SHOW ALL';return true;" 
onMouseout="window.status='';return true;">
                                <xsl:apply-templates select="filter_list"/>
                        </select>

Index: search_field.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/templates/default/search_field.xsl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** search_field.xsl    27 Sep 2002 00:15:09 -0000      1.1
--- search_field.xsl    28 Sep 2002 15:35:26 -0000      1.2
***************
*** 6,12 ****
                <xsl:variable name="lang_submit"><xsl:value-of 
select="lang_submit"/></xsl:variable>
                        <form method="post" action="{$select_action}">
!                               <input type="text" class="forms" name="query" 
value="{$query}"/>
                                <xsl:text> </xsl:text>
!                               <input type="submit" class="forms" 
name="submit" value="{$lang_submit}"/> 
                        </form>
        </xsl:template>
--- 6,12 ----
                <xsl:variable name="lang_submit"><xsl:value-of 
select="lang_submit"/></xsl:variable>
                        <form method="post" action="{$select_action}">
!                               <input type="text" class="forms" name="query" 
value="{$query}" onMouseover="window.status='Enter the search string. To show 
all entries, empty this field and press the SUBMIT button again.';return true;" 
onMouseout="window.status='';return true;"/>
                                <xsl:text> </xsl:text>
!                               <input type="submit" class="forms" 
name="submit" value="{$lang_submit}" onMouseover="window.status='Submit the 
search string.';return true;" onMouseout="window.status='';return true;"/> 
                        </form>
        </xsl:template>





reply via email to

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