资源简介
实现了用户管理,订单管理,商品管理,上传商品等功能
代码片段和文件信息
“““
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个文件信息
相关资源
- Epet北大青鸟SSHA
- centos6.8安装openssh7.9的rpm包
- Graph AlgorithmsShimon Even,Guy Even第二版
- ssh医院管理系统
- ssh框架的商城系统
- ssh实现的科技项目申报(文档+源码
- 宾馆酒店管理
- SSH整合的详细步骤及成功整合的代码
- 基于SSH的电子商务即网上商城毕业论
- F-Secure SSH Server v5.3.28 特别版
- csshaxiaochuan_4973895.zip
- 图书管理系统源码221796
- OA练习项目SSH框架
- 毕业设计——旅游管理系统源代码
- 李兴华SSH课堂笔记
- 论坛代码毕业设计
- Renci.SshNet
- 基于web的ssh在线音乐系统
- SSHStruts、Spring、Hibernate三大框架整合
- 基于ssh在线考试系统
- 基于SSH的学生选课系统
- openSSH安装包
- 网上订餐系统源代码
- 目录扫描字典.rar
- SSHSecureShellClient-3.2.8.zip
- 一套自己花钱买的Web统计报表控件(
- SSH Secure Shell免安装版
- ssh实现的酒店预订系统.rar
- 外卖网的设计与实现
- 基于ssh的增删改查小型erp
评论
共有 条评论