Look: File manager is simpler
This commit is contained in:
parent
ffd1c17a26
commit
147822c82e
@ -182,15 +182,12 @@ function OnUploadCompleted( errorNumber, fileUrl, fileName, customMsg )
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<frameset cols="150,*" class="Frame" framespacing="3" bordercolor="#f1f1e3" frameborder="1">
|
||||
<frameset rows="50,*" framespacing="0">
|
||||
<frame src="frmresourcetype.php" scrolling="no" frameborder="0">
|
||||
<frame name="frmFolders" src="frmfolders.php" scrolling="auto" frameborder="0">
|
||||
</frameset>
|
||||
<frameset cols="150,*" framespacing="3" border="1" style="border: 2px solid #CCCCCC;">
|
||||
<frame name="frmFolders" src="frmfolders.php" scrolling="auto" frameborder="1">
|
||||
<frameset rows="50,*,50" framespacing="0">
|
||||
<frame name="frmActualFolder" src="frmactualfolder.php" scrolling="no" frameborder="0">
|
||||
<frame name="frmResourcesList" src="frmresourceslist.php" scrolling="auto" frameborder="0">
|
||||
<frameset cols="150,*,0" framespacing="0" frameborder="0">
|
||||
<frameset cols="150,*,0" framespacing="0" border="0">
|
||||
<frame name="frmCreateFolder" src="frmcreatefolder.php" scrolling="no" frameborder="0">
|
||||
<frame name="frmUpload" src="frmupload.php" scrolling="no" frameborder="0">
|
||||
<frame name="frmUploadWorker" src="javascript:void(0)" scrolling="no" frameborder="0">
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
/* Copyright (C) 2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
/* Copyright (C) 2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
||||
*
|
||||
* Source modified from part of fckeditor (http://www.fckeditor.net)
|
||||
|
||||
@ -1,91 +0,0 @@
|
||||
<?php
|
||||
/* Copyright (C) 2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
||||
*
|
||||
* Source modified from part of fckeditor (http://www.fckeditor.net)
|
||||
* retreived as GPL v2 or later
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
require('../../../../main.inc.php'); ?>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
<!--
|
||||
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
||||
* Copyright (C) 2003-2010 Frederico Caldeira Knabben
|
||||
*
|
||||
* == BEGIN LICENSE ==
|
||||
*
|
||||
* Licensed under the terms of any of the following licenses at your
|
||||
* choice:
|
||||
*
|
||||
* - GNU General Public License Version 2 or later (the "GPL")
|
||||
* http://www.gnu.org/licenses/gpl.html
|
||||
*
|
||||
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
||||
* http://www.gnu.org/licenses/lgpl.html
|
||||
*
|
||||
* - Mozilla Public License Version 1.1 or later (the "MPL")
|
||||
* http://www.mozilla.org/MPL/MPL-1.1.html
|
||||
*
|
||||
* == END LICENSE ==
|
||||
*
|
||||
* This page shows the list of available resource types.
|
||||
-->
|
||||
<html>
|
||||
<head>
|
||||
<title>Available types</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<link href="browser.css" type="text/css" rel="stylesheet">
|
||||
<script type="text/javascript" src="js/common.js"></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
function SetResourceType( type )
|
||||
{
|
||||
window.parent.frames["frmFolders"].SetResourceType( type ) ;
|
||||
}
|
||||
|
||||
var aTypes = [
|
||||
['File','File'],
|
||||
['Image','Image'],
|
||||
['Flash','Flash'],
|
||||
['Media','Media']
|
||||
] ;
|
||||
|
||||
window.onload = function()
|
||||
{
|
||||
var oCombo = document.getElementById('cmbType') ;
|
||||
oCombo.innerHTML = '' ;
|
||||
for ( var i = 0 ; i < aTypes.length ; i++ )
|
||||
{
|
||||
if ( oConnector.ShowAllTypes || aTypes[i][0] == oConnector.ResourceType )
|
||||
AddSelectOption( oCombo, aTypes[i][1], aTypes[i][0] ) ;
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<table class="fullHeight" cellSpacing="0" cellPadding="0" width="100%" border="0">
|
||||
<tr>
|
||||
<td nowrap>
|
||||
Resource Type<BR>
|
||||
<select id="cmbType" style="WIDTH: 100%" onchange="SetResourceType(this.value);">
|
||||
<option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@ -20,7 +20,7 @@
|
||||
/**
|
||||
* \file htdocs/theme/auguria/style.css.php
|
||||
* \brief Fichier de style CSS du theme auguria
|
||||
* \version $Id: style.css.php,v 1.99 2011/08/16 16:39:13 eldy Exp $
|
||||
* \version $Id: style.css.php,v 1.100 2011/08/16 17:59:46 eldy Exp $
|
||||
*/
|
||||
|
||||
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
|
||||
@ -1970,7 +1970,6 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
||||
border: 0px solid #FF0000 !important;
|
||||
}
|
||||
span.cke_skin_kama { padding: 0 ! important; }
|
||||
|
||||
a.cke_dialog_ui_button
|
||||
{
|
||||
font-family: <?php print $fontlist ?> !important;
|
||||
@ -1986,6 +1985,10 @@ a.cke_dialog_ui_button
|
||||
-webkit-box-shadow: 4px 4px 4px #CCC !important;
|
||||
box-shadow: 4px 4px 4px #CCC !important;
|
||||
}
|
||||
.cke_dialog_ui_hbox_last
|
||||
{
|
||||
vertical-align: bottom ! important;
|
||||
}
|
||||
|
||||
|
||||
/* ============================================================================== */
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
/**
|
||||
* \file htdocs/theme/eldy/style.css.php
|
||||
* \brief Fichier de style CSS du theme Eldy
|
||||
* \version $Id: style.css.php,v 1.106 2011/08/16 16:39:13 eldy Exp $
|
||||
* \version $Id: style.css.php,v 1.107 2011/08/16 17:59:46 eldy Exp $
|
||||
*/
|
||||
|
||||
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
|
||||
@ -2004,7 +2004,6 @@ A.none, A.none:active, A.none:visited, A.none:hover {
|
||||
}
|
||||
span.cke_skin_kama { padding: 0 !important; }
|
||||
.cke_wrapper { padding: 4px !important; }
|
||||
|
||||
a.cke_dialog_ui_button
|
||||
{
|
||||
font-family: <?php print $fontlist ?> !important;
|
||||
@ -2020,6 +2019,10 @@ a.cke_dialog_ui_button
|
||||
-webkit-box-shadow: 4px 4px 4px #CCC !important;
|
||||
box-shadow: 4px 4px 4px #CCC !important;
|
||||
}
|
||||
.cke_dialog_ui_hbox_last
|
||||
{
|
||||
vertical-align: bottom ! important;
|
||||
}
|
||||
|
||||
|
||||
/* ============================================================================== */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user