Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flaskdav
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
flaskdav
Commits
e3ec46fb
Commit
e3ec46fb
authored
Dec 03, 2015
by
iv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing editor.
parent
de2f840e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
21 deletions
+0
-21
flaskdav.py
flaskdav.py
+0
-5
templates/code_editor.html
templates/code_editor.html
+0
-16
No files found.
flaskdav.py
View file @
e3ec46fb
...
...
@@ -18,7 +18,6 @@ URI_BEGINNING_PATH = {
'webdav'
:
'/webdav/'
,
'links'
:
'/'
,
'home'
:
'/webdav/home/'
,
'editor'
:
'/editor'
,
'devices'
:
'/webdav/devices/'
}
...
...
@@ -249,10 +248,6 @@ def authorize():
response
=
make_response
(
render_template
(
'authorization_page.html'
,
headers
=
headers
,
origin
=
origin
,
back_url
=
back_url
))
return
response
@
app
.
route
(
URI_BEGINNING_PATH
[
'editor'
])
def
editor
():
return
render_template
(
'code_editor.html'
)
@
app
.
route
(
URI_BEGINNING_PATH
[
'system'
])
def
system
():
return
'TODO: page with system informations'
...
...
templates/code_editor.html
deleted
100644 → 0
View file @
de2f840e
<!DOCTYPE html>
<html
manifest=
"//rawgit.com/TristanCavelier/apps/master/app/code-editor/manifest.appcache"
>
<head>
<meta
charset=
"utf-8"
/>
<title>
Code editor
</title>
<meta
name=
"viewport"
content=
"width=device-width,user-scalable=yes,initial-scale=1"
/>
<link
rel=
"stylesheet"
href=
"//rawgit.com/TristanCavelier/apps/master/app/code-editor/dependency-concatenation.css"
/>
<script
src=
"//rawgit.com/TristanCavelier/apps/master/app/code-editor/dependency-concatenation.js"
></script>
<script
src=
"//rawgit.com/TristanCavelier/apps/master/lib/toolbox.js"
></script>
<script
src=
"//rawgit.com/TristanCavelier/apps/master/lib/codemirror-keymap-krx.js"
></script>
<link
rel=
"stylesheet"
href=
"//rawgit.com/TristanCavelier/apps/master/app/code-editor/app.css"
/>
<script
src=
"//rawgit.com/TristanCavelier/apps/master/app/code-editor/app.js"
></script>
</head>
<body>
</body>
</html>
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