资源简介

医院预约挂号系统是结合医院的挂号业务而开发的一套信息化管理系统,系统的用户包括了系统管理员、医生、患者三个用户。系统设计了一个前台页面,患者可以在前台页面中浏览医院的基本信息以及每个科室的医生的详细资料,注册登录后可以选择对应的医生进行预约挂号操作。医生在后台登录后可以查看挂自己号的所有患者的基本信息,对就诊完成的患者标记已就诊。系统管理员可以管理医院的基本信息,可以设置不同的科室,上传每个科室下的医生的个人信息。系统的使用可以满足患者在网上挂号的需求,让患者在网络上就可以先了解到医院和医生的基本资料。

资源截图

代码片段和文件信息

“““
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  2020-03-05 10:10  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\.classpath

     文件        288  2020-03-05 06:47  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\.mymetadata

     文件       1411  2020-03-05 09:34  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\.project

     文件        500  2020-03-05 06:47  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\.settings\.jsdtscope

     文件        140  2020-03-05 19:55  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\.settings\com.genuitec.eclipse.core.prefs

     文件        330  2020-03-05 06:47  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\.settings\org.eclipse.jdt.core.prefs

     文件         49  2020-03-05 06:47  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\.settings\org.eclipse.wst.jsdt.ui.superType.container

     文件          6  2020-03-05 06:47  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\.settings\org.eclipse.wst.jsdt.ui.superType.name

     文件        823  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\common\fail.jsp

     文件        850  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\common\msg.jsp

     文件        827  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\common\succ.jsp

     文件        797  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\common\success.jsp

     文件        236  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\behaviors\disablehandles.htc

     文件        822  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\behaviors\showtableborders.htc

     文件       2648  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\fck_editorarea.css

     文件       4088  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\fck_internal.css

     文件       1696  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\fck_showtableborders_gecko.css

     文件        288  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\images\block_address.png

     文件        293  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\images\block_blockquote.png

     文件        229  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\images\block_div.png

     文件        218  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\images\block_h1.png

     文件        220  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\images\block_h2.png

     文件        219  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\images\block_h3.png

     文件        229  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\images\block_h4.png

     文件        236  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\images\block_h5.png

     文件        216  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\images\block_h6.png

     文件        205  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\images\block_p.png

     文件        223  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\images\block_pre.png

     文件        184  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\images\fck_anchor.gif

     文件        599  2020-03-05 07:46  基于J2EE的医院预约挂号管理系统的设计与实现\yuyue\WebRoot\fckeditor\editor\css\images\fck_flashlogo.gif

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

评论

共有 条评论