Subversion Repositories Applications.papyrus

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1075 ddelon 1
<!--
2
 * FCKeditor - The text editor for internet
3
 * Copyright (C) 2003-2006 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>