source: branches/2.2/filemanager/tp/expressowindow/xsl/historyFile.xsl @ 5059

Revision 5059, 1.6 KB checked in by alexandrecorreia, 13 years ago (diff)

Ticket #2263 - Corrigido total usado dentro do filemanager (não estava contabilizando corretamente)

Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3        <xsl:output method="html" omit-xml-declaration="yes"/>
4       
5        <xsl:param name="lang_created" />
6        <xsl:param name="lang_history" />
7        <xsl:param name="lang_operation" />
8        <xsl:param name="lang_version" />
9        <xsl:param name="lang_who" />
10        <xsl:param name="height" />
11        <xsl:param name="path_filemanager" />
12        <xsl:param name="width" />
13       
14        <xsl:template match="file">
15               
16                <div style="font-size:10pt; margin: 10px 6px 10px 6px; border-bottom:1px solid #000;">
17                        <img src="{$path_filemanager}templates/default/images/button_info.png" style="margin-right: 5px;"/>
18                        <label style="font-size:12px;font-weight:bold;"> <xsl:value-of select="$lang_history" /></label>
19                </div>
20               
21                <div style='margin:6px; width:{($width)-20}px ; height:{($height)-80}px; overflow-y: auto; text-align: left;'>
22                        <xsl:for-each select="info">
23                                <div style="margin-bottom:10px;">
24                                        <label style="font-weight:bold; margin-right:5px"><xsl:value-of select="$lang_created" />.:</label>
25                                        <xsl:value-of select="created" />
26                                        <br/>
27                                        <label style="font-weight:bold; margin-right:5px"><xsl:value-of select="$lang_version" />.:</label>                     
28                                        <xsl:value-of select="version" />
29                                        <br/>
30                                        <label style="font-weight:bold; margin-right:5px"><xsl:value-of select="$lang_who" />.:</label>
31                                        <xsl:value-of select="who" />
32                                        <br/>
33                                        <label style="font-weight:bold; margin-right:5px"><xsl:value-of select="$lang_operation" />.: </label>
34                                        <xsl:value-of select="operation" />
35                                </div>         
36
37                        </xsl:for-each>
38                </div>
39
40        </xsl:template>
41       
42</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.