Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
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
koko
Commits
36d8489e
Commit
36d8489e
authored
Jul 18, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改static路径
parent
5def5cd6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
15 deletions
+13
-15
file_manager.html
cmd/templates/elfinder/file_manager.html
+7
-7
server.go
pkg/httpd/server.go
+6
-8
No files found.
cmd/templates/elfinder/file_manager.html
View file @
36d8489e
<html>
<html>
<body
style=
"margin: 0"
>
<body
style=
"margin: 0"
>
<script
type=
"text/javascript"
src=
"/static/js/jquery-2.1.1.js"
></script>
<script
type=
"text/javascript"
src=
"/
coco/
static/js/jquery-2.1.1.js"
></script>
<script
type=
"text/javascript"
src=
"/static/js/jquery-ui-1.10.4.min.js"
></script>
<script
type=
"text/javascript"
src=
"/
coco/
static/js/jquery-ui-1.10.4.min.js"
></script>
<script
type=
"text/javascript"
src=
"/static/js/neffos.min.js"
></script>
<script
type=
"text/javascript"
src=
"/
coco/
static/js/neffos.min.js"
></script>
<script
type=
"text/javascript"
src=
"/static/plugins/elfinder/elfinder.full.js"
></script>
<script
type=
"text/javascript"
src=
"/
coco/
static/plugins/elfinder/elfinder.full.js"
></script>
<script
type=
"text/javascript"
src=
"/static/plugins/elfinder/i18n/elfinder.pl.js"
></script>
<script
type=
"text/javascript"
src=
"/
coco/
static/plugins/elfinder/i18n/elfinder.pl.js"
></script>
<link
rel=
"stylesheet"
type=
"text/css"
media=
"screen"
href=
"/static/plugins/elfinder/css/elfinder.min.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
media=
"screen"
href=
"/
coco/
static/plugins/elfinder/css/elfinder.min.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
media=
"screen"
href=
"/static/plugins/elfinder/css/theme-gray.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
media=
"screen"
href=
"/
coco/
static/plugins/elfinder/css/theme-gray.css"
>
<script
type=
"text/javascript"
charset=
"utf-8"
>
<script
type=
"text/javascript"
charset=
"utf-8"
>
var
scheme
=
document
.
location
.
protocol
==
"https:"
?
"wss"
:
"ws"
;
var
scheme
=
document
.
location
.
protocol
==
"https:"
?
"wss"
:
"ws"
;
var
port
=
document
.
location
.
port
?
":"
+
document
.
location
.
port
:
""
;
var
port
=
document
.
location
.
port
?
":"
+
document
.
location
.
port
:
""
;
...
...
pkg/httpd/server.go
View file @
36d8489e
...
@@ -19,7 +19,7 @@ var (
...
@@ -19,7 +19,7 @@ var (
var
wsEvents
=
neffos
.
Namespaces
{
var
wsEvents
=
neffos
.
Namespaces
{
"ssh"
:
neffos
.
Events
{
"ssh"
:
neffos
.
Events
{
neffos
.
OnNamespaceConnected
:
OnNamespaceConnected
,
neffos
.
OnNamespaceConnected
:
OnNamespaceConnected
,
neffos
.
OnNamespaceDisconnect
:
OnNamespaceDisconnect
,
neffos
.
OnNamespaceDisconnect
:
OnNamespaceDisconnect
,
neffos
.
OnRoomJoined
:
func
(
c
*
neffos
.
NSConn
,
msg
neffos
.
Message
)
error
{
neffos
.
OnRoomJoined
:
func
(
c
*
neffos
.
NSConn
,
msg
neffos
.
Message
)
error
{
return
nil
return
nil
...
@@ -28,14 +28,14 @@ var wsEvents = neffos.Namespaces{
...
@@ -28,14 +28,14 @@ var wsEvents = neffos.Namespaces{
return
nil
return
nil
},
},
"data"
:
OnDataHandler
,
"data"
:
OnDataHandler
,
"resize"
:
OnResizeHandler
,
"resize"
:
OnResizeHandler
,
"host"
:
OnHostHandler
,
"host"
:
OnHostHandler
,
"logout"
:
OnLogoutHandler
,
"logout"
:
OnLogoutHandler
,
"token"
:
OnTokenHandler
,
"token"
:
OnTokenHandler
,
},
},
"elfinder"
:
neffos
.
Events
{
"elfinder"
:
neffos
.
Events
{
neffos
.
OnNamespaceConnected
:
OnELFinderConnect
,
neffos
.
OnNamespaceConnected
:
OnELFinderConnect
,
neffos
.
OnNamespaceDisconnect
:
OnELFinderDisconnect
,
neffos
.
OnNamespaceDisconnect
:
OnELFinderDisconnect
,
},
},
}
}
...
@@ -51,7 +51,7 @@ func StartHTTPServer() {
...
@@ -51,7 +51,7 @@ func StartHTTPServer() {
router
:=
mux
.
NewRouter
()
router
:=
mux
.
NewRouter
()
fs
:=
http
.
FileServer
(
http
.
Dir
(
filepath
.
Join
(
conf
.
RootPath
,
"static"
)))
fs
:=
http
.
FileServer
(
http
.
Dir
(
filepath
.
Join
(
conf
.
RootPath
,
"static"
)))
router
.
PathPrefix
(
"/static/"
)
.
Handler
(
http
.
StripPrefix
(
"/static/"
,
fs
))
router
.
PathPrefix
(
"/
coco/
static/"
)
.
Handler
(
http
.
StripPrefix
(
"/static/"
,
fs
))
router
.
Handle
(
"/socket.io/"
,
sshWs
)
router
.
Handle
(
"/socket.io/"
,
sshWs
)
router
.
HandleFunc
(
"/coco/elfinder/sftp/{host}/"
,
AuthDecorator
(
sftpHostFinder
))
router
.
HandleFunc
(
"/coco/elfinder/sftp/{host}/"
,
AuthDecorator
(
sftpHostFinder
))
...
@@ -68,5 +68,3 @@ func StartHTTPServer() {
...
@@ -68,5 +68,3 @@ func StartHTTPServer() {
func
StopHTTPServer
()
{
func
StopHTTPServer
()
{
_
=
httpServer
.
Close
()
_
=
httpServer
.
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