• 大小: 30.59MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-09
  • 语言: PHP
  • 标签: AMP  DW  代码  

资源简介

实例精通Dreamweaver与PHP和MySQL整合应用--源代码,可以详细学习下。

资源截图

代码片段和文件信息

“““
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 ==

This is the integration file for Python.
“““

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 += “yle=\“width: %s; height: %s;\“ wrap=\“virtual\“>%s“ % (
self.InstanceName
WidthCSS
HeightCSS
HtmlValue

Html += “

return Html

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件   15316121  2007-08-26 22:58  Files\Files\appserv-win32-2.4.9.exe

     文件    2814264  2007-10-07 18:14  Files\Files\FileZilla_3.0.1_win32-setup.exe

     文件    3725824  2007-10-07 16:19  Files\Files\mysql-connector-odbc-3.51.20-win32.msi

     文件    8068700  2007-08-27 22:56  Files\Files\SQLyog605.exe

     文件      34481  2007-09-17 17:25  Files\Files\terrafirma.zip

     文件         90  2007-10-02 21:04  Example\Example\Chapter 03\PHP\3-2-2-1.php

     文件        136  2007-08-27 09:35  Example\Example\Chapter 03\PHP\3-2-3-1.php

     文件        180  2007-10-09 17:20  Example\Example\Chapter 03\PHP\3-2-3-2.php

     文件         69  2007-08-27 09:35  Example\Example\Chapter 03\PHP\3-2-4-1.php

     文件         98  2007-08-27 09:35  Example\Example\Chapter 03\PHP\3-2-4-2.php

     文件        199  2007-08-27 09:35  Example\Example\Chapter 03\PHP\3-2-4-3.php

     文件        235  2007-08-27 09:36  Example\Example\Chapter 03\PHP\3-2-4-4.php

     文件        155  2007-08-27 09:36  Example\Example\Chapter 03\PHP\3-2-5-1.php

     文件         63  2007-08-27 09:36  Example\Example\Chapter 03\PHP\3-2-5-2.php

     文件         74  2007-08-27 09:36  Example\Example\Chapter 03\PHP\3-2-5-3.php

     文件        228  2007-08-27 09:36  Example\Example\Chapter 03\PHP\3-2-6-1.php

     文件        191  2007-08-27 09:36  Example\Example\Chapter 03\PHP\3-2-6-2.php

     文件        113  2007-08-27 09:36  Example\Example\Chapter 03\PHP\3-2-6-3.php

     文件        242  2007-08-27 09:36  Example\Example\Chapter 03\PHP\3-2-6-4.php

     文件        279  2007-08-27 09:37  Example\Example\Chapter 03\PHP\3-2-6-5.php

     文件        159  2007-08-27 09:38  Example\Example\Chapter 03\PHP\3-3-1-1.php

     文件        151  2007-08-27 09:38  Example\Example\Chapter 03\PHP\3-3-1-2.php

     文件        172  2007-08-27 09:38  Example\Example\Chapter 03\PHP\3-3-1-3.php

     文件        165  2005-11-01 13:29  Example\Example\Chapter 03\PHP\3-3-2-1.php

     文件        151  2005-11-01 13:29  Example\Example\Chapter 03\PHP\3-3-2-2.php

     文件        156  2005-11-01 13:29  Example\Example\Chapter 03\PHP\3-3-2-3.php

     文件        316  2007-10-04 14:37  Example\Example\Chapter 03\PHP\3-4-1.php

     文件        204  2007-10-03 00:26  Example\Example\Chapter 03\PHP\3-4-2.php

     文件         36  2007-10-03 00:42  Example\Example\Chapter 03\PHP\3-5-1.php

     文件        235  2007-08-27 21:43  Example\Example\Chapter 03\PHP\3-5-2.php

............此处省略1564个文件信息

评论

共有 条评论