• 大小: 18.53MB
    文件类型: .rar
    金币: 2
    下载: 0 次
    发布日期: 2024-01-21
  • 语言: Java
  • 标签: Java  MySQL  MVC  系统源码  

资源简介

网站设计了学生、企业和管理员三种用户。学生用户可以在前台按照特定的条件搜索兼职职位,并对合适的职位进行申请,申请职位的学生必须先注册个人帐号并完善资料才可以进行。申请后可以查看自己的职位申请记录。企业在网站中主要的是发布自己的招聘职位,并对应聘的学生进行申请处理。系统管理员用户主要是对注册的学生、企业用户进行管理,并可以对兼职职位进行审核,审核后的职位才可以在前台显示出来。

资源截图

代码片段和文件信息

“““
FCKeditor - The text editor for Internet - http://www.fckeditor.net
Copyright (C) 2003-2008 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

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

     文件       5437  2019-11-12 21:17  学生兼职网的设计与实现\jianzhi\.classpath

     文件        294  2019-11-12 20:32  学生兼职网的设计与实现\jianzhi\.mymetadata

     文件       1413  2019-11-13 09:04  学生兼职网的设计与实现\jianzhi\.project

     文件        500  2019-11-12 20:32  学生兼职网的设计与实现\jianzhi\.settings\.jsdtscope

     文件        330  2019-11-12 20:32  学生兼职网的设计与实现\jianzhi\.settings\org.eclipse.jdt.core.prefs

     文件         49  2019-11-12 20:32  学生兼职网的设计与实现\jianzhi\.settings\org.eclipse.wst.jsdt.ui.superType.container

     文件          6  2019-11-12 20:32  学生兼职网的设计与实现\jianzhi\.settings\org.eclipse.wst.jsdt.ui.superType.name

     文件       2749  2019-11-13 09:36  学生兼职网的设计与实现\jianzhi\WebRoot\adminlogin.jsp

     文件        772  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\default.jsp

     文件       6135  2019-11-14 13:40  学生兼职网的设计与实现\jianzhi\WebRoot\denglu.jsp

     文件        236  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\behaviors\disablehandles.htc

     文件        822  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\behaviors\showtableborders.htc

     文件       2648  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\fck_editorarea.css

     文件       4088  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\fck_internal.css

     文件       1696  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\fck_showtableborders_gecko.css

     文件        288  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\block_address.png

     文件        293  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\block_blockquote.png

     文件        229  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\block_div.png

     文件        218  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\block_h1.png

     文件        220  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\block_h2.png

     文件        219  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\block_h3.png

     文件        229  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\block_h4.png

     文件        236  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\block_h5.png

     文件        216  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\block_h6.png

     文件        205  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\block_p.png

     文件        223  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\block_pre.png

     文件        184  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\fck_anchor.gif

     文件        599  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\fck_flashlogo.gif

     文件        105  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\fck_hiddenfield.gif

     文件         54  2016-11-22 19:27  学生兼职网的设计与实现\jianzhi\WebRoot\fckeditor\editor\css\images\fck_pagebreak.gif

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

评论

共有 条评论