资源简介
新一代PHP+MySQL+Dreamweaver网站建设典型案例 书后光盘
代码片段和文件信息
“““
FCKeditor - The text editor for internet
Copyright (C) 2003-2005 Frederico Caldeira Knabben
Licensed under the terms of the GNU Lesser General Public License:
http://www.opensource.org/licenses/lgpl-license.php
For further information visit:
http://www.fckeditor.net/
“Support Open Source software. What about a donation today?“
File Name: fckeditor.py
This is the integration file for Python.
File Authors:
Andrew Liu (andrew@liuholdings.com)
“““
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=\“no\“ 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
def IsCompatible(self):
if (os.environ.has_key(“HTTP_USER_AGENT“)):
sAgent = os.environ.get(“HTTP_USER_AGENT“ ““)
else:
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 9293 2006-08-25 07:32 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\admin.php
文件 1270 2006-08-21 07:36 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\config.php
文件 622 2006-08-23 09:14 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\createTable.sql
文件 3903 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\db.php
文件 2015 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\a.gif
文件 1644 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\b.gif
文件 176 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\bigsmile-smiley.gif
文件 159 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\blue-smiley.gif
文件 1579 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\c.gif
文件 2465 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\d.gif
文件 154 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\default.gif
文件 131 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\exclamation.gif
文件 157 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\happy-smiley.gif
文件 965 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\laughing-smiley.gif
文件 144 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\question.gif
文件 160 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\sad-smiley.gif
文件 151 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\thumbsdown.gif
文件 149 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\thumbsup.gif
文件 184 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\emoticons\wink-smiley.gif
文件 2155 2006-08-19 08:04 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\flat.php
文件 782 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\forum.css
文件 3505 2006-08-24 01:30 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\index.php
文件 7777 2006-08-25 01:51 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\post.php
文件 3151 2006-08-19 08:04 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\thread.php
文件 59 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\tree-blank.gif
文件 73 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\tree-end.gif
文件 91 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\tree-join.gif
文件 75 2006-08-18 07:39 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\tree-vert.gif
文件 5619 2006-08-24 09:23 新一代PHP+MySQL+Dreamweaver网站建设典型案例\10\view.php
文件 4582 2006-08-15 09:19 新一代PHP+MySQL+Dreamweaver网站建设典型案例\11\addrbook.php
............此处省略1194个文件信息
相关资源
- PHP.and.MySQL.Web.Development.5th.Edition.pdf
- 用php做的一个简单的系统
-
PHP ob
jects Patterns and Practice(5th) - php+msyql购物网站
-
web databa
se application with php&mysql - php版简易网上商城源码
- 旅游管理系统源代码
- ThinkPHP雍达商城源码包括前后台
- 网页游戏运营平台页游网站源码 THI
- 校园办公系统PHP源码无错版
- thinkphp做的留言板
- php-7-data-structures-algorithms.rar
- 开源PHP+MySQL 在线考试系统
- ThinkPHP5快速入门和路由完全指南和数
- 网上花店源码-php
- PHP+Mysql动态网站开发与全程+源码
- php-5.2.13-Win32
- SQL数据库管理网页版
- zw_qq1124794084-9971392-phpcms_v9.6.0_UTF8.zip
- 基于PHP开发的排课系统
- php仿头条网站模板dede织梦
- php临时邮箱系统源码,免费接收邮箱
- thinkphp远程代码执行exp
- swoole_loader73.so(含7171_zts7272_zts7373_z
- 星痕帝国游戏源码 v1.1.6.rar
- 开心农场源代码PHP+mysql
- phpMyAdmin-4.8.5-all-languages
- phpgjx2.0sql跟踪器、php工具箱、百宝箱
- 基于thinkphp框架的教学管理系统
- php毕业设计文档+源码.rar
评论
共有 条评论