-
大小: 3.49MB文件類型: .rar金幣: 2下載: 0 次發布日期: 2023-11-16
- 語言: JavaScript
- 標簽: jquery??網絡書店??
資源簡介
完整的一套網絡書店系統,可以學習jquery的好的例子

代碼片段和文件信息
“““
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?==
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=\“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
Wid
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????1433600??2008-03-05?22:17??code\access\cust.mdb
?????文件???????9411??2007-05-16?09:20??code\admin\admin.asp
?????文件????????147??2007-05-04?10:25??code\admin\login-out.asp
?????文件???????5645??2007-05-12?16:33??code\admin\login.asp
?????文件????????932??2007-03-20?11:10??code\admin-do\add-admin.asp
?????文件????????722??2007-03-02?15:14??code\admin-do\add-backup.asp
?????文件???????1228??2007-05-05?10:03??code\admin-do\add-book.asp
?????文件???????1488??2007-03-27?10:29??code\admin-do\add-class.asp
?????文件????????599??2007-05-14?10:28??code\admin-do\add-news.asp
?????文件???????2057??2007-03-21?09:07??code\admin-do\brush-admin.asp
?????文件???????3825??2007-05-16?09:28??code\admin-do\brush-back.asp
?????文件????????943??2007-03-02?15:12??code\admin-do\brush-backup.asp
?????文件???????3899??2007-05-12?15:53??code\admin-do\brush-book-lack.asp
?????文件???????4122??2007-05-12?17:13??code\admin-do\brush-book-order.asp
?????文件???????3907??2007-05-12?15:52??code\admin-do\brush-book.asp
?????文件???????1339??2007-05-03?21:14??code\admin-do\brush-class.asp
?????文件???????4125??2007-03-20?11:04??code\admin-do\brush-news.asp
?????文件???????4177??2007-03-20?11:02??code\admin-do\brush-user.asp
?????文件????????772??2007-03-20?11:15??code\admin-do\check.asp
?????文件????????332??2007-03-18?21:44??code\admin-do\del-admin.asp
?????文件????????319??2007-05-16?09:29??code\admin-do\del-back.asp
?????文件????????564??2007-03-02?15:44??code\admin-do\del-backup.asp
?????文件????????322??2007-05-12?15:46??code\admin-do\del-book-lack.asp
?????文件????????318??2007-05-12?17:14??code\admin-do\del-book-order.asp
?????文件????????317??2007-05-04?10:05??code\admin-do\del-book.asp
?????文件????????425??2007-05-03?21:12??code\admin-do\del-class.asp
?????文件????????331??2007-03-18?21:44??code\admin-do\del-news.asp
?????文件????????317??2007-03-11?22:22??code\admin-do\del-user.asp
?????文件????????511??2007-03-20?11:07??code\admin-do\edit-admin.asp
?????文件????????401??2007-03-13?13:21??code\admin-do\edit-lang.asp
............此處省略822個文件信息
評論
共有 條評論
相關資源
- jQuery新年年會隨機手機號碼滾動抽獎
- jQuery實現上下拖動進行排序排序
- js丶jQuery碰撞物體小游戲(字母丶數字
- jquery模塊滾動切換(jscrollpane)
- LigerUI是基于jQuery的UI框架
- jQuery插件頁面滾動返回頂部按鈕(s
- jQuery美團酒店入住日期代碼
- 圖片輪播+圖片放大(基于jquery.exzoo
-
ja
vasc ript中jQuery中胡DOM操作 - jQuery圖片放大縮小雙擊還原_zoom0305j
- jQuery+HTML5條形碼生成代碼
- jQuery自動彈窗
- jquery圖片水印插件
- jQuery多級復選框選中代碼
- jQuery插件編寫步驟.doc
- jquery圖片裁切(基于jquery.cropzoom)
- jQuery form表單美化代碼
- jQuery仿Excel表格列表排序代碼
- jQuery仿淘寶手機端帶視頻圖片輪播.
- jQuery拖拽排序布局插件
- jQuery拖拽排序插件DDSort.js
- jquery實現鼠標懸停在圖片上的放大效
- 基于jquery的圖片收縮與放大效果
- jQuery頭像裁剪前端代碼
- jQuery頭像圖片裁剪尺寸插件
- jquery-3.2.1.min.jssockjs-0.3.min.jsstomp.js
- jQuery2.0.3開發版
- jQuery網頁版俄羅斯方塊游戲代碼
- jQuery CSS3帶前后按鈕控制旋轉木馬動畫
- jQuery CSS3云朵飄動動畫特效