-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
231 lines (222 loc) · 8.51 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>EsyFileManager - A web File Manager in Ajax jQuery e PHP - demo</title>
<meta name="description" content="EsyFileManager is an open source web ajax file manager written jquery e php. Easy configurationa and easy integration in editor wyswyg like cKeditor e tinyMCE">
<meta name="keywords" content="web file manager, web file manager open source, file manager web, file manager ajax, ajax file manager, jquery file manager, file manager browser, web file browser, ajax file browser, tiny mce file manager, tiny mce image">
<meta name="viewport" content="width=980">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="font/stylesheet.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
<script src="ckeditor/ckeditor.js"></script>
</head>
<body>
<!-- Add your site or application content here -->
<div class="header yellow">
<header>
<div class="wrapper nobtpadding">
<a href="index.html"><h1>EsyFileManager - file manager in jQuery e PHP</h1></a>
<div class="ver">Demo ver 1.2.1 Touch - by SmartGaP - <a href="index_ita.html">VERSIONE ITALIANA</a></div>
</div>
</header>
</div>
<div class="container blat">
<div class="wrapper pt20 grey">
<div class="box1">
<h3>EsyFileManager</h3>
<p>
Is an openSource File Manger written in PHP e jQuery that works directly on the filesystem without a database.
</p>
<p>
EsyFileManager is easy to configure and install
</p>
</div>
<div class="box2 ex lf mt40">
<h3 align="center">Example 1 - Standalone</h3>
<div align="center"><button class="standalone">Open filemanger</button></div>
</div>
<br><br>
</div>
<div class="wrapper pt20 grey bt">
<div class="box2 ex">
<div align="center">
<h3>Example 2 - Input field</h3>
<h5>Link example</h5>
<input type="text" id="file" name="file" > <a href="#" class="pickAfile"><img src="img/link_32.png"></a>
<h5>Simple example</h5>
<input type="text" id="file2" name="file2" class="pickNo">
</div>
</div>
<div class="box1 lf">
<p>You can use EsyFileManager to select files in a inputfield.</p>
<p>You can use EsyFileManager as a plugin for WysWyg text editors like cKeditor e tinyMCE</p>
<p>This sowtware is relased with the opensource licenses: <a href="http://www.gnu.org/licenses/gpl-2.0.txt" target="_blank">GPL</a> and <a href="http://www.gnu.org/licenses/lgpl-3.0.txt" target="_blank">LGPL</a></p>
<a href="https://github.com/AndreaGvA/esyFileManager/archive/master.zip" class="button" >Download source code</a><a href="https://github.com/AndreaGvA/esyFileManager" class="button ml50" target="_blank">Fork on gitHub</a>
</div>
</div>
<div class="wrapper pt20 grey bt">
<h1 id="esyfilemanager">esyFileManager</h1>
<hr>
<p>
<strong>Version 1.2 Touch</strong>
</p>
<hr>
<h4 id="funzionalità">Functions</h4>
1. Inline rename (olding click on selected element)<br>
2. Upload in Ajax<br>
3. drag&drop move and delete<br>
4. Hard disk space o Quota
<hr>
<h4 id="istruzioni">Setup</h4>
<p>
Link jQuery and file popup.functions.js in your project
</p>
<pre>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/popup.functions.js"></script></pre>
<p>
<strong>Standalone setup</strong>
</p>
<p>
Create a button
</p>
<pre><button class="standalone">Open filemanger</button></pre>
<p>
Insert the launch code
</p>
<pre>$(".standalone").click(function(){ popStandalone(); });</pre>
<p>
<strong>Input field setup</strong>
</p>
<p>
Create an input field
</p>
<pre><input type="text" id="file" name="file" ></pre>
<p>
Add the launch code
</p>
<pre>$("#file").click(function(){ popFile("file"); });</pre>
<p>
<strong>cKeditor install</strong>
</p>
<p>
Install ckeditor
<a href="http://ckeditor.com" target="_blank">http://ckeditor.com</a>
</p>
<p>
Edit config.js in cKeditor and add:
</p>
<pre>config.filebrowserBrowseUrl = 'path/to/esyFileManager/index.php?u=2';</pre>
<p>
<strong>tinyMCE install</strong>
</p>
<p>
Install tinyMCE
<a href="http://www.tinymce.com" target="_blank">http://www.tinymce.com</a>
</p>
<p>
edit tinyMCE.init and add:
</p>
<pre>file_browser_callback : "esyFileManage"</pre>
<p>
include tinyMCE_connect.js
</p>
<pre><script src="js/tinyMCE_connect.js"></script></pre>
<p>
odify the path in tinyMCE_connect.js with esyfileManger path
</p>
<pre>var cmsURL = "/esyFileManager/index.php?u=3"</pre><br><br>
</div>
<div class="wrapper pt20 grey bt">
<h3>Example 3 - filemanager in cKeditor</h3>
<textarea class="ckeditor" id="editor1" name="editor1"><img src="img/accordion3.jpg"></textarea>
<br><br>
</div>
<div class="wrapper pt20 grey bt">
<h3>Other Examples</h3>
<p><b>tinyMCE support</b> <a href="tinyMCE.html" target="_blank">See the example</a></p>
</div>
<div class="wrapper pt20 grey bt">
<h3>EsyFileManager - libraries</h3>
<p>
EsyFileManager uses the following OpenSource libraries:
</p>
<ul>
<li>fine-uploader | <a href="https://github.com/Widen/fine-uploader" target="_blank">https://github.com/Widen/fine-uploader</a></li>
<li>jquery-selectBox | <a href="https://github.com/claviska/jquery-selectBox" target="_blank">https://github.com/claviska/jquery-selectBox</a></li>
<li>jQuery URL Parser | <a href="https://github.com/allmarkedup/jQuery-URL-Parser" target="_blank">https://github.com/allmarkedup/jQuery-URL-Parser</a></li>
<li>jQuery | <a href="http://jquery.com/" target="_blank">http://jquery.com</a></li>
<li>jQuery ui | <a href="http://jqueryui.com" target="_blank">http://jqueryui.com</a></li>
<li>jQuery UI Touch Punch | <a href="http://touchpunch.furf.com" target="_blank">http://touchpunch.furf.com</a></li>
</ul>
<h3>Icons</h3>
<ul>
<li><a href="http://www.fatcow.com/free-icons">http://www.fatcow.com/free-icons</a></li>
</ul>
<h3>Tested on</h3>
<ul>
<li>IE8</li>
<li>IE9</li>
<li>Chrome</li>
<li>Firefox</li>
<li>Safari</li>
<li>Safari (iPad)</li>
<li>Chrome Android</li>
<li>Inbuilt android browser</li>
</ul>
</div>
</div>
<div class="footer greyfoot">
<footer>
<div class="container fblat">
<div class="wrapper">
<div class="colA">
<h4>Altri Progetti</h4>
<p>EsyMail<p>
<p>EsyProject<p>
<p>EsyDocs<p>
</div>
<div class="colA">
<h4>Licenze Commerciali</h4>
<p>Per l'acquisto di licenze commerciali rivolgersi a:</p>
<p><a href="mailto:[email protected]">[email protected]</a><p>
</div>
<div class="colA">
<h4>Contatti</h4>
<p>Cell: +39 348 52 20 087<p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a><p>
<p>Skype: <a href="skype:andreagava20?call">andreagava20</a><p>
</div>
<div class="colB">
<h4>Made by</h4>
<a href="http://www.smartgap.it" target="_blank"><img src="http://tst.smartgap.it/admin/templates/SmartGaP_new/images/logo.png"></a>
</div>
</div>
</div>
</footer>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/vendor/jquery-1.9.1.min.js"><\/script>')
</script>
<script src="js/popup.functions.js"></script>
<script src="js/main.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-17584659-8', 'smartgap.it');
ga('send', 'pageview');
</script>
</body>
</html>