~ubuntu-branches/ubuntu/natty/moin/natty-updates

« back to all changes in this revision

Viewing changes to wiki/htdocs/applets/FCKeditor/editor/filemanager/browser/default/frmactualfolder.html

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-22 21:17:13 UTC
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20080622211713-inlv5k4eifxckelr
ImportĀ upstreamĀ versionĀ 1.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
 * FCKeditor - The text editor for internet
 
3
 * Copyright (C) 2003-2005 Frederico Caldeira Knabben
 
4
 * 
 
5
 * Licensed under the terms of the GNU Lesser General Public License:
 
6
 *              http://www.opensource.org/licenses/lgpl-license.php
 
7
 * 
 
8
 * For further information visit:
 
9
 *              http://www.fckeditor.net/
 
10
 * 
 
11
 * "Support Open Source software. What about a donation today?"
 
12
 * 
 
13
 * File Name: frmactualfolder.html
 
14
 *      This page shows the actual folder path.
 
15
 * 
 
16
 * File Authors:
 
17
 *              Frederico Caldeira Knabben (fredck@fckeditor.net)
 
18
-->
 
19
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 
20
<html>
 
21
        <head>
 
22
                <link href="browser.css" type="text/css" rel="stylesheet">
 
23
                <script type="text/javascript">
 
24
 
 
25
function OnResize()
 
26
{
 
27
        divName.style.width = "1px" ;
 
28
        divName.style.width = tdName.offsetWidth + "px" ;
 
29
}
 
30
 
 
31
function SetCurrentFolder( resourceType, folderPath )
 
32
{
 
33
        document.getElementById('tdName').innerHTML = folderPath ;
 
34
}
 
35
 
 
36
window.onload = function()
 
37
{
 
38
        window.top.IsLoadedActualFolder = true ;
 
39
}
 
40
 
 
41
                </script>
 
42
        </head>
 
43
        <body bottomMargin="0" topMargin="0">
 
44
                <table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0">
 
45
                        <tr>
 
46
                                <td>
 
47
                                        <button style="WIDTH: 100%" type="button">
 
48
                                                <table cellSpacing="0" cellPadding="0" width="100%" border="0">
 
49
                                                        <tr>
 
50
                                                                <td><img height="32" alt="" src="images/FolderOpened32.gif" width="32"></td>
 
51
                                                                <td>&nbsp;</td>
 
52
                                                                <td id="tdName" width="100%" nowrap class="ActualFolder">/</td>
 
53
                                                                <td>&nbsp;</td>
 
54
                                                                <td><img height="8" src="images/ButtonArrow.gif" width="12"></td>
 
55
                                                                <td>&nbsp;</td>
 
56
                                                        </tr>
 
57
                                                </table>
 
58
                                        </button>
 
59
                                </td>
 
60
                        </tr>
 
61
                </table>
 
62
        </body>
 
63
</html>