资源简介
数字相册小视频管理网站,它由前台的图片浏览、视频播放,后台的图片管理、视频管理等模块组成,具有用户注册、用户登陆、用户个人信息修改、用户上传图片、用户上传视频、图片管理中修改图片信息、删除图片、视频管理中修改视频信息、删除视频、用户管理等功能。这些功能不仅方便人们存储数字信息,还能提高管理效率,进一步缩短用户分享自己记录的电子数字图片和视频的时间周期。
代码片段和文件信息
“““
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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5512 2020-02-05 17:48 数字相册小视频管理网站\shipin\.classpath
文件 291 2020-02-05 17:31 数字相册小视频管理网站\shipin\.myme
文件 1412 2020-02-05 17:42 数字相册小视频管理网站\shipin\.project
文件 500 2020-02-05 17:31 数字相册小视频管理网站\shipin\.settings\.jsdtscope
文件 330 2020-02-05 17:31 数字相册小视频管理网站\shipin\.settings\org.eclipse.jdt.core.prefs
文件 49 2020-02-05 17:31 数字相册小视频管理网站\shipin\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2020-02-05 17:31 数字相册小视频管理网站\shipin\.settings\org.eclipse.wst.jsdt.ui.superType.name
文件 695 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\common\add_success.jsp
文件 821 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\common\msg.jsp
文件 797 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\common\success.jsp
文件 236 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\behaviors\disablehandles.htc
文件 822 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\behaviors\showtableborders.htc
文件 2648 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\fck_editorarea.css
文件 4088 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\fck_internal.css
文件 1696 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\fck_showtableborders_gecko.css
文件 288 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\block_address.png
文件 293 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\block_blockquote.png
文件 229 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\block_div.png
文件 218 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\block_h1.png
文件 220 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\block_h2.png
文件 219 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\block_h3.png
文件 229 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\block_h4.png
文件 236 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\block_h5.png
文件 216 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\block_h6.png
文件 205 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\block_p.png
文件 223 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\block_pre.png
文件 184 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\fck_anchor.gif
文件 599 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\fck_flashlogo.gif
文件 105 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\fck_hiddenfield.gif
文件 54 2020-02-05 17:40 数字相册小视频管理网站\shipin\WebRoot\fckeditor\editor\css\images\fck_pagebreak.gif
............此处省略895个文件信息
- 上一篇:贪吃蛇小游戏源码(Java)
- 下一篇:六本android技术全英文书籍,高清晰版本
相关资源
- 贪吃蛇小游戏源码(Java)
- Java与模式阎宏高清晰完整PDF版
- 风电系统物联网iot平台监控、报表、
- java jdk 13 帮助文档 中英对照版 中文
- 基于struts2+hibernate框架的简单的新闻管
- java编程基础习题答案梁勇著,基础班
- 一个生产管理系统JAVA
- 超市进销存库存仓库管理系统 mysql
- core java第十版 pdf
- 毕业设计 基于Javamail的邮件收发系统
- Java12-API.chm
- JAVA程序设计教程 第二版 高清版 完整
- 坐标数据转换为图形
- java ffmpeg实现视屏剪辑、srt字幕嵌入、
- java编程逻辑
- 在linux环境下通过java代码操作串口,
- 计算机科学与技术专业本科毕业论文
- java课设报告
- 黑马乐优18年11月份 java最新资料 包含
- JAVA在SQLite嵌入式数据库中的应用.ra
- java图书管理系统源码,实现增删改查
- 学籍管理系统java版
- 基于WEB的IT电脑购物系统的设计与实现
- 基于WEB的农产品销售管理系统.rar
- 网上体育商城的设计与实现.rar
- [Java源码]基于Swing和SpringBoot的人事管
- java黑马学习笔记
- xincs心理测试测评系统.zip
- 深入体验JAVA项目开发
- 基于java的小区外来人员管理系统的设
评论
共有 条评论