phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] CVS: notes/templates/default form.xsl,1.8,1.9


From: Bettina Gille <address@hidden>
Subject: [Phpgroupware-cvs] CVS: notes/templates/default form.xsl,1.8,1.9
Date: Tue, 01 Oct 2002 21:03:35 -0400

Update of /cvsroot/phpgroupware/notes/templates/default
In directory subversions:/tmp/cvs-serv26004/templates/default

Modified Files:
        form.xsl 
Log Message:
update

Index: form.xsl
===================================================================
RCS file: /cvsroot/phpgroupware/notes/templates/default/form.xsl,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** form.xsl    29 Sep 2002 03:24:45 -0000      1.8
--- form.xsl    2 Oct 2002 01:03:33 -0000       1.9
***************
*** 16,20 ****
                                </td>
                                <td>
!                                       <select name="values[cat]" 
class="forms" onMouseover="window.status='Select the category the notes belongs 
to. To do not use a category select NO CATEGORY.';return true;" 
onMouseout="window.status='';return true;">
                                                <xsl:call-template 
name="cat_select"/>
                                        </select>
--- 16,21 ----
                                </td>
                                <td>
!                                       <xsl:variable 
name="lang_cat_statustext"><xsl:value-of 
select="lang_cat_statustext"/></xsl:variable>    
!                                       <select name="values[cat]" 
class="forms" onMouseover="window.status='{$lang_cat_statustext}'; return 
true;" onMouseout="window.status='';return true;">
                                                <xsl:call-template 
name="cat_select"/>
                                        </select>
***************
*** 26,30 ****
                                </td>
                                <td>
!                                       <textarea cols="60" rows="10" 
name="values[content]" wrap="virtual" onMouseover="window.status='Enter the 
content of the note.';return true;" onMouseout="window.status='';return 
true;"><xsl:value-of select="value_content"/></textarea>
                                </td>
                        </tr>
--- 27,38 ----
                                </td>
                                <td>
!                                       <textarea cols="60" rows="10" 
name="values[content]" wrap="virtual" onMouseout="window.status='';return 
true;">
!                                               <xsl:attribute 
name="onMouseover">
!                                                       
<xsl:text>window.status='</xsl:text>
!                                                               <xsl:value-of 
select="lang_content_statustext"/>
!                                                       <xsl:text>'; return 
true;</xsl:text>
!                                               </xsl:attribute>
!                                               <xsl:value-of 
select="value_content"/>          
!                                       </textarea>
                                </td>
                        </tr>
***************
*** 36,43 ****
                                        <xsl:choose>
                                                        <xsl:when 
test="value_access">
!                                                               <input 
type="checkbox" name="values[access]" value="True" checked="checked" 
onMouseover="window.status='The note is private. If the note should be public, 
uncheck this box.';return true;" onMouseout="window.status='';return true;"/>
                                                        </xsl:when>
                                                        <xsl:otherwise>
!                                                               <input 
type="checkbox" name="values[access]" value="True" 
onMouseover="window.status='The note is public. If the note should be private, 
checked this box.';return true;" onMouseout="window.status='';return true;"/>
                                                        </xsl:otherwise>
                                        </xsl:choose>
--- 44,63 ----
                                        <xsl:choose>
                                                        <xsl:when 
test="value_access">
!                                                               <input 
type="checkbox" name="values[access]" value="True" checked="checked" 
onMouseout="window.status='';return true;">
!                                                                       
<xsl:attribute name="onMouseover">
!                                                                               
<xsl:text>window.status='</xsl:text>
!                                                                               
        <xsl:value-of select="lang_access_on_statustext"/>
!                                                                               
<xsl:text>'; return true;</xsl:text>
!                                                                       
</xsl:attribute>
!                                                               </input>
                                                        </xsl:when>
                                                        <xsl:otherwise>
!                                                               <input 
type="checkbox" name="values[access]" value="True" 
onMouseout="window.status='';return true;">
!                                                                       
<xsl:attribute name="onMouseover">
!                                                                               
<xsl:text>window.status='</xsl:text>
!                                                                               
        <xsl:value-of select="lang_access_off_statustext"/>
!                                                                               
<xsl:text>'; return true;</xsl:text>
!                                                                       
</xsl:attribute>
!                                                               </input>
                                                        </xsl:otherwise>
                                        </xsl:choose>
***************
*** 47,51 ****
                                <td>
                                        <xsl:variable 
name="lang_save"><xsl:value-of select="lang_save"/></xsl:variable>
!                                       <input type="submit" class="forms" 
name="values[save]" value="{$lang_save}" onMouseover="window.status='Saves the 
note.';return true;" onMouseout="window.status='';return true;"/>
                                </td>
                        </tr>
--- 67,77 ----
                                <td>
                                        <xsl:variable 
name="lang_save"><xsl:value-of select="lang_save"/></xsl:variable>
!                                       <input type="submit" class="forms" 
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>
                        </tr>
***************
*** 56,60 ****
                                        <xsl:variable 
name="lang_done"><xsl:value-of select="lang_done"/></xsl:variable>
                                        <form method="post" 
action="{$done_action}">
!                                       <input type="submit" class="forms" 
name="done" value="{$lang_done}" onMouseover="window.status='Back to the 
list.';return true;" onMouseout="window.status='';return true;"/>
                                        </form>
                                </td>
--- 82,92 ----
                                        <xsl:variable 
name="lang_done"><xsl:value-of select="lang_done"/></xsl:variable>
                                        <form method="post" 
action="{$done_action}">
!                                               <input type="submit" 
class="forms" 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>





reply via email to

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