资源简介
网站设计了学生、企业和管理员三种用户。学生用户可以在前台按照特定的条件搜索兼职职位,并对合适的职位进行申请,申请职位的学生必须先注册个人帐号并完善资料才可以进行。申请后可以查看自己的职位申请记录。企业在网站中主要的是发布自己的招聘职位,并对应聘的学生进行申请处理。系统管理员用户主要是对注册的学生、企业用户进行管理,并可以对兼职职位进行审核,审核后的职位才可以在前台显示出来。
代码片段和文件信息
“““
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 += ““ % (
self.InstanceName
WidthCSS
HeightCSS
HtmlValue
)
return Html
def IsCom
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5437 2019-11-12 21:17 学生兼职网的设计与实现\jianzhi\.classpath
文件 294 2019-11-12 20:32 学生兼职网的设计与实现\jianzhi\.myme
文件 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个文件信息
相关资源
- JAVA JSP MYSQL电影播放网站
- Core Java Volume I--Fundamentals 10th Edition.
- 基于JAVA的旅游网站源码
- JSP+MYSQL电影订票系统
- JAVA089JSP企业车辆管理系统.rar
- JAVA微商城前后台源码
- 2016黑马程序员java基础班阶段考试测试
- Java仿微信飞机大战--Swing界面
- JAVA局域网聊天系统微仿QQ
- jsp+mysql实现的博客系统
- JAVA写的信用卡管理系统
- 自行车租赁系统源码JaveWeb版
- java 超级简易java图书管理系统源码
- 微信支付jssdk,java版
- 酒店点菜系统源代码java
- Java 身份证号查询
- 基于JavaWeb学生管理系统
- 简单的Java21点游戏
- 基于JAVA WEB的班级网站设计与开发
- 饭店管理系统,餐饮管理系统
- java代码双重混淆
- jsp+mysql客户关系管理系统
- JAVA整合WebSocket实现服务器消息推送项
- JAVA实训 俄罗斯方块(带源程序和实
- 经纬度计算距离、方位角等java源码
- myeclipse开发servlet+jsp+oracle+c3p0的java
- Rabbitmq工具类,java工具类RabbitmqUtil
- 25个经典Spark算子的JAVA实现
- Java语言程序设计ppt课件
- java从入门到精通教学视频
评论
共有 条评论