修复上传头像

This commit is contained in:
zhanghongqing
2018-04-08 15:05:33 +08:00
parent 82eef927b8
commit fd57a99f34
540 changed files with 26242 additions and 13 deletions

View File

@@ -212,9 +212,9 @@ task_time=task time
#==========message begin=====================
required=This field is required\uFF01
required=This field is required\uff01
select=Please select
date_list=Date List
date_list=Data List
confirm_message=Are you sure?
fill_loginName=Please fill in the loginName
fill_loginPassWord=Please fill in the passWord
@@ -240,11 +240,11 @@ hasnot_approved=It has not been approved and can not be operated on !
check_one=choose one please !
one_more=please choose at least one !
custom_columns=custom columns
maxlength_64=The maxlength is 64\uFF01
maxlength_128=The maxlength is 128\uFF01
maxlength_256=The maxlength is 256\uFF01
maxlength_512=The maxlength is 512\uFF01
maxlength_4000=The maxlength is 4000\uFF01
maxlength_64=The maxlength is 64\uff01
maxlength_128=The maxlength is 128\uff01
maxlength_256=The maxlength is 256\uff01
maxlength_512=The maxlength is 512\uff01
maxlength_4000=The maxlength is 4000\uff01
ok=ok
clear=clear
close=close

View File

@@ -187,7 +187,7 @@ task_time=task time
#==========message begin=====================
required=This field is required?
select=Please select
date_list=Date List
date_list=Data List
confirm_message=Are you sure?
fill_loginName=Please fill in the loginName
fill_loginPassWord=Please fill in the passWord

View File

@@ -7,7 +7,7 @@
<script type="text/javascript">
var ${replace}Ckeditor = CKEDITOR.replace("${replace}");
${replace}Ckeditor.config.height = "${height}";//<c:if test="${not empty uploadPath}">
${replace}Ckeditor.config.ckfinderPath="${ctxStatic}/ckfinder";
${replace}Ckeditor.config.ckfinderPath="${ctxStatic}/global/plugins/ckfinder";
var date = new Date(), year = date.getFullYear(), month = (date.getMonth()+1)>9?date.getMonth()+1:"0"+(date.getMonth()+1);
${replace}Ckeditor.config.ckfinderUploadPath="${uploadPath}/"+year+"/"+month+"/";//</c:if>
</script>

View File

@@ -11,7 +11,7 @@
<script type="text/javascript">
function ${input}FinderOpen(){//<c:if test="${type eq 'thumb'}"><c:set var="ctype" value="images"/></c:if><c:if test="${type ne 'thumb'}"><c:set var="ctype" value="${type}"/></c:if>
var date = new Date(), year = date.getFullYear(), month = (date.getMonth()+1)>9?date.getMonth()+1:"0"+(date.getMonth()+1);
var url = "${ctxStatic}/ckfinder/ckfinder.html?type=${ctype}&start=${ctype}:${uploadPath}/"+year+"/"+month+
var url = "${ctxStatic}/global/plugins/ckfinder/ckfinder.html?type=${ctype}&start=${ctype}:${uploadPath}/"+year+"/"+month+
"/&action=js&func=${input}SelectAction&thumbFunc=${input}ThumbSelectAction&cb=${input}Callback&dts=${type eq 'thumb'?'1':'0'}&sm=${selectMultiple?1:0}";
windowOpen(url,"文件管理",1000,700);
//top.$.jBox("iframe:"+url+"&pwMf=1", {title: "文件管理", width: 1000, height: 500, buttons:{'关闭': true}});

View File

@@ -52,7 +52,7 @@
<tr id="${menu.id}" pId="${menu.parent.id ne 1?menu.parent.id:0}">
<td nowrap><i class="icon-${not empty menu.icon?menu.icon:' hide'}"></i><a href="${ctx}/sys/menu/form?id=${menu.id}">${menu.name}</a></td>
<td>${menu.code}</td>
<td title="${menu.href}">${fns:abbr(menu.href,30)}</td>
<td title="${menu.href}">${fns:abbr(menu.href,300)}</td>
<td style="text-align:center;">
<shiro:hasPermission name="sys:menu:edit">
<input type="hidden" name="ids" value="${menu.id}"/>

View File

@@ -145,7 +145,7 @@
</servlet>
<servlet-mapping>
<servlet-name>CKFinderConnectorServlet</servlet-name>
<url-pattern>/static/ckfinder/core/connector/java/connector.java</url-pattern>
<url-pattern>/static/global/plugins/ckfinder/core/connector/java/connector.java</url-pattern>
</servlet-mapping>
<filter>
<filter-name>FileUploadFilter</filter-name>
@@ -161,7 +161,7 @@
</filter>
<filter-mapping>
<filter-name>FileUploadFilter</filter-name>
<url-pattern>/static/ckfinder/core/connector/java/connector.java</url-pattern>
<url-pattern>/static/global/plugins/ckfinder/core/connector/java/connector.java</url-pattern>
</filter-mapping>

View File

@@ -0,0 +1,69 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2012, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute this file or part of its contents. The contents of
* this file is part of the Source Code of CKFinder.
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder - Sample - CKEditor Integration</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<link href="sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="/ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="../ckfinder.js"></script>
</head>
<body>
<h1 class="samples">
CKFinder - Sample - CKEditor Integration
</h1>
<div class="description">
CKFinder can be easily integrated with <a href="http://ckeditor.com">CKEditor</a>. Try it now, by clicking
the "Image" or "Link" icons and then the "<strong>Browse Server</strong>" button.</div>
<p>
<textarea id="editor1" name="editor1" rows="10" cols="80"></textarea>
<script type="text/javascript">
// This is a check for the CKEditor class. If not defined, the paths must be checked.
if ( typeof CKEDITOR == 'undefined' )
{
document.write(
'<strong><span style="color: #ff0000">Error</span>: CKEditor not found</strong>.' +
'This sample assumes that CKEditor (not included with CKFinder) is installed in' +
'the "/ckeditor/" path. If you have it installed in a different place, just edit' +
'this file, changing the wrong paths in the &lt;head&gt; (line 5) and the "BasePath"' +
'value (line 32).' ) ;
}
else
{
var editor = CKEDITOR.replace( 'editor1' );
editor.setData( '<p>Just click the <b>Image</b> or <b>Link</b> button, and then <b>&quot;Browse Server&quot;</b>.</p>' );
// Just call CKFinder.setupCKEditor and pass the CKEditor instance as the first argument.
// The second parameter (optional), is the path for the CKFinder installation (default = "/ckfinder/").
CKFinder.setupCKEditor( editor, '../' ) ;
// It is also possible to pass an object with selected CKFinder properties as a second argument.
// CKFinder.setupCKEditor( editor, { basePath : '../', skin : 'v1' } ) ;
}
</script>
</p>
<div id="footer">
<hr />
<p>
CKFinder - Ajax File Manager - <a class="samples" href="http://ckfinder.com/">http://ckfinder.com</a>
</p>
<p id="copy">
Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,70 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2012, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute this file or part of its contents. The contents of
* this file is part of the Source Code of CKFinder.
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder - Sample - FCKeditor Integration</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<link href="sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="/fckeditor/fckeditor.js"></script>
<script type="text/javascript" src="../ckfinder.js"></script>
</head>
<body>
<h1 class="samples">
CKFinder - Sample - FCKeditor Integration
</h1>
<div class="description">
CKFinder can be easily integrated with FCKeditor. Try it now, by clicking
the "Image" or "Link" icons and then the "<strong>Browse Server</strong>" button.</div>
<p>
<script type="text/javascript">
// This is a check for the FCKeditor class. If not defined, the paths must be checked.
if ( typeof FCKeditor == 'undefined' )
{
document.write(
'<strong><span style="color: #ff0000">Error</span>: FCKeditor not found</strong>.' +
'This sample assumes that FCKeditor (not included with CKFinder) is installed in' +
'the "/fckeditor/" path. If you have it installed in a different place, just edit' +
'this file, changing the wrong paths in the &lt;head&gt; (line 5) and the "BasePath"' +
'value (line 32).' ) ;
}
else
{
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
oFCKeditor.BasePath = '/fckeditor/' ;
oFCKeditor.Value = '<p>Just click the <b>Image</b> or <b>Link</b> button, and then <b>&quot;Browse Server&quot;</b>.</p>' ;
// Just call CKFinder.setupFCKeditor before calling Create(), CreateHtml()
// or ReplaceTextarea() in FCKeditor. The second parameter (optional), is
// the path for the CKFinder installation (default = "/ckfinder/").
CKFinder.setupFCKeditor( oFCKeditor, '../' ) ;
// It is also possible to pass an object with selected CKFinder properties as a second argument.
// CKFinder.setupFCKeditor( oFCKeditor, { basePath : '../', skin : 'v1' } ) ;
oFCKeditor.Create() ;
}
</script>
</p>
<div id="footer">
<hr />
<p>
CKFinder - Ajax File Manager - <a class="samples" href="http://ckfinder.com/">http://ckfinder.com</a>
</p>
<p id="copy">
Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,52 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2012, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute this file or part of its contents. The contents of
* this file is part of the Source Code of CKFinder.
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder - Samples</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="samples">
CKFinder Samples Site
</h1>
<h2 class="samples">
Basic Samples (JavaScript)
</h2>
<ul class="samples">
<li><a class="samples" href="standalone.html">Standalone</a><br />The basic integration sample.</li>
<li><a class="samples" href="standalone_v1.html">Standalone (V1)</a><br />The basic integration sample using the old "V1" API from CKFinder 1.x.</li>
<li><a class="samples" href="popup.html">Popup</a><br />CKFinder running in a popup.</li>
<li><a class="samples" href="popups.html">Popups</a><br />CKFinder running in a popup, each instance having its own configuration.</li>
<li><a class="samples" href="public_api.html">Public API</a><br />CKFinder API usage.</li>
<li><a class="samples" href="ckeditor.html">CKEditor integration</a><br />CKEditor with CKFinder being used as a file browser.</li>
<li><a class="samples" href="fckeditor.html">FCKeditor integration</a><br />FCKeditor with CKFinder being used as a file browser.</li>
</ul>
<h2 class="samples">
Java Samples
</h2>
<ul class="samples">
<li><a class="samples" href="tagusage.jsp">Standalone</a><br />The basic integration sample.</li>
</ul>
<div id="footer">
<hr />
<p>
CKFinder - Ajax File Manager - <a class="samples" href="http://ckfinder.com/">http://ckfinder.com</a>
</p>
<p id="copy">
Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,68 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2012, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute this file or part of its contents. The contents of
* this file is part of the Source Code of CKFinder.
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder - Sample - Popup</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<link href="sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../ckfinder.js"></script>
<script type="text/javascript">
function BrowseServer()
{
// You can use the "CKFinder" class to render CKFinder in a page:
var finder = new CKFinder();
finder.basePath = '../'; // The path for the installation of CKFinder (default = "/ckfinder/").
finder.selectActionFunction = SetFileField;
finder.popup();
// It can also be done in a single line, calling the "static"
// popup( basePath, width, height, selectFunction ) function:
// CKFinder.popup( '../', null, null, SetFileField ) ;
//
// The "popup" function can also accept an object as the only argument.
// CKFinder.popup( { basePath : '../', selectActionFunction : SetFileField } ) ;
}
// This is a sample function which is called when a file is selected in CKFinder.
function SetFileField( fileUrl )
{
document.getElementById( 'xFilePath' ).value = fileUrl;
}
</script>
</head>
<body>
<h1 class="samples">
CKFinder - Sample - Popup<br />
</h1>
<div class="description">
CKFinder may be used in a popup. You may define a custom JavaScript function to be called when
an image is selected (double-clicked).</div>
<p>
Selected File URL<br />
<input id="xFilePath" name="FilePath" type="text" size="60" />
<input type="button" value="Browse Server" onclick="BrowseServer();" />
</p>
<div id="footer">
<hr />
<p>
CKFinder - Ajax File Manager - <a class="samples" href="http://ckfinder.com/">http://ckfinder.com</a>
</p>
<p id="copy">
Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,118 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2012, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute this file or part of its contents. The contents of
* this file is part of the Source Code of CKFinder.
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder - Sample - Popups</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<link href="sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../ckfinder.js"></script>
<style type="text/css">
img {
padding:10px;
margin:5px;
border:1px solid #d5d5d5;
}
div.thumb {
float:left;
}
div.caption {
padding-left:5px;
font-size:10px;
}
</style>
<script type="text/javascript">
function BrowseServer( startupPath, functionData )
{
// You can use the "CKFinder" class to render CKFinder in a page:
var finder = new CKFinder();
// The path for the installation of CKFinder (default = "/ckfinder/").
finder.basePath = '../';
//Startup path in a form: "Type:/path/to/directory/"
finder.startupPath = startupPath;
// Name of a function which is called when a file is selected in CKFinder.
finder.selectActionFunction = SetFileField;
// Additional data to be passed to the selectActionFunction in a second argument.
// We'll use this feature to pass the Id of a field that will be updated.
finder.selectActionData = functionData;
// Name of a function which is called when a thumbnail is selected in CKFinder.
finder.selectThumbnailActionFunction = ShowThumbnails;
// Launch CKFinder
finder.popup();
}
// This is a sample function which is called when a file is selected in CKFinder.
function SetFileField( fileUrl, data )
{
document.getElementById( data["selectActionData"] ).value = fileUrl;
}
// This is a sample function which is called when a thumbnail is selected in CKFinder.
function ShowThumbnails( fileUrl, data )
{
// this = CKFinderAPI
var sFileName = this.getSelectedFile().name;
document.getElementById( 'thumbnails' ).innerHTML +=
'<div class="thumb">' +
'<img src="' + fileUrl + '" />' +
'<div class="caption">' +
'<a href="' + data["fileUrl"] + '" target="_blank">' + sFileName + '</a> (' + data["fileSize"] + 'KB)' +
'</div>' +
'</div>';
document.getElementById( 'preview' ).style.display = "";
// It is not required to return any value.
// When false is returned, CKFinder will not close automatically.
return false;
}
</script>
</head>
<body>
<h1 class="samples">
CKFinder - Sample - Popups<br />
</h1>
<div class="description">
CKFinder may be opened in a popup. You may define a custom JavaScript function to be called when
an image is selected (double-clicked).</div>
<p>
<strong>Selected File URL</strong><br/>
<input id="xFilePath" name="FilePath" type="text" size="60" />
<input type="button" value="Browse Server" onclick="BrowseServer( 'Files:/', 'xFilePath' );" />
</p>
<p>
<strong>Selected Image URL</strong><br/>
<input id="xImagePath" name="ImagePath" type="text" size="60" />
<input type="button" value="Browse Server" onclick="BrowseServer( 'Images:/', 'xImagePath' );" />
</p>
<div id="preview" style="display:none">
<strong>Selected Thumbnails</strong><br/>
<div id="thumbnails"></div>
</div>
<div id="footer">
<hr />
<p>
CKFinder - Ajax File Manager - <a class="samples" href="http://ckfinder.com/">http://ckfinder.com</a>
</p>
<p id="copy">
Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,128 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2012, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute this file or part of its contents. The contents of
* this file is part of the Source Code of CKFinder.
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder - Sample - Public API</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<link href="sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../ckfinder.js"></script>
</head>
<body>
<h1 class="samples">
CKFinder - Sample - API examples
</h1>
<div class="description">
<p>
CKFinder contains simple yet powerful <a href="http://docs.cksource.com/ckfinder_2.x_api/symbols/CKFinderAPI.html">API</a> which allows you to extend it with your own features.
</p>
<p>
In this example, please check the <strong>file and folder context menu</strong> and <strong>toolbar in the Basket folder</strong>.
</p>
</div>
<p style="padding-left: 30px; padding-right: 30px;">
<script type="text/javascript">
// See http://docs.cksource.com/ckfinder_2.x_api/symbols/CKFinder.html#.addPlugin
// See http://docs.cksource.com/CKFinder_2.x/Developers_Guide/PHP/Plugins/Writing_JavaScript
CKFinder.addPlugin('basketTest',
{
basketToolbar :
[
[
// UI type have to be in string form.
'basketTest',
{
label : 'Basket Test',
icon : false,
onClick : function()
{
alert( 'My own function executed after pressing Basket Test.' );
}
}
]
],
basketFileContextMenu :
[
[
'basketTest',
{
label : 'Basket Test',
onClick : function()
{
alert( 'My own function executed after selecting Basket Test in the context menu.' );
},
group : 'file1'
}
]
]
});
// You can use the "CKFinder" class to render CKFinder in a page:
var finder = new CKFinder();
finder.extraPlugins = 'basketTest';
finder.basePath = '../'; // The path for the installation of CKFinder (default = "/ckfinder/").
finder.callback = function( api )
{
// Add new sidebar tool space (with layout).
var toolId = api.addToolPanel();
api.hideTool( toolId );
// Add new file context menu option.
var sampleFileContextMenu =
{
label : 'API test',
command : 'test',
group : 'file3'
};
api.addFileContextMenuOption( sampleFileContextMenu, function( api, file )
{
var markup = "<h3>Selected file</h3><p>You've selected file &quot;" + file.folder.getPath() + file.name + "&quot;</p>";
api.document.getElementById( toolId ).innerHTML = markup;
api.showTool( toolId );
api.openMsgDialog( "", "Take a look at the bottom of left sidebar - it contains information about selected file." );
});
// Add new folder context menu option.
var sampleFolderContextMenu =
{
label : 'API test',
command : 'test',
group : 'folder3'
};
api.addFolderContextMenuOption( sampleFolderContextMenu, function( api, folder )
{
var markup = "<h3>Selected folder</h3><p>You've selected folder &quot;" + folder.getPath() + "&quot;</p>";
api.document.getElementById( toolId ).innerHTML = markup;
api.showTool( toolId );
api.openMsgDialog( "", "Take a look at the bottom of left sidebar - it contains information about selected folder." );
});
};
finder.create();
</script>
</p>
<div id="footer">
<hr />
<p>
CKFinder - Ajax File Manager - <a class="samples" href="http://ckfinder.com/">http://ckfinder.com</a>
</p>
<p id="copy">
Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,171 @@
/*
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2012, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute this file or part of its contents. The contents of
* this file is part of the Source Code of CKFinder.
*
* Styles used in the samples pages.
*/
html, body, h1, h2, h3, h4, h5, h6, div, span, blockquote, p, address, form, fieldset, img, ul, ol, dl, dt, dd, li, hr, table, td, th, strong, em, sup, sub, dfn, ins, del, q, cite, var, samp, code, kbd, tt, pre {
line-height: 1.5em;
}
body {
padding:10px 30px;
}
input, textarea, select, option, optgroup, button, td, th {
font-size: 100%;
}
pre,
code,
kbd,
samp,
tt{
font-family: monospace,monospace;
font-size: 1em;
}
h1.samples {
color:#92B901;
font-size:200%;
font-weight:normal;
margin: 0;
padding: 0;
}
h2.samples {
color:#000000;
font-size:130%;
margin: 0;
padding: 0;
}
p, blockquote, address, form, pre, dl, h1.samples, h2.samples {
margin-bottom:15px;
}
ul.samples {
margin-bottom:15px;
}
.clear {
clear:both;
}
fieldset
{
margin: 0;
padding: 10px;
}
body, input, textarea {
color: #333333;
font-family: Arial, Helvetica, sans-serif;
}
body {
font-size: 75%;
}
a.samples {
color: #92B901;
text-decoration:none;
}
a.samples:hover {
text-decoration:underline;
color: #BED567;
}
form
{
margin: 0;
padding: 0;
}
pre.samples
{
background-color: #F7F7F7;
border: 1px solid #D7D7D7;
overflow: auto;
padding: 0.25em;
}
#alerts
{
color: Red;
}
#footer {
clear: both;
padding-top: 10px;
}
#footer hr
{
margin: 10px 0 15px 0;
height: 1px;
border: solid 1px gray;
border-bottom: none;
}
#footer p
{
margin: 0 10px 10px 10px;
float: left;
}
#footer #copy
{
float: right;
}
#outputSample
{
width: 100%;
table-layout: fixed;
}
#outputSample thead th
{
color: #dddddd;
background-color: #999999;
padding: 4px;
white-space: nowrap;
}
#outputSample tbody th
{
vertical-align: top;
text-align: left;
}
#outputSample pre
{
margin: 0;
padding: 0;
white-space: pre; /* CSS2 */
white-space: -moz-pre-wrap; /* Mozilla*/
white-space: -o-pre-wrap; /* Opera 7 */
white-space: pre-wrap; /* CSS 2.1 */
white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
word-wrap: break-word; /* IE */
}
.description {
border: 1px dotted #B7B7B7;
margin-bottom: 10px;
padding: 20px 10px 20px;
}
label {
display: block;
margin-bottom:6px;
}

View File

