source: companies/serpro/instant_messenger/xsl/send_file.xsl @ 903

Revision 903, 1.3 KB checked in by niltonneto, 15 years ago (diff)

Importacao inicial do Expresso do Serpro

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:template match="/send_file">
6        <html>
7                <head>
8                </head>
9                <body>
10                        <iframe style="display:none;" name="send_file"></iframe>
11                        <div id="div_send_file_im" style="margin-left:5px;margin-top:10px;display:block;">
12                        <span><xsl:value-of select="@lang1" /></span>
13                        <form method="POST" target="send_file" action="{@path}inc/class.upload.inc.php" enctype="multipart/form-data">
14                                        <input id="to_jid_im" type="hidden" value="{@jid}" name="to" />
15                                        <input id="send_file_im" type="file" size="40" name="file" />
16                            <input type="submit" value="{@lang2}" onclick="javascript:Templates.Wait_file('{@jid}');return true;" />
17                                </form>
18                        </div>
19                        <div id="status_upload" style="margin-left:5px;margin-top:10px;display:none;">
20                                <span><xsl:value-of select="@lang3" /></span>
21                                <br /><br />
22                                <div id="progressbar_p" style="border:1px solid #C9D9E8;width:70%;height:12%">
23                                        <div id="progressbar_f" style="border:1px solid #000;width:0%;height:100%;background-color:#C9D9E8;text-align:right">
24                                                <font style="font-size:8pt"><span id="porcent_im">100%</span></font>
25                                        </div>
26                                </div>
27                        </div>
28                </body>
29        </html>
30</xsl:template>
31</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.