Subversion Repositories Applications.papyrus

Rev

Rev 1688 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1688 Rev 1921
Line -... Line 1...
-
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1
<!--
2
<!--
2
 * FCKeditor - The text editor for internet
3
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
4
 * Copyright (C) 2003-2008 Frederico Caldeira Knabben
-
 
5
 *
-
 
6
 * == BEGIN LICENSE ==
4
 * 
7
 *
5
 * Licensed under the terms of the GNU Lesser General Public License:
8
 * Licensed under the terms of any of the following licenses at your
6
 * 		http://www.opensource.org/licenses/lgpl-license.php
9
 * choice:
7
 * 
10
 *
8
 * For further information visit:
11
 *  - GNU General Public License Version 2 or later (the "GPL")
9
 * 		http://www.fckeditor.net/
12
 *    http://www.gnu.org/licenses/gpl.html
10
 * 
13
 *
11
 * "Support Open Source software. What about a donation today?"
14
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
-
 
15
 *    http://www.gnu.org/licenses/lgpl.html
12
 * 
16
 *
13
 * File Name: frmresourcetype.html
17
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
14
 * 	This page shows the list of available resource types.
18
 *    http://www.mozilla.org/MPL/MPL-1.1.html
15
 * 
19
 *
16
 * File Authors:
20
 * == END LICENSE ==
-
 
21
 *
17
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
22
 * This page shows the list of available resource types.
18
-->
23
-->
19
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-
 
20
<html>
24
<html>
21
	<head>
25
	<head>
-
 
26
		<title>Available types</title>
22
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
27
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
23
		<link href="browser.css" type="text/css" rel="stylesheet">
28
		<link href="browser.css" type="text/css" rel="stylesheet">
24
		<script type="text/javascript" src="js/common.js"></script>
29
		<script type="text/javascript" src="js/common.js"></script>
25
		<script language="javascript">
30
		<script type="text/javascript">
Line 26... Line 31...
26
 
31
 
27
function SetResourceType( type )
32
function SetResourceType( type )
28
{
33
{
29
	window.parent.frames["frmFolders"].SetResourceType( type ) ;
34
	window.parent.frames["frmFolders"].SetResourceType( type ) ;
Line 36... Line 41...
36
	['Media','Media']
41
	['Media','Media']
37
] ;
42
] ;
Line 38... Line 43...
38
 
43
 
39
window.onload = function()
44
window.onload = function()
-
 
45
{
-
 
46
	var oCombo = document.getElementById('cmbType') ;
40
{
47
	oCombo.innerHTML = '' ;
41
	for ( var i = 0 ; i < aTypes.length ; i++ )
48
	for ( var i = 0 ; i < aTypes.length ; i++ )
42
	{
49
	{
43
		if ( oConnector.ShowAllTypes || aTypes[i][0] == oConnector.ResourceType )
50
		if ( oConnector.ShowAllTypes || aTypes[i][0] == oConnector.ResourceType )
44
			AddSelectOption( document.getElementById('cmbType'), aTypes[i][1], aTypes[i][0] ) ;
51
			AddSelectOption( oCombo, aTypes[i][1], aTypes[i][0] ) ;
45
	}
52
	}
Line 46... Line 53...
46
}
53
}
47
 
54
 
48
		</script>
55
		</script>
49
	</head>
56
	</head>
50
	<body bottomMargin="0" topMargin="0">
57
	<body>
51
		<table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0">
58
		<table class="fullHeight" cellSpacing="0" cellPadding="0" width="100%" border="0">
52
			<tr>
59
			<tr>
53
				<td nowrap>
60
				<td nowrap>
-
 
61
					Resource Type<BR>
54
					Resource Type<BR>
62
					<select id="cmbType" style="WIDTH: 100%" onchange="SetResourceType(this.value);">
55
					<select id="cmbType" style="WIDTH: 100%" onchange="SetResourceType(this.value);">
63
						<option>&nbsp;
56
					</select>
64
					</select>
57
				</td>
65
				</td>
58
			</tr>
66
			</tr>