• 大小: 1.27MB
    文件类型: .zip
    金币: 2
    下载: 0 次
    发布日期: 2024-02-05
  • 语言: 其他
  • 标签: 编辑器  

资源简介

FCKeditor 2.5版本的编辑器。

资源截图

代码片段和文件信息

“““
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 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 += “yle=\“width: %s; height: %s;\“ wrap=\“virtual\“>%s“ % (
self.InstanceName
WidthCSS
HeightCSS
HtmlValue

Html += “


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-03-01 13:25  FCKeditor_2.5\
     目录           0  2017-03-01 13:22  FCKeditor_2.5\editor\
     目录           0  2017-03-01 13:22  FCKeditor_2.5\editor\css\
     目录           0  2017-03-01 13:22  FCKeditor_2.5\editor\css\behaviors\
     文件         236  2007-12-01 02:25  FCKeditor_2.5\editor\css\behaviors\disablehandles.htc
     文件         822  2007-12-01 02:25  FCKeditor_2.5\editor\css\behaviors\showtableborders.htc
     文件        2154  2007-11-24 13:37  FCKeditor_2.5\editor\css\fck_editorarea.css
     文件        3765  2007-10-02 18:05  FCKeditor_2.5\editor\css\fck_internal.css
     文件        1514  2007-02-16 15:49  FCKeditor_2.5\editor\css\fck_showtableborders_gecko.css
     目录           0  2017-03-01 13:22  FCKeditor_2.5\editor\css\images\
     文件         288  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\block_address.png
     文件         293  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\block_blockquote.png
     文件         229  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\block_div.png
     文件         218  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\block_h1.png
     文件         220  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\block_h2.png
     文件         219  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\block_h3.png
     文件         229  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\block_h4.png
     文件         236  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\block_h5.png
     文件         216  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\block_h6.png
     文件         205  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\block_p.png
     文件         223  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\block_pre.png
     文件         184  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\fck_anchor.gif
     文件         599  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\fck_flashlogo.gif
     文件         105  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\fck_hiddenfield.gif
     文件          54  2007-12-01 02:25  FCKeditor_2.5\editor\css\images\fck_pagebreak.gif
     目录           0  2017-03-01 13:22  FCKeditor_2.5\editor\dialog\
     目录           0  2017-03-01 13:22  FCKeditor_2.5\editor\dialog\common\
     文件        1590  2007-09-29 16:13  FCKeditor_2.5\editor\dialog\common\fck_dialog_common.css
     文件        4356  2007-10-23 17:00  FCKeditor_2.5\editor\dialog\common\fck_dialog_common.js
     目录           0  2017-03-01 13:22  FCKeditor_2.5\editor\dialog\common\images\
     文件          74  2007-12-01 02:25  FCKeditor_2.5\editor\dialog\common\images\locked.gif
............此处省略577个文件信息

评论

共有 条评论