source: branches/2.2/filemanager/tp/juploader/common.js @ 3367

Revision 3367, 2.7 KB checked in by amuller, 14 years ago (diff)

Ticket #1379 - Implementação do applet de envio avançado

Line 
1<!-- Common javascript functions for the demo site -->
2
3
4function footer() {
5  document.writeln("  <center>");
6  document.writeln("      <table width=100% cellpadding=0 cellspacing=0 border=0>");
7  document.writeln("       <tr><td colspan=3><hr size=1 noshade width=100%></td></tr>");
8  document.writeln("       <tr>");
9  document.writeln("        <td NOWRAP><A HREF='http://sourceforge.net/projects/jupload/'>Sourceforge page</A>&nbsp;|&nbsp;");
10  document.writeln("            <A HREF='index.html'>Home Page (Demo)</A>&nbsp;|&nbsp;");
11  document.writeln("            <A HREF='RELEASE-NOTES.txt'>Release Notes</A>");
12  document.writeln("            &nbsp; &nbsp;");
13  document.writeln("        </td>");
14  document.writeln("        <td><A href='http://sourceforge.net'><IMG src='images/sourceforge_logo.gif' border='0' alt='SourceForge Logo'></A></td>");
15  document.writeln("       </tr>");
16  document.writeln("       <tr>");
17  document.writeln("        <td colspan=2>");
18  document.writeln("            Demo: ");
19  document.writeln("              <A HREF='applet-basic.html'>basic</A>,");
20  document.writeln("              <A HREF='applet-basic-picture.html'>picture mode</A>,");
21  document.writeln("              <A HREF='advanced_js_demo.html'>advanced demo</A>");
22  document.writeln("        </td>");
23  document.writeln("       </tr>");
24  document.writeln("       <tr>");
25  document.writeln("        <td colspan=2>");
26  document.writeln("            Doc:");
27  document.writeln("            <A HREF='apidocs/index.html'>javadoc</A>, &nbsp; ");
28  document.writeln("            <A HREF='howto-debug.html'>HowTo debug it</A>, &nbsp; ");
29  document.writeln("            <A HREF='howto-compile.html'>HowTo compile it</A>, &nbsp; ");
30  document.writeln("            <A HREF='howto-support.html'>HowTo get support</A>, &nbsp; ");
31  document.writeln("            <A HREF='howto-customize.html'>HowTo customize it</A>");
32  document.writeln("                    (<A HREF='apidocs/wjhk/jupload2/policies/package-summary.html'>UploadPolicy</A>, ");
33  document.writeln("                    <A HREF='apidocs/wjhk/jupload2/filedata/package-summary.html'>FileData</A>) &nbsp; ");
34  document.writeln("            <A HREF='howto-translate.html'>HowTo translate it</A>");
35  document.writeln("        </td>");
36  document.writeln("       </tr>");
37  document.writeln("       <tr><td colspan=3><hr size=1 noshade width=100%></td></tr>");
38  document.writeln("       <tr><td colspan=3><b>Note</b>: This demo is updated automatically from the SVN repository.<br />Therefore, this demo may contain features which are <b>not yet</b> available from regular downloads!</td></tr>");
39  document.writeln("      </table>");
40  document.writeln("  </center>");
41}
42
Note: See TracBrowser for help on using the repository browser.