资源简介
实现了用户管理,订单管理,商品管理,上传商品等功能

代码片段和文件信息
“““
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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-08-02 19:31 ssh校园二手物品交易网\
目录 0 2017-08-02 19:31 ssh校园二手物品交易网\录像\
文件 3021032 2015-04-26 09:43 ssh校园二手物品交易网\录像\jsp277校园二手物品交易网演示.zip
目录 0 2017-08-02 19:31 ssh校园二手物品交易网\数据库\
文件 10339 2014-04-17 20:38 ssh校园二手物品交易网\数据库\db_c2c.sql
目录 0 2017-08-02 19:31 ssh校园二手物品交易网\程序\
文件 5186 2011-03-19 02:43 ssh校园二手物品交易网\程序\.classpath
目录 0 2017-08-03 18:09 ssh校园二手物品交易网\程序\.myeclipse\
文件 529 2011-03-19 03:51 ssh校园二手物品交易网\程序\.myhibernatedata
文件 291 2015-05-13 12:09 ssh校园二手物品交易网\程序\.myme
文件 1693 2015-05-13 12:09 ssh校园二手物品交易网\程序\.project
目录 0 2017-08-02 19:31 ssh校园二手物品交易网\程序\.settings\
文件 191 2012-03-27 16:45 ssh校园二手物品交易网\程序\.settings\org.eclipse.core.resources.prefs
文件 330 2010-07-16 17:19 ssh校园二手物品交易网\程序\.settings\org.eclipse.jdt.core.prefs
文件 273 2011-03-04 16:54 ssh校园二手物品交易网\程序\.springBeans
文件 363 2012-03-21 17:35 ssh校园二手物品交易网\程序\.tomcatplugin
目录 0 2017-08-02 19:31 ssh校园二手物品交易网\程序\WebRoot\
目录 0 2017-08-02 19:31 ssh校园二手物品交易网\程序\WebRoot\me
文件 39 2010-07-16 17:19 ssh校园二手物品交易网\程序\WebRoot\me
目录 0 2017-08-02 19:31 ssh校园二手物品交易网\程序\WebRoot\My97DatePicker\
文件 1146 2010-04-08 17:50 ssh校园二手物品交易网\程序\WebRoot\My97DatePicker\My97DatePicker.htm
文件 8566 2010-04-08 17:50 ssh校园二手物品交易网\程序\WebRoot\My97DatePicker\WdatePicker.js
文件 29621 2010-04-08 17:50 ssh校园二手物品交易网\程序\WebRoot\My97DatePicker\calendar.js
文件 300 2010-04-08 17:50 ssh校园二手物品交易网\程序\WebRoot\My97DatePicker\config.js
目录 0 2017-08-02 19:31 ssh校园二手物品交易网\程序\WebRoot\My97DatePicker\lang\
文件 345 2010-04-08 17:50 ssh校园二手物品交易网\程序\WebRoot\My97DatePicker\lang\en.js
文件 579 2010-04-08 17:50 ssh校园二手物品交易网\程序\WebRoot\My97DatePicker\lang\zh-cn.js
文件 579 2010-04-08 17:50 ssh校园二手物品交易网\程序\WebRoot\My97DatePicker\lang\zh-tw.js
目录 0 2017-08-02 19:31 ssh校园二手物品交易网\程序\WebRoot\My97DatePicker\skin\
文件 153 2010-04-08 17:50 ssh校园二手物品交易网\程序\WebRoot\My97DatePicker\skin\WdatePicker.css
文件 1043 2010-04-08 17:50 ssh校园二手物品交易网\程序\WebRoot\My97DatePicker\skin\datePicker.gif
............此处省略1030个文件信息
相关资源
- 学生管理系统的添加、修改、删除、
- 基于MVC模式的校园BBS系统的设计与实
- ssh框架实现的学生管理系统
- Windows下访问LINUX的利器-SSH
- 简单的ssh框架实现增删改查
- Library图书馆图书管理系统
- SSH学生考勤系统
- ssh登录工具 putty 和 生成.ppk文件的p
- xshell6 个人版解除窗口限制
- Windows平台下中文版SSH连接工具
- ssh框架的网上书店
- 常用字典ssh爆破字典常用用户名密码
- Struts2与Ueditor整合SSH+Ueditor
- SecureCRT 8.5.3 Build 1867(X64)原版 + ZW
- Bitvise SSH Client 8.23
- ssh项目的阳光酒店管理系统
- 兼职网站项目SSH
- ssh整合的小型超市系统
- openssh 7.9p1 rpm包
- IPOP华为网络自动化测试神器
- openssh-7.7p1.tar.gz
- 登录页的验证码
- 旅游订单系统
- ssh三大框架测试项目
- openssh8.1p1离线编译升级包
- SSH实现网上超市系统
- 基于ssh的在线网络商城 大学毕业设计
- SSH实现页面的登录和注册功能
- 简易的新闻发布系统简易的新闻发布
- SSH简单增删改查
评论
共有 条评论