资源简介
(因为太大分三部分)请解压到一个文件夹
代码片段和文件信息
“““
FCKeditor - The text editor for Internet - http://www.fckeditor.net
Copyright (C) 2003-2007 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 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
)
Html += “ “
return Html
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5670 2007-06-20 13:08 blog\admin\ad.jsp
文件 8129 2007-10-12 23:21 blog\admin\blog_list.jsp
文件 4615 2006-10-18 17:09 blog\admin\cache.jsp
文件 4536 2007-06-15 16:45 blog\admin\config_m.jsp
文件 624 2006-01-21 17:38 blog\admin\CVS\Entries
文件 16 2006-01-21 17:17 blog\admin\CVS\Repository
文件 34 2006-01-21 17:17 blog\admin\CVS\Root
文件 2062 2006-01-21 16:08 blog\admin\default.css
文件 15096 2007-10-10 21:27 blog\admin\desktop_setup.jsp
文件 7054 2007-02-26 09:37 blog\admin\dir_bottom.jsp
文件 639 2006-10-18 11:06 blog\admin\dir_fr
文件 6169 2007-02-26 09:37 blog\admin\dir_top.jsp
文件 1013 2006-10-18 15:23 blog\admin\fr
文件 24921 2007-10-12 17:40 blog\admin\home.jsp
文件 8317 2007-10-10 20:55 blog\admin\home_img.jsp
文件 2044 2006-01-21 16:08 blog\admin\images\admin.css
文件 102 2006-01-21 16:08 blog\admin\images\al_body_bg.gif
文件 681 2006-01-21 16:08 blog\admin\images\al_body_right.gif
文件 106 2006-01-21 16:08 blog\admin\images\al_end_bg.gif
文件 1695 2006-10-20 17:45 blog\admin\images\al_end_end.gif
文件 707 2006-01-21 16:08 blog\admin\images\al_end_left.gif
文件 3813 2006-01-21 16:08 blog\admin\images\al_end_right.gif
文件 2823 2006-01-21 16:08 blog\admin\images\al_password.gif
文件 4874 2006-01-21 16:08 blog\admin\images\al_top.gif
文件 3180 2006-01-21 16:08 blog\admin\images\al_username.gif
文件 74 2006-01-21 16:08 blog\admin\images\arrow.gif
文件 105 2006-01-21 16:08 blog\admin\images\arrow_white.gif
文件 60 2006-01-21 16:08 blog\admin\images\box_bg.gif
文件 146 2006-01-21 16:08 blog\admin\images\box_bottom.gif
文件 46 2006-01-21 16:08 blog\admin\images\box_topbg.gif
............此处省略2831个文件信息
相关资源
- 基于java的BBS论坛系统源码+数据库文件
- java毕业设计动漫论坛系统
- 原创jsp实现BBS论坛系统源代码
- 完整的java论坛系统
- 基于JAVA+SSH的论坛系统
- 论坛系统源码
- ssh+mysql实现的Java web论坛系统源码
- 基于JSP开发的论坛系统
- 论坛系统JSP源代码
- 基于JSP技术开发BBS论坛系统 毕业论文
- jsp实现的小型BBS论坛系统
- 基于Java Web技术开发的BBS论坛系统源代
- 企业论坛系统 jsp + servlet
- jsp+mysql做得网上论坛系统
- 基于Java+Web技术开发的BBS论坛系统源代
- JSP论坛系统JSP论坛系统
- jsp网上论坛系统 源代码
- java 论坛系统Struts 2+Hibernate+Spring实现
- Jsp论坛系统(BBS)源码
- JAVA论坛系统源码(含数据库)
- 基于java web的简单bbs论坛系统
- 采用mvc模式,jsp完成的论坛系统
- jsp 论坛系统论文 bbs 含E-R图及流程图
- 基于JSP的论坛系统
- JSP 小型论坛系统
- JAVA校园论坛系统源码(附数据库脚本
- spring论坛系统源码含前台与后台管理
- Spring论坛系统源码(含数据库脚本)
评论
共有 条评论