资源简介
PHP程序开发参考手册(光盘源码),有需要的可以下载
代码片段和文件信息
“““
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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 644 2011-03-24 10:59 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.1\01\01\css\in.css
目录 0 2013-06-09 10:23 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.1\01\01\css
文件 905 2011-03-24 10:59 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.1\01\01\index.php
文件 2063 2010-09-18 15:42 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.1\01\01\pic\an_03.gif
文件 2063 2010-09-18 16:21 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.1\01\01\pic\an_05.gif
文件 25335 2010-11-25 11:23 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.1\01\01\pic\login.jpg
目录 0 2013-06-09 10:23 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.1\01\01\pic
目录 0 2013-06-09 10:23 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.1\01\01
目录 0 2013-06-09 10:23 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.1\01
目录 0 2013-06-09 10:23 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.1
文件 29600 2010-11-25 14:41 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.10\07\01\images\bg3.jpg
目录 0 2013-06-09 10:23 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.10\07\01\images
文件 1843 2010-11-25 14:55 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.10\07\01\index.php
目录 0 2013-06-09 10:23 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.10\07\01
目录 0 2013-06-09 10:23 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.10\07
目录 0 2013-06-09 10:23 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.10
文件 12188 2010-11-27 14:20 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02\images\dl_01.gif
文件 1240 2010-11-27 14:20 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02\images\dl_02.gif
文件 3550 2010-11-27 14:20 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02\images\dl_03.gif
文件 955 2010-11-27 14:20 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02\images\dl_04.gif
文件 895 2010-11-27 14:20 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02\images\dl_05.gif
文件 2897 2010-11-27 14:20 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02\images\dl_06.gif
文件 3133 2010-11-27 14:20 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02\images\dl_07.gif
文件 890 2010-11-27 14:20 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02\images\dl_08.gif
文件 699 2010-11-27 14:20 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02\images\dl_09.gif
文件 758 2010-11-27 14:20 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02\images\dl_10.gif
文件 43 2010-11-27 14:20 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02\images\分隔符.gif
目录 0 2013-06-09 10:23 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02\images
文件 2959 2011-03-16 16:24 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02\index.php
目录 0 2013-06-09 10:23 PHP程序开发参考手册(光盘源码)\mingrisoft\01\1.2\02
............此处省略3835个文件信息
相关资源
- 深入体验PHP项目开发
- 大道PHP:LAMP+Zend+开源框架整合开发与
- php集成开发环境phpStudy_2015_setup.exe
- 十大精典PHP项目开发全程案例 源码十
- 免费分享thinkphp框架开发周易八字起名
- PHP和MySQL+WEB开发非常详细
- PHP开发典型模块大全完整源码
- 价值数万PHP深度二次开发小说站源码
- PHP项目开发案例全程实录第2版-源代码
- OA系统-php开发
- 61-基于thinkphp框架开发的办公oa管理系
- php+thinkphp+mysql开发的erp系统
- 江湖家居二次开发全新模板带WAP手机
- 易签到PHP开发
- 基于PHP 开发的OA外勤易签到
- FastAdmin后台开发框架 v1.2.0 bulid 20201
- 深入体验PHP项目开发 书本案例
- 4个月开发的php网页游戏
- 基于THINKPHP内核二次开发版在线视频教
- [PHP项目开发案例全程实录]
- 实战突击 PHP项目开发案例整合
- web开发手册大全
- laragon full4.0.16.0 全栈式PHP集成环境
- Discuz源码分析与插件开发进阶(高清
- php项目开发1200例
- PHP动态网站开发
- PHP和MySQL Web开发(原书第4和第5版含代
- 计算机图形学 第二版 Peter Shirley 带书
- DSKms系统Thinkphp框架开发内容付费/知识
- php项目开发案例整合
评论
共有 条评论