在线编辑代码[django]版本
再国内,做什么都这么吃力。连aliyun 的ssh 都被封这是什么世道,所以做一个在线编辑代码的
忙忙碌碌有点粗糙。大家见谅
1. [代码]views.py
#-*- coding:utf-8 -*-
# jQuery File Tree
# Python/Django connector script
# By Martin Skou
#
import os
import urllib
from django.http import HttpResponse
from django.shortcuts import render_to_response
from django.shortcuts import render
from django.views.decorators.csrf import csrf_exempt
def index(request):
if not request.user.is_superuser:
return HttpResponse(u"不要乱来")
return render(request, 'codemirror/index.html', {"foo": "bar"},
content_type="text/html")
def openfile(request):
if not request.user.is_superuser:
return HttpResponse(u"不要乱来")
path = request.GET['path']
f = open(path)
con = f.read()
f.close()
return render(request, 'codemirror/openfile.html', {"con": con, "path":path},
content_type="text/html")
@csrf_exempt
def savefile(request):
if not request.user.is_superuser:
return HttpResponse(u"不要乱来")
path = request.POST['path']
con = request.POST['con']
f = open(path, 'wr')
f.write(con.encode('utf-8'))
f.close()
return HttpResponse('成功')
@csrf_exempt
def createfile(request):
if not request.user.is_superuser:
return HttpResponse(u"不要乱来")
path = request.GET['path']
f = open(path, 'wr')
f.write('')
f.close()
return HttpResponse('成功')
@csrf_exempt
def dirlist(request):
if not request.user.is_superuser:
return HttpResponse(u"不要乱来")
r=['<ul class="jqueryFileTree" >']
try:
r=['<ul class="jqueryFileTree" >']
d=urllib.unquote(request.POST.get('dir','c:\\temp'))
for f in os.listdir(d):
ff=os.path.join(d,f)
if os.path.isdir(ff):
r.append('<li class="directory collapsed"><a href="#" rel="%s/">%s</a></li>' % (ff,f))
else:
e=os.path.splitext(f)[1][1:] # get .ext and remove dot
r.append('<li class="file ext_%s"><a href="#" rel="%s">%s</a></li>' % (e,ff,f))
r.append('</ul>')
except Exception,e:
r.append('Could not load directory: %s' % str(e))
r.append('</ul>')
return HttpResponse(''.join(r))
2. [代码]urls.py
#-*- coding:utf-8 -*-
from django.conf.urls.defaults import patterns, url
urlpatterns = patterns('codemirror.views',
url(r'^dirlist.html$', 'dirlist'),
url(r'^index.html$', 'index'),
url(r'^openfile.html$', 'openfile'),
url(r'^savefile.html$', 'savefile'),
url(r'^createfile.html$', 'createfile'),
)
3. [代码]index.html
<html>
<head>
<script type="text/javascript" src="/static/js/jquery-1.9.0.min.js"></script>
<link href="/static/codemirror-3.16/lib/codemirror.css" rel="stylesheet">
<script type="text/javascript" src="/static/codemirror-3.16/lib/codemirror.js"></script>
<script type="text/javascript" src="/static/jqueryFileTree/jqueryFileTree.js"></script>
<link href="/static/jqueryFileTree/jqueryFileTree.css" rel="stylesheet">
</head>
<body>
<h1>
<p>My first paragraph.</p>
<div id="file_tree_div_id" >
</div>
<iframe id="editor_iframe_id" src="" ></iframe>
<script type="text/javascript">
$(document).ready( function() {漫画图片
/* $.get('/codemirror/dirlist.html?dir=/home/boneyao/', function(html){
$('#file_tree_div_id').html(html);
});*/http://www.bizhizu.cn/manhua/
$(document).ready( function() {
$('#file_tree_div_id').fileTree({
root: '/home/boneyao/',
script: '/codemirror/dirlist.html?dir=/home/boneyao/',
expandSpeed: 1000,
collapseSpeed: 1000,
multiFolder: false
}, function(file) {
$('#editor_iframe_id').attr('src', "http://www.boneyao.com/codemirror/openfile.html?path="+file);
});
});
});
/*
var editor = CodeMirror.fromTextArea(myTextarea, {
mode: "text/html"
});*/
</script>
</body>
</html>
4. [代码]openfile.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="/static/js/jquery-1.9.0.min.js"></script>
<link href="/static/codemirror-3.16/lib/codemirror.css" rel="stylesheet">
<script type="text/javascript" src="/static/codemirror-3.16/lib/codemirror.js"></script>
<script type="text/javascript" src="/static/codemirror-3.16/mode/python/python.js"></script>
<script type="text/javascript" src="/static/codemirror-3.16/mode/javascript/javascript.js"></script>
<script type="text/javascript" src="/static/jqueryFileTree/jqueryFileTree.js"></script>
<link href="/static/jqueryFileTree/jqueryFileTree.css" rel="stylesheet">
</head>
<body>
<input type="button" value="保存" onclick="save()"/></h1>
<TextArea id="myTextarea" >
{{con}}
</TextArea>
<script type="text/javascript">
var mode = "";
switch(window.location.href.split('.').slice(-1)[0]){
case 'py': mode='python';break;
case 'js': mode='javascript';break;
}
var editor = CodeMirror.fromTextArea($('#myTextarea')[0], {
mode: mode
});
editor.setSize('100%','100%');
function save(){
var value = editor.getValue();
$.post('http://www.boneyao.com/codemirror/savefile.html', {
'path':"{{path}}",'con':value
}, function(text){
alert(text);
});
};
</script>
</body>
</html>
5. [图片] 2.bmp

