91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 3.58MB
    文件類型: .rar
    金幣: 2
    下載: 0 次
    發布日期: 2023-09-14
  • 語言: PHP
  • 標簽: 網站??源碼??機票預訂??

資源簡介

一個完整的機票預訂網站:預覽網址 http://023yifan.com 前端大量使用jQuery和jQuery UI。(另外由于偷懶,特價機票那一欄并沒有做完,因為實在沒有素材)。 后臺登陸用戶名和密碼(admin,admin)欄目有訂單管理,機票管理,文章管理和用戶管理。文章管理使用fckeditor。另外由于沒有購買mySQL數據庫,所以使用的是ADODB類庫操作access數據庫。

資源截圖

代碼片段和文件信息

“““
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(“%%“)? WidthCSS?=?“%spx“?%?self.Width
else:
WidthCSS?=?self.Width
if?(self.Height.find(“%%“)? HeightCSS?=?“%spx“?%?self.Height
else:
HeightCSS?=?self.Height

Html?+=?“yle=\“width:?%s;?height:?%s;\“?wrap=\“virtual\“>%s“?%?(
self.InstanceName
WidthCSS
HeightCSS
HtmlValue

return?Html

def?IsCom

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件???????6224??2011-10-19?08:34??yifan\admin.php

?????文件???????3668??2011-10-19?08:44??yifan\adminAddNews.php

?????文件????????711??2011-10-20?17:40??yifan\adminAddNews_chk.php

?????文件???????6135??2011-10-19?08:36??yifan\admin_article.php

?????文件????????688??2011-10-19?08:36??yifan\admin_article_del.php

?????文件??????16040??2011-10-20?11:48??yifan\admin_ticket.php

?????文件???????1796??2011-10-20?11:48??yifan\admin_ticket_chk.php

?????文件????????689??2011-10-19?08:39??yifan\admin_ticket_del.php

?????文件???????5793??2011-10-19?08:39??yifan\admin_user.php

?????文件????????691??2011-10-19?08:40??yifan\admin_user_del.php

?????文件??????26480??2011-09-08?12:59??yifan\adodb5\adodb-active-record.inc.php

?????文件??????38718??2011-06-28?13:12??yifan\adodb5\adodb-active-recordx.inc.php

?????文件???????8497??2011-09-08?12:59??yifan\adodb5\adodb-csvlib.inc.php

?????文件??????28291??2011-09-08?12:59??yifan\adodb5\adodb-datadict.inc.php

?????文件???????8549??2011-09-08?12:59??yifan\adodb5\adodb-error.inc.php

?????文件???????2747??2011-09-08?12:59??yifan\adodb5\adodb-errorhandler.inc.php

?????文件???????2273??2011-09-08?12:59??yifan\adodb5\adodb-errorpear.inc.php

?????文件???????2213??2011-09-08?12:59??yifan\adodb5\adodb-exceptions.inc.php

?????文件????????700??2011-09-08?12:59??yifan\adodb5\adodb-iterator.inc.php

?????文件??????36731??2011-09-08?12:59??yifan\adodb5\adodb-lib.inc.php

?????文件???????5037??2011-09-08?12:59??yifan\adodb5\adodb-memcache.lib.inc.php

?????文件???????8114??2011-09-08?12:59??yifan\adodb5\adodb-pager.inc.php

?????文件???????9567??2011-09-08?12:59??yifan\adodb5\adodb-pear.inc.php

?????文件??????32047??2011-09-08?12:59??yifan\adodb5\adodb-perf.inc.php

?????文件????????318??2011-09-08?12:59??yifan\adodb5\adodb-php4.inc.php

?????文件??????42959??2011-06-28?13:12??yifan\adodb5\adodb-time.inc.php

?????文件??????55486??2010-05-06?18:24??yifan\adodb5\adodb-xmlschema.inc.php

?????文件??????62787??2010-05-06?18:24??yifan\adodb5\adodb-xmlschema03.inc.php

?????文件?????124823??2011-09-08?12:59??yifan\adodb5\adodb.inc.php

?????文件???????6758??2009-06-25?16:26??yifan\adodb5\contrib\toxmlrpc.inc.php

............此處省略1048個文件信息

評論

共有 條評論