Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
coco
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
coco
Commits
d80fe0ad
Commit
d80fe0ad
authored
Sep 20, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 基本完成文件上传
parent
18ab2ac6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
9 deletions
+5
-9
file_manager.html
coco/httpd/templates/elfinder/file_manager.html
+2
-4
ws.py
coco/httpd/ws.py
+3
-5
No files found.
coco/httpd/templates/elfinder/file_manager.html
View file @
d80fe0ad
...
@@ -10,15 +10,12 @@
...
@@ -10,15 +10,12 @@
<script
type=
"text/javascript"
charset=
"utf-8"
>
<script
type=
"text/javascript"
charset=
"utf-8"
>
var
socket
=
io
.
connect
(
'/elfinder'
);
var
socket
=
io
.
connect
(
'/elfinder'
);
socket
.
on
(
'connect'
,
function
()
{
socket
.
on
(
'connect'
,
function
()
{
console
.
log
(
"Connect"
)
console
.
log
(
"Connect
websocket done
"
)
});
});
socket
.
on
(
'data'
,
function
(
msg
)
{
socket
.
on
(
'data'
,
function
(
msg
)
{
var
sid
=
msg
.
sid
;
var
sid
=
msg
.
sid
;
init_elfinder
(
sid
);
init_elfinder
(
sid
);
});
});
$
().
ready
(
function
()
{
$
(
window
).
trigger
(
'resize'
);
});
function
init_elfinder
(
sid
)
{
function
init_elfinder
(
sid
)
{
var
elf
;
var
elf
;
var
opts
=
{
var
opts
=
{
...
@@ -60,6 +57,7 @@
...
@@ -60,6 +57,7 @@
// Make elFinder (REQUIRED)
// Make elFinder (REQUIRED)
opts
.
lang
=
lng
;
opts
.
lang
=
lng
;
elf
=
$
(
'#elfinder'
).
elfinder
(
opts
).
elfinder
(
'instance'
);
elf
=
$
(
'#elfinder'
).
elfinder
(
opts
).
elfinder
(
'instance'
);
$
(
window
).
trigger
(
'resize'
);
});
});
};
};
var
load
=
function
()
{
var
load
=
function
()
{
...
...
coco/httpd/ws.py
View file @
d80fe0ad
...
@@ -198,11 +198,9 @@ class ProxyNamespace(BaseNamespace):
...
@@ -198,11 +198,9 @@ class ProxyNamespace(BaseNamespace):
class
ElfinderNamespace
(
BaseNamespace
):
class
ElfinderNamespace
(
BaseNamespace
):
def
on_connect
(
self
):
def
on_connect
(
self
):
print
(
"on connect"
)
self
.
emit
(
'data'
,
{
"sid"
:
str
(
request
.
sid
)})
self
.
emit
(
'data'
,
{
"sid"
:
str
(
request
.
sid
)})
def
on_disconnect
(
self
):
def
on_disconnect
(
self
):
print
(
"On disconnect"
)
sftp
=
get_cached_sftp
(
request
.
sid
)
volume
=
get_cached_sftp
(
request
.
sid
)
if
sftp
:
if
volume
:
sftp
.
close
()
volume
.
close
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment