• 大小: 3.58MB
    文件类型: .rar
    金币: 1
    下载: 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(“%%“) < 0):
WidthCSS = “%spx“ % self.Width
else:
WidthCSS = self.Width
if (self.Height.find(“%%“) < 0):
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个文件信息

评论

共有 条评论