phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] tts/templates/base app_data.xsl viewticket_deta...


From: Dave Hall
Subject: [Phpgroupware-cvs] tts/templates/base app_data.xsl viewticket_deta...
Date: Sun, 15 Oct 2006 15:14:08 +0000

CVSROOT:        /cvsroot/phpgroupware
Module name:    tts
Changes by:     Dave Hall <skwashd>     06/10/15 15:14:08

Added files:
        templates/base : app_data.xsl viewticket_details.xsl 

Log message:
        tweaks and a missing files

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/tts/templates/base/app_data.xsl?cvsroot=phpgroupware&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/tts/templates/base/viewticket_details.xsl?cvsroot=phpgroupware&rev=1.1

Patches:
Index: app_data.xsl
===================================================================
RCS file: app_data.xsl
diff -N app_data.xsl

Index: viewticket_details.xsl
===================================================================
RCS file: viewticket_details.xsl
diff -N viewticket_details.xsl
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ viewticket_details.xsl      15 Oct 2006 15:14:08 -0000      1.1
@@ -0,0 +1,115 @@
+<xsl:template match="view_ticket">
+       <div class="tabsholder">
+               <ul class="tabs">
+                       <li id="tab1"><a 
href="javascript:oTabs.display(1);"><span><xsl:value-of 
select="lang/summary"/></span></a></li>
+                       <li id="tab2"><a 
href="javascript:oTabs.display(2);"><span><xsl:value-of select="lang/notes" 
/></span></a></li>
+                       <li id="tab3"><a 
href="javascript:oTabs.display(3);"><span><xsl:value-of select="lang/history" 
/></span></a></li>
+                       <li id="tab4"><a 
href="javascript:oTabs.display(4);"><span><xsl:value-of select="lang/update" 
/></span></a></li>
+               </ul><br />
+       </div>
+       
+       <div class="msg">{messages}</div>
+
+       <form method="post" action="{form_action}" 
enctype="multipart/form-data">
+
+               <div id="tabcontent1">
+                       <xsl:for-each select="view">
+                                       <span class="mock_label"><xsl:value-of 
select="label" /></span>
+                                       <xsl:value-of select="value" 
disable-output-escaping="yes" /><br />
+                       </xsl:for-each>
+               </div>
+
+               <div id="tabcontent2">
+                       <xsl:choose>
+                               <xsl:when test="count(notes/*)">
+                                       <xsl:for-each select="notes">
+                                               <div class="tts_note">
+                                                               <xsl:attribute 
name="class">
+                                                                       
<xsl:choose>
+                                                                               
<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>
+                                                       <div>
+                                                               <xsl:value-of 
select="note_contents" disable-output-escaping="yes" />
+                                                       </div>
+                                                       <p 
class="tts_note_info"><xsl:value-of select="note_user" /> @ <xsl:value-of 
select="note_date" /></p>
+                                               </div>
+                                       </xsl:for-each>
+                               </xsl:when>
+                       </xsl:choose>
+               </div>
+
+               <div id="tabcontent3">
+                       <xsl:choose>
+                               <xsl:when test="count(history/*)">
+                                       <table>
+                                               <thead>
+                                                       <tr>
+                                                               
<td><xsl:value-of select="lang/date" /></td>
+                                                               
<td><xsl:value-of select="lang/user" /></td>
+                                                               
<td><xsl:value-of select="lang/action" /></td>
+                                                               
<td><xsl:value-of select="lang/old_value" /></td>
+                                                               
<td><xsl:value-of select="lang/new_value" /></td>
+                                                       </tr>
+                                               </thead>
+                                               <tbody>
+                                                       <xsl:for-each 
select="history">
+                                                       <tr>
+                                                               <xsl:attribute 
name="class">
+                                                                       
<xsl:choose>
+                                                                               
<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>
+                                                               
<td><xsl:value-of select="datetime" /></td>
+                                                               
<td><xsl:value-of select="owner" /></td>
+                                                               
<td><xsl:value-of select="action" /></td>
+                                                               
<td><xsl:value-of select="old_value" /></td>
+                                                               
<td><xsl:value-of select="new_value" /></td>
+                                                       </tr>
+                                                       </xsl:for-each>
+                                               </tbody>
+                                       </table>
+                               </xsl:when>
+                               <xsl:otherwise>
+                                       <xsl:value-of select="lang/no_history" 
/>
+                               </xsl:otherwise>
+                       </xsl:choose>
+               </div>
+
+               <div id="tabcontent4">
+                       <xsl:choose>
+                               <xsl:when test="edit">
+                                       <xsl:for-each 
select="form_elements//form_elm">
+                                               <xsl:call-template 
name="form_elm" />
+                                       </xsl:for-each>
+                                       <!-- <xsl:apply-templates select="edit" 
/> -->
+                               </xsl:when>
+                               <xsl:otherwise>
+                                       <xsl:value-of select="lang/no_rights" />
+                               </xsl:otherwise>
+                       </xsl:choose>
+               </div>
+
+               <div class="button_group">
+                       <xsl:choose>
+                               <xsl:when test="edit">
+                                       <input type="submit" id="submit" 
name="submit" value="{lang/save}" />
+                               </xsl:when>
+                       </xsl:choose>
+                       <input type="submit" id="close" name="close" 
onclick="self.location.href='{done_url}';" value="{lang/close}" />
+               </div>
+
+       </form>
+
+</xsl:template>
+




reply via email to

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