在线编辑代码[django]版本的更多相关文章
- [个人开源]vue-code-view:一个在线编辑、实时预览的代码交互组件
组件简介 vue-code-view是一个基于 vue 2.x.轻量级的代码交互组件,在网页中实时编辑运行代码.预览效果的代码交互组件. 使用此组件, 不论 vue 页面还是 Markdown 文档中 ...
- RunJS - 在线编辑、展示、分享、交流你的 JavaScript 代码
发现一个很好玩,很强大的网站 RunJS - 在线编辑.展示.分享.交流你的 JavaScript 代码 http://runjs.cn/ 比如: http://runjs.cn/detail/l ...
- 花了一年时间完成的 在线G代码编辑,加工系统 G-Code Editor V1.0
G代码是数控程序中的加工指令.一般都称为G指令.可以直接用来驱动机床,各种控制系统.是一种数控行业标准.传统的G代码编写以及编辑无法在线编辑,也不能实时看到g代码编辑的最后加工路径已经不能直接对编辑的 ...
- 一个很好用的在线编辑、展示、分享、交流JavaScript 代码的平台
在发表博客时,有一些代码只能粘贴进去,而不能看到代码运行的效果,需要读者把代码粘贴进自己的编辑器,然后再运行看效果,这是一件很耗时的事情 在平时百度的时候,我发现一些网站可以在线预览功能,而且可以在线 ...
- 在线编辑word文档代码
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/ ...
- java 网站源码 在线编辑模版 代码编辑器 兼容手机平板PC freemaker 静态引擎
前台: 支持四套模版, 可以在后台切换 系统介绍: 1.网站后台采用主流的 SSM 框架 jsp JSTL,网站后台采用freemaker静态化模版引擎生成html 2.因为是生成的html,所以 ...
- Office文档在线编辑的实现之二
讲述了如何通过iis的webdav支持实现客户端的office直接编辑服务器上的文件,本篇将讲解如何实现客户端的office直接编辑数据库中的二进制形式保存的office文件. 实现的关键:模拟IIS ...
- 使用WebDAV实现Office文档在线编辑
Office的文档处理能力是非常强大的,但是它是本地资源,在Office Web App尚未成熟前,仍需要使用本地能力来进行文档编辑,可是现代的系统的主流却是B/S,所以在B/S中调用本地的Offic ...
- C# 10分钟入门基于WebOffice实现在线编辑文档,实时保存到服务器(所有office,兼容WPS)
今天,他来了(weboffice在线编辑文档). 上次写了一个在线预览的博,当然,效果并不是太理想,但是紧急解决了当时的问题. 后来,小编重新查找资料,求助大牛,终于使用新的方式替换了之前的low方法 ...
随机推荐
- map端join
package my.hadoop.hdfs.mapreduceJoin; import java.io.BufferedReader; import java.io.FileInputStream; ...
- 《TomCat与Java Web开发技术详解》(第二版) 第四章节的学习总结--常用Servlet API
要开发Servlet,自然要掌握常用的servlet的相关API.通过此章节的学习,了解到如下常用API 1.Servlet接口--->GenericServlet抽象类(实现Servlet接口 ...
- shell脚本中8种字符串截取方法_转自脚本之家
转自:http://www.jb51.net/article/56563.htm 参考:http://blog.csdn.net/taiyang1987912/article/details/3955 ...
- CentOS6.4下编译安装Apache2.4+PHP5.6
安装Apache2.4: 首先从 http://httpd.apache.org/download.cgi#apache24下载apache源码包httpd-2.4.4.tar.gz从 http: ...
- 从零开始学android -- 简易的socket通信
先来介绍下socket,网上摘抄点资料,免得自己打字了 网络中进程之间如何通信? 本地的进程间通信(IPC)有很多种方式,但可以总结为下面4类: 1.消息传递(管道.FIFO.消息队列) 2.同步(互 ...
- Google Gson实现JSON字符串和对象之间相互转换
User实体类 package com.test.json; /** * User 实体类 */ public class User { private String name; private St ...
- 小程序发起post请求回调成功没有数据
get请求时为 header:{ "content-type":'application/json' },POST 请求会将data的值放在Request Payload里面,而不 ...
- This instability is a fundamental problem for gradient-based learning in deep neural networks. vanishing exploding gradient problem
The unstable gradient problem: The fundamental problem here isn't so much the vanishing gradient pro ...
- 15.Django添加一个功能模块的步骤(和SpringMVC类比)
这里介绍如何在Django里新建一个模块,这个例子还是最简单的例子 通过浏览器访问 http://localhost:8000/hello/然后返回一个欢迎页 我是做java web出身的,这里用py ...
- 代替print输出的PY调试库:PySnooper
PySnooper¶ Github:https://github.com/lotapp/PySnooper pip install pysnooper 使用:分析整个代码 @pysnooper.s ...