资源简介
本人的毕设啊。用spring struts hibernate 做的一个物流管理系统。代码和数据库均已贴出。比较水,拿来分享吧。
代码片段和文件信息
“““
FCKeditor - The text editor for Internet - http://www.fckeditor.net
Copyright (C) 2003-2008 Frederico Caldeira Knabben
== BEGIN LICENSE ==
Licensed under the terms of any of the following licenses at your
choice:
- GNU General Public License Version 2 or later (the “GPL“)
http://www.gnu.org/licenses/gpl.html
- GNU Lesser General Public License Version 2.1 or later (the “LGPL“)
http://www.gnu.org/licenses/lgpl.html
- Mozilla Public License Version 1.1 or later (the “MPL“)
http://www.mozilla.org/MPL/MPL-1.1.html
== END LICENSE ==
This is the integration file for Python.
“““
import cgi
import os
import re
import string
def escape(text replace=string.replace):
“““Converts the special characters ‘<‘ ‘>‘ and ‘&‘.
RFC 1866 specifies that these characters be represented
in HTML as < > and & respectively. In Python
1.5 we use the new string.replace() function for speed.
“““
text = replace(text ‘&‘ ‘&‘) # must be done 1st
text = replace(text ‘<‘ ‘<‘)
text = replace(text ‘>‘ ‘>‘)
text = replace(text ‘“‘ ‘"‘)
text = replace(text “‘“ ‘‘‘)
return text
# The FCKeditor class
class FCKeditor(object):
def __init__(self instanceName):
self.InstanceName = instanceName
self.basePath = ‘/fckeditor/‘
self.Width = ‘100%‘
self.Height = ‘200‘
self.ToolbarSet = ‘Default‘
self.Value = ‘‘;
self.Config = {}
def Create(self):
return self.CreateHtml()
def CreateHtml(self):
HtmlValue = escape(self.Value)
Html = ““
if (self.IsCompatible()):
File = “fckeditor.html“
link = “%seditor/%s?InstanceName=%s“ % (
self.basePath
File
self.InstanceName
)
if (self.ToolbarSet is not None):
link += “&Toolbar=%s“ % self.ToolbarSet
# Render the linked hidden field
Html += “yle=\“display:none\“ />“ % (
self.InstanceName
self.InstanceName
HtmlValue
)
# Render the configurations hidden field
Html += “yle=\“display:none\“ />“ % (
self.InstanceName
self.GetConfigFieldString()
)
# Render the editor iframe
Html += “rame id=\“%s\__frame\“ src=\“%s\“ width=\“%s\“ height=\“%s\“ frameborder=\“0\“ scrolling=\“no\“> rame>“ % (
self.InstanceName
link
self.Width
self.Height
)
else:
if (self.Width.find(“%%“) < 0):
WidthCSS = “%spx“ % self.Width
else:
WidthCSS = self.Width
if (self.Height.find(“%%“) < 0):
HeightCSS = “%spx“ % self.Height
else:
HeightCSS = self.Height
Html += ““ % (
self.InstanceName
WidthCSS
HeightCSS
HtmlValue
)
return Html
def IsCom
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 49046 2014-06-06 12:45 朱笑然--物流管理系统\wuliu\admin\address\addressAdd.jsp
文件 3376 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\address\addressAll.jsp
文件 3752 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\address\addressEditPre.jsp
文件 4039 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\address\addressMana.jsp
文件 4039 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\address\addressSelect.jsp
文件 4190 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\cars\carsSelect.jsp
文件 4278 2014-06-06 12:34 朱笑然--物流管理系统\wuliu\admin\cars\goodsAdd.jsp
文件 3911 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\cars\goodsAll.jsp
文件 4564 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\cars\goodsEditPre.jsp
文件 4187 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\cars\goodsMana.jsp
文件 4492 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\goods\goodsAdd.jsp
文件 3545 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\goods\goodsAll.jsp
文件 4571 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\goods\goodsEditPre.jsp
文件 4239 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\goods\goodsMana.jsp
文件 4232 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\goods\goodsManatwo.jsp
文件 3998 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\goods\goodsSelect.jsp
文件 2751 2014-06-06 12:28 朱笑然--物流管理系统\wuliu\admin\index\adminAdd.jsp
文件 2891 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\index\adminMana.jsp
文件 0 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\index\sysPro.jsp
文件 3766 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\index\userinfo.jsp
文件 1224 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\index.jsp
文件 8804 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\menu.jsp
文件 2751 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\order\admin\jine_tongji_admin.jsp
文件 3215 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\order\admin\jine_tongji_admin_pre.jsp
文件 4611 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\order\admin\orderMana_admin.jsp
文件 4611 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\order\admin\orderSelect.jsp
文件 4849 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\order\wuliubu\orderMana_wuliubu_wuliubuweifahuo.jsp
文件 4027 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\order\wuliubu\orderMana_wuliubu_wuliubuyifahuo.jsp
文件 9664 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\order\xiaoshoubu\orderEditPre_xiaoshubu.jsp
文件 5170 2014-06-05 18:22 朱笑然--物流管理系统\wuliu\admin\order\xiaoshoubu\orderMana_xiaoshoubu_meiyoufenpeiwuliubu.jsp
............此处省略875个文件信息
相关资源
- 太原科大天气APP毕业设计
- 软件工程课程设计报告(包附源代码
- b2c电子商务网站的设计和实现
- 银行管理系统 毕业设计 源码+论文
- [PDF]大象-Thinking_in_UML第二版
- 毕业设计网上选题管理系统
- SSM搭建的商城毕业设计附带论文与设
- 毕业设计-苹果手机ios员工管理系统
- 毕业设计-基于苹果手机ios图书管理系
- 软件工程课程设计项目:基于Maven+S
- 西安交通大学数据结构课件期末考试
- 河北工业大学软件工程复试资料
- 大连理工大学《软件工程》复习习题
- 超市收银系统源码——毕业设计可以
- 软件工程导论第三版pdf
- SSM网上商城
- 软件工程.rar
- 实习管理系统毕业设计
- 软件工程课件高等教育出版社
- 软件工程(第3版齐治昌课件
- 人机交互—软件工程视角
- Software Engineering at Google.pdf
- 毕业设计,人脸识别与跟踪
- 软件工程导论_张海藩_第五版课本免费
- 本科毕业设计,基于模式识别的人脸
- 软件工程 实践者之路 中文第六版整合
- UML面向对象需求分析与建模教程 ppt
- 毕业设计 医院住院管理信息系统包括
- 移动网上营业厅模拟系统毕业设计
- 835软件工程考研23套题.zip
评论
共有 条评论