@@ -0,0 +1,87 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2012, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute this file or part of its contents. The contents of
* this file is part of the Source Code of CKFinder.
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder - Sample - Standalone</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<link href="sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../ckfinder.js"></script>
</head>
<body>
<h1 class="samples">
CKFinder - Sample - Standalone
</h1>
<div class="description">
CKFinder may be used in standalone mode inside any page, to create a repository
manager with ease. You may define a custom JavaScript function to be called when
an image is selected (double-clicked).</div>
<p style="padding-left: 30px; padding-right: 30px;">
<script type="text/javascript">
// This is a sample function which is called when a file is selected in CKFinder.
function showFileInfo( fileUrl, data, allFiles )
{
var msg = 'The last selected file is: <a href="' + fileUrl + '">' + fileUrl + '</a><br /><br />';
// Display additional information available in the "data" object.
// For example, the size of a file (in KB) is available in the data["fileSize"] variable.
if ( fileUrl != data['fileUrl'] )
msg += '<b>File url:</b> ' + data['fileUrl'] + '<br />';
msg += '<b>File size:</b> ' + data['fileSize'] + 'KB<br />';
msg += '<b>Last modified:</b> ' + data['fileDate'];
if ( allFiles.length > 1 )
{
msg += '<br /><br /><b>Selected files:</b><br /><br />';
msg += '<ul style="padding-left:20px">';
for ( var i = 0 ; i < allFiles.length ; i++ )
{
// See also allFiles[i].url
msg += '<li>' + allFiles[i].data['fileUrl'] + ' (' + allFiles[i].data['fileSize'] + 'KB)</li>';
}
msg += '</ul>';
}
// this = CKFinderAPI object
this.openMsgDialog( "Selected file", msg );
}
// You can use the "CKFinder" class to render CKFinder in a page:
var finder = new CKFinder();
// The path for the installation of CKFinder (default = "/ckfinder/").
finder.basePath = '../';
// The default height is 400.
finder.height = 600;
// This is a sample function which is called when a file is selected in CKFinder.
finder.selectActionFunction = showFileInfo;
finder.create();
// It can also be done in a single line, calling the "static"
// create( basePath, width, height, selectActionFunction ) function:
// CKFinder.create( '../', null, null, showFileInfo );
// The "create" function can also accept an object as the only argument.
// CKFinder.create( { basePath : '../', selectActionFunction : showFileInfo } );
</script>
</p>
<div id="footer">
<hr />
<p>
CKFinder - Ajax File Manager - <a class="samples" href="http://ckfinder.com/">http://ckfinder.com</a>
</p>
<p id="copy">
Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,90 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2012, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute this file or part of its contents. The contents of
* this file is part of the Source Code of CKFinder.
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder - Sample - Standalone (V1)</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<link href="sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../ckfinder_v1.js"></script>
<style type="text/css">
/* By defining CKFinderFrame, you are able to customize the CKFinder frame style */
.CKFinderFrame
{
border: solid 2px #e3e3c7;
background-color: #f1f1e3;
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<h1 class="samples">
CKFinder - Sample - Standalone (V1)
</h1>
<p>
CKFinder may be used in standalone mode inside any page, to create a repository
manager with ease. You may define a custom JavaScript function to be called when
an image is selected (double-clicked).</p>
<div class="description">
This sample is using the old "V1" integration method.
</div>
<div>
<script type="text/javascript">
// This is a sample function which is called when a file is selected in CKFinder.
function ShowFileInfo( fileUrl, data )
{
var msg = 'The selected file URL is: ' + fileUrl + '\n\n';
// Display additional information available in the "data" object.
// For example, the size of a file (in KB) is available in the data["fileSize"] variable.
msg += 'File size: ' + data['fileSize'] + 'KB\n';
msg += 'Last modified: ' + data['fileDate'];
alert( msg );
}
// You can use the "CKFinder" class to render CKFinder in a page:
var finder = new CKFinder();
finder.BasePath = '../'; // The path for the installation of CKFinder (default = "/ckfinder/").
// The default height is 400.
finder.Height = 600;
finder.SelectFunction = ShowFileInfo;
// It is not required to use the "v1" skin.
finder.Skin = 'v1';
finder.Create();
// It can also be done in a single line, calling the "static"
// Create( basePath, width, height, selectActionFunction ) function:
// CKFinder.Create( '../', null, null, ShowFileInfo );
//
// The "Create" function can also accept an object as the only argument.
// CKFinder.Create( { BasePath : '../', Skin : 'v1', SelectActionFunction : ShowFileInfo } );
</script>
</div>
<div id="footer">
<hr />
<p>
CKFinder - Ajax File Manager - <a class="samples" href="http://ckfinder.com/">http://ckfinder.com</a>
</p>
<p id="copy">
Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2010, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute this file or part of its contents. The contents of
* this file is part of the Source Code of CKFinder.
-->
<%@page language="Java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!-- import the tag library -->
<%@ taglib uri="http://ckfinder.com" prefix="ckfinder" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder - Java Sample - Standalone</title>
<link href="sample.css" rel="stylesheet" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1 class="samples">
CKFinder - Java Sample - Standalone
</h1>
<div class="description">
CKFinder may be used in standalone mode inside any page, to create a repository
manager with ease.</div>
<p style="padding-left: 30px; padding-right: 30px;">
<!-- CKFinder tag on your JSP page -->
<ckfinder:ckfinder basePath="../" width="100%" height="500" />
</p>
<div id="footer">
<hr />
<p>
CKFinder - Ajax File Manager - <a class="samples" href="http://ckfinder.com/">http://ckfinder.com</a>
</p>
<p id="copy">
Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,159 @@
CKFinder Changelog
==================
http://ckfinder.com
Copyright (C) 2007-2012, CKSource - Frederico Knabben. All rights reserved.
### Version 2.3
- Added the new Maximize plugin.
- Multiple file selection: copying / moving / deleting / selecting multiple files is now possible.
- When no other selection function defined, double clicking a file will now execute the View command.
- File editor plugin was upgraded to use CodeMirror 2. C# support was added.
- It is now possible to select a file on startup by using the config.startupPath configuration.
- Added a new configuration option, config.sidebarWidth, to change the initial width of the sidebar (where the folders pane is located) with ease.
- The name of the file is now displayed when hovering over a file.
- Added a new API method, api.addFolderDropMenuOption, to add new options to the menu that opens once files are dropped into a folder.
- Added an option for plugins to specify if a toolbar button should be disabled when basket is empty.
- Added new translation: Catalan.
- Updated translations: Hebrew.
- Fixed: Thumbnails of custom sizes are now displayed correctly at the files list.
- Fixed: Files from the right resource type will be shown at the second opening of CKFinder via CKEditor.
- Fixed: Impossible to set height of CKFinder when using SetupCKEditor().
- Fixed: Extension is now uneditable in the ImageResize dialog window.
- Fixed: Hitting F5 and CTRL+R inside a CKFinder popup will not close the window.
- Fixed: IE will not show an error on the console when opening Developer Tools when inside the popup.
- Fixed: The "onbeforeunload" event of the host document will now be preserved.
- Fixed: The "Resize" dialog window looks better on Webkit.
- Fixed: The thumbnail inside the "Resize" dialog window is now limited in size.
- Fixed: An hidden CKFinder instance will now have correct height when shown.
- Fixed: The rememberLastFolder configuration now works when opening CKFinder as a popup.
- Fixed: In forced IE7 compatibility mode, IE8 did not display dialogs correctly.
- Fixed: It is now possible to use a callback for the Basket's context menu and toolbar labels, as well as custom language strings.
- Fixed: Layout may appear broken after upload.
- Fixed: IE 10: Compatibility with latest beta version.
- Fixed: Thumbnails were left in the old location when files were moved.
[Java] - Updated Thumbnailator to the latest stable version. Thumbnailator is now loaded from Maven Central Repository.
### Version 2.2.2
- Fixed: The new Chrome 20 is again causing issues with finder.popup(). The new fix should work for all future versions of Chrome.
### Version 2.2.1
- Fixed: finder.popup() does not work in Chrome 18.
### Version 2.2
Security Release: fixed filtering of unsafe characters for IIS6 web server.
- HTML5 multiple file uploads introduced.
- Files can now be uploaded by using the drag&drop in Firefox and Chrome.
- Added a read-only mode (config.readOnly), which if enabled, lets the user browse the files but not upload or modify them.
- CKFinder now supports common lightbox plugins by default when viewing files, and will use Colorbox to show images if no other lightbox plugin is loaded.
- "Upload" button in the toolbar now remains active after a file has been uploaded if the Upload Pane is still open.
- Improved formatting of file sizes.
- Dialog window definition now contains a new connectorResponse property which can use raw data sent from the server inside plugins.
- Added support for full URLs in the SetupCKEditor() method.
- Configuration objects passed to the SetupCKEditor() method are now in fact being used.
- Improved support for Android and iOS tablets.
- Updated translations: Slovak; minor updates in all other localizations.
- Fixed: Permission denied to set property Window.onbeforeunload.
- Fixed: ckfinder_v1.js: SetupCKEditor() and SetupFCKeditor() methods are causing a JavaScript error.
- Fixed: IE, Opera: Double clicking a file causes CKFinder to try to close the browser tab.
- Fixed: IE, Opera: CKFinder closes the browser tab after the tab which linked to it was closed.
- Fixed: IE, Opera: CKFinder tries to close the browser tab after pressing the F5 key (Refresh).
- Fixed: When CKFinder is integrated with CKEditor, the URL that is sent back from the Upload tab after a successful file upload is not being encoded properly.
- Fixed: It is impossible to view a file with a special character in its name.
- Fixed: IE8: Selecting a file requires a double click instead of a single one.
- Fixed High Contrast mode detection.
- Fixed: Flash uploader is unable to deal with unexpected errors.
[Java] - Fixed: Removing unsafe characters from file names.
### Version 2.1.1
- Sorting by file extension is now available.
- Clear Basket button is now only active when applicable.
- Added support for skins in custom paths (config.skin).
- Added a new API method to destroy an instance (api.destroy()).
- Added an option to specify additional parameters for server requests (config.connectorInfo).
- Added new translations: Bulgarian, Croatian, Esperanto, Gujarati, Hindi, Romanian, Vietnamese, Welsh.
- Updated translations: Brazilian Portuguese, Chinese Simplified, Czech, Dutch, Estonian, Finnish, French, German, Greek, Hebrew, Italian, Lithuanian, Norwegian Bokmål, Norwegian Nynorsk, Persian, Polish, Russian, Slovenian, Spanish, Swedish, Turkish.
- Added Czech version of CKFinder User's Guide ("Help").
- A callback function (config.callback) can now also be defined in the configuration file.
- Added RTL support for skins.
- Improved RTL support in the Flash upload component.
- Fixed: The Flash uploader used wrong URL to send files when CKFinder had an ID attribute assigned (as a result, the upload was never marked as completed).
- Fixed: Added protection against thumbnail caching. CKFinder was displaying an old thumbnail when a user deleted a file and then a file with the same name was uploaded.
- Fixed: [Opera] Double clicking on a folder opens the browser's context menu.
- Fixed: It was impossible to re-enable a disabled context menu command.
- Fixed: config.id is now available for reading within custom configuration.
- Fixed: [Firefox] JavaScript error when reloading the page where CKFinder is used as a popup.
- Fixed: [IE, Chrome] Focus is lost after closing a dialog window.
- Fixed: The startupPath option did not work.
- Fixed: Unable to use CKFinder inside modal dialogs due to inability to properly destroy the previous instance.
[Java] - Fixed: The config.resourceType setting was not respected.
[Java] - Fixed: Extra content was added to larger files when they were being downloaded or edited.
### Version 2.1
- Added support for multiple uploads using the Flash component.
- Improved rendering of thumbnails. Thumbnails are now loaded dynamically, only when the file is visible.
A configurable delay between requesting each thumbnail is available: config.thumbnailDelay.
- Added support for file upload using HTML5 FormData.
- Added an option to set the base user interface color: config.uiColor.
- File upload requires less clicks.
- Improved keyboard navigation and actions.
- Compatibility with mobile devices (Android and iOS).
- Added an option to show an arrow icon that will launch the context menu: config.showContextMenuArrow.
- Updated translations: Brazilian Portuguese, Chinese Simplified, Dutch, Finnish, Hebrew, Italian, Polish, Spanish.
- Added new translations: Estonian, Lithuanian, Persian, Turkish.
- CKFinder User's Guide ("Help") rewritten and fully updated for English and Polish.
- Improved error handling when receiving an invalid XML response from the server connector.
- Added an option to show the OS icons in Firefox: config.useNativeIcons.
- Added an option to specify the path to the custom server connector: config.connectorPath.
- Fixed: The "Download" option returns an improperly encoded filename.
- Fixed: The dialog window used during the copying/pasting operations was broken in IE7.
- Fixed: The Folders Pane was too small in Internet Explorer 9 in compatibility mode.
- Fixed: English text in dialog window titles was flipped when using an RTL language.
- Fixed: View image command opens the file in the same window in Internet Explorer.
- Fixed: Opening context menu triggers folder reload.
- Fixed: Invalid paths in popup(s) samples.
- Fixed: CKFinder was sometimes throwing an "Object doesn't support this property or method" error in Internet Explorer.
- Fixed: Thumbnails were not created if a folder or file name contains a single quote character.
- Fixed: Disable upload button for iOS.
[Java]- Fixed: CKFinder was sometimes unable to load error messages from .jar files.
### Version 2.0.2
- Added a way to programmatically close a popup window: closePopup().
- Added new translation: Finnish.
- Updated syntax highlighting component used in the fileeditor plugin.
- Fixed compatibility issues with IE9 RC.
- Fixed: CKFinder does not scroll correctly to the uploaded file.
- Fixed: Invalid height of the editing window in the File Editor dialog window.
- Fixed: CKFinder.dom.element.getWindows method is not available.
- Fixed: [Opera] Context menu does not work in the files pane.
- Fixed: When CKFinder is opened in a popup window, after pressing the Cancel button CKFinder asks for confirmation in a wrong window.
- Fixed: Download does not work in IE8 in a popup window.
- Fixed: It is impossible to upload a file when CKFinder is running in a popup window.
- Fixed: File editor does not work in a popup window.
### Version 2.0.1
- Default view settings are now configurable.
- Minimum height for CKFinder has been set to 200px.
- CKFINDER.version and CKFINDER.revision variables are now available.
- Updated and added new translations: French, Hebrew, Japanese, Russian.
- Callback function can now be defined also in the configuration file.
- CKFinder will now remember client settings in a cookie.
- Files are now selected automatically after upload.
- Fixed: Permission denied error in IE 8 when using CKFinder in a popup.
- Fixed: Upload progress bar was broken in FF 3.5+.
- Fixed: CKFinder does not work in a frameset.
- Fixed: RTL support in the files pane.
- Fixed: SSL support in IE6 and Firefox 3.0.
- Fixed: application ID was not passed to the server connector.
- Fixed: CKFinder.setupCKEditor was not working when null was passed as the first argument.
- Fixed: dialogs in an iframe in IE8 quirks mode are rendered incorrectly.
- Fixed: dialogs in IE in quirks mode looked bad.
- Fixed: right click triggered drag&drop in Safari.
- Fixed: content was selected during resizing in Safari.
- Fixed: dialog borders in V1 skin in IE6.
- Fixed: "Empty folder" message disappeared after changing files view mode.
- Fixed: context menu in Firefox on a Mac does not work.
- Fixed: changing file extension caused issues with renaming file for the second time.
- Fixed issue with caching thumbnails.
### Version 2.0
- First public release of 2.x version of CKFinder.

View File

@@ -0,0 +1,148 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>文件管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<script type="text/javascript" src="ckfinder.js"></script>
<style type="text/css">body, html, iframe, #ckfinder {margin:0;padding:0;border:0;width:100%;height:100%;overflow:hidden;}</style>
</head>
<body class="CKFinderFrameWindow">
<div id="ckfinder"></div>
<script type="text/javascript">
//<![CDATA[
(function()
{
var config = {};
var get = CKFinder.tools.getUrlParam;
var getBool = function( v )
{
var t = get( v );
if ( t === null )
return null;
return t == '0' ? false : true;
};
var tmp;
if ( tmp = get( 'configId' ) )
{
var win = window.opener || window;
try
{
while ( ( !win.CKFinder || !win.CKFinder._.instanceConfig[ tmp ] ) && win != window.top )
win = win.parent;
if ( win.CKFinder._.instanceConfig[ tmp ] )
config = CKFINDER.tools.extend( {}, win.CKFinder._.instanceConfig[ tmp ] );
}
catch(e) {}
}
if ( tmp = get( 'basePath' ) )
CKFINDER.basePath = tmp;
if ( tmp = get( 'startupPath' ) || get( 'start' ) )
config.startupPath = decodeURIComponent( tmp );
config.id = get( 'id' ) || '';
if ( ( tmp = getBool( 'rlf' ) ) !== null )
config.rememberLastFolder = tmp;
if ( ( tmp = getBool( 'dts' ) ) !== null )
config.disableThumbnailSelection = tmp;
if ( ( tmp = getBool( 'sm' ) ) !== null )
config.selectMultiple = tmp;
if ( tmp = get( 'data' ) )
config.selectActionData = tmp;
if ( tmp = get( 'tdata' ) )
config.selectThumbnailActionData = tmp;
if ( tmp = get( 'type' ) )
config.resourceType = tmp;
if ( tmp = get( 'skin' ) )
config.skin = tmp;
if ( tmp = get( 'langCode' ) )
config.language = tmp;
if ( typeof( config.selectActionFunction ) == 'undefined' )
{
// Try to get desired "File Select" action from the URL.
var action;
if ( tmp = get( 'CKEditor' ) )
{
if ( tmp.length )
action = 'ckeditor';
}
if ( !action )
action = get( 'action' );
var parentWindow = ( window.parent == window ) ? window.opener : window.parent;
if (!parentWindow) parentWindow = window.parent.document;
if ( tmp = get( 'pwMf' ) )
parentWindow = parentWindow.mainFrame;
switch ( action )
{
case 'js':
var actionFunction = get( 'func' );
if ( actionFunction && actionFunction.length > 0 )
config.selectActionFunction = parentWindow[ actionFunction ];
actionFunction = get( 'thumbFunc' );
if ( actionFunction && actionFunction.length > 0 )
config.selectThumbnailActionFunction = parentWindow[ actionFunction ];
break ;
case 'ckeditor':
var funcNum = get( 'CKEditorFuncNum' );
if ( parentWindow['CKEDITOR'] )
{
config.selectActionFunction = function( fileUrl, data )
{
parentWindow['CKEDITOR'].tools.callFunction( funcNum, fileUrl, data );
};
config.selectThumbnailActionFunction = config.selectActionFunction;
}
break;
default:
if ( parentWindow && parentWindow['FCK'] && parentWindow['SetUrl'] )
{
action = 'fckeditor' ;
config.selectActionFunction = parentWindow['SetUrl'];
if ( !config.disableThumbnailSelection )
config.selectThumbnailActionFunction = parentWindow['SetUrl'];
}
else
action = null ;
}
config.action = action;
var callback = get( 'cb' );
if ( callback && callback.length > 0 )
config.callback = parentWindow[ callback ];
}
// Always use 100% width and height when nested using this middle page.
config.width = config.height = '100%';
var ckfinder = new CKFinder( config );
ckfinder.replace( 'ckfinder', config );
})();
//]]>
</script>
</body>
</html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,8 @@
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function(){window.CKFinder=function(a,b,c,d){var e=this;e.BasePath=a||CKFinder.DEFAULT_BASEPATH;e.Width=b||'100%';e.Height=c||400;e.SelectFunction=d||null;e.SelectFunctionData=null;e.SelectThumbnailFunction=d||null;e.SelectThumbnailFunctionData=null;e.DisableThumbnailSelection=false;e.ClassName='CKFinderFrame';e.StartupPath=null;e.StartupFolderExpanded=false;e.RememberLastFolder=true;e.ResourceType=null;e.Id=null;e.Skin=null;};CKFinder.DEFAULT_BASEPATH='/ckfinder/';CKFinder.ConnectorLanguage='java';CKFinder._={instanceConfig:[]};(function(){function a(b){var c=1;while(CKFinder._.instanceConfig[c])c++;CKFinder._.instanceConfig[c]=b;return c;};CKFinder.prototype={Create:function(){document.write(this.CreateHtml());},CreateHtml:function(){var d=this;var b=d.ClassName;if(b&&b.length>0)b=' class="'+b+'"';var c=d.Id;if(c&&c.length>0)c=' id="'+c+'"';return '<iframe src="'+d._BuildUrl()+'" width="'+d.Width+'" '+'height="'+d.Height+'"'+b+c+' frameborder="0" scrolling="no"></iframe>';},Popup:function(b,c){b=b||'80%';c=c||'70%';if(typeof b=='string'&&b.length>1&&b.substr(b.length-1,1)=='%')b=parseInt(window.screen.width*parseInt(b,10)/100,10);if(typeof c=='string'&&c.length>1&&c.substr(c.length-1,1)=='%')c=parseInt(window.screen.height*parseInt(c,10)/100,10);if(b<200)b=200;if(c<200)c=200;var d=parseInt((window.screen.height-c)/2,10),e=parseInt((window.screen.width-b)/2,10),f='location=no,menubar=no,toolbar=no,dependent=yes,minimizable=no,modal=yes,alwaysRaised=yes,resizable=yes,width='+b+',height='+c+',top='+d+',left='+e,g=window.open('','CKFinderPopup',f,true);if(!g)return false;var h=this._BuildUrl().replace(/&amp;/g,'&');try{g.moveTo(e,d);g.resizeTo(b,c);g.focus();g.location.href=h;}catch(i){g=window.open(h,'CKFinderPopup',f,true);}return true;},_BuildUrl:function(b){var e=this;b=b||e.BasePath;var c='';if(!b||b.length===0)b=CKFinder.DEFAULT_BASEPATH;if(b.substr(b.length-1,1)!='/')b+='/';b+='ckfinder.html';var d;if(e.SelectFunction){d=e.SelectFunction;if(typeof d=='function')d=d.toString().match(/function ([^(]+)/)[1];c+='?action=js&amp;func='+d;}if(e.Skin){c+=c?'&amp;':'?';c+='skin='+encodeURIComponent(e.Skin);}if(e.SelectFunctionData){c+=c?'&amp;':'?';c+='data='+encodeURIComponent(e.SelectFunctionData);}if(e.ResourceType){c+=c?'&amp;':'?';c+='type='+encodeURIComponent(e.ResourceType);}if(e.DisableThumbnailSelection){c+=c?'&amp;':'?';c+='dts=1';}else if(e.SelectThumbnailFunction||e.SelectFunction){d=e.SelectThumbnailFunction||e.SelectFunction;if(typeof d=='function')d=d.toString().match(/function ([^(]+)/)[1];
c+=c?'&amp;':'?';c+='thumbFunc='+d;if(e.SelectThumbnailFunctionData)c+='&amp;tdata='+encodeURIComponent(e.SelectThumbnailFunctionData);else if(!e.SelectThumbnailFunction&&e.SelectFunctionData)c+='&amp;tdata='+encodeURIComponent(e.SelectFunctionData);}if(e.StartupPath){c+=c?'&amp;':'?';c+='start='+encodeURIComponent(e.StartupPath+(e.StartupFolderExpanded?':1':':0'));}if(e.RememberLastFolder!==undefined&&!e.RememberLastFolder){c+=c?'&amp;':'?';c+='rlf=0';}if(e.Id){c+=c?'&amp;':'?';c+='id='+encodeURIComponent(e.Id);}return b+c;}};CKFinder.Create=function(b,c,d,e){var f;if(b!==null&&typeof b=='object'){f=new CKFinder();for(var g in b)f[g]=b[g];}else f=new CKFinder(b,c,d,e);f.Create();};CKFinder.Popup=function(b,c,d,e){var f,g;if(b!==null&&typeof b=='object'){g=a(b);f=new CKFinder();for(var h in b)f[h]=b[h];}else f=new CKFinder(b,c,d,e);f.Popup(c,d);};CKFinder.SetupFCKeditor=function(b,c,d,e){var f,g;if(c!==null&&typeof c=='object'){g=a(c);f=new CKFinder();for(var h in c){f[h]=c[h];if(h=='Width'){var i=f[h]||800;if(typeof i=='string'&&i.length>1&&i.substr(i.length-1,1)=='%')i=parseInt(window.screen.width*parseInt(i,10)/100,10);b.Config.LinkBrowserWindowWidth=i;b.Config.ImageBrowserWindowWidth=i;b.Config.FlashBrowserWindowWidth=i;}else if(h=='Height'){var j=f[h]||600;if(typeof j=='string'&&j.length>1&&j.substr(j.length-1,1)=='%')j=parseInt(window.screen.height*parseInt(j,10)/100,10);b.Config.LinkBrowserWindowHeight=j;b.Config.ImageBrowserWindowHeight=j;b.Config.FlashBrowserWindowHeight=j;}}}else f=new CKFinder(c);var k=f.BasePath;if(k.substr(0,1)!='/'&&k.indexOf('://')==-1)k=document.location.pathname.substring(0,document.location.pathname.lastIndexOf('/')+1)+k;k=f._BuildUrl(k);var l=k.indexOf('?')!==-1?'&':'?';if(g){k+=l+'configId='+g;l='&';}b.Config.LinkBrowserURL=k;b.Config.ImageBrowserURL=k+l+'type='+(d||'Images');b.Config.FlashBrowserURL=k+l+'type='+(e||'Flash');var m=k.substring(0,1+k.lastIndexOf('/'));b.Config.LinkUploadURL=m+'core/connector/'+CKFinder.ConnectorLanguage+'/connector.'+CKFinder.ConnectorLanguage+'?command=QuickUpload&type=Files';b.Config.ImageUploadURL=m+'core/connector/'+CKFinder.ConnectorLanguage+'/connector.'+CKFinder.ConnectorLanguage+'?command=QuickUpload&type='+(d||'Images');b.Config.FlashUploadURL=m+'core/connector/'+CKFinder.ConnectorLanguage+'/connector.'+CKFinder.ConnectorLanguage+'?command=QuickUpload&type='+(e||'Flash');};CKFinder.SetupCKEditor=function(b,c,d,e){if(b===null){for(var f in CKEDITOR.instances)CKFinder.SetupCKEditor(CKEDITOR.instances[f],c,d,e);
CKEDITOR.on('instanceCreated',function(o){CKFinder.SetupCKEditor(o.editor,c,d,e);});return;}var g,h;if(c!==null&&typeof c=='object'){h=a(c);g=new CKFinder();for(var i in c){g[i]=c[i];if(i=='Width'){var j=g[i]||800;if(typeof j=='string'&&j.length>1&&j.substr(j.length-1,1)=='%')j=parseInt(window.screen.width*parseInt(j,10)/100,10);b.config.filebrowserWindowWidth=j;}else if(i=='Height'){var k=g[i]||600;if(typeof k=='string'&&k.length>1&&k.substr(k.length-1,1)=='%')k=parseInt(window.screen.height*parseInt(k,10)/100,10);b.config.filebrowserWindowHeight=k;}}}else g=new CKFinder(c);var l=g.BasePath;if(l.substr(0,1)!='/'&&l.indexOf('://')==-1)l=document.location.pathname.substring(0,document.location.pathname.lastIndexOf('/')+1)+l;l=g._BuildUrl(l);var m=l.indexOf('?')!==-1?'&':'?';if(h){l+=m+'configId='+h;m='&';}b.config.filebrowserBrowseUrl=l;b.config.filebrowserImageBrowseUrl=l+m+'type='+(d||'Images');b.config.filebrowserFlashBrowseUrl=l+m+'type='+(e||'Flash');var n=l.substring(0,1+l.lastIndexOf('/'));b.config.filebrowserUploadUrl=n+'core/connector/'+CKFinder.ConnectorLanguage+'/connector.'+CKFinder.ConnectorLanguage+'?command=QuickUpload&type=Files';b.config.filebrowserImageUploadUrl=n+'core/connector/'+CKFinder.ConnectorLanguage+'/connector.'+CKFinder.ConnectorLanguage+'?command=QuickUpload&type='+(d||'Images');b.config.filebrowserFlashUploadUrl=n+'core/connector/'+CKFinder.ConnectorLanguage+'/connector.'+CKFinder.ConnectorLanguage+'?command=QuickUpload&type='+(e||'Flash');};})();})();

View File

@@ -0,0 +1,18 @@
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckfinder.com/license
*/
CKFinder.customConfig = function( config )
{
// Define changes to default configuration here.
// For the list of available options, check:
// http://docs.cksource.com/ckfinder_2.x_api/symbols/CKFinder.config.html
// Sample configuration options:
config.uiColor = '#f7f5f4';
config.language = 'zh-cn';
config.removePlugins = 'basket,help';
config.defaultSortBy = 'date';
};

View File

@@ -0,0 +1,32 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Vítejte v CKFinder</h1>
<p>
<strong>CKFinder je správce souborů</strong> který Vám pomůže procházet,
nahrávat a spravovat Vaše soubory umístěné na internetovém serveru &mdash;
přímo z Vašeho internetového prohlížeče, aniž byste museli cokoliv na Vašem
počítači instalovat.</p>
<p>
Díky svému použití v distribuovaném prostředí může být CKFinder popsán
jako <em>software pro spolupráci</em> který usnadňuje správu a sdílení souborů
umístěných na centrálním počítači (<em>server</em>).</p>
<p>
Ať už s CKFinder začínáte, nebo jste zkušení uživatelé, vyplatí se Vám udělat
si čas a projít si tuto dokumentaci, abyste porozuměli tomuto jednoduchému
ale přesto výkonnému nástroji.</p>
<h2>
Právní omezení</h2>
<p>
Prosím prohlédněte si <a href="011.html" title="Odkaz na právní omezení">"Právní omezení"</a>
pro jisté důležité informace o autorských právech.</p>
</body>
</html>

View File

@@ -0,0 +1,42 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Přehled rozhraní CKFinder</h1>
<p>
Rozhraní CKFinder je navrženo tak, aby bylo pro koncového uživatele čisté, přehledné, a aby se ho
snadné naučit a používat. Většinu funkcí lze použít kliknutím myši a také použitím
kontextových menu.</p>
<p>
Pokud používáte průzkumníky souborů, které jsou zabudovány do většiny operačních systémů,
které jsou dostupné pro Vaše PC či laptop, rychle zjistíte, že používání online správce
souborů je také tak lehké a intuitivní.</p>
<p>
Následující snímek obrazovky je z rozhraní CKFinder:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_interface.png" alt="Rozhraní CKFinder" width="620" height="456" />&nbsp;</p>
<ol>
<li><strong><a href="003.html">Panel složky</a></strong> &ndash; obsahuje "stromové zobrazení"
složek, které můžete procházet. Složky jsou používány k uspořádání a třídění Vašich
souborů.</li>
<li><strong><a href="004.html">Panel soubory</a></strong> &ndash; zobrazuje dostupné soubory
ve vybrané složce</li>
<li><strong><a href="005.html">Panel nástrojů</a></strong> &ndash; řada tlačítek, na které můžete
kliknout, abyste mohli rychle spustit určité funkce průzkumníka souborů.</li>
<li><strong><a href="010.html">Stavový řádek</a></strong> &ndash; část ve spodní části
rozhraní, která zobrazuje některé informace o vybraném souboru, celkový
počet souborů v složce, atd.</li>
<li><strong><a href="012.html">Kontextové menu</a></strong> &ndash; vyskakovací menu s příkazy
průzkumníka souborů, které spouštějí určité úkoly na objekt, který byl vybrán. Dostupné
možnosti v kontextovém menu se dynamicky mění v závislosti na objektu, který je
zvolen.</li>
</ol>
</body>
</html>

View File

@@ -0,0 +1,143 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Panel složek</h1>
<p>
<strong>Panel složek</strong> obsahuje "stromové zobrazení" složek, které můžete procházet.
Složky jsou použity k uspořádání a třídění Vašich souborů.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_pane.png" width="176" height="140" alt="Panel složky CKFinder" />&nbsp;</p>
<p>
Zobrazení složek display je nazváno "stromové zobrazení" protože hierarchie složek je zobrazena jako
větve stromu a podsložky jsou zobrazeny níže s odsazením vzhledem k jejich nadřazeným položkám.
<strong>Panel složek</strong> používá stejné grafické zastoupení, které můžete nalézt v
mnoha moderních operačních systémech.</p>
<h2>
Základní operace</h2>
<h3>
Otevření (rozbalení) složky</h3>
<p>
Abyste složku otevřeli a rozevřeli její podsložky, klikněte na ikonku plus
(<img src="../../files/images/002.gif" height="9" width="9" alt="" />) před názvem složky.
Pokud ikona plus není přítomna, pak složka neobsahuje žádné podsložky.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_expand.png" width="110" height="19" alt="Rozbalená složka CKFinder" />&nbsp;</p>
<p>
Viz část "Načítání na požadavek" níže, pokud se chcete dozvědět více o procesu
načítání v CKFinder.</p>
<h3>
Zavření (sbalení) složky</h3>
<p>
Abyste zavřeli složku a skryli (sbalili) její podsložku, klikněte na ikonku mínus
(<img src="../../files/images/003.gif" height="9" width="9" alt="" />) před názvem složky.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_collapse.png" width="110" height="50" alt="Rozbalená složka CKFinder s jejími podsložkami its" />&nbsp;</p>
<h3>
Vybrání složky</h3>
<p>
Abyste vybrali složku a učinili z ní "současnou složku" v CKFinder, klikněte na její
název nebo ikonu. Vybraná složka bude zvýrazněna jinou barvou pozadí.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_select.png" width="162" height="99" alt="Vybraná složka CKFinder" />&nbsp;</p>
<h2>
Pokročilé operace</h2>
<p>
Pokročilé operace mohou být provedeny ve složce použitím jejího <strong><a href="012.html">Kontextového
menu</a></strong>. V závislosti na okolnostech mohou být dostupné následující operace:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_menu.png" width="148" height="128" alt="Kontextové menu složky" />&nbsp;</p>
<ul>
<li><strong>Nová podsložka (New Subfolder)</strong> &ndash; vytvoří novou podsložku v její nadřazené složce.</li>
<li><strong>Přejmenovat (Rename)</strong> &ndash; změní název složky.</li>
<li><strong>Kopírovat soubory z Košíku (Copy Files from Basket)</strong> &ndash; zkopíruje soubory, které byly umístěny v
<strong>Košíku</strong> do zvolené složky.</li>
<li><strong>Přesunout soubory z Košíku (Move Files from Basket)</strong> &ndash; přesune soubory, které byly umístěny v
<strong>Košíku</strong> do zvolené složky.</li>
<li><strong>Smazat (Delete)</strong> &ndash; natrvalo složku odstraní.</li>
</ul>
<p>
<span class="info">Poznámka:</span> Některé možnosti kontextového menu mohou být zakázány (a proto
jsou zašedlé), v závislosti na nastaveních CKFinder, které vyžaduje Váš správce systému.</p>
<h3>
Vytváření složek</h3>
<p>
Abyste vytvořili podřazenou složku uvnitř existující složky, zvolte možnost
<strong>Nová podsložka (New Subfolder)</strong> z kontextového menu nadřazené složky.
V dialogovém okně zadejte název nové složky, který bude zobrazen. Jakmile
nové složce dáte název a dialogové okno zavřete, bude složka vytvořena.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_new.png" width="304" height="149" alt="Vytváření nové složky v CKFinder" />&nbsp;</p>
<p>
Ne všechny znaky mohou být použity v názvech složek a souborů kvůli omezením
systémů, kde je CKFinder spuštěn. Mezi znaky, které nemohou být použity v názvech
složek a souborů jsou: <code>\</code> <code>/</code> <code>:</code>
<code>*</code> <code>?</code> <code>&quot;</code> <code>&lt;</code>
<code>&gt;</code> a <code>|</code>.</p>
<h3>
Přejmenování složek</h3>
<p>
Pro přejmenování složky zvolte možnost <strong>Přejmenovat (Rename)</strong> z kontextového menu
nebo použijte klávesovou zkratku <em>F2</em>. Zadejte nový název složky v dialogovém okně,
které bude zobrazeno, což přepíše existující název. Jakmile zadáte nový název a dialogové okno
zavřete, složka bude přejmenována.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_rename.png" width="304" height="149" alt="Přejmenování složky v CKFinder" />&nbsp;</p>
<p>
Jak již bylo řečeno výše, ne všechny znaky mohou být použity pro názvy složek a souborů kvůli omezením
systémů kde je CKFinder spuštěn. Mezi znaky, které nemohou být použity v názvech
složek a souborů jsou: <code>\</code> <code>/</code> <code>:</code>
<code>*</code> <code>?</code> <code>&quot;</code> <code>&lt;</code>
<code>&gt;</code> a <code>|</code>.</p>
<p>
<span class="warning">Upozornění:</span> Když složku přejmenujete, odkazy či vložení médií
dostupné na jiných stránkách a odkazující na soubory či složky uvnitř přejmenované složky
budou poškozeny a proto nebudou dostupné. Z tohoto důvodu buďte při používání této funkce
opatrní.</p>
<h3>
Kopírování a přesunování souborů z Košíku</h3>
<p>
<strong>Košík</strong> je virtuální odkladné místo, které může
být nápomocné, pokud potřebujete provést dávkové operace se soubory. Operace kopírování a přesunování
jsou popsány v části <strong><a href="014.html">"Košík"</a></strong> uživatelské příručky.</p>
<h3>
Mazání složek</h3>
<p>
Abyste složku smazali, včetně jejího obsahu, zvolte možnost <strong>Smazat (Delete)</strong>
z jejího kontextového menu nebo použijte klávesu <em>Del</em>. Bude zobrazena potvrzovací zpráva,
která zajistí, že tuto operaci opravdu chcete provést. Jakmile smazání potvrdíte,
složka bude odstraněna.</p>
<p>
<span class="warning">Upozornění:</span> Tuto operaci nelze vrátit zpět. Jakmile složku
a její obsah smažete, odstraněné soubory již nelze obnovit.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_delete.png" width="304" height="149" alt="Mazání složky v CKFinder" />&nbsp;</p>
<p>
<span class="warning">Upozornění:</span> Když složku smažete, odkazy či vložení médií
dostupné na jiných stránkách a odkazující na soubory či složky uvnitř přejmenované složky
budou poškozeny a proto nebudou dostupné. Z tohoto důvodu buďte při používání této funkce
opatrní.</p>
<h2>
Načítání na požadavek</h2>
<p>
Nejdůležitější rozdíl mezi CKFinder a stromovými strukturami složek, které naleznete ve
stolních operačních systémech je ten, že v CKFinder jsou složky načítány na "požadavek". To znamená,
že aplikace nenačítá celou stromovou strukturu složky najednou, ale místo toho
načte malou část, když je složka rozbalována. Tato funkce je používána
ve většině pokročilých internetových aplikací jako CKFinder a umožňuje šetřit přenesená data a čas pro načítání.</p>
<p>
Pro označení, že jsou složky načítány může být zobrazen štítek <strong>Načítání... (Loading..)</strong>
při rozbalení složky:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_loading.png" width="143" height="113" alt="Načítání složek v CKFinder" />&nbsp;</p>
<p>
Štítek automaticky zmizí, když jsou všechny požadované složky načteny.</p>
</body>
</html>

View File

@@ -0,0 +1,243 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Panel souborů</h1>
<p>
<strong>Panel souborů</strong> zobrazuje všechny soubory dostupné ve vybrané složce.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_pane.png" width="451" height="429" alt="Panel souborů CKFinder" />&nbsp;</p>
<h2>
Různá zobrazení</h2>
<p>
<strong>Panel souborů</strong> může soubory zobrazovat ve dvou různých formátech zobrazení,
v závislosti na nastavení CKFinder (viz "<strong><a href="008.html">Nastavení</a></strong>").
Následující je porovnání zobrazení <strong>Náhled</strong> a <strong>Seznam</strong>
ve stejné složce.</p>
<p>
Při nastavení CKFinder pro použití zobrazení <strong>Náhled (Thumbnails)</strong> budou soubory
zobrazeny jako náhledy (miniatury nebo ikony), s nebo bez dalších
informací jako název souboru, velikost, nebo datum (záleží na Vaších nastaveních).</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_view_thumbnails.png" width="531" height="178" alt="Panel souborů CKFinder v Náhledovém zobrazení" />&nbsp;</p>
<p>
Když nastavíte CKFinder aby použil zobrazení <strong>Seznam (List)</strong>, soubory budou
zobrazeny v seznamu, s nebo bez dalších
informací jako název souboru, velikost, nebo datum (záleží na Vaších nastaveních).</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_view_list.png" width="564" height="136" alt="Panel souborů CKFinder v Seznamovém zobrazení" />&nbsp;</p>
<h2>
Základní operace</h2>
<h3>
Aktivování (vybrání) souboru myší</h3>
<p>
Abyste soubor aktivovali a udělali z něj "současný soubor" v CKFinder, klikněte na název
souboru nebo na jeho náhled. Aby bylo snazší soubor vybrat, při najetí myší
nad soubor bude jeho pozadí zvýrazněno. Jakmile je soubor vybrán bude
trvale zvýrazněn jinou barvou pozadí.</p>
<p>
Obrázky níže zobrazují různé stavy souboru, jak je zobrazen ve složce: nevybrán, najetí myší
a aktivován (vybrán).</p>
<table align="center" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" style="padding-right: 10px">
<img src="../../files/images/CKFinder_file_select_unselected.png" width="130" height="166" alt="Nevybraný soubor v CKFinder" /></td>
<td valign="top" style="padding-right: 10px; padding-left: 10px">
<img src="../../files/images/CKFinder_file_select_hovered.png" width="130" height="166" alt="Najetí myši na soubor v CKFinder" /></td>
<td valign="top" style="padding-right: 10px; padding-left: 10px">
<img src="../../files/images/CKFinder_file_select_selected.png" width="130" height="166" alt="Vybraný soubor v CKFinder" /></td>
</tr>
</table>
<p>&nbsp;</p>
<p>
Abyste soubor deaktivovali, klikněte na jiný (čímž ho aktivujete) nebo klikněte na jakékoliv prázdné místo uvnitř
<strong>Panelu souborů</strong>.</p>
<h3>
Kopírování souboru</h3>
<p>Abyste zkopírovali soubor do jiné složky, vyberte ho a přetáhněte na cílovou složku v
<strong>Panelu složek</strong>. Když ho přesunete na název složky, zvolte možnost <strong>
Soubor zkopírovat sem (Copy File Here)</strong> z kontextového menu.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_drag_copy.png" width="130" height="54" alt="Kopírování souborů v CKFinder" />&nbsp;</p>
<p>
Soubor bude duplikován a jeho kopie bude umístěna do cílové složky.
Zdrojová složka zůstane nedotčena.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_copied.png" width="304" height="149" alt="Soubor zkopírován v CKFinder" />&nbsp;</p>
<p>
<span class="info">Poznámka:</span> Pokud soubor se stejným názvem již v cílové složce existuje,
bude Vám nabídnut výběr mezi přepisem nebo automatickým
přejmenováním zkopírovaného souboru (toto je výchozí možnost).</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_already_exists.png" width="304" height="190" alt="Chybová zpráva pro soubor, který již existuje v CKFinder" />&nbsp;</p>
<h3>
Přesunutí souboru</h3>
<p>Abyste soubor přesunuli do jiné složky, zvolte ho a přetáhněte do cílové složky
v <strong>Panelu složek</strong>. Když ho přetáhnete na název složky, zvolte možnost
<strong>Soubor přesunout sem (Move File Here)</strong> z kontextového menu.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_drag_move.png" width="130" height="54" alt="Přesunutí souboru v CKFinder" />&nbsp;</p>
<p>
Soubor bude ze zdrojové složky odstraněn a vložen do cílové.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_moved.png" width="304" height="149" alt="Soubor přesunut v CKFinder" />&nbsp;</p>
<h2>
Pokročilé operace</h2>
<p>
Pokročilé operace mohou být provedeny na soubor použitím jeho <strong><a href="012.html">Kontextového
menu</a></strong>. V závislosti na okolnostech mohou být dostupné následující možnosti:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_menu.png" width="130" height="156" alt="Kontextové menu souboru v CKFinder" />&nbsp;</p>
<ul>
<li><strong>Vybrat (Select)</strong> &ndash; vybere soubor.</li>
<li><strong>Zobrazit (View)</strong> &ndash; zobrazí soubor v plné velikosti v nové kartě či okně prohlížeče.</li>
<li><strong>Uložit jako (Download)</strong> &ndash; stáhne soubor ze serveru do Vašeho počítače.</li>
<li><strong>Změnit velikost (Resize)</strong> &ndash; umožňuje Vám změnit velikost souboru a/nebo vytvořit nový náhled.</li>
<li><strong>Přejmenovat (Rename)</strong> &ndash; změní název souboru.</li>
<li><strong>Smazat (Delete)</strong> &ndash; natrvalo odstraní soubor.</li>
</ul>
<p>
<span class="info">Poznámka:</span> Některé možnosti kontextového menu mohou být zakázány (a proto
jsou zašedlé), v závislosti na nastaveních CKFinder, které vyžaduje Váš správce systému.</p>
<h3>
Výběr souboru</h3>
<p>
Abyste vybrali soubor pomocí kontextového menu, zvolte možnost <strong>Vybrat (Select)</strong>.
Jinak můžete toto také provést dvojitým kliknutím na soubor pomocí Vaší myši.</p>
<p>
V závislosti na prostředí, kde je CKFinder použit, operace výběru může, například,
poslat URL souboru do jiné aplikace nebo vložit obrázek přímo do článku vytvořeném
ve Vašem redakčním systému.</p>
<h3>
Zobrazení (náhled) souboru</h3>
<p>
Abyste si mohli soubor prohlédnout v prohlížeči, zvolte možnost <strong>Zobrazit (View)</strong> z
jeho kontextového menu. Ne všechny druhy souborů mohou být v prohlížečích zobrazeny, ale tato funkce
je užitečná pro obrázky, text a soubory PDF. V ostatních případech se Vás prohlížeč zeptá
na vhodnou aplikaci, pomocí které soubor otevřít.</p>
<p>
V závislosti na nastavení Vašeho prohlížeče a operačního systému, bude soubor zobrazen v
nové kartě nebo okně prohlížeče.</p>
<h3>
Stažení souboru</h3>
<p>
Abyste mohli soubor stáhnout, zvolte možnost <strong>Uložit jako (Download)</strong> z jeho kontextového
menu. Prohlížeč se Vás zeptá na umístění staženého souboru ve Vašem počítači.
V závislosti na nastavení Vašeho prohlížeče a operačního systému může být soubor také otevřen
hned po stažení pomocí vhodné aplikace ve Vašem operačním
systému.</p>
<h3>
Změna velikosti souboru (obrázku)</h3>
<p>
Abyste změnili velikost obrázku nebo jeho náhledu, zvolte možnost <strong>Změnit velikost (Resize)</strong>
z jeho kontextového menu. Jakmile zadáte nové rozměry obrázku nebo zvolíte velikost náhledu,
zavřete dialogové okno k použití změn.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_resize.png" width="424" height="319" alt="Změna velikosti obrázku v CKFinder" />&nbsp;</p>
<p>Pokud je obrázek příliš velký, můžete změnit jeho rozměry zadáním nových hodnot do polí
<strong>Šířka (Width)</strong> a <strong>Výška (Height)</strong>. Standardně je poměr obrázku uzamčen,
což můžete vidět díky tlačítku <img src="../../files/images/CKFinder_resize_lock.png" width="7" height="8" alt="Poměr velikosti obrázku je uzamčen v CKFinder" />
(<strong>Uzamknout poměr</strong>). To znamená, že když změníte jednu z hodnot velikosti (šířku
či výšku), druhá bude automaticky upravena.</p>
<p>Pokud chcete volně upravit oba rozměry, klikněte na tlačítko <strong>Uzamknout poměr</strong>, abyste
poměr odemknuli. Tlačítko se změní na
<img src="../../files/images/CKFinder_resize_unlock.png" width="7" height="10" alt="Poměr stran obrázku odemčen v CKFinder" />
(<strong>Odemčeno</strong>) a úprava jednoho rozměru nezpůsobí automatickou
změnu druhého. Pro znovu uzamčení poměru, klikněte ještě jednou na tlačítko <strong>Odemčení</strong>.</p>
<p>Obrázek můžete snadno vrátit do původního rozměru stisknutím tlačítka
<img src="../../files/images/CKFinder_resize_reset.png" width="11" height="11" alt="Reset poměru velikosti obrázku v CKFinder" />
(<strong>Původní velikost</strong>). Toto resetuje velikost obrázku; původní šířka a výška
budou nyní zobrazeny v odpovídajících rámečcích.</p>
<p>
Pokud změníte velikost obrázku, můžete se rozhodnout ho uložit pod stejným názvem, čímž existující
přepíšete. Nezapomeňte prosím, že tuto operaci nelze vrátit a jakmile soubor s jeho změněnou velikostí
uložíte, jíž ho nebudete moci vrátit do původní velikosti. Abyste původní obrázek
přepsali, nechte zaškrtnuté políčko <strong>Vytvořit nový obrázek (Create new image)</strong>.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_resize_overwrite.png" width="424" height="319" alt="Přepis obrázku se změněnou velikostí v CKFinder" />&nbsp;</p>
<p>
Můžete se také rozhodnout obrázek uložit jako nový soubor a zanechat původní tak jak je. Pokud
vyberete políčko <strong>Vytvořit nový obrázek (Create new image)</strong>, budete moci dát změněnému souboru
nový název. Standardně Vám CKFinder nabídne obrázek uložit pod názvem, odvozeným od původního souboru
a rozměry nového souboru (například: <code>Sun1_100x100.jpg</code> když původní soubor měl název
<code>Sun1.jpg</code> a velikost souboru byla změněna na 100 pixelů na šířku i výšku).</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_resize_new.png" width="424" height="319" alt="Vytvoření nového obrázku se změněnou velikostí v CKFinder" />&nbsp;</p>
<p>
Když jste s Vašimi změnami spokojeni, klikněte na tlačítko <strong>OK</strong> pro zavření
dialogového okna. Po úspěšné změně velikosti bude zobrazena potvrzovací zpráva.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_resize_resized.png" width="304" height="149" alt="Proběhla změna velikosti souboru v CKFinder" />&nbsp;</p>
<p>
Pokud jste změněný obrázek uložili do nového souboru, uvidíte oba soubory uvnitř složky.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_resize_both.png" width="268" height="170" alt="Původní a změněný soubor v CKFinder" />&nbsp;</p>
<p>
<span class="info">Poznámka:</span> Velikost původního souboru může omezit dostupné možnosti pro
funkci <strong>Změnit velikost</strong>. Velikost změněného obrázku nemůže překročit původní rozměry.
</p>
<h3>
Vytváření náhledů</h3>
<p>
Funkce <strong>Změnit velikost (Resize)</strong> může být také použita pro vytváření kopí obrázku se změněnou velkostí
(náhledů), které můžete použít v článcích Na Vaší internetové stránce nebo v příspěvcích do blogu. Díky
funkci pro vytváření náhledů může správce stránky nastavit možnosti předurčené velikosti náhledu,
která může být použita uživateli CKFinder. Toto Vám ušetří čas ručním zadáváním
změněných hodnot šířky a výšky pro každý obrázek a tímto bude každá velkost náhledu
na Vašich stránkách stejná.</p>
<p>
Abyste mohli použít jednu z přednastavených velikostí náhledu, zvolte možnost <strong>Změnit velikost (Resize)</strong>
z kontextového menu. V části <strong>Vytvořit nový náhled (Create a new thumbnail)</strong> dialogového okna <strong>Změnit velikost (Resize)</strong>
vyberte zaškrtávací políčka odpovídající požadované velikosti. Po úspěšné změně velikosti bude zobrazena potvrzovací zpráva.
Kopie obrázku se změněnou velikostí budou vytvořeny ve stejné složce a nové soubory budou pojmenovány
podle možnosti nastavení velikost náhledu, kterou zvolíte (s příponami <code>_large</code>,
<code>_medium</code> a <code>_small</code>, které budou přidány k původnímu názvu souboru).</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_resize_thumbnails.png" width="398" height="170" alt="Náhledy vytvořené v CKFinder" />&nbsp;</p>
<p>
<span class="info">Poznámka:</span> Pokud je obrázek menší, než některá z možností náhledů
(viz příklad nahoře), ty, které jsou nedostupné, budou zašedlé.</p>
<h3>
Přejmenování souboru</h3>
<p>
Abyste přejmenovali soubor, zvolte možnost <strong>Přejmenovat (Rename)</strong> z jeho kontextového menu
nebo použijte klávesovou zkratku <em>F2</em>. Do dialogového okna, které se zobrazí, zadejte nový
název souboru, čímž přepíšete existující. Jakmile zadáte nový název souboru a zavřete dialogové okno,
soubor bude přejmenován.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_rename.png" width="304" height="149" alt="Přejmenování souboru v CKFinder" />&nbsp;</p>
<p>
Ne všechny znaky mohou být použity v názvech složek a souborů kvůli omezením
systémů, kde je CKFinder spuštěn. Mezi znaky, které nemohou být použity v názvech
složek a souborů jsou: <code>\</code> <code>/</code> <code>:</code> <code>*</code>
<code>?</code> <code>&quot;</code> <code>&lt;</code> <code>&gt;</code> a <code>|</code>.</p>
<p>
<span class="warning">Upozornění:</span> Když složku přejmenujete, odkazy či vložení médií
dostupné na jiných stránkách a odkazující na soubor
budou poškozeny a proto nebudou dostupné. Z tohoto důvodu buďte při používání této funkce
opatrní.</p>
<h3>
Mazání souboru</h3>
<p>
Abyste soubor smazali, zvolte možnost <strong>Smazat (Delete)</strong>
z jeho kontextového menu nebo použijte klávesu <em>Del</em>. Bude zobrazena potvrzovací zpráva,
která zajistí, že tuto operaci opravdu chcete provést. Jakmile smazání potvrdíte,
soubor bude odstraněn.</p>
<p>
<span class="warning">Upozornění:</span> Tuto operaci nelze vrátit zpět. Jakmile složku
a její obsah smažete, odstraněné soubory již nelze obnovit.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_delete.png" width="304" height="149" alt="Mazání souboru v CKFinder" />&nbsp;</p>
<p>
<span class="warning">Upozornění:</span> Když soubor smažete, odkazy či vložení médií
dostupné na jiných stránkách a odkazující na soubor budou poškozeny a
proto nebudou dostupné. Z tohoto důvodu buďte při používání této funkce opatrní.</p>
</body>
</html>

View File

@@ -0,0 +1,42 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Panel nástrojů</h1>
<p>
<strong>Panel nástrojů</strong> je vyhrazená část na v horní části rozhraní CKFinder. Obsahuje
řadu tlačítek menu, na které můžete kliknout pro získání přístupu k různým funkcím průzkumníka souborů.</p>
<p>
Takto vypadá standardní Panel nástrojů CKFinder:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_toolbar.png" width="253" height="38" alt="Panel nástrojů CKFinder" />&nbsp;</p>
<h2>Použití Panelu nástrojů</h2>
<p>Abyste provedli operaci, která je tlačítku přidělená, klikněte jednou na tlačítko. Ve většině případů
buď okamžitě provede některou přednastavenou činnost, nebo otevře rozbalovací panel s dalšími možnostmi nastavení
funkce.</p>
<p>Nezapomeňte, že Panel nástrojů můžete také používat pomocí klávesnice. Abyste vstoupili do Panelu nástrojů, použijte
klávesovou zkratku <em>Alt+F10</em>. Pro přesun na další nebo předchozí tlačítko, použijte klávesy <em>Šipka doprava</em>
a <em>Šipka doleva</em> v tomto pořadí. Pro aktivování zvoleného tlačítka Panelu nástrojů, stiskněte <em>Enter</em>
nebo <em>Mezerník</em>.</p>
<h2>
Tlačítka Panelu nástrojů</h2>
<p>
Následující je seznam dostupných tlačítek ve standardním Panelu nástrojů:</p>
<ul>
<li><strong><a href="006.html">Nahrát (Upload)</a></strong> &ndash; otevře <strong>Panel nahrávání</strong>,
který může být použít pro přidání nových souborů do současné složky.</li>
<li><strong><a href="007.html">Znovu načíst (Refresh)</a></strong> &ndash; obnoví seznam souborů v
<strong><a href="004.html">Panelu souborů</a></strong>.</li>
<li><strong><a href="008.html">Nastavení (Settings)</a></strong> &ndash; otevře <strong>Panel nastavení</strong>,
kde si můžete nastavit a přizpůsobit CKFinder.</li>
<li><strong><a href="009.html">Nápověda (Help)</a></strong> &ndash; otevře tuto uživatelskou příručku.</li>
</ul>
</body>
</html>

View File

@@ -0,0 +1,125 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Tlačítko Nahrát</h1>
<p>
Tlačítko <strong>Nahrát (Upload)</strong>, které je dostupné v CKFinder na
<strong><a href="005.html">Panelu nástrojů</a></strong> otevře
<strong>Panel Nahrávání</strong>, který můžete použít pro přidání nových souborů do
současné složky.</p>
<p>Obrázek níže představuje standardní <strong>Panel nahrávání</strong> v průzkumníku souborů,
který je rozbalen při kliknutí na tlačítko panelu nástrojů.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_upload_01.png" width="591" height="145" alt="Panel nahrávání Flash v CKFinder" />&nbsp;</p>
<p>
Abyste zavřeli (sbalili) <strong>Panel nahrávání</strong>, stiskněte
tlačítko <strong>Zrušit (Cancel)</strong> (pokud jste ještě nespustili proces nahrávání)
nebo tlačítko <strong>Zavřít (Close)</strong>. Můžete také kliknout znovu na tlačítko <strong>Nahrát (Upload)</strong>.</p>
<p>
<span class="info">Poznámka:</span> <em>Nahrávání</em> je technický termín, který znamená
činnost posílání souborů z Vašeho místního počítače do
centrálního (také znám jako <em>server</em>).</p>
<h2>
Verze panelu nahrávání</h2>
<p><strong>Panel nahrávání</strong> CKFinder existuje ve dvou verzích, v závislosti na Vašem
prostředí. Standardně je verze pro více nahrávání (která Vám umožní nahrát více
souborů na server najednou) použita pro všechny prostředí, která podporují
Adobe Flash. Pokud ale Váš místní systém Flash nepodporuje, budete stále
mít možnost nahrát jednotlivé soubory v oddělených operacích díky
záložní verzi.</p>
<p>Obrázek výše představuje výchozí <strong>Panel nahrávání</strong>, který má umožněno
nahrávat více souborů najednou. Pro všechny systémy, které Flash nepodporují (včetně
některých mobilních prohlížečů) bude použit následující formát <strong>Panelu nahrávání</strong>.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_upload_09.png" width="572" height="143" alt="Panel nahrávání jednoho souboru v CKFinder" />&nbsp;</p>
<h2>
Nahrávání více souborů</h2>
<p>
Standardně Vám CKFinder umožní nahrát několik souborů najednou.
Abyste odeslali soubory na server, postupujte podle kroků popsaných níže.</p>
<p><em>Krok 1:</em> Klikněte na tlačítko <strong>Nahrát (Upload)</strong> na panelu nástrojů pro otevření
<strong>Panelu nahrávání</strong>.</p>
<p><em>Krok 2:</em> Když je <strong>Panel nahrávání</strong> rozbalen, klikněte na
tlačítko <strong>Přidat soubory (Add Files)</strong>. Otevře se dialogové okno výběru souborů
Vašeho operačního systému, které Vám umožní vybrat místní soubor k
nahrání na server.</p>
<p><span class="info">Poznámka:</span> Můžete vybrat tolik souborů, kolik chcete tím,
že je všechny najednou vyberte v dialogovém okně.</p>
<p><em>Krok 3:</em> Místní soubor(y) bude nyní přidán do fronty nahrávání.
Pokud chcete přidat další soubory do tohoto balíčku pro nahrávání, klikněte
znovu na tlačítko <strong>Přidat soubory (Add Files)</strong> a zopakujte kroky popsané výše.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_upload_03.png" width="590" height="283" alt="Fronta nahrávání v CKFinder" />&nbsp;</p>
<p><em>Krok 4:</em> Pokud si rozmyslíte, které soubory na server nahrát, můžete
vždycky jednotlivé soubory odstranit z fronty nahrávání kliknutím na tlačítko
<strong>Odstranit (Remove)</strong> vedle souboru, nebo se rozhodnete zrušit celý proces
nahrávání zvolením tlačítka <strong>Zrušit (Cancel)</strong> na <strong>Panelu nahrávání</strong>.</p>
<p><em>Krok 5:</em> Pokud jste hotovi s procesem výběru souborů, můžete kliknout
na tlačítko <strong>Nahrát (Upload)</strong> pro spuštění nahrávání. Postup celého procesu
a také jednotlivých souborů můžete pozorovat na obrazovce.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_upload_04.png" width="575" height="289" alt="Postup nahrávání mnoha souborů" />&nbsp;</p>
<p><em>Krok 6:</em> Počkejte na ukončení nahrávání. Jakmile bude dokončeno, obsah
složky bude obnoven a nahraný soubor bude vybrán v
<a href="004.html"><strong>Panelu souborů</strong></a>.</p>
<h2>
Nahrávání jednoho souboru</h2>
<p>Když Adobe Flash není na Vašem systému dostupný, nahrávání CKFinder bude plně funkční,
bude ale omezeno na jeden soubor najednou. Abyste odeslali soubory na
server, postupujte podle kroků popsaných níže.</p>
<p><em>Krok 1:</em> Klikněte na tlačítko <strong>Nahrát (Upload)</strong> na panelu nástrojů pro otevření
<strong>Panelu nahrávání</strong>.</p>
<p><em>Krok 2:</em> Když je <strong>Panel nahrávání</strong> rozbalen, klikněte na
tlačítko <strong>Přidat soubory (Browse)</strong>. Otevře se dialogové okno výběru souborů
Vašeho operačního systému, které Vám umožní vybrat místní soubor k
nahrání na server.</p>
<p><span class="info">Poznámka:</span> Název tlačítka se může v různých prohlížečích lišit.</p>
<p><em>Krok 3:</em> Místní soubor bude nyní přidán. Můžete nahrávat pouze jeden soubor
najednou.</p>
<p><em>Krok 4:</em> Pokud jste hotovi s procesem výběru souboru, můžete kliknout
na tlačítko <strong>Nahrát zvolený soubor (Upload Selected File)</strong> pro spuštění nahrávání. Postup procesu
nahrávání souboru můžete pozorovat na obrazovce.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_upload_10.png" width="574" height="172" alt="Nahrávání jednoho souboru v CKFinder" />&nbsp;</p>
<p><em>Krok 5:</em> Počkejte na ukončení nahrávání. Jakmile bude dokončeno, <strong>
Panel nahrávání</strong> bude uzavřen, obsah složky bude obnoven a nahraný soubor bude vybrán v
<a href="004.html"><strong>Panelu souborů</strong></a>.</p>
<h2>
Chyby při nahrávání</h2>
<p>
Při nahrávání souborů se mohou objevit následující chyby.</p>
<h3>
Soubor se stejným názvem je již dostupný, nahraný soubor byl přejmenován na
"<em>název souboru(1).příp</em>"</h3>
<p>
Tato zpráva naznačuje, že název nahrávaného souboru je již používáním jiným
souborem ve stejné složce. Aby nedošlo ke konfliktu, bylo k původnímu názvu
připojeno pořadové číslo "(1)".</p>
<h3>
Neplatný soubor</h3>
<p>
Soubor, který jste se pokusili nahrát, nebyl přijat.
</p>
<p>
Nejběžnější příčina této zprávy je, že CKFinder byl nastaven, aby nepřijímal
druh souboru, který se snažíte nahrát, na základě jeho přípony. Toto
je bezpečnostní omezení. Je také možné, že velikost souboru je pro Váš systém
příliš velká. Pokud tomu tak je, server musí být nastaven pro přijetí
větších souborů.
</p>
<h3>Nahrávání zrušeno z bezpečnostních důvodů. Soubor obsahuje data podobná HTML.</h3>
<p>Nahrávaný soubor obsahuje HTML kód. Z bezpečnostních důvodů pouze soubory s vybranou příponou
mohou obsahovat kód HTML.</p>
<p>
Prosím kontaktujte Vašeho správce systému pro získání více informací ohledně
přijímaných typů souborů a jejich dovolených velikostí.</p>
</body>
</html>

View File

@@ -0,0 +1,30 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Tlačítko Znovu načíst</h1>
<p>Když pracujete ve sdíleném prostředí, které spravuje CKFinder, kde desítky či dokonce stovky
uživatelů pracuje na stejných souborech ve stejnou dobu, může se stát, že
ostatní přidají změny souborů či složek, s kterými pracujete,
nebo si je právě prohlížíte.</p>
<p>Tady se může hodit možnost <strong>Znovu načíst (Refresh)</strong>. Tato funkce
Vám umožňuje znovu načíst obsahy složky a vidět její nejnovější stav. Kdykoliv
potřebujete vidět aktualizovaný seznam souborů, klikněte na tlačítko <strong>Znovu načíst (Refresh)</strong>
v <strong><a href="005.html">Panelu nástrojů</a></strong> CKFinder.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_toolbar_refresh.png" width="251" height="64" alt="Tlačítko Znovu načíst v Panelu nástrojů CKFinder" />&nbsp;</p>
<p>
Tato funkce je zvláště užitečná, pokud CKFinder používáte jako <em>software pro
spolupráci</em>, sdílení souborů a složek s přáteli, rodinou, kolegy, nebo jakoukoli jinou
skupinou uživatelů. Abyste zajistili, že vždycky uvidíte tu nejaktuálnější verzi
obsahu v CKFinder, budete chtít občas znovu načíst seznam souborů pro
jeho aktualizaci.</p>
</body>
</html>

View File

@@ -0,0 +1,87 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Tlačítko Nastavení</h1>
<p>
Tlačítko <strong>Nastavení (Settings)</strong>, které je dostupné v
<strong><a href="005.html">Panelu nástrojů</a></strong> CKFinder otevře
<strong>Panel nastavení</strong>, kde si můžete CKFinder nastavit a přizpůsobit.</p>
<p>Obrázek níže představuje <strong>Panel nastavení</strong>,
který je rozbalen při kliknutí na tlačítko panelu nástrojů.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_settings.png" width="580" height="233" alt="Panel nastavení CKFinder" />&nbsp;</p>
<p>
Všechna nastavení jsou automaticky uložena pomocí "cookies" v internetovém prohlížeči.
"Cookies" jsou malé soubory, které ukládají soukromé informace o nastavení
pro určité stránky na Vašem počítači.</p>
<p>
Abyste zavřeli (sbalili) <strong>Panel nástrojů</strong>, stiskněte tlačítko
<strong>Zavřít (Close)</strong> nebo znovu klikněte na tlačítko <strong>Nastavení (Settings)</strong>.</p>
<h2>
Možnosti nastavení CKFinder</h2>
<p>
Všechny možnosti nastavení se vztahují k <strong><a href="004.html">Panelu složek</a>
</strong> a kontrolují způsob, jakým jsou soubory v CKFinder zobrazeny.
<strong>Panel souborů</strong> okamžitě zareaguje na změny v
<strong>Panelu nastavení</strong>.</p>
<h3>
Zobrazení (View)</h3>
<p>
Nastaví režim zobrazení v <strong>Panelu souborů</strong>:</p>
<ul>
<li><strong>Náhled (Thumbnails)</strong> &ndash; tento režim zobrazí každý soubor v
rámečku. Pro obrázky bude zobrazen uvnitř rámečku zobrazen
malý náhled. Pro ostatní soubory bude místo toho dostupná
ikona.</li>
<li><strong>Seznam (List)</strong> &ndash; tento režim zobrazí všechny soubory v seznamu.
V tomto režimu nejsou dostupné žádné náhledy.</li>
</ul>
<h3>
Zobrazit (Display)</h3>
<p>
Nastaví množství informací, které jsou dostupné v <strong>Panelu souborů</strong>.
Následující možnosti mohou být zapnuty či vypnuty:</p>
<ul>
<li><strong>Název (File Name)</strong> &ndash; zobrazí název souboru spolu s jeho příponou.</li>
<li><strong>Datum (Date)</strong> &ndash; zobrazí poslední datum změny souboru.</li>
<li><strong>Velikost (File Size)</strong> &ndash; zobrazí velikost souboru v kilobajtech.</li>
</ul>
<p>Pokud používáte režim zobrazení <strong>Náhled</strong>, můžete odškrtnout všechny
možnosti. V režimu <strong>Seznam</strong> bude název souboru vždycky zobrazen.</p>
<p>Obrázek níže představuje různé možnosti zobrazení tak, jak jsou zobrazeny v režimu
<strong>Náhled</strong>.</p>
<table align="center" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" style="padding-left: 10px">
<img src="../../files/images/CKFinder_file_display_04.png" width="122" height="112" alt="Soubor zobrazený v režimu Náhled bez názvu souboru, velikosti a data změny" /></td>
<td valign="top" style="padding-right: 10px; padding-left: 10px">
<img src="../../files/images/CKFinder_file_display_03.png" width="122" height="128" alt="Soubor zobrazený v režimu Náhled pouze s názvem souboru" /></td>
<td valign="top" style="padding-right: 10px; padding-left: 10px">
<img src="../../files/images/CKFinder_file_display_02.png" width="122" height="142" alt="Soubor zobrazený v režimu Náhled s názvem souboru a datem změny" /></td>
<td valign="top" style="padding-right: 10px">
<img src="../../files/images/CKFinder_file_display_01.png" width="122" height="158" alt="Soubor zobrazený v režimu Náhled s názvm souboru, velikostí a datem změny" /></td>
</tr>
</table>
<h3>
Seřazení (Sorting)</h3>
<p>
Nastaví pořadí, v kterém budou soubory zobrazeny. Jsou dostupné následující možnosti:</p>
<ul>
<li><strong>Podle názvu (by File Name)</strong> &ndash; seřadí soubory abecedně podle jejich názvu.</li>
<li><strong>Podle data (by Data)</strong> &ndash; seřadí soubory podle posledního data změny,
nejnovější je zobrazen první.</li>
<li><strong>Podle velikosti (by Size)</strong> &ndash; seřadí soubory podle jejich velikosti, největší je zobrazen
první.</li>
<li><strong>Podle přípony (by Extension)</strong> &ndash; seřadí soubory nejdříve abecedně podle jejich
přípony a pak abecedně podle jejich názvů.</li>
</ul>
</body>
</html>

View File

@@ -0,0 +1,20 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Tlačítko Nápověda</h1>
<p>
Tlačítko <strong>Nápověda (Help)</strong> je dostupné v <strong>
<a href="005.html">Panelu nástrojů</a></strong> ve všech zobrazení CKFinder. Když na něj kliknete,
bud otevřena "Uživatelská příručka" v nové kartě nebo okně prohlížeče.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_toolbar_help.png" width="266" height="64" alt="Tlačítko nápověda v panelu nástrojů CKFinder" />&nbsp;</p>
</body>
</html>

View File

@@ -0,0 +1,34 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Lišta stavu</h1>
<p>
<strong>Lišta stavu (Status Bar)</strong> je umístěna v dolní části rozhraní CKFinder,
která zobrazuje informace o zvoleném souboru, celkový počet
souborů ve složce, atd.</p>
<p>
Pokud je v CKFinder vybrán soubor, <strong>Lišta stavu</strong> zobrazí
podrobné informace o tomto souboru, včetně jeho názvu, velikosti a
data jeho poslední změny. Například:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_status_file.png" width="187" height="39" alt="Lišta stavu CKFinder s vybraným souborem" />&nbsp;</p>
<p>
Pokud nejsou vybrány žádné soubory, bude místo toho v <strong>Liště stavu</strong> zobrazen
celkový počet souborů v současné složce. Například:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_status_folder.png" width="187" height="39" alt="Lišta stavu CKFinder bez vybraného souboru" />&nbsp;</p>
<p>
Pokud je složka prázdná, <strong>Lišta stavu</strong> zobrazí odpovídající
zprávu. Například:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_status_empty.png" width="187" height="39" alt="Lišta stavu CKFinder v prázdné složce" />&nbsp;</p>
</body>
</html>

View File

@@ -0,0 +1,26 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Právní omezení</h1>
<p>
CKFinder, včetně této dokumentace, patří &copy; 2007-2012 <a href="http://cksource.com" target="_blank">CKSource</a> - Frederico Knabben. Všechna práva
vyhrazena. Ujistěte se, prosím, že jste přečetli a pochopili <a href="license.html">Licenci
CKFinder</a>.</p>
<p>
Ikony použité v panelu nástrojů a kontextových menu byly navrhnuty Markem Jamesem.
Pro další informace si prosím prohlédněte následující adresu:<br />
<a href="http://www.famfamfam.com/lab/icons/silk/">http://www.famfamfam.com/lab/icons/silk/</a></p>
<h2>
Obchodní značky</h2>
<p>
CKFinder, logo CKFinder, CKSource, CKEditor a FCKeditor jsou obchodní značky <a href="http://cksource.com" target="_blank">CKSource</a> - Frederico Knabben.</p>
</body>
</html>

View File

@@ -0,0 +1,61 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Kontextové menu</h1>
<p>
<strong>Kontextové menu</strong> je vyskakovací menu, které je zobrazeno kdykoliv
kliknete pravým tlačítkem myši na soubor nebo složku uvnitř rozhraní CKFinder,
použijte klávesu <em>Menu/Application</em> na Vaší klávesnici, nebo
klávesovou zkratku <em>(Ctrl+)Shift+F10</em>. Dává Vám přístup do operací
průzkumníka souborů, které jsou dostupné pro daný typ objektu.</p>
<p>Kontextové menu může být také otevřeno kliknutím na ikonu šipky dolů
(<img src="../../files/images/CKFinder_menu_arrow.png" width="9" height="7" alt="" />),
která je dostupná v některých prostředích nebo v prohlížečích mobilních telefonů vedle názvu
zvolené složky nebo v rámečcích souboru, tak jak je zobrazeno na obrázku níže.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_menu_arrows.png" width="469" height="251" alt="Kontextové menu CKFinder s pomocnými šipkami" />&nbsp;</p>
<p>Každé kontextové menu se stává z řady možností (příkazů), které mohou být
zvoleny, aby byla provedena určitá operace, které jsou jim přiděleny.</p>
<p>
<span class="info">Poznámka:</span> Některé možnosti kontextového menu mohou být zakázány (a
proto jsou zašedlé), v závislosti na nastaveních CKFinder, které vyžaduje Váš správce systému.</p>
<h2>
Použití Kontextového menu</h2>
<p>
Abyste provedli operaci uvedenou v kontextovém menu, klikněte na ni
levým tlačítkem myši. Kontextovým menu se můžete také pohybovat pomocí
kláves <em>Šipka nahoru</em> a <em>dolů</em> nebo kombinacemi <em>Shift+Tab</em> a
<em>Tab</em>. Jakmile je možnost vybrána, můžete jí zvolit klávesou
<em>Mezerník</em> nebo <em>Enter</em>. Pokud je možnost zašedlá,
není dostupná, protože nejsou splněny určité podmínky (např. musíte mít systémová
oprávnění pro provedení jistých změn souboru nebo složky).</p>
<h2>
Dostupná menu</h2>
<p>
Menu je řízeno podle kontextu, což znamená, že v něm zobrazené možnosti
závisí na objektu, který vyberete. Následující jsou menu, na které můžete narazit
při práci se standardní instalací CKFinder.</p>
<h3>
Kontextové menu složky</h3>
<p>
Je zobrazeno při kliknutí na složku v <strong><a href="003.html">Panelu složek</a>
</strong> pravým tlačítkem myši (nebo použitím klávesových zkratek, které jsou popsány výše):</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_menu.png" width="148" height="128" alt="Kontextové menu složky CKFinder" />&nbsp;</p>
<h3>
Kontextové menu souboru</h3>
<p>
Je zobrazeno při kliknutí na soubor v <strong><a href="004.html">Panelu souboru</a>
</strong> pravým tlačítkem myši (nebo použitím klávesových zkratek, které jsou popsány výše):</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_menu.png" width="130" height="156" alt="Kontextové menu souboru CKFinder" />&nbsp;</p>
</body>
</html>

View File

@@ -0,0 +1,36 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Kompabilita a systémové požadavky</h1>
<p>
CKFinder je <em>internetová aplikace</em>. To znamená, že je určena pro spuštění
uvnitř internetových prohlížečů, což usnadňuje zavedení a používání na každém
počítači.</p>
<p>
V současnosti jsou pro spuštění CKFinder potřeba tyto prohlížeče:</p>
<ul>
<li>Internet Explorer 6.0+</li>
<li>Firefox 3.0+</li>
<li>Safari</li>
<li>Google Chrome</li>
<li>Opera</li>
</ul>
<p>
Některé funkce závisejí na nastavení Vašeho prohlížeče. CKFinder by měl fungovat ve všech
prohlížečích uvedených výše při výchozím nastavení. Pokud máte problémy
s <strong><a href="012.html">Kontextovým menu</a></strong> nebo Vaše <strong>
<a href="008.html">Nastavení</a></strong> nejsou ukládána, ujistěte se, že Váš prohlížeč
je nastaven aby "<strong>umožnit skriptům nahrazovat nabídky</strong>" ("umožnit skriptům
přijímat kliknutí pravou myší") a že máte "<strong>povolenou podporu cookies</strong>".</p>
<p>
Máte-li pochybnosti, kontaktujte Vašeho správce systému.</p>
</body>
</html>

View File

@@ -0,0 +1,102 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Košík</h1>
<p>
Složka <strong>Košík</strong>, která je dostupná v
<strong><a href="003.html">Panelu složek</a></strong> otevře
<strong>Panel Košíku</strong>.</p>
<p>
<strong>Košík</strong> je virtuální a dočasné úložiště, které může být použito
k provádění hromadných operací se soubory v CKFinder. Je to
<em>virtuální</em> úložiště, protože soubory, které jsou umístěny do
<strong>Košíku</strong> nejsou fyzicky přesunuty z jejich nadřazených složek.
</p>
<p>Obrázek níže představuje <strong>Panel Košíku</strong>
po kliknutí na složku <strong>Košík (Basket)</strong> v
<strong>Panelu složek</strong>.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_basket_empty.png" width="548" height="235" alt="Složka Košík v CKFinder" />&nbsp;</p>
<p>
<span class="info">Poznámka:</span> Složka <strong>Košík</strong> je soukromá
v tom smyslu, že není sdílena s ostatními uživateli
a je svázána s relací Vašeho prohlížeče.</p>
<h2>
Přidání souborů do Košíku</h2>
<p>
Na začátku každé relace CKFinder je <strong>Košík</strong> prázdný.
Bude zobrazena zpráva vyzývající Vás k přetáhnutí souborů do <strong>Košíku</strong>.
Abyste toto provedli, přejděte do složky, která obsahuje soubory,
které chcete použít, přetáhněte je do složky <strong>Košík</strong> v
<strong>Panelu složek</strong>.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_basket_drag.png" width="482" height="303" alt="Přetáhnutí souboru do Košíku v CKFinder" />&nbsp;</p>
<p>Soubor by se nyní měl objevit ve složce <strong>Košík</strong>.</p>
<h2>
Kontextové menu souboru</h2>
<p>
Když je soubor umístěn do <strong>Košíku</strong>, jeho kontextové menu se změní,
aby zahrnovalo pouze ty operace, které jsou dostupné v této zvláštní složce.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_basket_file_menu.png" width="137" height="130" alt="Kontextové menu otevřené v Košíku" />&nbsp;</p>
<h2>
Odstraňování souborů z Košíku</h2>
<p>
Existují dva způsoby jak soubor odstranit z <strong>Košíku</strong>. Za prvé
můžete odstranit jednotlivé soubory zvolením možnosti <strong>Odstranit z Košíku (Remove from Basket)</strong>
z kontextového menu souboru. Když zvolíte možnost odstranění z kontextového menu,
bude zobrazena potvrzovací zpráva.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_basket_remove.png" width="342" height="149" alt="Odstranění souboru z Košíku v CKFinder" />&nbsp;</p>
<p>Můžete také odstranit všechny soubory najednou kliknutím na tlačítko <strong>Vyčistit Košík (Clear Basket)</strong> v
panelu nástrojů. Když toto provedete, budete vyzváni k potvrzení, zdali opravdu zamýšlíte odstranit
veškerý obsah <strong>Košíku</strong>.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_basket_clear.png" width="304" height="149" alt="Odstranění všech souborů z Košíku v CKFinder" />&nbsp;</p>
<p>
<span class="info">Poznámka:</span> Odstranění souboru z <strong>Košíku</strong> ho
nesmaže ze souborového systému. Stále bude dostupný v nadřazené složce.</p>
<h2>
Zobrazení nadřazené složky souboru</h2>
<p>
Jak je zmíněno výše, <strong>Košík</strong> je virtuální složka, která obsahuje soubory,
které jsou fyzicky umístěny v jiných složkách souborového systému. Pokud si chcete prohlédnout zdrojovou
složku souboru, zvolte možnost <strong>Otevřít nadřazenou složku (Open Parent Folder)</strong> z kontextového menu
souboru. CKFinder zobrazí složku, v které se soubor nachází.</p>
<h2>
Kopírování souboru z Košíku</h2>
<p>
Jakmile pohodlně umístíte některé soubory <strong>Košíku</strong>, budete je moci
zkopírovat do jiné (fyzické) složky. Abyste tohoto dosáhli, zvolte
cílovou složku v <strong><a href="003.html">Panelu složek</a></strong> a zvolte
možnost <strong>Kopírovat soubory z Košíku (Copy Files from Basket)</strong> z jejího kontextového menu.</p>
<p>
Bude zobrazena potvrzující zpráva vypisující soubory, které byly zkopírovány do cílové
složky.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_copied_from_basket.png" width="304" height="206" alt="Kopírování souboru z Košíku v CKFinder" />&nbsp;</p>
<p>
Soubory budou zkopírovány a jejich kopie umístěny do cílové složky. Cílová
složka zůstane nedotčena.</p>
<h2>Přesunování souborů z Košíku</h2>
<p>
<strong>Košík</strong> je také velmi užitečný, pokud chcete přesunovat soubory mezi složkami.
Jakmile umístíte nějaké soubory v <strong>Košíku</strong>, vyberte cílovou složku v
<strong>Panelu složek</strong> a zvolte možnost <strong>Přesunout soubory z Košíku (Move Files from Basket)</strong>
z jejího kontextového menu.</p>
<p>
Bude zobrazena potvrzující zpráva vypisující soubory, které byly přesunuty do cílové složky.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_moved_from_basket.png" width="304" height="206" alt="Přesunování souborů z košíku v CKFinder" />&nbsp;</p>
<p>
Soubory budou odstraněny z cílové složky a vloženy do cílové.</p>
</body>
</html>

View File

@@ -0,0 +1,47 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Klávesové zkratky</h1>
<p>
Mnoho funkcí v CKFinder má své klávesové zkratky. To je jeden
z důvodů, proč práce s průzkumníkem souborů je jak jednoduchá, tak efektivní.</p>
<p>
Seznam níže obsahuje dostupné klávesové zkratky seskupené podle problematických oblastí.</p>
<h2>Rozhraní CKFinder</h2>
<ul>
<li><em>Alt+F8</em> &ndash; vstoupí do <strong><a href="003.html">Panelu složek</a></strong>.</li>
<li><em>Alt+F9</em> &ndash; vstoupí do <strong><a href="004.html">Panelu souborů</a></strong>.</li>
<li><em>Alt+F10</em> &ndash; vstoupí do <strong><a href="005.html">Panelu nástrojů</a></strong>.</li>
<li><em>Alt+U</em> &ndash; otevře <strong><a href="006.html">Panel nahrávání</a></strong>.</li>
<li><em>(Ctrl+)Shift+F10</em> &ndash; otevře <strong><a href="012.html">Kontextové menu</a></strong> souboru nebo složky.</li>
<li><em>Esc</em> &ndash; má stejný účinek jako tlačítko <strong>Zrušit (Cancel)</strong>. Zavře
dialogové okno CKFinder nebo kontextové menu bez uložení jakýchkoli změn.</li>
<li><em>Enter</em> &ndash; má stejný účinek jako tlačítko <strong>OK</strong> v dialogovém okně.
Vybere funkci CKFinder z panelu nástrojů nebo kontextového menu.</li>
<li><em>Šipky Doleva a Doprava</em> &ndash; pohyb mezi tlačítky panelu nástrojů.</li>
<li><em>Šipky Nahoru a Dolů</em> nebo <em>Tab a Shift+Tab</em> &ndash; pohyb mezi možnostmi kontextového menu.</li>
</ul>
<h2>
Navigace panelu souborů</h2>
<ul>
<li><em>Page Down</em> &ndash; posune <strong>Panel souborů</strong> dolů.</li>
<li><em>Page Up</em> &ndash; posune <strong>Panel souborů</strong> nahoru.</li>
<li><em>End</em> &ndash; posune <strong>Panel souborů</strong> na poslední řádek.</li>
<li><em>Home</em> &ndash; posune <strong>Panel souborů</strong> na první řádek.</li>
</ul>
<h2>
Práce se soubory a složkami</h2>
<ul>
<li><em>F2</em> &ndash; má stejný účinek jako příkaz <strong>Přejmenovat (Rename)</strong>.</li>
<li><em>Del</em> &ndash; má stejný účinek jako příkaz <strong>Smazat (Delete)</strong>.</li>
</ul>
</body>
</html>

View File

@@ -0,0 +1,34 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<style type="text/css">
body
{
margin: 0px;
font-family: Trebuchet, Trebuchet MS, Verdana;
background-color: #696969;
color: #f5f5f5;
padding-left: 20px;
padding-right: 20px;
overflow: hidden;
}
a { color: #f5f5f5; text-decoration: none ; }
a:hover { text-decoration: underline ; }
</style>
</head>
<body>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="middle">
<h2 style="margin: 0px; padding: 0px;">
Uživatelská příručka CKFinder</h2>
</td>
<td align="right" valign="middle">
<a href="http://ckfinder.com" target="_blank">Navštivte internetovou stránku CKFinder</a></td>
</tr>
</table>
</body>
</html>

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
CKFinder License</h1>
<iframe src="../../../license.txt" style="width:800px;height:600px"></iframe>
</body>
</html>

View File

@@ -0,0 +1,34 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<script type="text/javascript">
function CheckForm()
{
if ( document.getElementById( 'xSuggestion' ).value == '' )
{
alert( 'Před odesláním zadejte prosím návrh.' ) ;
return false ;
}
document.getElementById( 'xSubmit' ).disabled = true ;
document.getElementById( 'spamcheck' ).value = 9945 + 13671 ;
return true ;
}
</script>
</head>
<body>
<h1>
Vaše podněty</h1>
<p>
Neváhejte <a href="http://cksource.com/contact">nám zaslat Vaše podněty</a> o této dokumentaci.
Vždy jsme ochotni ji zlepšit protože Vám chceme nabídnout lepší software každý den.</p>
</body>
</html>

View File

@@ -0,0 +1,96 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Uživatelská příručka CKFinder</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<style type="text/css">
body
{
margin: 0px;
font-family: Trebuchet, Trebuchet MS, Arial;
}
a { text-decoration: none ; }
a:hover { text-decoration: underline ; }
ul { list-style-type: none; padding-left: 20px; margin:0px; }
li { white-space: nowrap; padding-left:2px; padding-right:2px; }
.toc
{
background-color: #696969;
color: #f5f5f5;
margin: 0px;
font-weight: bold;
text-align: center;
}
.contents { padding: 10px; }
.active { color: highlighttext; background-color: highlight; }
</style>
<script type="text/javascript">
window.onload = function()
{
for ( var i = 0 ; i < document.links.length ; i++ )
{
var link = document.links[i] ;
link.target = 'CKDocsMain' ;
link.innerHTML = '&nbsp;' + link.innerHTML + '&nbsp;' ;
}
}
var lastLink = null ;
window.top.SetActiveTopic = function( topicUrl )
{
var pageName = topicUrl.match( /(?:^|\/|\\)([^\\\/]+)$/ )[1] ;
if ( lastLink )
lastLink.className = '' ;
for ( var i = 0 ; i < document.links.length ; i++ )
{
var link = document.links[i] ;
if ( link.href.match( /(?:^|\/|\\)([^\\\/]+)$/ )[1] == pageName )
{
lastLink = link ;
link.className = 'active' ;
return ;
}
}
}
</script>
</head>
<body>
<p class="toc">
&nbsp;Obsah</p>
<div class="contents">
<ul style="padding-left: 0px;">
<li><a href="001.html">Vítejte</a></li>
<li><a href="002.html">Rozhraní CKFinder</a>
<ul>
<li><a href="003.html">Panel složek</a>
<ul>
<li><a href="014.html">Košík</a></li>
</ul>
</li>
<li><a href="004.html">Panel souborů</a></li>
<li><a href="005.html">Panel nástrojů</a>
<ul>
<li><a href="006.html">Nahrát</a></li>
<li><a href="007.html">Znovu načíst</a></li>
<li><a href="008.html">Nastavení</a></li>
<li><a href="009.html">Nápověda</a></li>
</ul>
</li>
<li><a href="010.html">Lišta stavu</a></li>
<li><a href="012.html">Kontextové menu</a></li>
</ul>
</li>
<li><a href="015.html">Klávesové zkratky</a></li>
<li><a href="013.html">Kompatibilita a Systémové požadavky</a></li>
<li><a href="011.html">Právní omezení</a></li>
<li><a href="suggestions.html">Podněty?</a></li>
</ul>
</div>
</body>
</html>

View File

@@ -0,0 +1,18 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html lang="cs">
<head>
<title>Uživatelská příručka CKFinder</title>
<meta name="robots" content="noindex, nofollow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
frame {border-color:#f5f5f5}
</style>
</head>
<frameset rows="50,*">
<frame src="files/header.html" noresize="noresize" frameborder="0">
<frameset cols="200,*">
<frame src="files/toc.html">
<frame src="files/001.html" name="CKDocsMain">
</frameset>
</frameset>
</html>

View File

@@ -0,0 +1,30 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Welcome to CKFinder</h1>
<p>
<strong>CKFinder is a file manager</strong> that can help you browse,
upload, and manage files located on a web server &mdash; directly from your
Internet browser and without the need to install anything on your computer.</p>
<p>
Due to its application in a distributed environment, CKFinder can be described
as <em>collaborative software</em> that makes it easy to maintain and share files
located on a central computer (the <em>server</em>).</p>
<p>
Whether you are new to CKFinder or an experienced user, it is well worth spending
some time browsing through the CKFinder documentation in order to gain full
understanding of the ins and outs of this simple yet powerful tool.</p>
<h2>
Legal Notices</h2>
<p>
Please see the <a href="011.html" title="Link to Legal Notices">"Legal Notices"</a>
for some important copyright information.</p>
</body>
</html>

View File

@@ -0,0 +1,41 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
CKFinder Interface Overview</h1>
<p>
The CKFinder interface is designed to be clean, familiar to end users, and easy to
learn and use. Most features can be handled with a mouse click as well as by using
the context menus.</p>
<p>
If you are familiar with desktop file browsers built in most operating systems
available for your PC or laptop, you will quickly see that using an online file
manager is just as easy and intuitive.</p>
<p>
The following is a screenshot of the CKFinder interface:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_interface.png" alt="CKFinder interface" width="620" height="456" />&nbsp;</p>
<ol>
<li><strong><a href="003.html">Folders Pane</a></strong> &ndash; contains the "tree view"
of the folders that you can navigate. Folders are used to organize and categorize your
files.</li>
<li><strong><a href="004.html">Files Pane</a></strong> &ndash; lists the files available
in the selected folder.</li>
<li><strong><a href="005.html">Toolbar</a></strong> &ndash; a series of buttons that can
be clicked in order to quickly execute specific file browser functions.</li>
<li><strong><a href="010.html">Status Bar</a></strong> &ndash; the section at the bottom
of the interface that displays some information about the selected file, the total
number of files in the folder, etc.</li>
<li><strong><a href="012.html">Context Menu</a></strong> &ndash; a popup menu with file
browser commands that execute specific tasks for the object that was selected. Options
available in the context menu change dynamically depending on the object that is
clicked. </li>
</ol>
</body>
</html>

View File

@@ -0,0 +1,145 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Folders Pane</h1>
<p>
The <strong>Folders Pane</strong> contains the "tree view" of the folders that you can navigate.
Folders are used to organize and categorize your files.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_pane.png" width="176" height="140" alt="CKFinder Folders Pane" />&nbsp;</p>
<p>
Folders display is called "tree view" because the folders hierarchy is represented like
tree branches, with subfolders placed below and indented with regard to their parent items.
The <strong>Folders Pane</strong> uses the same graphic representation that can be found
in many modern operating systems.</p>
<h2>
Basic Operations</h2>
<h3>
Opening (Expanding) a Folder</h3>
<p>
In order to open a folder and expand its subfolders, click the plus icon
(<img src="../../files/images/002.gif" height="9" width="9" alt="" />) in front of the folder name. If the plus
icon is not present, the folder does not contain any subfolders.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_expand.png" width="110" height="19" alt="Collapsed CKFinder folder" />&nbsp;</p>
<p>
See the "On Request Loading" section below if you require more information about the loading
process in CKFinder.</p>
<h3>
Closing (Collapsing) a Folder</h3>
<p>
In order to close a folder and hide (collapse) its subfolders, click the minus icon
(<img src="../../files/images/003.gif" height="9" width="9" alt="" />) in front of the folder name.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_collapse.png" width="110" height="50" alt="Expanded CKFinder folder with its subfolders" />&nbsp;</p>
<h3>
Selecting a Folder</h3>
<p>
In order to select a folder and make it the "current folder" in CKFinder, click the folder
name or its icon. The selected folder will be highlighted with a different background
color.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_select.png" width="162" height="99" alt="Selected CKFinder folder" />&nbsp;</p>
<h2>
Advanced Operations</h2>
<p>
Advanced operations can be performed on a folder by using its <strong><a href="012.html">Context
Menu</a></strong>. Depending on the circumstances, the following options may be available:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_menu.png" width="148" height="128" alt="Folder context menu" />&nbsp;</p>
<ul>
<li><strong>New Subfolder</strong> &ndash; creates a new subfolder in this parent folder.</li>
<li><strong>Rename</strong> &ndash; changes the name of the folder.</li>
<li><strong>Copy Files from Basket</strong> &ndash; copies the files that were placed in the
<strong>Basket</strong> to the selected folder.</li>
<li><strong>Move Files from Basket</strong> &ndash; moves the files that were placed in the
<strong>Basket</strong> to the selected folder.</li>
<li><strong>Delete</strong> &ndash; permanently removes the folder.</li>
</ul>
<p>
<span class="info">Note:</span> Some context menu options may be disabled (and thus
grayed out), depending on CKFinder settings enforced by your system administrator.</p>
<h3>
Creating Folders</h3>
<p>
In order to create a child folder inside an existing folder, choose the
<strong>New Subfolder</strong> option from the context menu of the parent folder.
Type the name of the new folder in the dialog window that will be displayed. Once
you give the new folder a name and close the dialog window, the folder will
be created.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_new.png" width="304" height="149" alt="Creating a new folder in CKFinder" />&nbsp;</p>
<p>
Not all characters can be used in folder and file names due to limitations of the
systems where CKFinder runs. Among the characters that cannot be used in folders and
files names are: <code>\</code> <code>/</code> <code>:</code>
<code>*</code> <code>?</code> <code>&quot;</code> <code>&lt;</code>
<code>&gt;</code> and <code>|</code>.</p>
<h3>
Renaming Folders</h3>
<p>
In order to rename a folder, choose the <strong>Rename</strong> option from its context menu
or use the <em>F2</em> keyboard shortcut. Type the new folder name in the dialog window that
will be displayed, overwriting the existing name. Once you enter the new folder name and
close the dialog window, the folder will be renamed.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_rename.png" width="304" height="149" alt="Renaming a folder in CKFinder" />&nbsp;</p>
<p>
As stated above, not all characters can be used in folder and file names due to limitations of the
systems where CKFinder runs. Among the characters that cannot be used in folders and
files names are: <code>\</code> <code>/</code> <code>:</code>
<code>*</code> <code>?</code> <code>&quot;</code> <code>&lt;</code>
<code>&gt;</code> and <code>|</code>.</p>
<p>
<span class="warning">Attention:</span> When you rename a folder, links or media insertions
available on other pages and pointing to files or folders inside the renamed folder
will be broken, and thus not available anymore. Because of that be careful when using this
feature.</p>
<h3>
Copying and Moving Files from Basket</h3>
<p>
The <strong>Basket</strong> is a virtual placeholder that can be
helpful if you want to perform batch operations on files. The copying and moving
operations are described in the <strong><a href="014.html">"Basket"</a></strong> section
of the User's Guide.</p>
<h3>
Deleting Folders</h3>
<p>
In order to delete a folder, including all its contents, choose the <strong>Delete</strong>
option from its context menu or use the <em>Del</em> key. A confirmation message will appear
to ensure that this operation is what you really intend to do. Once you confirm the deletion,
the folder will be removed.</p>
<p>
<span class="warning">Attention:</span> This operation cannot be undone. Once you delete the
folder and its contents, you will not be able to restore the removed files.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_delete.png" width="304" height="149" alt="Deleting a folder in CKFinder" />&nbsp;</p>
<p>
<span class="warning">Attention:</span> When you delete a folder, links or media insertions
available on other pages and pointing to files or folders inside the deleted folder
will be broken, and thus not available anymore. Because of that be careful when using this
feature.</p>
<h2>
"On Request" Loading</h2>
<p>
The most important difference between CKFinder and the folders tree structures found in
desktop operating systems is that in CKFinder the folders are loaded "on request". It means
that the application does not load the entire folders tree structure at startup, but instead
loads its small subset when the folder is being expanded. This feature is present in
most advanced web applications like CKFinder and allows to save on bandwidth and loading time.</p>
<p>
To indicate that folders are being loaded, the <strong>Loading...</strong> label may appear when
you expand a folder:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_loading.png" width="143" height="113" alt="Folder loading in CKFinder" />&nbsp;</p>
<p>
The label will automatically disappear once all requested folders are loaded.</p>
</body>
</html>

View File

@@ -0,0 +1,242 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Files Pane</h1>
<p>
The <strong>Files Pane</strong> lists all files available in the selected folder.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_pane.png" width="451" height="429" alt="CKFinder Files Pane" />&nbsp;</p>
<h2>
Different Views</h2>
<p>
The <strong>Files Pane</strong> may present the files with two different display formats,
depending on CKFinder settings (see "<strong><a href="008.html">Settings</a></strong>").
The following is a comparison of the <strong>Thumbnails</strong> and the <strong>List</strong>
views for the same folder.</p>
<p>
When you configure CKFinder to use the <strong>Thumbnails</strong> view, the files will
be presented as thumbnails (miniature previews or icons), with or without additional
information like file name, size, or date (depending on your settings).</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_view_thumbnails.png" width="531" height="178" alt="CKFinder Files Pane with Thumbnails view" />&nbsp;</p>
<p>
When you configure CKFinder to use the <strong>List</strong> view, the files will
be presented in a list, with or without additional information like file name, size,
or date (depending on your settings).</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_view_list.png" width="564" height="136" alt="CKFinder Files Pane with List view" />&nbsp;</p>
<h2>
Basic Operations</h2>
<h3>
Activating (Selecting) a File with a Mouse</h3>
<p>
In order to activate a file and make it the "current file" in CKFinder, click the file
name or its thumbnail. To make it easier to choose the file, when you hover your mouse
over a file, its background will become highlighted. Once a file is activated, it will be
permanently highlighted with a different background color.</p>
<p>
The figure below presents various states of a file as viewed in a folder: unselected, hovered
with a mouse, and activated (selected).</p>
<table align="center" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" style="padding-right: 10px">
<img src="../../files/images/CKFinder_file_select_unselected.png" width="130" height="166" alt="Unselected file in CKFinder" /></td>
<td valign="top" style="padding-right: 10px; padding-left: 10px">
<img src="../../files/images/CKFinder_file_select_hovered.png" width="130" height="166" alt="Hovered file in CKFinder" /></td>
<td valign="top" style="padding-right: 10px; padding-left: 10px">
<img src="../../files/images/CKFinder_file_select_selected.png" width="130" height="166" alt="Selected file in CKFinder" /></td>
</tr>
</table>
<p>&nbsp;</p>
<p>
In order to deactivate a file, click another one (activating it) or click any empty space inside
the <strong>Files Pane</strong>.</p>
<h3>
Copying a File</h3>
<p>In order to copy a file to a different folder, select it, and drag onto the target folder in the
<strong>Folders Pane</strong>. When you drop it onto a folder name, choose the <strong>
Copy File Here</strong> option from the context menu.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_drag_copy.png" width="130" height="54" alt="Copying a file in CKFinder" />&nbsp;</p>
<p>
The file will be duplicated and its copy will be placed in the target folder. The
source folder will remain untouched.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_copied.png" width="304" height="149" alt="File copied in CKFinder" />&nbsp;</p>
<p>
<span class="info">Note:</span> If the file with the same name already exists in the
target folder, you will be prompted to choose between overwriting it or automatically
renaming the copied file (this is the default option).</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_already_exists.png" width="304" height="190" alt="Error message for a file that already exists in CKFinder" />&nbsp;</p>
<h3>
Moving a File</h3>
<p>In order to move a file to a different folder, select it, and drag onto the target folder
in the <strong>Folders Pane</strong>. When you drop it onto a folder name, choose the
<strong>Move File Here</strong> option from the context menu.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_drag_move.png" width="130" height="54" alt="Moving a file in CKFinder" />&nbsp;</p>
<p>
The file will be removed from the source folder and pasted into the target folder.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_moved.png" width="304" height="149" alt="File moved in CKFinder" />&nbsp;</p>
<h2>
Advanced Operations</h2>
<p>
Advanced operations can be performed on a file by using its <strong><a href="012.html">Context
Menu</a></strong>. Depending on the circumstances, the following options may be available:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_menu.png" width="130" height="156" alt="File context menu in CKFinder" />&nbsp;</p>
<ul>
<li><strong>Select</strong> &ndash; selects the file.</li>
<li><strong>View</strong> &ndash; displays the full-sized file in a new browser tab or window.</li>
<li><strong>Download</strong> &ndash; downloads the file from the server to your computer.</li>
<li><strong>Resize</strong> &ndash; allows you to modify file size and/or create a new thumbnail.</li>
<li><strong>Rename</strong> &ndash; changes the name of the file.</li>
<li><strong>Delete</strong> &ndash; permanently removes the file.</li>
</ul>
<p>
<span class="info">Note:</span> Some context menu options may be disabled (and thus
grayed out), depending on CKFinder settings enforced by your system administrator.</p>
<h3>
Selecting a File</h3>
<p>
In order to select a file by using the context menu, choose the <strong>Select</strong>
option. Alternatively, you can also perform a double-click on the file with your mouse.</p>
<p>
Depending on the environment where CKFinder is used, the selection operation can, for example,
send the file URL to another application or insert an image directly into an article created
in your CMS system.</p>
<h3>
Viewing (Previewing) a File</h3>
<p>
In order to preview a file in the browser, choose the <strong>View</strong> option from
its context menu. Not all kinds of files can be viewed in browsers, but this feature
is quite useful for images, text, and PDF files. In other cases, the browser will ask
you to open the file with an appropriate application.</p>
<p>
When you attempt to preview an image, CKFinder will display in directly in a lightbox popup.</p>
<h3>
Downloading a File</h3>
<p>
In order to download a file, choose the <strong>Download</strong> option from its context
menu. The browser will ask you for a location on your computer to save the downloaded file.
Depending on your browser and operating system settings, the file might also be opened
immediately after it is downloaded by using an appropriate application of your operating
system.</p>
<h3>
Resizing a File (Image)</h3>
<p>
In order to change the image size or its thumbnail size, choose the <strong>Resize</strong>
option from its context menu. Once you enter new image dimensions or choose a thumbnail size,
close the dialog window to apply the changes.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_resize.png" width="424" height="319" alt="Resizing an image in CKFinder" />&nbsp;</p>
<p>If the image is too big, you can alter its dimensions by entering new values into the
<strong>Width</strong> and <strong>Height</strong> fields. By default the image ratio is locked,
which you can see thanks to the <img src="../../files/images/CKFinder_resize_lock.png" width="7" height="8" alt="Image size ratio locked in CKFinder" />
(<strong>Lock</strong>) button. This means that when you change one of the size values (width
or height), the other one will be adjusted automatically.</p>
<p>If you want to freely modify both dimensions, click the <strong>Lock</strong> button in order to
unlock the ratio. The button will now change to
<img src="../../files/images/CKFinder_resize_unlock.png" width="7" height="10" alt="Image size ratio unlocked in CKFinder" />
(<strong>Unlock</strong>) and modification of one dimension will not automatically cause the
other one to be adjusted. To lock the image ratio again, click the <strong>Unlock</strong> button
once more.</p>
<p>You can easily return to original image size by pressing the
<img src="../../files/images/CKFinder_resize_reset.png" width="11" height="11" alt="Image size ratio reset in CKFinder" />
(<strong>Reset Size</strong>) button. This will reset the image size; the original width and height
will now appear in appropriate text boxes.</p>
<p>
If you resize the image, you can decide to save it under the same name, overwriting the
existing file. Please note that this operation cannot be undone and once you save the file with its
modified dimensions, you will not be able to restore the original size. In order to overwrite the
original image, leave the <strong>Create a new image</strong> checkbox unselected.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_resize_overwrite.png" width="424" height="319" alt="Overwriting a resized image in CKFinder" />&nbsp;</p>
<p>
You can also decide to save the resized image in a new file and leave the original as is. If you
select the <strong>Create a new image</strong> checkbox, you will be able to give the modified
file a new name. By default CKFinder suggests to save the image under the name that is built from
the original file name and new file dimensions (for example: <code>Sun1_100x100.jpg</code> when the
original file was named <code>Sun1.jpg</code> and the file was resized to 100 pixels wide and 100
pixels high).</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_resize_new.png" width="424" height="319" alt="Creating a new resized image in CKFinder" />&nbsp;</p>
<p>
When you are ready with your changes, click the <strong>OK</strong> button to close the dialog
window. On successful resizing a confirmation message will be displayed.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_resize_resized.png" width="304" height="149" alt="File resized in CKFinder" />&nbsp;</p>
<p>
If you saved the resized image in a new file, you will see both files appear inside the folder.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_resize_both.png" width="268" height="170" alt="Original and resized file in CKFinder" />&nbsp;</p>
<p>
<span class="info">Note:</span> The size of the original image may limit the options available for
the <strong>Resize</strong> feature. The modified image size cannot exceed the original dimensions.
</p>
<h3>
Generating Thumbnails</h3>
<p>
The <strong>Resize</strong> feature can also be used in order to generate resized copies of
images (thumbnails) that you can use in articles on your jeesite or in blog posts. Thanks to
the thumbnail resizing feature the site administrator can set predefined thumbnail size
options that can be used by CKFinder users. This will save you the effort to manually
enter modified width and height values for each image and will let you keep the thumbnail
sizes consistent across your site.</p>
<p>
In order to use one of the predefined thumbnail sizes, choose the <strong>Resize</strong>
option from the image context menu. In the <strong>Create a new thumbnail</strong> section
of the <strong>Resize</strong> dialog window select the checkbox(es) representing the
desired thumbnail size(s). On successful resizing a confirmation message will be displayed.
The resized image copies will be created in the same folder and the new files will be named
according to the thumbnail size option that you choose (with <code>_large</code>,
<code>_medium</code> and <code>_small</code> suffixes added to the original file name).</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_resize_thumbnails.png" width="398" height="170" alt="Thumbnails generated in CKFinder" />&nbsp;</p>
<p>
<span class="info">Note:</span> If the image is smaller than some of the thumbnails options
(see example above), the ones that are unavailable will be grayed out.</p>
<h3>
Renaming a File</h3>
<p>
In order to rename a file, choose the <strong>Rename</strong> option from its context menu
or use the <em>F2</em> keyboard shortcut. Type the new file name in the dialog window that
will be displayed, overwriting the existing name. Once you enter the new file name and close
the dialog window, the file will be renamed.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_rename.png" width="304" height="149" alt="Renaming a file in CKFinder" />&nbsp;</p>
<p>
Not all characters can be used in folder and file names due to limitations of the
systems where CKFinder runs. Among the characters that cannot be used in folders and
files names are: <code>\</code> <code>/</code> <code>:</code> <code>*</code>
<code>?</code> <code>&quot;</code> <code>&lt;</code> <code>&gt;</code> and <code>|</code>.</p>
<p>
<span class="warning">Attention:</span> When you rename a file, links or media insertions
available on other pages and pointing to the renamed file will be broken, and thus not
available anymore. Because of that be careful when using this feature.</p>
<h3>
Deleting a File</h3>
<p>
In order to delete a file, choose the <strong>Delete</strong> option from its context menu
or use the <em>Del</em> key. A confirmation message will appear to ensure that this operation
is what you really intend to do. Once you confirm the deletion, the file will be removed.</p>
<p>
<span class="warning">Attention:</span> This operation cannot be undone. Once you delete the
file, you will not be able to restore it.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_delete.png" width="304" height="149" alt="Deleting a file in CKFinder" />&nbsp;</p>
<p>
<span class="warning">Attention:</span> When you delete a file, links or media insertions
available on other pages and pointing to the deleted file will be broken, and thus not
available anymore. Because of that be careful when using this feature.</p>
</body>
</html>

View File

@@ -0,0 +1,43 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Toolbar
</h1>
<p>
The <strong>Toolbar</strong> is a dedicated section at the top of the CKFinder interface. It contains
a series of menu buttons that can be clicked in order to give you access to various file browser
features.</p>
<p>
This is what the standard CKFinder toolbar looks like:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_toolbar.png" width="253" height="38" alt="CKFinder Toolbar" />&nbsp;</p>
<h2>Using the Toolbar</h2>
<p>In order to perform an operation assigned to a button, click the button once. In most cases it will
either immediately perform some predefined action or open a drop-down panel with further configuration
options for a feature.</p>
<p>Remember that the toolbar can also be used with your keyboard. To enter the toolbar, use the
<em>Alt+F10</em> keyboard shortcut. To move to the next or previous button, use the <em>Right Arrow</em>
and <em>Left Arrow</em> keys, respectively. To activate a selected toolbar button, press <em>Enter</em>
or <em>Space</em>.</p>
<h2>
Toolbar Buttons</h2>
<p>
The following is the list of buttons available in the standard toolbar:</p>
<ul>
<li><strong><a href="006.html">Upload</a></strong> &ndash; opens the <strong>Upload Pane</strong>
that can be used to add new files to the current folder.</li>
<li><strong><a href="007.html">Refresh</a></strong> &ndash; reloads the list of files in the
<strong><a href="004.html">Files Pane</a></strong>.</li>
<li><strong><a href="008.html">Settings</a></strong> &ndash; opens the <strong>Settings Pane</strong>
where you can configure and personalize CKFinder.</li>
<li><strong><a href="009.html">Help</a></strong> &ndash; opens this User's Guide.</li>
</ul>
</body>
</html>

View File

@@ -0,0 +1,127 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Upload Button</h1>
<p>
The <strong>Upload</strong> button that is available in the CKFinder
<strong><a href="005.html">Toolbar</a></strong> opens the
<strong>Upload Pane</strong> which you can use to add new files to the
current folder.</p>
<p>The figure below presents the default file browser <strong>Upload Pane</strong>
that is expanded when you click the toolbar button.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_upload_01.png" width="591" height="145" alt="Flash Upload Panel in CKFinder" />&nbsp;</p>
<p>
In order to close (collapse) the <strong>Upload Pane</strong>, press
the <strong>Cancel</strong> button (if you have not started the upload process yet)
or the <strong>Close</strong> button (if the upload has already finished). You can
also click the <strong>Upload</strong> toolbar button once again to collapse the panel.</p>
<p>
<span class="info">Note:</span> <em>Upload</em> is a technical term that
stands for the action of sending the files from your local computer to a central
computer (also known as a <em>server</em>).</p>
<h2>
Upload Pane Versions</h2>
<p>CKFinder <strong>Upload Pane</strong> comes in two flavors, depending on your
environment. By default, the multiple upload solution (that lets you send more
files to the server in one operation) is used for all environments that support
Adobe Flash. If, however, your local system does not support Flash, you will
still be able to upload individual files in separate operations thanks to the
fallback solution.</p>
<p>The figure above presents the default <strong>Upload Pane</strong> with multiple
upload solution enabled. For all systems that do not support Flash (including
some mobile browsers) the following <strong>Upload Pane</strong> format will
be used.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_upload_09.png" width="572" height="143" alt="Single file Upload Panel in CKFinder" />&nbsp;</p>
<h2>
Multiple File Upload</h2>
<p>
By default CKFinder will allow you to upload multiple files at the same time.
In order to send the files to the server, follow the steps described below.</p>
<p><em>Step 1:</em> Click the <strong>Upload</strong> toolbar button to open the
<strong>Upload Pane</strong>.</p>
<p><em>Step 2:</em> When the <strong>Upload Pane</strong> expands, choose the
<strong>Add Files</strong> button. A native file selection dialog window of
your operating system that opens will let you choose the local file to be
uploaded to the server.</p>
<p><span class="info">Note:</span> You can choose as many files as you want by
selecting them in the dialog window all at once.</p>
<p><em>Step 3:</em> The local file(s) will now be added to the upload queue.
If you want to add further files to this upload batch, click the
<strong>Add Files</strong> button again and repeat the steps described above.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_upload_03.png" width="590" height="283" alt="Upload queue in CKFinder" />&nbsp;</p>
<p><em>Step 4:</em> If you change your mind about the files that should be sent to the server, you
can always either remove individual files from the upload queue by clicking
the <strong>Remove</strong> button next to the file, or decide to cancel the whole
upload process by choosing the <strong>Cancel</strong> button of the <strong>
Upload Pane</strong>.</p>
<p><em>Step 5:</em> If you are ready with the file selection process, you can click the
<strong>Upload</strong> button to start the upload. The progress of the whole process
as well as individual files can be observed on the screen.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_upload_04.png" width="575" height="289" alt="Multiple file upload progress" />&nbsp;</p>
<p><em>Step 6:</em> Wait for the upload to terminate. Once it is completed, the folder
content will refresh and the uploaded file (or the last one of the multiple files)
will be selected in the <a href="004.html"><strong>Files Pane</strong></a>.</p>
<h2>
Single File Upload</h2>
<p>When Adobe Flash is not available in your system, CKFinder upload will be fully
functional, though limited to uploading one file at a time. In order to send the
file to the server, follow the steps described below.</p>
<p><em>Step 1:</em> Click the <strong>Upload</strong> toolbar button to open the
<strong>Upload Pane</strong>.</p>
<p><em>Step 2:</em> When the <strong>Upload Pane</strong> expands, choose the
<strong>Browse</strong> button. A native file selection dialog window of your
operating system that opens will let you choose the local file to be uploaded
to the server.</p>
<p><span class="info">Note:</span> The button caption may differ between browsers.</p>
<p><em>Step 3:</em> The local file will now be selected. You can only upload one file
at a time.</p>
<p><em>Step 4:</em> If you are ready with the file selection process, you can click the
<strong>Upload Selected File</strong> button to start the upload. The progress of the
file upload process can be observed on the screen.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_upload_10.png" width="574" height="172" alt="Single file upload in CKFinder" />&nbsp;</p>
<p><em>Step 5:</em> Wait for the upload to terminate. Once it is completed, the <strong>
Upload Pane</strong> will be closed, the folder content will refresh, and the uploaded
file will be selected in the <a href="004.html"><strong>Files Pane</strong></a>.</p>
<h2>
Upload Errors</h2>
<p>
The following error messages may appear when uploading files.</p>
<h3>
A file with the same name is already available. The uploaded file was renamed
to "<em>filename(1).ext</em>"</h3>
<p>
This message indicates that the uploaded file name is already in use by another
file in the same folder. To avoid conflict, a consecutive number, the "(1)", was
appended to the original name.</p>
<h3>
Invalid file</h3>
<p>
The file that you attempted to upload was not accepted.
</p>
<p>
The most common cause for this message is that CKFinder was configured to not
accept the kind of file you are trying to upload based on its extension. This
is a security restriction. It is also possible that the file size is too
large for your system. If this is the case, the server must be configured to
accept bigger files.
</p>
<h3>Upload cancelled for security reasons. The file contains HTML-like data.</h3>
<p>The uploaded file contains HTML code. For security reasons, only files with selected
extensions are allowed to contain HTML code.</p>
<p>
Please contact your system administrator to get more information regarding the
accepted file types and their size limits.</p>
</body>
</html>

View File

@@ -0,0 +1,29 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Refresh Button</h1>
<p>When you work in a shared environment managed by CKFinder, where dozens or even hundreds
of users are working on the same files at the same time, it may happen that some
changes are being introduced by others to the files or folders that you are processing
or viewing at any given moment.</p>
<p>This is where the <strong>Refresh</strong> option might come to the rescue. This feature
lets you reload the contents of a folder and see its most current state. Whenever you
need to see the updated file list, click the <strong>Refresh</strong>
button from the CKFinder <strong><a href="005.html">Toolbar</a></strong>.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_toolbar_refresh.png" width="251" height="64" alt="Refresh button in the CKFinder toolbar" />&nbsp;</p>
<p>
This feature is particularly useful if you are using CKFinder as <em>collaborative
software</em>, sharing files and folders with friends, family, colleagues, or any other
group of users. In order to ensure that you always see the most current version of the
content managed by CKFinder, you might want to occasionally refresh the files list to
update it.</p>
</body>
</html>

View File

@@ -0,0 +1,90 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Settings Button</h1>
<p>
The <strong>Settings</strong> button that is available in the CKFinder
<strong><a href="005.html">Toolbar</a></strong> opens the
<strong>Settings Pane</strong> where you can configure and customize
CKFinder.</p>
<p>The figure below presents the file browser <strong>Settings Pane</strong>
that is expanded when you click the toolbar button.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_settings.png" width="580" height="233" alt="CKFinder Settings Pane" />&nbsp;</p>
<p>
All settings are saved automatically by using Internet browser "cookies".
"Cookies" are small files that store private configuration information
for specific jeesites on your computer.</p>
<p>
In order to close (collapse) the <strong>Settings Pane</strong>, press
the <strong>Close</strong> button or click the <strong>Settings</strong>
toolbar button once again.</p>
<h2>
CKFinder Configuration Options</h2>
<p>
All configuration options pertain to the <strong><a href="004.html">Files Pane</a>
</strong> and control the way the files are displayed in CKFinder. The
<strong>Files Pane</strong> will react immediately to changes introduced
in the <strong>Settings Pane</strong>.</p>
<h3>
View</h3>
<p>
Sets the view mode in the <strong>Files Pane</strong>:</p>
<ul>
<li><strong>Thumbnails</strong> &ndash; this mode will display each file in a
box (frame). For images a small preview (called a <em>thumbnail</em>) will
be displayed inside the box. For other files an icon will be available
instead.</li>
<li><strong>List</strong> &ndash; this mode will display all files in a list.
No image previews are available in this mode.</li>
</ul>
<h3>
Display</h3>
<p>
Sets the amount of information available in the <strong>Files Pane</strong>.
The following options can be turned on and off:</p>
<ul>
<li><strong>File Name</strong> &ndash; displays the file name, along with its
extension.</li>
<li><strong>Date</strong> &ndash; displays the last file modification date.</li>
<li><strong>File Size</strong> &ndash; displays the file size, in kilobytes.</li>
</ul>
<p>If you are using the <strong>Thumbnails</strong> view mode, you can deselect all
options. In the <strong>List</strong> mode the file name will always be displayed.</p>
<p>The image below presents various display options as viewed in the
<strong>Thumbnail</strong> mode.</p>
<table align="center" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" style="padding-left: 10px">
<img src="../../files/images/CKFinder_file_display_04.png" width="122" height="112" alt="File displayed in Thumbnails mode without file name, size, and modification date" /></td>
<td valign="top" style="padding-right: 10px; padding-left: 10px">
<img src="../../files/images/CKFinder_file_display_03.png" width="122" height="128" alt="File displayed in Thumbnails mode with file name only" /></td>
<td valign="top" style="padding-right: 10px; padding-left: 10px">
<img src="../../files/images/CKFinder_file_display_02.png" width="122" height="142" alt="File displayed in Thumbnails mode with file name and modification date" /></td>
<td valign="top" style="padding-right: 10px">
<img src="../../files/images/CKFinder_file_display_01.png" width="122" height="158" alt="File displayed in Thumbnails mode with file name, size, and modification date" /></td>
</tr>
</table>
<h3>
Sorting</h3>
<p>
Sets the order in which the files will be listed. The following options are available:</p>
<ul>
<li><strong>By File Name</strong> &ndash; sorts the files alphabetically according to
their names.</li>
<li><strong>By Date</strong> &ndash; sorts the files by the last modification date, with
newest displayed first.</li>
<li><strong>By Size</strong> &ndash; sorts the files by their size, with largest displayed
first.</li>
<li><strong>By Extension</strong> &ndash; sorts the files first alphabetically by their
extension, and then alphabetically according to their names.</li>
</ul>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Help Button</h1>
<p>
The <strong>Help</strong> button is available in the <strong>
<a href="005.html">Toolbar</a></strong> for all CKFinder views. When you click it,
the "User's Guide" will open in a new browser tab or window.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_toolbar_help.png" width="266" height="64" alt="Help button in the CKFinder toolbar" />&nbsp;</p>
</body>
</html>

View File

@@ -0,0 +1,33 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Status Bar</h1>
<p>
The <strong>Status Bar</strong> is the section at the bottom of the CKFinder
interface that displays information about the selected file, the total number
of files in the folder, etc.</p>
<p>
If a file is selected in CKFinder, the <strong>Status Bar</strong> will display
detailed information about that file, including the file name, its size, and the
data of its last modification. For example:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_status_file.png" width="187" height="39" alt="CKFinder Status Bar with a file selected" />&nbsp;</p>
<p>
If no files are selected, the <strong>Status Bar</strong> will instead display the
total number of files in the current folder. For example:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_status_folder.png" width="187" height="39" alt="CKFinder Status Bar with no files selected" />&nbsp;</p>
<p>
If the folder is empty, the <strong>Status Bar</strong> will display an appropriate
message. For example:</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_status_empty.png" width="187" height="39" alt="CKFinder Status Bar for an empty folder" />&nbsp;</p>
</body>
</html>

View File

@@ -0,0 +1,25 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Legal Notices</h1>
<p>
CKFinder, including this documentation, is Copyright &copy; 2007-2012 <a href="http://cksource.com" target="_blank">CKSource</a> - Frederico Knabben. All rights
reserved. Please ensure that you have read and understood the <a href="license.html">CKFinder
License</a>.</p>
<p>
The icons used in the toolbar and context menus were designed by Mark James.
Please check the following URL for more information:<br />
<a href="http://www.famfamfam.com/lab/icons/silk/">http://www.famfamfam.com/lab/icons/silk/</a></p>
<h2>
Trademarks</h2>
<p>
CKFinder, the CKFinder Logo, CKSource, CKEditor, and FCKeditor are trademarks of <a href="http://cksource.com" target="_blank">CKSource</a> - Frederico Knabben.</p>
</body>
</html>

View File

@@ -0,0 +1,64 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Context Menu</h1>
<p>
The <strong>Context Menu</strong> is a pop-up menu that appears whenever you
click a file or a folder inside the CKFinder interface with the right mouse
button, use the <em>Menu/Application</em> key on your keyboard, or the
<em>(Ctrl+)Shift+F10</em> keyboard shortcut. It gives you access to file browser
operations that are available for a given type of object.</p>
<p>The context menu can also be opened by clicking the down arrow icon
(<img src="../../files/images/CKFinder_menu_arrow.png" width="9" height="7" alt="" />)
that is available in some environments or in mobile browsers next the name of the
active folder or in the file boxes, as visible in the figure below.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_menu_arrows.png" width="469" height="251" alt="CKFinder context menu with helper arrows" />&nbsp;</p>
<p>Each context menu consists of a series of options (commands) that can be
selected in order to perform a specific operation that they are associated
with.</p>
<p>
<span class="info">Note:</span> Some context menu options may be disabled (and
thus grayed out), depending on CKFinder settings enforced by your system
administrator.</p>
<h2>
Using the Context Menu</h2>
<p>
In order to perform an operation listed in the context menu, click it with the
left mouse button. You can also move up and down the context menu with the
<em>Up</em> and <em>Down Arrow</em> keys or the <em>Shift+Tab</em> and
<em>Tab</em> combinations. Once an option is highlighted, you can activate
it with the <em>Space</em> or <em>Enter</em> button. If an option is grayed out,
it is unavailable unless some pre-conditions are met (e.g. you have system
permissions to make specific changes to a file or folder).</p>
<h2>
Available Menus</h2>
<p>
The menu is context-sensitive which means that the options displayed in it
depend on the object that you select. The following are the menus that you may
encounter while working with a standard CKFinder installation.</p>
<h3>
Folder Context Menu</h3>
<p>
It appears when you click a folder in the <strong><a href="003.html">Folders Pane</a>
</strong> with the right mouse button (or use the keyboard shortcuts described
above):</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_menu.png" width="148" height="128" alt="CKFinder folder context menu" />&nbsp;</p>
<h3>
File Context Menu</h3>
<p>
It appears when you click a file in the <strong><a href="004.html">Files Pane</a>
</strong> with the right mouse button (or use the keyboard shortcuts described
above):</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_file_menu.png" width="130" height="156" alt="CKFinder file context menu" />&nbsp;</p>
</body>
</html>

View File

@@ -0,0 +1,35 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Compatibility and System Requirements</h1>
<p>
CKFinder is a <em>web application</em>. It means that it is designed to run
inside Internet browsers, which makes it easy to deploy and to use on any
computer.</p>
<p>
Currently, the following browsers are required for CKFinder to run:</p>
<ul>
<li>Internet Explorer 6.0+</li>
<li>Firefox 3.0+</li>
<li>Safari</li>
<li>Google Chrome</li>
<li>Opera</li>
</ul>
<p>
Some features depend on your browser settings. CKFinder should work in any of the
browsers listed above with their default settings enabled. If you are experiencing problems
with the <strong><a href="012.html">Context Menu</a></strong> or your <strong>
<a href="008.html">Settings</a></strong> are not being saved, make sure that your browser
is configured to "<strong>allow scripts to replace context menus</strong>" ("allow scripts
to receive right clicks") and that you have "<strong>cookies support enabled</strong>".</p>
<p>
Please contact your system administrator if you have any doubts.</p>
</body>
</html>

View File

@@ -0,0 +1,101 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Basket</h1>
<p>
The <strong>Basket</strong> folder that is available in the
<strong><a href="003.html">Folders Pane</a></strong> opens the
<strong>Basket Pane</strong>.</p>
<p>
The <strong>Basket</strong> is a virtual and temporary placeholder that can
be used to perform batch operations on files in CKFinder. It is a
<em>virtual</em> container, since the files that are placed in the
<strong>Basket</strong> are not physically moved from their parent folders.
</p>
<p>The figure below presents the file browser <strong>Basket Pane</strong>
that is expanded when you click the <strong>Basket</strong> folder in the
<strong>Folders Pane</strong>.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_basket_empty.png" width="548" height="235" alt="CKFinder Basket folder" />&nbsp;</p>
<p>
<span class="info">Note:</span> The <strong>Basket</strong> folder is private
in the sense that it is not being shared with other users of the file system
and is tied to your browser session.</p>
<h2>
Adding Files to Basket</h2>
<p>
At the beginning of each CKFinder session the <strong>Basket</strong> is empty.
A message urging you to drag some files and drop them into the <strong>Basket</strong>
will be displayed. In order to do this, go to the folder that contains the files
that you are going to use, drag it onto the <strong>Basket</strong> folder in
the <strong>Folders Pane</strong>, and drop.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_basket_drag.png" width="482" height="303" alt="Dragging a file to the Basket in CKFinder" />&nbsp;</p>
<p>The file should now appear in the <strong>Basket</strong> folder.</p>
<h2>
File Context Menu</h2>
<p>
When a file is placed in the <strong>Basket</strong>, its context menu will change
to only include the operations that are available in this special folder.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_basket_file_menu.png" width="137" height="130" alt="File context menu opened in the Basket" />&nbsp;</p>
<h2>
Removing Files from Basket</h2>
<p>
There are two methods of removing a file from the <strong>Basket</strong>. Firstly,
you can remove an individual file by choosing the <strong>Remove from Basket</strong>
option from the file context menu. When you select the context menu removal option,
a confirmation message will appear.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_basket_remove.png" width="342" height="149" alt="Removing a file from the Basket in CKFinder" />&nbsp;</p>
<p>You can also remove all files at once by clicking the <strong>Clear Basket</strong> toolbar
button. When you do this, you will be prompted to confirm whether you intend to remove
all <strong>Basket</strong> contents.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_basket_clear.png" width="304" height="149" alt="Removing all files from the Basket in CKFinder" />&nbsp;</p>
<p>
<span class="info">Note:</span> Removing a file from the <strong>Basket</strong> does
not delete it from the file system. It will still be available in its parent folder.</p>
<h2>
Showing File Parent Folder</h2>
<p>
As mentioned above, the <strong>Basket</strong> is a virtual folder that lists files that
are physically located in other file system folders. If you want to check the source folder
of a file, choose the <strong>Open Parent Folder</strong> option from the file context
menu. CKFinder will show the folder that the file is located in.</p>
<h2>
Copying Files from Basket</h2>
<p>
Once you conveniently place some files in the <strong>Basket</strong>, you will now be
able to copy them to a different (physical) folder. In order to achieve this, select the
target folder in the <strong><a href="003.html">Folders Pane</a></strong> and choose the
<strong>Copy Files from Basket</strong> option from its context menu.</p>
<p>
A confirmation message will appear, listing the files that were copied to the target
folder.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_copied_from_basket.png" width="304" height="206" alt="Copying files from Basket in CKFinder" />&nbsp;</p>
<p>
The files will be duplicated and their copies will be placed in the target folder. The
source folder will remain untouched.</p>
<h2>Moving Files from Basket</h2>
<p>
The <strong>Basket</strong> is also useful if you want to move some files between folders.
Once you place some files in the <strong>Basket</strong>, select a target folder in the
<strong>Folders Pane</strong>, and choose the <strong>Move Files from Basket</strong> option
from its context menu.</p>
<p>
A confirmation message will appear, listing the files that were moved to the target folder.</p>
<p style="text-align: center">
<img src="../../files/images/CKFinder_folder_moved_from_basket.png" width="304" height="206" alt="Moving files from Basket in CKFinder" />&nbsp;</p>
<p>
The files will be removed from the source folder and pasted into the target folder.</p>
</body>
</html>

View File

@@ -0,0 +1,46 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Keyboard Shortcuts</h1>
<p>
Many functions in CKFinder have their equivalent keyboard shortcuts. This is one
of the reasons why working with the file browser is both simple and efficient.</p>
<p>
The list below contains available keyboard shortcuts grouped by problem areas.</p>
<h2>CKFinder Interface</h2>
<ul>
<li><em>Alt+F8</em> &ndash; enters the <strong><a href="003.html">Folders Pane</a></strong>.</li>
<li><em>Alt+F9</em> &ndash; enters the <strong><a href="004.html">Files Pane</a></strong>.</li>
<li><em>Alt+F10</em> &ndash; enters the <strong><a href="005.html">Toolbar</a></strong>.</li>
<li><em>Alt+U</em> &ndash; opens the <strong><a href="006.html">Upload Pane</a></strong>.</li>
<li><em>(Ctrl+)Shift+F10</em> &ndash; opens the <strong><a href="012.html">Context Menu</a></strong> of a file or folder.</li>
<li><em>Esc</em> &ndash; equivalent of the <strong>Cancel</strong> button. Closes
a CKFinder dialog window or context menu without saving any changes.</li>
<li><em>Enter</em> &ndash; equivalent of the <strong>OK</strong> button in a dialog window.
Selects a CKFinder function from the toolbar or context menu.</li>
<li><em>Left and Right Arrows</em> &ndash; move between toolbar buttons.</li>
<li><em>Up and Down Arrows</em> or <em>Tab and Shift+Tab</em> &ndash; move between context menu options.</li>
</ul>
<h2>
Files Pane Navigation</h2>
<ul>
<li><em>Page Down</em> &ndash; scrolls down the <strong>Files Pane</strong>.</li>
<li><em>Page Up</em> &ndash; scrolls up the <strong>Files Pane</strong>.</li>
<li><em>End</em> &ndash; scrolls the <strong>Files Pane</strong> to the last row.</li>
<li><em>Home</em> &ndash; scrolls the <strong>Files Pane</strong> to the first row.</li>
</ul>
<h2>
Working with Files and Folders</h2>
<ul>
<li><em>F2</em> &ndash; equivalent to the <strong>Rename</strong> command.</li>
<li><em>Del</em> &ndash; equivalent to the <strong>Delete</strong> command.</li>
</ul>
</body>
</html>

View File

@@ -0,0 +1,33 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<meta name="robots" content="noindex, nofollow" />
<style type="text/css">
body
{
margin: 0px;
font-family: Trebuchet, Trebuchet MS, Verdana;
background-color: #696969;
color: #f5f5f5;
padding-left: 20px;
padding-right: 20px;
overflow: hidden;
}
a { color: #f5f5f5; text-decoration: none ; }
a:hover { text-decoration: underline ; }
</style>
</head>
<body>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="middle">
<h2 style="margin: 0px; padding: 0px;">
CKFinder User's Guide</h2>
</td>
<td align="right" valign="middle">
<a href="http://ckfinder.com" target="_blank">Visit the CKFinder Website</a></td>
</tr>
</table>
</body>
</html>

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
CKFinder License
</h1>
<iframe src="../../../license.txt" style="width:800px;height:600px"></iframe>
</body>
</html>

View File

@@ -0,0 +1,33 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
<script type="text/javascript">
function CheckForm()
{
if ( document.getElementById( 'xSuggestion' ).value == '' )
{
alert( 'Please type your suggestion text before sending.' ) ;
return false ;
}
document.getElementById( 'xSubmit' ).disabled = true ;
document.getElementById( 'spamcheck' ).value = 9945 + 13671 ;
return true ;
}
</script>
</head>
<body>
<h1>
Your Suggestions</h1>
<p>
Feel free to <a href="http://cksource.com/contact">send us your suggestions</a> about this documentation.
We are always willing to improve it as we want to offer you better software every day.</p>
</body>
</html>

View File

@@ -0,0 +1,95 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<meta name="robots" content="noindex, nofollow" />
<style type="text/css">
body
{
margin: 0px;
font-family: Trebuchet, Trebuchet MS, Arial;
}
a { text-decoration: none ; }
a:hover { text-decoration: underline ; }
ul { list-style-type: none; padding-left: 20px; margin:0px; }
li { white-space: nowrap; padding-left:2px; padding-right:2px; }
.toc
{
background-color: #696969;
color: #f5f5f5;
margin: 0px;
font-weight: bold;
text-align: center;
}
.contents { padding: 10px; }
.active { color: highlighttext; background-color: highlight; }
</style>
<script type="text/javascript">
window.onload = function()
{
for ( var i = 0 ; i < document.links.length ; i++ )
{
var link = document.links[i] ;
link.target = 'CKDocsMain' ;
link.innerHTML = '&nbsp;' + link.innerHTML + '&nbsp;' ;
}
}
var lastLink = null ;
window.top.SetActiveTopic = function( topicUrl )
{
var pageName = topicUrl.match( /(?:^|\/|\\)([^\\\/]+)$/ )[1] ;
if ( lastLink )
lastLink.className = '' ;
for ( var i = 0 ; i < document.links.length ; i++ )
{
var link = document.links[i] ;
if ( link.href.match( /(?:^|\/|\\)([^\\\/]+)$/ )[1] == pageName )
{
lastLink = link ;
link.className = 'active' ;
return ;
}
}
}
</script>
</head>
<body>
<p class="toc">
&nbsp;Table of Contents</p>
<div class="contents">
<ul style="padding-left: 0px;">
<li><a href="001.html">Welcome</a></li>
<li><a href="002.html">CKFinder Interface</a>
<ul>
<li><a href="003.html">Folders Pane</a>
<ul>
<li><a href="014.html">Basket</a></li>
</ul>
</li>
<li><a href="004.html">Files Pane</a></li>
<li><a href="005.html">Toolbar</a>
<ul>
<li><a href="006.html">Upload</a></li>
<li><a href="007.html">Refresh</a></li>
<li><a href="008.html">Settings</a></li>
<li><a href="009.html">Help</a></li>
</ul>
</li>
<li><a href="010.html">Status Bar</a></li>
<li><a href="012.html">Context Menu</a></li>
</ul>
</li>
<li><a href="015.html">Keyboard Shortcuts</a></li>
<li><a href="013.html">Compatibility and System Requirements</a></li>
<li><a href="011.html">Legal Notices</a></li>
<li><a href="suggestions.html">Suggestions?</a></li>
</ul>
</div>
</body>
</html>

View File

@@ -0,0 +1,18 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html lang="en">
<head>
<title>CKFinder User's Guide</title>
<meta name="robots" content="noindex, nofollow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
frame {border-color:#f5f5f5}
</style>
</head>
<frameset rows="50,*">
<frame src="files/header.html" noresize="noresize" frameborder="0">
<frameset cols="200,*">
<frame src="files/toc.html">
<frame src="files/001.html" name="CKDocsMain">
</frameset>
</frameset>
</html>

View File

@@ -0,0 +1,24 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Bienvenido a CKFinder
</h1>
<p>
<strong>CKFinder es un programa colaborativo </strong> que hace m&aacute;s f&aacute;cil mantener y compartir archivos localizados en una computadora central (el servidor).</p>
<p>
Ya sea que usted sea nuevo al programa o un usuario experto, vale la pena tomar un poco de su tiempo para leer la documentaci&oacute;n completa de CKFinder para obtener un conocimiento completo acerca de este simple pero poderoso programa.</p>
<h2>
Avisos legales
</h2>
<p>
Se le pide su atenci&oacute;n a los <a href="011.html" title="Link to Legal Notices">Avisos legales </a></p>
</body>
</html>

View File

@@ -0,0 +1,28 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Introducci&oacute;n a la interface de CKFinder</h1>
<p>
La Interface de CKFinder, ha sido dise&ntilde;ada para ser clara, familiar, f&aacute;cil de aprender y usar para nuestros usuarios finales. La mayor&iacute;a de las caracteristicas pueden ser usadas con movimientos del mouse y clicks en menus de contexto.</p>
<p>
La siguiente imagen, es un screenshot de CKFinder: </p>
<p style="text-align: center">
<img src="images/001.png" alt="CKFinder Screenshot" height="404" width="622" />
</p>
<ol>
<li><a href="003.html">P&aacute;nel de Carpetas </a>: contiene la &quot;vista de arbol&quot; de las carpetas donde se puede navegar, las carpetas son formas de organizar mejor los archivos.</li>
<li><a href="004.html">P&aacute;nel de Archivos</a>: Muestra los archivos disponibles en la carpeta seleccionada.</li>
<li><a href="005.html">Barra de Herramientas</a>: Es una serie de botones que pueden ser pulsados para ejecutar r&aacute;pidamente funciones espec&iacute;ficas.</li>
<li><a href="010.html">Barra de Status </a>: Es un espacio utilizado para desplegar informaci&oacute;n referente al archivo seleccionado, el n&uacute;mero total de archivos en una carpeta etc.</li>
<li><a href="012.html">Men&uacute; contextual </a>: Una serie de botones que pueden ser usados para ejecutar tareas espec&iacute;ficas en el objeto sobre el cual se ha dado un click. Las opciones disponibles cambian dinamicamente dependiendo del tipo del objeto al cual se le dio un click.</li>
</ol>
</body>
</html>

View File

@@ -0,0 +1,83 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>P&aacute;nel de Carpetas </h1>
<p>
El p&aacute;nel de carpetas, contiene la &quot;vista de arbol&quot; de las carpetas por las que se puede navegar, las carpetas, son una manera de organizar mejor los archivos.</p>
<p>
Se le llama &quot;vista de arbol&quot;, por que se tienen las carpetas representadas jerarquicamente como las ramas de un arbol. Usa la misma representaci&oacute;n gr&aacute;fica que muchos sistemas operativos modernos.</p>
<h2>
Operaciones B&aacute;sicas</h2>
<h3>
Abrir una carpeta </h3>
<p>
Para abrir una carpeta y revelar sus carpetas &quot;hijas&quot;, simplemente haga click en el signo &quot;m&aacute;s&quot; (<img src="images/002.gif" alt="Signo m&aacute;s" width="9" height="9" />) en frente de la misma. Si el signo &quot;m&aacute;s&quot; no est&aacute; presente, la carpeta no tiene carpetas hijas que puedan desplegarse.</p>
<p>
Vea "Cargado bajo demanda " al final de la pagina para un mejor entendimiento de como son cargadas las carpetas.</p>
<h3>
Cerrar una carpeta </h3>
<p>
Para cerrar una carpeta, y por ende esconder sus carpetas &quot;hijas&quot;, simplemente d&eacute; click en el signo &quot;menos&quot; (<img
src="images/003.gif" alt="Signo menos" width="9" height="9" />) en frente de la misma.</p>
<h3>
Seleccionar una carpeta
</h3>
<p>
Para seleccionar una carpeta y por ende convertirla a &quot;la carpeta actual&quot; para CKFinder, simplemente d&eacute; click en el nombre de la carpeta o en su icono. La carpeta seleccionada tendr&aacute; un color de fondo diferente.</p>
<h2>
Operaciones Avanzadas </h2>
<p>
Es posible utilizar operaciones avanzadas en una carpeta, haciendo uso de su "<a href="012.html">Men&uacute; de contexto</a>", las siguientes opciones estan disponibles:</p>
<p style="text-align: center">
<img src="images/004.png" width="124" height="75" alt="Menú contextual"/>&nbsp;</p>
<p>
<span class="info">Nota:</span> Algunos botones de un men&uacute; de contexto podr&iacute;an estar deshabilitados, dependiendo de los ajustes asignados por el administrador del sistema.</p>
<div>
<h3>
Crear Carpetas
</h3>
</div>
<p>
Para crear una carpeta &quot;hija&quot; dentro de una carpeta ya existente, solamente haga clic sobre la opci&oacute;n &quot;Nueva Carpeta&quot; del men&uacute; de contexto. Una ventana de dialogo aparecer&aacute; en donde deber&aacute; escribir el nombre de la nueva Carpeta, luego confirme la operaci&oacute;n.</p>
<p>
No todos los caracteres pueden ser usados para establecer un nombre de carpeta, debido a limitaciones en los sistemas donde CKFinder se ejecuta. Por ejemplo, los siguientes caracteres, no pueden usarse para dar nombre a carpetas ni archivos: <strong>\</strong> <strong>/</strong> <strong>:</strong>
<strong>*</strong> <strong>?</strong> <strong>&quot;</strong> <strong>&lt;</strong>
<strong>&gt;</strong> <strong>|</strong></p>
<div>
<h3>
Renombrar Carpetas</h3>
</div>
<p>
Para renombrar una carpeta, solo d&eacute; click en la opci&oacute;n &quot;Renombrar&quot; del men&uacute; de contexto. Una ventana de dialogo aparecer&aacute; conteniendo el nombre actual de la carpeta, ah&iacute; deber&aacute; escribir el nuevo nombre que desea asignar a la carpeta, luego confirme la operaci&oacute;n.</p>
<p>
No todos los caracteres pueden ser usados para establecer un nombre de carpeta, debido a limitaciones en los sistemas donde CKFinder se ejecuta. Por ejemplo, los siguientes caracteres, no pueden usarse para dar nombre a carpetas ni archivos: <strong>\</strong> <strong>/</strong> <strong>:</strong> <strong>*</strong> <strong>?</strong> <strong>&quot;</strong> <strong>&lt;</strong> <strong>&gt;</strong> <strong>|</strong></p>
<div></div>
<p><span class="warning">Atenci&oacute;n:</span> Al renombrar una carpeta, las ligas o inserciones de medios disponibles en otras paginas que apunten a archivos o carpetas dentro de aquella que fue renombrada podr&iacute;an quedar &quot;quebradas&quot; y por lo mismo no disponibles m&aacute;s. Asi que sea cauteloso cuando use esta caracteristica.</p>
<div>
<h3>
Borrar Carpetas</h3>
</div>
<p>
Para borrar una carpeta, incluyendo su contenido, solo d&eacute; click sobre la opci&oacute;n &quot;Borrar&quot; del men&uacute; de contexto. Un mensaje de confirmaci&oacute;n aparecer&aacute; para asegurarse de que realmente desea eliminar dicha carpeta.</p>
<p><span class="warning">Atenci&oacute;n:</span> Al renombrar una carpeta, las ligas o inserciones de medios disponibles en otras paginas que apunten a archivos o carpetas dentro de aquella que fue renombrada podr&iacute;an quedar &quot;quebradas&quot; y por lo mismo no disponibles m&aacute;s. Asi que sea cauteloso cuando use esta caracteristica.</p>
<div>
<h2>
Cargado "Bajo demanda "</h2>
</div>
<p>
La diferencia m&aacute;s importante entre CKFinder y la &quot;vista de arbol&quot; que se encuentra en los sistemas operativos modernos, es que los folders se cargan &quot;bajo demanda&quot;, esto significa que CKFinder no carga todo el arbol al inicio, sino que solo carga un peque&ntilde;o subconjunto de el cuando se abre la carpeta, este es un requerimiento de aplicaciones avanzadas para web como lo es CKFinder.like CKFinder.</p>
<p>
Para indicar que las carpetas se est&aacute;n cargando, la etiqueta &quot;Cargando...&quot; podr&iacute;a aparecer cuando se intente abrir una carpeta.</p>
<p style="text-align: center">
<img src="images/005.png" width="143" height="76" alt="cargando..."/>&nbsp;</p>
<p>
La etiqueta desaparecer&aacute; automaticamente una vez que la carga de las carpetas haya terminado, una vez cargada, la etiqueta no aparecera m&aacute;s para esa carpeta.</p>
</body>
</html>

View File

@@ -0,0 +1,68 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
P&aacute;nel de Archivos</h1>
<p>
El P&aacute;nel de archivos lista los archivos disponibles en la carpeta seleccionada.</p>
<h2>
Vistas Diferentes</h2>
<p>El p&aacute;nel de archivos puede presentar dos vistas diferentes, dependiendo de la configuraci&oacute;n de CKFinder (vea "<a href="008.html">Ajustes</a>"). La siguiente, es una comparaci&oacute;n de la vista &quot;<strong>Miniaturas</strong>&quot; y la vista &quot;<strong>Lista</strong>&quot; para la misma carpeta:</p>
<p style="text-align: center">
<img src="images/007.png" width="407" height="402" alt="Vista de Iconos"/>
</p>
<p style="text-align: center">
<img src="images/006.png" width="404" height="230" />
</p>
<h2>
Operaciones B&aacute;sicas &nbsp;</h2>
<h3>
Seleccionar (Activar) un Archivo </h3>
<p>
Para seleccionar un archivo, y por ende convertirlo al &quot;archivo activo&quot; en CKFinder, simplemente d&eacute; click sobre el archivo. Para identificar m&aacute;s f&aacute;cilmente que el puntero del mouse est&aacute; sobre un archivo, el &aacute;rea del mismo ser&aacute; coloreada. El archivo seleccionado tendr&aacute; un color de fondo diferente (generalmente Azul).</p>
<h2>
Operaciones Avanzadas</h2>
<p>Se pueden realizar operaciones avanzadas en un archivo utilizando su "<a href="012.html">Men&uacute; de Contexto</a>". Las siguientes opciones estan disponibles: </p>
<p style="text-align: center">
<img height="122" src="images/008.png" width="90" height="122" alt="Menú contextual"/>
</p>
<p>
<span class="info">Nota:</span> Algunos botones del menu de contexto, podr&iacute;an estar deshabilitados, esto depende de los ajustes que su administrador haya hecho en la configuraci&oacute;n de CKFinder.</p>
<div>
<h3>
Seleccionar Archivos. </h3>
</div>
<p>
Para seleccionar un archivo, y por ende regresarlo a la aplicaci&oacute;n solamente d&eacute; click sobre la opci&oacute;n &quot;Seleccionar&quot;.</p>
<h3>
Visiualizaci&oacute;n (previsualizaci&oacute;n) de Archivos </h3>
<p>Para previsualizar un archivo en el browser, solo d&eacute; click en el bot&oacute;n &quot;Visualizar&quot;. No todos los tipos de archivos pueden ser visualizados por los browsers, pero esta caracteristica es &uacute;til para imagenes, texto y archivos del tipo PDF. En otros casos, el browser le preguntar&aacute; si desea abrir el archivo con la aplicaci&oacute;n correspondiente. </p>
<div>
<h3>
Descargar (bajar) Archivos </h3>
<p>
Para descargar (bajar) un archivo, solo d&eacute; click en el bot&oacute;n &quot;Descargar&quot;, el bropwser le solicitar&aacute; el lugar donde desea guardar el archivo en su computadora personal. </p>
<h3>
Renombrar Archivos </h3>
</div>
<p>
Para renombrar un archivo, solo d&eacute; click en el bot&oacute;n &quot;Renombrar&quot; en el men&uacute; de contexto. Una ventana aparecer&aacute; con el nombre actual del archivo, donde deber&aacute; escribir el nuevo nombre y confirmar la operaci&oacute;n.</p>
<p>No todos los caracteres pueden ser usados para establecer un nombre de archivo, debido a limitaciones en los sistemas donde CKFinder se ejecuta. Por ejemplo, los siguientes caracteres, no pueden usarse para dar nombre a carpetas ni archivos: <strong>\</strong> <strong>/</strong> <strong>:</strong> <strong>*</strong> <strong>?</strong> <strong>&quot;</strong> <strong>&lt;</strong> <strong>&gt;</strong> <strong>|</strong></p>
<p><span class="warning">Atenci&oacute;n:</span> Al renombrar un archivo, las ligas o inserciones de medios disponibles en otras paginas que apunten a archivos o carpetas dentro de aquel que fue renombrado podr&iacute;an quedar &quot;quebradas&quot; y por lo mismo no disponibles m&aacute;s. Asi que sea cauteloso cuando use esta caracteristica.</p>
<div>
<h3>
Borrar Archivos </h3>
</div>
<p>
Para borrar un archivo, solo d&eacute; click en la opci&oacute;n &quot;Borrar&quot; del men&uacute; de contexto. Un mensaje de confirmaci&oacute;n aparecer&aacute; para asegurarse que realmente esa operaci&oacute;n es la que desea realizar.</p>
<p>
<span class="warning">Atenci&oacute;n:</span> Al borrar un archivo, las ligas o inserciones de medios disponibles en otras paginas que apunten al archivo recien borrado, quedaran &quot;quebradas&quot; y por ende no disponibles m&aacute;s, asi que sea cauteloso al utilizar esta opci&oacute;n.</p>
</body>
</html>

View File

@@ -0,0 +1,29 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Barra de Herramientas </h1>
<p>
La barra de herramientas, es un &aacute;rea dedicada situada al inicio de la interface de CKFinder. Contiene una serie de botones a los que se puede dar click para ejecutar r&aacute;pidamente funciones espec&iacute;ficas. Este es un screenshot de esta barra:</p>
<p style="text-align: center">
<img src="images/009.png" height="24" width="286" alt="Barra de herramientas"/>
</p>
<h2>
Botones de la barra de herramientas </h2>
<p>
La siguiente, es una lista de los botones que est&aacute;n disponibles en una barra de herramientas estandar:</p>
<ul>
<li><a href="006.html">Subir</a>: Abre el "Pan&eacute;l de Subida ", que puede ser usado para agregar nuevos archivos a la carpeta actual.</li>
<li><a href="007.html">Recargar</a>: Recarga la lista de archivos en el <a href="004.html">P&aacute;nel de Archivos</a>.</li>
<li><a href="008.html">Ajustes</a>: Abre el &quot;P&aacute;nel de Ajustes&quot;, en donde podr&aacute; configurar y personalizar CKFinder.</li>
<li><a href="009.html">Ayuda</a>: Abrir&aacute; esta Gu&iacute;a del Usuario. </li>
</ul>
</body>
</html>

View File

@@ -0,0 +1,48 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Bot&oacute;n &quot;Subir&quot;</h1>
<p>
El bot&oacute;n &quot;Subir&quot; en <a href="005.html">la barra de herramientas </a>, abre el &quot;P&aacute;nel de Subida&quot;, que puede ser usado para agregar nuevos archivos a la carpeta actual, he aqu&iacute; un screenshot de este p&aacute;nel:</p>
<p style="text-align: center">
<img height="153" src="images/012.png" width="418" height="155" alt="Panel para añadir ficheros"/>&nbsp;</p>
<p>
Para cerrar el p&aacute;nel de subida, solo d&eacute; click sobre el bot&oacute;n &quot;Cancelar&quot;, o haga click nuevamente sobre el bot&oacute;n &quot;Subir&quot; de la barra de herramientas.</p>
<p>
* "<strong>Subir</strong>" es un t&eacute;rmino t&eacute;cnico. Se refiere a la acci&oacute;n de transferir un archivo situado en su computadora local a otra computadora central, (tambi&eacute;n conocida como Servidor).</p>
<h2>
Pasos para Subir un Archivo </h2>
<ol>
<li>Seleccione el archivo de su computadora dando click sobre el bot&oacute;n &quot;Browse&quot;. El texto de este bot&oacute;n puede variar de browser a browser, pero siempre estar&aacute; localizado justo a la derecha del campo &quot;Seleccione archivo que desea subir&quot;.</li>
<li>D&eacute; click sobre el bot&oacute;n "Subir el archivo seleccionado ". Un mensaje aparecer&aacute; indicando que la transferencia est&aacute; en progreso.</li>
<li>Espere a que la transferencia termine. Una vez completada el &quot;P&aacute;nel de Subida&quot; se cerrar&aacute; automaticamente y el archivo que subi&oacute; ser&aacute; seleccionado en el <a href="004.html">P&aacute;nel de Archivos</a></li>
</ol>
<h2>
Mensajes de la transferencia. </h2>
<p>
Los siguientes, son los mensajes que podr&iacute;an aparecer mientras se transfiere un archivo: </p>
<h3>
Un archivo con el mismo nombre ya se encuentra en uso. El archivo que subi&oacute; ha sido renombrado a: "filename(1).ext"</h3>
<p>
<strong></strong>Indica que el nombre del archivo que subi&oacute; ya se encuentra en uso por otro archivo en la misma carpeta, para evitar un conflicto, un n&uacute;mero progresivo (aquel que estar&aacute; entre los parentesis), ha sido agregado al final del nombre original.</p>
<h3>
Archivo no v&aacute;lido </h3>
<p>
El archivo que subi&oacute; no ha sido aceptado. </p>
<p>
La causa mas com&uacute;n de este menesaje, es que CKFinder ha sido configurado para NO aceptar el tipo de archivo que est&aacute; usted intentando subir, basado en su extensi&oacute;n. Esta, es una restricci&oacute;n de seguridad. Otra causa puede ser que el tama&ntilde;o del archivo es demasiado grande para el sistema destino, en este caso, el servidor deber&aacute; ser configurado para aceptar un archivo de mayor tama&ntilde;o.</p>
<h3>Transferencia cancelada por razones de seguridad. El archivo contiene datos que podr&iacute;an ser HTML.</h3>
<p>El archivo que subi&oacute; contiene c&oacute;digo HTML. Por razones de seguridad solamente archivos con ciertas extensiones son permitidos cuando contienen c&oacute;digo HTML.</p>
<p>
Por favor contacte al Administrador del sistema para obtener mayor informaci&oacute;n referente a los tipos de archivo aceptados y sus l&iacute;mtes en tama&ntilde;o.</p>
</body>
</html>

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Bot&oacute;n Recargar </h1>
<p >
Cuando se trabaja en un espacio compartido como lo es CKFinder, en donde docenas o incluso cientos de usuarios est&aacute;n trabajando en los mismos archivos, podr&iacute;a suceder que alguno de estos otros usuarios realice cambios en el mismo folder en el que usted se encuentra trabajando en el justo momento en el que usted lo abri&oacute;. Para recargar la lista de archivos, solamente d&eacute; click sobre el bot&oacute;n &quot;Recargar&quot;, esto le presentar&aacute; la lista de archivos como se encuentra en ese instante.</p>
<p style="text-align: center">
<img height="25" src="images/011.png" width="288" height="24" alt="botón Actualizar" />&nbsp;</p>
<p>Por ejemplo, imagine usted que tiene que crear una pagina para un nuevo producto de su compa&ntilde;&iacute;a. Usted abre entonces CKFinder para obtener la fotograf&iacute;a del producto para ser incluida en el sitio web de la empresa, pero cuando abre la carpeta &quot;Productos&quot; usted no puede encontrar esa fotograf&iacute;a. Toma el tel&eacute;fono y llama a &quot;Beth&quot;, diciendo: &quot;&iexcl;Hey Beth, la imagen del producto no se encuentra en CKFinder!&quot;. Beth dice entonces: &quot;Ops... espera un minuto&quot;. Ella abre CKFinder en su computadora, sube el archivo con la fotograf&iacute;a desde su computadora y le dice: &quot;Ah&iacute; est&aacute;, solo Recarga&quot;. Usted entonces d&aacute; click sobre el bot&oacute;n &quot;Recargar&quot; y &iexcl;voila!, el archivo aparece ah&iacute; para usted. Es por esto que CKFinder es tambien conocido como un programa de colaboraci&oacute;n. </p>
</body>
</html>

View File

@@ -0,0 +1,58 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Bot&oacute;n Ajustes </h1>
<p>
El bot&oacute;n "Ajustes", en <a href="005.html">la barra de herramientas</a>, abre el &quot;p&aacute;nel de ajustes&quot;, donde usted podr&aacute; configurar y personalizar CKFinder, he aqu&iacute; un screenshot de el:</p>
<p style="text-align: center">
<img src="images/013.png" height="189" width="416" alt="Panel de Configuración"/></p>
<p>
Todos los ajustes son guardados automaticamente utilizando las denominadas &quot;Cookies&quot; de su browser. Las &quot;Cookies&quot; son peque&ntilde;os archivos que contienen informaci&oacute;n de configuraci&oacute;n proivada para sitios web especificos.</p>
<p>
Para cerrar el p&aacute;nel de ajustes, solo d&eacute; click sobre el bot&oacute;n &quot;Cerrar&quot; o d&eacute; click nuevamente sobre el bot&oacute;n &quot;Ajustes&quot; de la barra de herramientas.</p>
<h2>
Opciones de Configuraci&oacute;n </h2>
<p>
Todas las opciones de configuraci&oacute;n tienen que ver con el <a href="004.html">P&aacute;nel de Archivos </a>.
Se usan para controlar como desplegar informaci&oacute;n en ese p&aacute;nel. El P&aacute;nel de Archivos, reacciona inmediatamente a los cambios hechos en el P&aacute;nel de ajustes.</p>
<h3>
Vista</h3>
<p>
Controla el modo actual de vista del <a href="004.html">P&aacute;nel de Archivos</a>:</p>
<ul>
<li>El modo "<strong>Miniaturas</strong>" desplegar&aacute; cada archivo como una &quot;caja&quot;. Para las imagenes, una peque&ntilde;a previsualizaci&oacute;n de ella (llamada miniatura) ser&aacute; desplegada dentro de la caja. Para otros tipos de archivo, un icono ser&aacute; mostrado en su lugar.</li>
</ul>
<ul>
<li>El modo "<strong>Lista</strong>" desplegar&aacute; todos los archivos como una lista, uno abajo del otro. No se mostrar&aacute; ning&uacute;n tipo de previsualizaci&oacute;n en este modo.</li>
</ul>
<h3>
Mostrar</h3>
<p>
Ajusta la cantidad de informaci&oacute;n disponible en el p&aacute;nel de archivos. Para ejemplificar, he aqu&iacute; como se mostrar&iacute;an los archivos cuando ning&uacute;na opci&oacute;n est&aacute; seleccionada, hasta llegar a tener todas las opciones seleccionadas.</p>
<table align="center" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" style="padding-right: 10px">
<img src="images/014.gif" width="112" height="112" /></td>
<td valign="top" style="padding-right: 10px; padding-left: 10px">
<img src="images/015.gif" width="112" height="128" /></td>
<td valign="top" style="padding-right: 10px; padding-left: 10px">
<img src="images/016.gif" width="112" height="144" /></td>
<td valign="top" style="padding-left: 10px">
<img src="images/017.gif" width="112" height="160" /></td>
</tr>
</table>
</p>
<h3>
Ordenamiento</h3>
<p>
Controla el orden en el que los archivos ser&aacute;n listados. Puede ser alfabeticamente por el nombre del archivo, por fecha de creaci&oacute;n del archivo siendo el m&aacute;s nuevo el primero o incluso por el tama&ntilde;o del archivo.</p>
</body>
</html>

View File

@@ -0,0 +1,18 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Guía del usuario de CKFinder</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Bot&oacute;n de ayuda
</h1>
<p>
Abre esta "Guía del usuario" en una ventana nueva.</p>
</body>
</html>

View File

@@ -0,0 +1,23 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Barra de Estado</h1>
<p>
La "Barra de Estado" es un peque&ntilde;o espacio usado para desplegar informaci&oacute;n relevante al archivo seleccionado, el n&uacute;mero total de archivos en la carpeta, etc. Se puede encontrar al final de la interface de CKFinder</p>
<p>
Si <strong>un archivo es seleccionado </strong> en CKFinder, la barra de estado desplegar&aacute; informaci&oacute;n detallada acerca de ese archivo en particular, contendr&aacute; el nombre del archivo, su tama&ntilde;o y la fecha de su &uacute;ltima modificaci&oacute;n, por ejemplo: </p>
<p style="text-align: center">
<img src="images/018.png" width="257" height="16" alt="adivina.xls (2444Kb 21/03/2011)"/>&nbsp;</p>
<p>Si<strong> ning&uacute;n archivo est&aacute; seleccionado</strong> por el contrario, el n&uacute;mero total de archivos en la carpeta actual ser&aacute; mostrado. Por ejemplo: </p>
<p style="text-align: center">
<img src="images/019.png" width="145" height="15" alt="2 ficheros"/>&nbsp;</p>
</body>
</html>

View File

@@ -0,0 +1,23 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Avisos Legales </h1>
<p>
CKFinder, incluyendo su documentaci&oacute;n tiene Copyright &copy; 2007-2012 por <a href="http://cksource.com" target="_blank">CKSource</a> - Frederico Knabben. Todos los derechos reservados, por favor asegurse de leer y entender la licencia de uso.<a href="license.html"> Licencia de CKFinder</a>. </p>
<p>
Los iconos usados en la barra de herramientas y los menus de contexto, han sido dise&ntilde;ados por Mark James.
Por favor entre a la siguiente direcci&oacute;n (URL) para obtener m&aacute;s informaci&oacute;n: <a href="http://www.famfamfam.com/lab/icons/silk/">http://www.famfamfam.com/lab/icons/silk/</a></p>
<h2>
Marcas Registradas </h2>
<p>
CKFinder, el logotipo de CKFinder, CKSource, CKEditor y FCKeditor son marcas registradas de <a href="http://cksource.com" target="_blank">CKSource</a> - Frederico Knabben.</p>
</body>
</html>

View File

@@ -0,0 +1,39 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Men&uacute; de Contexto </h1>
<p>
El "Men&uacute; de Contexto " es una serie de botones (llamados "men&uacute;") que pueden ser usados para ejecutar tareas espec&iacute;ficas en el objeto que ha sido seleccionado con un click. Las opciones disponibles cambiar&aacute;n dinamicamente dependiendo del objeto que haya sido seleccionado con un click.</p>
<h2>
Menus Disponibles </h2>
<p>
Los siguientes, son los menus que podr&iacute;a encontrar mientras trabaja con una instalaci&oacute;n estandar de CKFinder
installation.</p>
<h3>
Men&uacute; de contexto para Carpetas </h3>
<p>
Aparece cuando da un click con el bot&oacute;n derecho del mouse sobre una carpeta en el <a href="003.html">P&aacute;nel de carpetas </a></p>
<p style="text-align: center">
<img src="images/004.png" width="124" height="75"/>&nbsp;</p>
<h3>
Menu de contexto de Archivo </h3>
<p>
Aparece cuando da click con el bot&oacute;n derecho del mouse sobre un archivo en el <a href="004.html"> P&aacute;nel de Archivos</a>:</p>
<p style="text-align: center">
<img src="images/008.png" width="90" height="122"/>&nbsp;</p>
<h3>
Men&uacute; de contexto de espacio vac&iacute;o </h3>
<p>
Aparece cuando se da click con el bot&oacute;n derecho del mouse en el <a href="004.html">P&aacute;nel de archivos </a>, pero afuera de un archivo (en el fondo):</p>
<p style="text-align: center">
<img src="images/020.png" width="132" height="28" alt="Añadir nuevo fichero" /></p>
</body>
</html>

View File

@@ -0,0 +1,28 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
Compatibilidad y Requerimientos del Sistema</h1>
<p>
CKFinder es una aplicaci&oacute;n &quot;Web&quot;, esto significa que est&aacute; hecha para ser ejecutada dentro de un &quot;browser&quot; (navegador) haciendo m&aacute;s f&aacute;cil distribuir y usar en cualquier computadora.</p>
<p>
Actualmente cualquiera de los siguientes browsers se requieren para ejecutar CKFinder:</p>
<ul>
<li>Internet Explorer 6.0+</li>
<li>Firefox 2.0+</li>
<li>Safari 3+</li>
<li>Google Chrome</li>
<li>Opera 9.5+</li>
<li>Camino 1.0+</li>
</ul>
<p>Algunas caracteristicas dependen para su funcionamiento de ajustes propios del navegador de internet (browser). Por default CKFinder deber&iacute;a funcionar correctamente, sin embargo si experimienta algun problema con el <a href="012.html">Men&uacute; de Contexto</a> o quiz&aacute; sus <a href="008.html">Ajustes</a> no estan siendo guardados, asegurese que su browser est&aacute; configurado para &quot;Permitir a los scripts reemplazar menus de contexto&quot; (&quot;Permitir a los scripts recibir clicks con el bot&oacute;n derecho&quot;) y adem&aacute;s tener habilitado el &quot;Soporte para cookies&quot;. </p>
<p>Por favor contacte a su administrador en caso de que tenga alguna duda.</p>
</body>
</html>

View File

@@ -0,0 +1,34 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<style type="text/css">
body
{
margin: 0px;
font-family: Trebuchet, Trebuchet MS, Verdana;
background-color: #696969;
color: #f5f5f5;
padding-left: 20px;
padding-right: 20px;
overflow: hidden;
}
a { color: #f5f5f5; text-decoration: none ; }
a:hover { text-decoration: underline ; }
</style>
</head>
<body>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="middle">
<h2 style="margin: 0px; padding: 0px;">
Gu&iacute;a del Usuario de CKFinder</h2>
</td>
<td align="right" valign="middle">
<a href="http://ckfinder.com" target="_blank">Visite el sitio Web de CKFinder</a></td>
</tr>
</table>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 619 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 B

View File

@@ -0,0 +1,16 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
</head>
<body>
<h1>
CKFinder License
</h1>
<iframe src="../../../license.txt" style="width:800px;height:600px"></iframe>
</body>
</html>

View File

@@ -0,0 +1,33 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<link href="../../files/other/help.css" type="text/css" rel="stylesheet" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="../../files/other/help.js"></script>
<meta name="robots" content="noindex, nofollow" />
<script type="text/javascript">
function CheckForm()
{
if ( document.getElementById( 'xSuggestion' ).value == '' )
{
alert( 'Please type your suggestion text before sending' ) ;
return false ;
}
document.getElementById( 'xSubmit' ).disabled = true ;
document.getElementById( 'spamcheck' ).value = 9945 + 13671 ;
return true ;
}
</script>
</head>
<body>
<h1>
Sugerencias</h1>
<p>
Sientase libre de para <a href="http://cksource.com/contact">enviarnos sus sugerencias</a> acerca de esta documentaci&oacute;n. Estamos siempre dispuestos a mejorarla, para ofrecerle siempre un mejor software cada dia.</p>
</body>
</html>

View File

@@ -0,0 +1,92 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CKFinder User's Guide</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow" />
<style type="text/css">
body
{
margin: 0px;
font-family: Trebuchet, Trebuchet MS, Arial;
}
a { text-decoration: none ; }
a:hover { text-decoration: underline ; }
ul { list-style-type: none; padding-left: 20px; margin:0px; }
li { white-space: nowrap; padding-left:2px; padding-right:2px; }
.toc
{
background-color: #696969;
color: #f5f5f5;
margin: 0px;
font-weight: bold;
text-align: center;
}
.contents { padding: 10px; }
.active { color: highlighttext; background-color: highlight; }
</style>
<script type="text/javascript">
window.onload = function()
{
for ( var i = 0 ; i < document.links.length ; i++ )
{
var link = document.links[i] ;
link.target = 'CKDocsMain' ;
link.innerHTML = '&nbsp;' + link.innerHTML + '&nbsp;' ;
}
}
var lastLink = null ;
window.top.SetActiveTopic = function( topicUrl )
{
var pageName = topicUrl.match( /(?:^|\/|\\)([^\\\/]+)$/ )[1] ;
if ( lastLink )
lastLink.className = '' ;
for ( var i = 0 ; i < document.links.length ; i++ )
{
var link = document.links[i] ;
if ( link.href.match( /(?:^|\/|\\)([^\\\/]+)$/ )[1] == pageName )
{
lastLink = link ;
link.className = 'active' ;
return ;
}
}
}
</script>
</head>
<body>
<p class="toc">
&nbsp;Indice
</p>
<div class="contents">
<ul style="padding-left: 0px;">
<li><a href="001.html">Bienvenido</a></li>
<li><a href="002.html">La interface de CKFinder</a>
<ul>
<li><a href="003.html">El p&aacute;nel de carpetas </a></li>
<li><a href="004.html">El p&aacute;nel de archivos </a></li>
<li><a href="005.html">La barra de herramientas </a>
<ul>
<li><a href="006.html">Subir archivos </a></li>
<li><a href="007.html">Recargar</a></li>
<li><a href="008.html">Ajustes</a></li>
<li><a href="009.html">Ayuda</a></li>
</ul>
</li>
<li><a href="010.html">La barra de Estado </a></li>
<li><a href="012.html">Men&uacute; de contexto </a></li>
</ul>
</li>
<li><a href="013.html">Compatibilidad y requerimientos del sistema </a></li>
<li><a href="011.html">Avisos legales </a></li>
<li><a href="suggestions.html">&iquest;Sugerencias?</a></li>
</ul>
</div>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More