资源简介

此系统适合劳务公司,不过是个样本系统。WEB式系统,全球操控。有需要的可以到论坛发布修改部分。我们免费为你制作。

资源截图

代码片段和文件信息

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

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

     文件      20517  2007-12-09 11:19  2007\useinfo.asp

     文件      40684  2007-12-09 11:19  2007\uselist.asp

     文件      23750  2007-12-09 11:19  2007\useadd.asp

     文件      25030  2007-12-09 11:19  2007\useview.asp

     文件      23250  2007-12-09 11:19  2007\useedit.asp

     文件      19632  2007-12-09 11:19  2007\usedelete.asp

     文件       5954  2007-11-29 11:14  2007\project3.css

     文件       5178  2007-12-09 11:19  2007\ewcfg60.asp

     文件       2697  2007-12-09 11:19  2007\header.asp

     文件        643  2007-12-09 11:19  2007\ewmenu.asp

     文件        817  2007-12-09 11:19  2007\footer.asp

     文件      84782  2007-12-09 11:19  2007\aspfn60.asp

     文件        216  2007-12-09 11:19  2007\userfn60.asp

     文件         26  2007-12-09 11:19  2007\userfn60.js

     文件       2203  2007-12-09 11:19  2007\ewbv60.asp

     文件       3767  2007-12-09 11:19  2007\ewlookup60.asp

     文件       6484  2007-12-09 11:19  2007\ewaddopt60.asp

     文件       7272  2007-12-09 11:19  2007\login.asp

     文件       2818  2007-12-09 11:19  2007\logout.asp

     文件       1963  2007-12-09 11:19  2007\default.asp

     文件        221  2002-11-19 19:38  2007\images\ew_calendar.gif

     文件        339  2004-09-24 11:35  2007\images\first.gif

     文件        172  2004-09-24 11:41  2007\images\firstdisab.gif

     文件        340  2004-09-24 11:35  2007\images\last.gif

     文件        175  2004-09-24 11:42  2007\images\lastdisab.gif

     文件        207  2004-09-24 11:36  2007\images\next.gif

     文件        152  2004-09-24 11:41  2007\images\nextdisab.gif

     文件        200  2004-09-24 11:35  2007\images\prev.gif

     文件        146  2004-09-24 11:41  2007\images\prevdisab.gif

     文件        842  2004-09-10 12:14  2007\images\sortdown.gif

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

评论

共有 条评论