Commit e3ec46fb authored by iv's avatar iv

Removing editor.

parent de2f840e
......@@ -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'
......
<!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>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment