资源简介
药店仓库管理系统.rar
代码片段和文件信息
“““
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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1509 2020-03-19 20:39 药店仓库管理系统\cangku\.classpath
文件 291 2020-03-19 20:36 药店仓库管理系统\cangku\.myme
文件 1412 2020-03-19 21:07 药店仓库管理系统\cangku\.project
文件 500 2020-03-19 20:36 药店仓库管理系统\cangku\.settings\.jsdtscope
文件 330 2020-03-19 20:36 药店仓库管理系统\cangku\.settings\org.eclipse.jdt.core.prefs
文件 49 2020-03-19 20:36 药店仓库管理系统\cangku\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2020-03-19 20:36 药店仓库管理系统\cangku\.settings\org.eclipse.wst.jsdt.ui.superType.name
文件 2000 2020-03-19 20:43 药店仓库管理系统\cangku\WebRoot\admin\catelog\catelogAdd.jsp
文件 2681 2020-03-19 20:43 药店仓库管理系统\cangku\WebRoot\admin\catelog\catelogMana.jsp
文件 5786 2020-03-19 22:25 药店仓库管理系统\cangku\WebRoot\admin\chuku\chukuAdd.jsp
文件 1939 2020-03-19 23:07 药店仓库管理系统\cangku\WebRoot\admin\chuku\chukudan.jsp
文件 3533 2020-03-19 22:37 药店仓库管理系统\cangku\WebRoot\admin\chuku\chukuMana.jsp
文件 4928 2020-03-19 22:30 药店仓库管理系统\cangku\WebRoot\admin\chuku\chukuMingxiAdd.jsp
文件 2280 2020-03-19 22:32 药店仓库管理系统\cangku\WebRoot\admin\chuku\chukuMingxiMana.jsp
文件 4320 2020-03-19 22:48 药店仓库管理系统\cangku\WebRoot\admin\chuku\chukuQuery.jsp
文件 6192 2020-03-19 21:44 药店仓库管理系统\cangku\WebRoot\admin\gongyingshang\gongyingshangAdd.jsp
文件 3103 2020-03-19 21:51 药店仓库管理系统\cangku\WebRoot\admin\gongyingshang\gongyingshangMana.jsp
文件 6268 2020-03-19 20:57 药店仓库管理系统\cangku\WebRoot\admin\goods\goodsAdd.jsp
文件 2932 2020-03-19 21:46 药店仓库管理系统\cangku\WebRoot\admin\goods\goodsMana.jsp
文件 0 2020-03-19 20:43 药店仓库管理系统\cangku\WebRoot\admin\index\sysPro.jsp
文件 4699 2020-03-19 23:12 药店仓库管理系统\cangku\WebRoot\admin\index.jsp
文件 1800 2020-03-19 22:51 药店仓库管理系统\cangku\WebRoot\admin\kucun\kucunMana.jsp
文件 4929 2020-03-19 20:43 药店仓库管理系统\cangku\WebRoot\admin\pancun\pancunAdd.jsp
文件 3290 2020-03-19 20:43 药店仓库管理系统\cangku\WebRoot\admin\pancun\pancunMana.jsp
文件 5661 2020-03-19 22:25 药店仓库管理系统\cangku\WebRoot\admin\ruku\rukuAdd.jsp
文件 1931 2020-03-19 23:06 药店仓库管理系统\cangku\WebRoot\admin\ruku\rukudan.jsp
文件 3279 2020-03-20 11:45 药店仓库管理系统\cangku\WebRoot\admin\ruku\rukuMana.jsp
文件 5017 2020-03-20 11:45 药店仓库管理系统\cangku\WebRoot\admin\ruku\rukuMingxiAdd.jsp
文件 2425 2020-03-19 22:14 药店仓库管理系统\cangku\WebRoot\admin\ruku\rukuMingxiMana.jsp
文件 4260 2020-03-19 22:50 药店仓库管理系统\cangku\WebRoot\admin\ruku\rukuQuery.jsp
............此处省略810个文件信息
相关资源
- .exe
- 车流行人.rar
- DATACOM软件两个案例的气动分析2.pdf
- (E).rar
- 编译系统透视:图解编译原理.rar
- SoMachine3.1KEY(密码12345)配合灰色按钮
- haproxy-1.5.18.tar.gz_keepalived-1.4.2.tar.gz.
- ssr3个高效节点.rar
- DbHelper.zip
- 奥鹏挂机1.4.exe
- 高效算法:竞赛、应试与提高必修1
- 83ef988f2728f61a5d7923d0c02248ed.zip
- 东北大学数值分析期末试题+练习题密
- 国科大-模式识别与机器学习试卷及其
- 矩阵分析课后习题答案北京理工大学
- 微信火爆小游戏《消灭病毒98K》UI全套
- tgb_hz.zip
- index.rar
- a10三维模型solidworks飞机战斗机轰炸机
- example.rar
- 纯物质化学性质查询.zip
- exe4j64位5.0.1中文破解版().zip
- TouchExplorer.exe
- EPSON打印机L4156L4158L4165L4166L4167L4168_废
- 光伏并网系统仿真.zip
- xboot-front.zip
- 6660fa2075d498246cbf85b15188ad25.zip
- 2.9《计算机算法设计与分析+第4版+%
- convexoptimization.pdf
- 网络安全答案.zip
评论
共有 条评论