资源简介
药店仓库管理系统.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个文件信息
相关资源
- PID_AutoTune_v0.rar
- vspd7.2.308.zip
- 价值2k的H漫画小说系统
- Pythonamp;课堂amp;笔记(高淇amp;400;集第
- ddos压力测试工具99657
- UML建模大全
- 开源1A锂电池充电板TP4056原理图+PCB
- m1卡 ic卡可选择扇区初始化加密软件
- TSCC.exe
- FTP课程设计(服务端+客户端)
- 计算机图形学 边填充算法实现代码
- 电力系统潮流计算程序集合
- oracle数据迁移项目实施方案
- Web Api 通过文件流 文件到本地
- Visio图标-最新最全的网络通信图标库
- Spire API文档
- OpenGL参考手册
- Python中Numpy库最新教程
- SPD博士V5.3.exe
- 直流无刷电机方波驱动 stm32 例程代码
- layui后台管理模板
- 仿知乎界面小程序源代码
- 云平台-阿里云详细介绍
- photoshop经典1000例
- scratch垃圾分类源码(最终版本).sb
- IAR ARM 7.8破解
- TI CCS V5.4 安装步骤及破解文件
- 松下plc FP-XH的驱动
- 局域网硬件信息收集工具
- 加快Windows XP操作系统开机速度
评论
共有 条评论