資源簡介
一次簡單的php論壇實戰(zhàn)
代碼片段和文件信息
“““
FCKeditor?-?The?text?editor?for?Internet?-?http://www.fckeditor.net
Copyright?(C)?2003-2010?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
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????188??2016-10-16?13:15??kc\0.html
?????文件????????194??2016-10-16?13:26??kc\0.php
?????文件????????502??2016-06-10?19:13??kc\6.11\browse_sou.php
?????文件???????4789??2016-08-25?10:43??kc\6.11\browse_sou_tie.php
?????文件???????4800??2016-06-12?22:50??kc\6.11\browse_sou_user.php
?????文件???????1889??2016-06-14?15:04??kc\6.11\daohang.php
?????文件???????3038??2016-07-09?18:46??kc\6.11\fatie.php
?????文件???????1215??2016-06-11?11:43??kc\6.11\mokuai.php
?????文件???????3477??2016-08-30?15:27??kc\6.11\person.php
?????文件???????1197??2016-06-11?11:23??kc\6.11\sou.php
?????文件???????3442??2016-07-09?18:39??kc\6.11\tiezi.php
?????文件???????9227??2016-07-09?18:30??kc\6.11\tiezi_zhuti.php
?????文件???????1709??2016-08-30?15:28??kc\6.11\tou.php
?????文件????????877??2016-08-30?15:20??kc\browse.php
?????文件????????653??2016-06-18?23:54??kc\browse_ck.php
?????文件????????617??2016-06-12?22:52??kc\browse_ck_c.php
?????文件????????553??2016-06-11?17:38??kc\browse_dk.php
?????文件????????850??2016-06-11?14:00??kc\browse_mokuai.php
?????文件????????502??2016-06-10?19:13??kc\browse_sou.php
?????文件???????4789??2016-08-25?10:43??kc\browse_sou_tie.php
?????文件???????4800??2016-06-12?22:50??kc\browse_sou_user.php
?????文件????????292??2016-11-18?16:01??kc\c.php
?????文件????????306??2016-11-15?22:36??kc\c1.php
?????文件???????2088??2016-08-30?15:16??kc\chkuserlogin.php
?????文件???????1089??2016-08-30?15:07??kc\chkuserlogin_deng.php
?????文件????????237??2016-08-30?15:18??kc\ck_deng.php
?????文件????????553??2016-08-30?15:18??kc\ck_deng_d.php
?????文件????????182??2016-06-09?21:47??kc\cook_dl.php
?????文件???????1889??2016-06-14?15:04??kc\daohang.php
?????文件???????1992??2016-08-30?15:23??kc\daoju.php
............此處省略1072個文件信息
- 上一篇:PHP寫的QQ農場源碼(轉載)
- 下一篇:php 5.6.5 源碼
評論
共有 條評論