• 大小: 18.86MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-22
  • 语言: PHP
  • 标签: php  

资源简介

一次简单的php论坛实战

资源截图

代码片段和文件信息

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

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

     文件        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个文件信息

评论

共有 条评论