forked from AndreaGvA/esyFileManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_ita.html
236 lines (228 loc) · 9.3 KB
/
index_ita.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
232
233
234
235
236
<!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 - Un web file manager in Ajax jQuery e PHP - demo</title>
<meta name="description" content="EsyFileManager è un web ajax file manager open source scritto con jquery e php. Il web file manager è facilmente configurabile e può essere facilmente integrato in editor wyswyg come 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 - Un file manager in jQuery e PHP</h1></a>
<div class="ver">Demo ver 1.2.1 Touch - by SmartGaP - <a href="index.html">ENGLISH VERSION</a></div>
</div>
</header>
</div>
<div class="container blat">
<div class="wrapper pt20 grey">
<div class="box1">
<h3>EsyFileManager</h3>
<p>
È un filemanager openSource scritto in PHP e jQuery che lavora direttamente sul filesystem senza l'ausilio di un database.
</p>
<p>
EsyFileManager non necessita di installazioni particolari sul server ed è semplicissimo da installare
</p>
</div>
<div class="box2 ex lf mt40">
<h3 align="center">Esempio 1 - Standalone</h3>
<div align="center"><button class="standalone">Apri filemanger</button></div>
</div>
<br><br>
</div>
<div class="wrapper pt20 grey bt">
<div class="box2 ex">
<div align="center">
<h3>Esempio 2 - Input field</h3>
<h5>Esempio con link</h5>
<input type="text" id="file" name="file" > <a href="#" class="pickAfile"><img src="img/link_32.png"></a>
<h5>Esempio senza link</h5>
<input type="text" id="file2" name="file2" class="pickNo">
</div>
</div>
<div class="box1 lf">
<p>È possibile utilizzare esyfilemanager per selezionare file all'interno di un campo di input.</p>
<p>EsyFileManager può essere usato come plugin per editor di testi WysWyg come cKeditor e tinyMCE</p>
<p>Il software è rilasciato con le licenze open source <a href="http://www.gnu.org/licenses/gpl-2.0.txt" target="_blank">GPL</a> e <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" >Scarica sorgente</a><a href="https://github.com/AndreaGvA/esyFileManager" class="button ml50" target="_blank">Vedi su gitHub</a>
</div>
</div>
<div class="wrapper pt20 grey bt">
<h1 id="esyfilemanager">esyFileManager</h1>
<hr>
<p>
<strong>Versione 1.2 Touch</strong>
</p>
<hr>
<h4 id="funzionalità">Funzionalità</h4>
1. Rename inline (mantenendo il click sull'elemento selezionato)<br>
2. Upload Asincrono in Ajax<br>
3. Spostamento ed eliminazione con drag&drop<br>
4. Hard disk space o Quota
<hr>
<h4 id="istruzioni">Istruzioni</h4>
<p>
Includere la cartella esyFileManager ed il file js/popup.functions.js nel proprio progetto
</p>
<p>
<strong>Include</strong>
</p>
<p>
Includere jQuery ed il file popup.functions.js nel proprio progetto
</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>Installazione standalone</strong>
</p>
<p>
Creare un bottone
</p>
<pre><button class="standalone">Apri filemanger</button></pre>
<p>
Inserire il codice per lanciare il filemanager
</p>
<pre>$(".standalone").click(function(){ popStandalone(); });</pre>
<p>
<strong>Installazione su input field</strong>
</p>
<p>
Creare un campo input per un file
</p>
<pre><input type="text" id="file" name="file" ></pre>
<p>
Aggiungere il codice per lanciare il filemanager specificando l'id del campo di testo
</p>
<pre>$("#file").click(function(){ popFile("file"); });</pre>
<p>
<strong>Installazione in cKeditor</strong>
</p>
<p>
Installare cKeditor seguendo le istruzioni del produttore
<a href="http://ckeditor.com" target="_blank">http://ckeditor.com</a>
</p>
<p>
editare il file config.js in cKeditor ed aggiungere la seguente stringa
</p>
<pre>config.filebrowserBrowseUrl = 'path/to/esyFileManager/index.php?u=2';</pre>
<p>
<strong>Installazione in tinyMCE</strong>
</p>
<p>
Installare tinyMCE seguendo le istruzioni del produttore
<a href="http://www.tinymce.com" target="_blank">http://www.tinymce.com</a>
</p>
<p>
aggiungere la seguente stringa nella funzione tinyMCE.init
</p>
<pre>file_browser_callback : "esyFileManage"</pre>
<p>
ed includere il file tinyMCE_connect.js
</p>
<pre><script src="js/tinyMCE_connect.js"></script></pre>
<p>
Nel caso in cui la cartella esyFileManager sia in una posizione diversa dalla root del sito modificare il path nel file tinyMCE_connect.js con quello corretto
</p>
<pre>var cmsURL = "/esyFileManager/index.php?u=3"</pre><br><br>
</div>
<div class="wrapper pt20 grey bt">
<h3>Esempio 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>Altri Esempi</h3>
<p><b>Aggiunto il supporto per tinyMCE</b> <a href="tinyMCE.html" target="_blank">Guarda l'esempio</a></p>
</div>
<div class="wrapper pt20 grey bt">
<h3>EsyFileManager - dettagli tecnici</h3>
<p>
EsyFileManager utilizza le seguenti librerie OpenSource:
</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>Testato su</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>