Merge branch 'dev-help-wwr' into 'develop'
新增编辑在帮助文档功能 See merge request K18_NTCS_WEB/NTC!17
This commit is contained in:
@@ -1,14 +1,22 @@
|
||||
package com.nis.web.controller;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.net.URLDecoder;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
|
||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.ModelMap;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
|
||||
import com.nis.domain.SysMenu;
|
||||
import com.nis.util.StringUtil;
|
||||
@@ -100,6 +108,29 @@ public class SystemController extends BaseController{
|
||||
model.addAttribute("menuList",newList);
|
||||
return "/help";
|
||||
}
|
||||
|
||||
@RequestMapping("saveHelp")
|
||||
@ResponseBody
|
||||
public boolean saveHelp(HttpServletRequest request, HttpServletResponse response,ModelMap model,@RequestParam(required=true,value="editedHelpInfo")String editedHelpInfo,@RequestParam(required=true,value="helpHrefVal")String helpHrefVal){
|
||||
|
||||
try {
|
||||
StringBuffer helpInfo=new StringBuffer();
|
||||
helpInfo.append(URLDecoder.decode(editedHelpInfo,"utf-8"));
|
||||
String htmlName=URLDecoder.decode(helpHrefVal,"utf-8");
|
||||
String htmlPath=request.getServletContext().getRealPath("/")+htmlName;
|
||||
|
||||
File file=new File(htmlPath);
|
||||
OutputStream out=new FileOutputStream(file);
|
||||
out.write(helpInfo.toString().getBytes());
|
||||
out.flush();
|
||||
out.close();
|
||||
} catch (Exception e) {
|
||||
|
||||
e.printStackTrace();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,120 +1,120 @@
|
||||
#jdbc for oracle
|
||||
#jdbc.driver=oracle.jdbc.driver.OracleDriver
|
||||
jdbc.devlop.driver=com.mysql.jdbc.Driver
|
||||
jdbc.devlop.url=jdbc:mysql://10.0.4.221:3306/ntc_test?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&rewriteBatchedStatements=true
|
||||
jdbc.devlop.username=root
|
||||
jdbc.devlop.key=pR3JFt5dsGCW0nZO3TLF7Q==
|
||||
jdbc.devlop.password=JgW5tsiGBNAtcqCgSQIP0g==
|
||||
|
||||
jdbc.product.driver=com.mysql.jdbc.Driver
|
||||
jdbc.product.url=jdbc:mysql://10.0.4.221:3306/ntc_test?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&rewriteBatchedStatements=true
|
||||
jdbc.product.username=root
|
||||
jdbc.product.key=pR3JFt5dsGCW0nZO3TLF7Q==
|
||||
jdbc.product.password=JgW5tsiGBNAtcqCgSQIP0g==
|
||||
|
||||
#jdbc.log.driver=oracle.jdbc.driver.OracleDriver
|
||||
#jdbc.log.url=jdbc:oracle:thin:@10.0.6.212:1523:app
|
||||
##jdbc.log.url=jdbc:oracle:thin:@10.174.196.22:1521:orcl
|
||||
#jdbc.log.username=gk_log
|
||||
##jdbc.log.username=z2_5x9logb
|
||||
#jdbc.log.key=pHl+0udycGQWNZcN68Sv9A==
|
||||
#jdbc.log.password=Z/pVMDXcWNxzVGAX0yRp3Q==
|
||||
#
|
||||
#jdbc.logA.driver=oracle.jdbc.driver.OracleDriver
|
||||
##jdbc.logA.url=jdbc:oracle:thin:@10.0.6.212:1523:app
|
||||
#jdbc.logA.url=jdbc:oracle:thin:@10.174.196.21:1521:orcl
|
||||
##jdbc.logA.username=gk_log_a
|
||||
#jdbc.logA.username=z2_5x9loga
|
||||
#jdbc.logA.key=SXHfLUwzPw0cQEc1wzwM4w==
|
||||
#jdbc.logA.password=auvtDoVZpGP6P4OqfBrWAg==
|
||||
#
|
||||
#jdbc.logC.driver=oracle.jdbc.driver.OracleDriver
|
||||
#jdbc.logC.url=jdbc:oracle:thin:@10.0.6.212:1523:app
|
||||
#jdbc.logC.username=gk_log_c
|
||||
#jdbc.logC.key=MvwfUIYP0nLyiQeprHB/5A==
|
||||
#jdbc.logC.password=3HXvsqpbOoNBIkHDS5c9Aw==
|
||||
#
|
||||
#jdbc.jk.driver=oracle.jdbc.driver.OracleDriver
|
||||
#jdbc.jk.url=jdbc:oracle:thin:@10.0.6.212:1523:app
|
||||
##jdbc.jk.url=jdbc:oracle:thin:@10.174.196.20:1521:orcl
|
||||
#jdbc.jk.username=gk_jk
|
||||
##jdbc.jk.username=z2_5x9jk
|
||||
#jdbc.jk.key=+FaavsHgQ0qBSebsAoochw==
|
||||
#jdbc.jk.password=wBrNar7gX/iQR7IyCSHuSg==
|
||||
|
||||
|
||||
|
||||
bonecp.idleMaxAgeInMinutes=60
|
||||
bonecp.idleConnectionTestPeriodInMinutes=240
|
||||
bonecp.maxConnectionsPerPartition=50
|
||||
bonecp.minConnectionsPerPartition=10
|
||||
bonecp.partitionCount=3
|
||||
bonecp.acquireIncrement=5
|
||||
bonecp.statementsCacheSize=100
|
||||
|
||||
############################################################################################################################################
|
||||
#数据中心神通数据库接口配置
|
||||
############################################################################################################################################
|
||||
#bonecp.cluster.idleMaxAgeInMinutes=60
|
||||
#bonecp.cluster.idleConnectionTestPeriodInMinutes=240
|
||||
#bonecp.cluster.maxConnectionsPerPartition=10
|
||||
#bonecp.cluster.minConnectionsPerPartition=5
|
||||
#bonecp.cluster.partitionCount=3
|
||||
#bonecp.cluster.acquireIncrement=5
|
||||
#bonecp.cluster.statementsCacheSize=100
|
||||
#
|
||||
#jdbc.log.cluster.driver=com.oscar.cluster.BulkDriver
|
||||
#jdbc.log.cluster.url=jdbc:oscarclusterbulk://10.3.129.125:2010/logdb
|
||||
#jdbc.log.cluster.username=xa_z2_iie
|
||||
#jdbc.log.cluster.key=2fa3hQn28+4AOdJXL4Ud2w==
|
||||
#jdbc.log.cluster.password=uut+weC9of5ocPheagBJ4A==
|
||||
############################################################################################################################################
|
||||
#数据中心hive接口配置
|
||||
############################################################################################################################################
|
||||
|
||||
#A版日志库
|
||||
#jdbc.hiveA.driver=org.apache.hive.jdbc.HiveDriver
|
||||
#jdbc.hiveA.url=jdbc:hive2://10.3.130.24:10000/default
|
||||
#jdbc.hiveA.username=xa_z2_mesa
|
||||
#jdbc.hiveA.key=aC/8fTC9vfPVhCk+CDzbAQ==
|
||||
##加密后密码
|
||||
##jdbc.hiveA.password=V3GyFlG8Mg01bTt8ykFVaA==
|
||||
##实际密码
|
||||
#jdbc.hiveA.password=123!@#qwe
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
##B版日志库
|
||||
#jdbc.hiveB.driver=org.apache.hive.jdbc.HiveDriver
|
||||
#jdbc.hiveB.url=jdbc:hive2://10.3.130.25:10000/default
|
||||
#jdbc.hiveB.username=xa_z2_mesa
|
||||
#jdbc.hiveB.key=aC/8fTC9vfPVhCk+CDzbAQ==
|
||||
##加密后密码
|
||||
##jdbc.hiveB.password=V3GyFlG8Mg01bTt8ykFVaA==
|
||||
##实际密码
|
||||
#jdbc.hiveB.password=123!@#qwe
|
||||
#
|
||||
#
|
||||
#bonecp.hive.idleMaxAgeInMinutes=60
|
||||
#bonecp.hive.idleConnectionTestPeriodInMinutes=240
|
||||
#bonecp.hive.maxConnectionsPerPartition=20
|
||||
#bonecp.hive.minConnectionsPerPartition=10
|
||||
#bonecp.hive.partitionCount=3
|
||||
#bonecp.hive.acquireIncrement=5
|
||||
#bonecp.hive.statementsCacheSize=100
|
||||
#
|
||||
#
|
||||
#
|
||||
#############################################################################################################################################
|
||||
##下面的库为测试库,测试完成后会删除
|
||||
#############################################################################################################################################
|
||||
#
|
||||
#jdbc.test.driver=oracle.jdbc.driver.OracleDriver
|
||||
#jdbc.test.url=jdbc:oracle:thin:@10.0.6.212:1523:app
|
||||
#jdbc.test.username=gk_pztest
|
||||
#jdbc.test.key=cV9126WUYdojQjvuKNjidw==
|
||||
#jdbc.test.password=OrTu/cLwlduYPW/tmxqNgQ==
|
||||
|
||||
|
||||
#jdbc for oracle
|
||||
#jdbc.driver=oracle.jdbc.driver.OracleDriver
|
||||
jdbc.devlop.driver=com.mysql.jdbc.Driver
|
||||
jdbc.devlop.url=jdbc:mysql://192.168.10.204:3306/gwall_dev?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&rewriteBatchedStatements=true
|
||||
jdbc.devlop.username=root
|
||||
jdbc.devlop.key=pR3JFt5dsGCW0nZO3TLF7Q==
|
||||
jdbc.devlop.password=JgW5tsiGBNAtcqCgSQIP0g==
|
||||
|
||||
jdbc.product.driver=com.mysql.jdbc.Driver
|
||||
jdbc.product.url=jdbc:mysql://192.168.10.204:3306/gwall_dev?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&rewriteBatchedStatements=true
|
||||
jdbc.product.username=root
|
||||
jdbc.product.key=pR3JFt5dsGCW0nZO3TLF7Q==
|
||||
jdbc.product.password=JgW5tsiGBNAtcqCgSQIP0g==
|
||||
|
||||
#jdbc.log.driver=oracle.jdbc.driver.OracleDriver
|
||||
#jdbc.log.url=jdbc:oracle:thin:@10.0.6.212:1523:app
|
||||
##jdbc.log.url=jdbc:oracle:thin:@10.174.196.22:1521:orcl
|
||||
#jdbc.log.username=gk_log
|
||||
##jdbc.log.username=z2_5x9logb
|
||||
#jdbc.log.key=pHl+0udycGQWNZcN68Sv9A==
|
||||
#jdbc.log.password=Z/pVMDXcWNxzVGAX0yRp3Q==
|
||||
#
|
||||
#jdbc.logA.driver=oracle.jdbc.driver.OracleDriver
|
||||
##jdbc.logA.url=jdbc:oracle:thin:@10.0.6.212:1523:app
|
||||
#jdbc.logA.url=jdbc:oracle:thin:@10.174.196.21:1521:orcl
|
||||
##jdbc.logA.username=gk_log_a
|
||||
#jdbc.logA.username=z2_5x9loga
|
||||
#jdbc.logA.key=SXHfLUwzPw0cQEc1wzwM4w==
|
||||
#jdbc.logA.password=auvtDoVZpGP6P4OqfBrWAg==
|
||||
#
|
||||
#jdbc.logC.driver=oracle.jdbc.driver.OracleDriver
|
||||
#jdbc.logC.url=jdbc:oracle:thin:@10.0.6.212:1523:app
|
||||
#jdbc.logC.username=gk_log_c
|
||||
#jdbc.logC.key=MvwfUIYP0nLyiQeprHB/5A==
|
||||
#jdbc.logC.password=3HXvsqpbOoNBIkHDS5c9Aw==
|
||||
#
|
||||
#jdbc.jk.driver=oracle.jdbc.driver.OracleDriver
|
||||
#jdbc.jk.url=jdbc:oracle:thin:@10.0.6.212:1523:app
|
||||
##jdbc.jk.url=jdbc:oracle:thin:@10.174.196.20:1521:orcl
|
||||
#jdbc.jk.username=gk_jk
|
||||
##jdbc.jk.username=z2_5x9jk
|
||||
#jdbc.jk.key=+FaavsHgQ0qBSebsAoochw==
|
||||
#jdbc.jk.password=wBrNar7gX/iQR7IyCSHuSg==
|
||||
|
||||
|
||||
|
||||
bonecp.idleMaxAgeInMinutes=60
|
||||
bonecp.idleConnectionTestPeriodInMinutes=240
|
||||
bonecp.maxConnectionsPerPartition=50
|
||||
bonecp.minConnectionsPerPartition=10
|
||||
bonecp.partitionCount=3
|
||||
bonecp.acquireIncrement=5
|
||||
bonecp.statementsCacheSize=100
|
||||
|
||||
############################################################################################################################################
|
||||
#数据中心神通数据库接口配置
|
||||
############################################################################################################################################
|
||||
#bonecp.cluster.idleMaxAgeInMinutes=60
|
||||
#bonecp.cluster.idleConnectionTestPeriodInMinutes=240
|
||||
#bonecp.cluster.maxConnectionsPerPartition=10
|
||||
#bonecp.cluster.minConnectionsPerPartition=5
|
||||
#bonecp.cluster.partitionCount=3
|
||||
#bonecp.cluster.acquireIncrement=5
|
||||
#bonecp.cluster.statementsCacheSize=100
|
||||
#
|
||||
#jdbc.log.cluster.driver=com.oscar.cluster.BulkDriver
|
||||
#jdbc.log.cluster.url=jdbc:oscarclusterbulk://10.3.129.125:2010/logdb
|
||||
#jdbc.log.cluster.username=xa_z2_iie
|
||||
#jdbc.log.cluster.key=2fa3hQn28+4AOdJXL4Ud2w==
|
||||
#jdbc.log.cluster.password=uut+weC9of5ocPheagBJ4A==
|
||||
############################################################################################################################################
|
||||
#数据中心hive接口配置
|
||||
############################################################################################################################################
|
||||
|
||||
#A版日志库
|
||||
#jdbc.hiveA.driver=org.apache.hive.jdbc.HiveDriver
|
||||
#jdbc.hiveA.url=jdbc:hive2://10.3.130.24:10000/default
|
||||
#jdbc.hiveA.username=xa_z2_mesa
|
||||
#jdbc.hiveA.key=aC/8fTC9vfPVhCk+CDzbAQ==
|
||||
##加密后密码
|
||||
##jdbc.hiveA.password=V3GyFlG8Mg01bTt8ykFVaA==
|
||||
##实际密码
|
||||
#jdbc.hiveA.password=123!@#qwe
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
##B版日志库
|
||||
#jdbc.hiveB.driver=org.apache.hive.jdbc.HiveDriver
|
||||
#jdbc.hiveB.url=jdbc:hive2://10.3.130.25:10000/default
|
||||
#jdbc.hiveB.username=xa_z2_mesa
|
||||
#jdbc.hiveB.key=aC/8fTC9vfPVhCk+CDzbAQ==
|
||||
##加密后密码
|
||||
##jdbc.hiveB.password=V3GyFlG8Mg01bTt8ykFVaA==
|
||||
##实际密码
|
||||
#jdbc.hiveB.password=123!@#qwe
|
||||
#
|
||||
#
|
||||
#bonecp.hive.idleMaxAgeInMinutes=60
|
||||
#bonecp.hive.idleConnectionTestPeriodInMinutes=240
|
||||
#bonecp.hive.maxConnectionsPerPartition=20
|
||||
#bonecp.hive.minConnectionsPerPartition=10
|
||||
#bonecp.hive.partitionCount=3
|
||||
#bonecp.hive.acquireIncrement=5
|
||||
#bonecp.hive.statementsCacheSize=100
|
||||
#
|
||||
#
|
||||
#
|
||||
#############################################################################################################################################
|
||||
##下面的库为测试库,测试完成后会删除
|
||||
#############################################################################################################################################
|
||||
#
|
||||
#jdbc.test.driver=oracle.jdbc.driver.OracleDriver
|
||||
#jdbc.test.url=jdbc:oracle:thin:@10.0.6.212:1523:app
|
||||
#jdbc.test.username=gk_pztest
|
||||
#jdbc.test.key=cV9126WUYdojQjvuKNjidw==
|
||||
#jdbc.test.password=OrTu/cLwlduYPW/tmxqNgQ==
|
||||
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -4,9 +4,10 @@
|
||||
<head>
|
||||
|
||||
<title></title>
|
||||
<link rel="stylesheet" href="${pageContext.request.contextPath}/static/global/plugins/editor.md-master/css/editormd.css" />
|
||||
<link href="${pageContext.request.contextPath}/static/global/plugins/jquery-ztree/3.5.12/css/zTreeStyle/zTreeStyle.min.css" rel="stylesheet" type="text/css"/>
|
||||
<script src="${pageContext.request.contextPath}/static/global/plugins/jquery-ztree/3.5.12/js/jquery.ztree.all-3.5.min.js" type="text/javascript"></script>
|
||||
|
||||
<script type="text/javascript" src="${pageContext.request.contextPath}/static/global/plugins/showdown-master/dist/showdown.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
|
||||
@@ -39,19 +40,65 @@ $(document).ready(function(){
|
||||
//隐藏没有分配父节点权限,却有子节点权限的叶子节点
|
||||
//$("#menuTree").children("li:not(:eq(0))").hide();
|
||||
});
|
||||
var helpHrefVal=null;//用于在editHelp页面使用
|
||||
var toolLang=null;//用于editorHelp页面初始化语言
|
||||
var markdown="";//用于editorHelp填充编辑器内容
|
||||
function showHelp(helpHref) {
|
||||
|
||||
|
||||
var editBtn=$("#editHelp");
|
||||
if(editBtn!=null&&editBtn!=undefined){
|
||||
editBtn.remove();
|
||||
}
|
||||
if(helpHref!=''){
|
||||
var lang = "${cookie.Language.value }".toLowerCase();
|
||||
if(lang=="" || lang.indexOf("en")!=-1) {
|
||||
|
||||
/* if(lang=="" || lang.indexOf("en")!=-1) {
|
||||
helpHref += ".html";
|
||||
}else if(lang.indexOf("cn")!=-1) {
|
||||
helpHref += ".html";
|
||||
}else if(lang.indexOf("ru")!=-1) {
|
||||
helpHref += ".html";
|
||||
} */
|
||||
if(lang=="" || lang.indexOf("en")!=-1) {
|
||||
helpHref += ".md";
|
||||
}else if(lang.indexOf("cn")!=-1) {
|
||||
helpHref += ".md";
|
||||
}else if(lang.indexOf("ru")!=-1) {
|
||||
helpHref += ".md";
|
||||
}
|
||||
$(".help").load("${pageContext.request.contextPath}"+helpHref);
|
||||
toolLang=lang;
|
||||
helpHrefVal=helpHref;
|
||||
//$(".help").load("${pageContext.request.contextPath}"+helpHref+"?time="+new Date().getTime());
|
||||
markdown = $.ajax({
|
||||
type:"get",
|
||||
url: "${pageContext.request.contextPath}"+helpHref,
|
||||
dataType:"text",
|
||||
cache: false,
|
||||
async: false
|
||||
}).responseText;
|
||||
var converter = new showdown.Converter();//初始化showdown
|
||||
$(".help").html(converter.makeHtml(markdown));//将markdown格式文件转为html展示
|
||||
var permission="${fns:getUser().isAdmin() }";
|
||||
|
||||
if(permission!=null&&permission!=undefined&&permission=="true"){
|
||||
$("#menuTree").parent().after('<button class="btn btn-default" id="editHelp" onclick="javascript:editHelp();"><spring:message code="edit"/></button>');
|
||||
}
|
||||
|
||||
}
|
||||
};
|
||||
var helpInfo=null;//保存加载的信息,用于在editHelp页面使用
|
||||
function editHelp(){
|
||||
helpInfo=null;
|
||||
var editBtn=$("#editHelp");
|
||||
if(editBtn!=null&&editBtn!=undefined){
|
||||
editBtn.remove();
|
||||
}
|
||||
helpInfo=$(".help").html();
|
||||
$(".help").load("${pageContext.request.contextPath}/online-help/editHelp.html");
|
||||
|
||||
};
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
@@ -63,9 +110,10 @@ function showHelp(helpHref) {
|
||||
<div class="col-md-2">
|
||||
<div id="menuTree" class="ztree" style="margin-top:3px;float:left;"></div>
|
||||
</div>
|
||||
<div class="col-md-10 help">
|
||||
|
||||
<div class="col-md-10 help" >
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
22
src/main/webapp/online-help/app/DNS_feature_advance.md
Normal file
22
src/main/webapp/online-help/app/DNS_feature_advance.md
Normal file
@@ -0,0 +1,22 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
用户自定义DNS协议特征,为特定应用添加DNS协议的特征。
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* 社交应用:用户选择APP。
|
||||
* 配置描述:用户自定义该条配置的描述信息。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
* 匹配区域:只支持DNS_NAME。
|
||||
* 关键字:添加1个DNS请求域名(只能添加1个),最长1024个字符。
|
||||
* 匹配方式:包含子串匹配、左匹配、有匹配和完全匹配。
|
||||
* 是否十六进制:若关键字填写十六进制格式的DNS请求域名,选择十六进制,否则为非十六进制。
|
||||
* 表达式类型:分为“无表达式”和“与表达式”,“无表达式”可以和任意一种匹配方式组合使用,“与表达式”只能和子串匹配组合使用。
|
||||
|
||||
#### [4.预期效果](#accordion1_4)
|
||||
|
||||
将该DNS特征添加给了指定的APP,如用户产生具有该特征的数据,会有如下效果。* 若用户下发该APP阻断配置,该DNS被阻断,若用户选择生成日志,会有该APP的阻断日志。
|
||||
* 若用户下发该APP监视配置,DNS请求正常工作,若用户选择生成日志,会有该APP的监视日志。
|
||||
* 若用户下发该APP限速配置,户会感知DNS响应变差,若用户选择生成日志,会有该APP的限速日志。
|
||||
33
src/main/webapp/online-help/app/HTTP_feature_advance.md
Normal file
33
src/main/webapp/online-help/app/HTTP_feature_advance.md
Normal file
@@ -0,0 +1,33 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
用户自定义HTTP协议特征,为特定应用添加HTTP协议的特征。
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* 社交应用:用户选择APP。
|
||||
* 配置描述:用户自定义该条配置的描述信息。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
APP HTTP特征限制条件:
|
||||
|
||||
* 匹配区域:选择具体的HTTP特征,包括请求包的特征和应答包的特征。
|
||||
* 关键字:可填多个关键字,最长1024个字符,用回车键分割。
|
||||
* 匹配方式:包含子串匹配、左匹配、有匹配和完全匹配。
|
||||
* 表达式类型:分为“无表达式”和“与表达式”,“无表达式”可以和任意一种匹配方式组合使用,“与表达式”只能和子串匹配组合使用。
|
||||
* 是否十六进制:若关键字填写十六进制格式的特征,选择十六进制,否则为非十六进制。
|
||||
|
||||
IP范围特征限制条件:
|
||||
|
||||
* IP类型:可选IPV4或IPV6。
|
||||
* IP格式:可选IP、IP范围和IP/子网掩码。
|
||||
* 目的IP:IP格式选择“IP”,该文本框填合法的单个IP;IP格式选择“IP范围”,IP段只能配置x.x.x.0-x.x.x.255;IP/子网掩码中子网掩码值限制为16-32。
|
||||
* 目的端口:端口与端口掩码范围是0-65535。
|
||||
* 协议:可选TCP、UDP、全部。全部表示TCP或UDP。
|
||||
* 可为一个应用添加最多3个APP HTTP特征和1个IP范围特征。当同时满足APP HTTP特征和IP范围特征时,该配置才生效。
|
||||
|
||||
#### [4.预期效果](#accordion1_4)
|
||||
|
||||
将该HTTP特征添加给了指定的APP,如用户产生具有该特征的数据,会有如下效果。* 若用户下发该APP阻断配置,请求该HTTP请求被阻断,若用户选择生成日志,会有该APP的阻断日志。
|
||||
* 若用户下发该APP监视配置,HTTP请求正常工作,若用户选择生成日志,会有该APP的监视日志。
|
||||
* 若用户下发该APP限速配置,户会感知HTTP响应变差,若用户选择生成日志,会有该APP的限速日志。
|
||||
22
src/main/webapp/online-help/app/IP_feature_advance.md
Normal file
22
src/main/webapp/online-help/app/IP_feature_advance.md
Normal file
@@ -0,0 +1,22 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
用户自定义IP特征,为特定应用添加IP的特征。
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* 社交应用:用户选择APP。
|
||||
* 配置描述:用户自定义该条配置的描述信息。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
* IP类型:可选IPV4或IPV6。
|
||||
* IP格式:可选IP、IP范围和IP/子网掩码。
|
||||
* 目的IP:IP格式选择“IP”,该文本框填合法的单个IP;IP格式选择“IP范围”,IP段只能配置x.x.x.0-x.x.x.255;IP/子网掩码中子网掩码值限制为16-32。
|
||||
* 目的端口:端口与端口掩码范围是0-65535。
|
||||
* 协议:可选TCP、UDP、全部。全部表示TCP或UDP。
|
||||
|
||||
#### [4.预期效果](#accordion1_4)
|
||||
|
||||
将该IP特征添加给了指定的APP,并产生了该特征的数据流量,有如下效果。* 若用户下发该APP阻断配置,无法连接到该IP地址;
|
||||
* 若用户下发该APP监视配置,IP请求正常工作,若用户选择生成日志,会有该APP的监视日志。
|
||||
* 若用户下发该APP限速配置,户会感知响应变差,若用户选择生成日志,会有该APP的限速日志。
|
||||
43
src/main/webapp/online-help/app/app.md
Normal file
43
src/main/webapp/online-help/app/app.md
Normal file
@@ -0,0 +1,43 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
APP的识别和管控,配置指定APP的封堵、监视、限速功能界面。
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* 配置描述:用户自定义该条配置的描述信息。
|
||||
* 是否记录日志:是否生成日志信息。
|
||||
* 社交应用:选择管控的应用。
|
||||
* 行为类型:选择管控具体行为类型。可选项,不选则对该应用的所有行为进行管控。
|
||||
* 执行动作:APP有3种管控动作:阻断、监视和限速。若选择监视,用户需指定客户端IP。若选择限速,用户需指定限速比例。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
IP类配置,当执行动作选择“监视”,必须填写对应的IP配置。
|
||||
|
||||
* IP类型:IPV4或IPV6。
|
||||
* 协议:可选TCP、UDP和全部。
|
||||
* IP格式:可选IP、IP范围和IP/子网掩码。
|
||||
* 源IP:IP格式选择“IP”,该文本框填合法的单IP;IP格式选择“IP范围”,IP段只能配置x.x.x.0-x.x.x.255;IP/子网掩码中子网掩码值限制为16-32。
|
||||
* 源端口:端口与端口掩码范围是0-65535。
|
||||
* 目的IP:限制同源IP。
|
||||
* 目的端口:端口与端口掩码范围是0-65535。
|
||||
* 另:源IP与目的IP不能相同
|
||||
|
||||
#### [4.配置生效范围](#accordion1_4)
|
||||
|
||||
配置生效范围,分为“全部”和“选择区域”。“全部”指所有地区;“选择区域”需选择区域和运营商,并且可以同时选择多个区域和多个运营商,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:选择来函文件类型,必选项;
|
||||
* 类型:指明该配置的类型,可同时选多个,比如信息内容安全、网络攻击等,非必选项;
|
||||
* 性质:指明该配置的性质,可同时选多个,比如政治事务、暴力恐怖等,非必选项;
|
||||
* 用户标签:用户自定义标签,可同时选多个,非必选项;
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 执行动作选择“阻断”,未选择行为类型,该APP全部功能无法正常使用;如果选择了行为类型,该APP的对应行为无法正常使用;
|
||||
* 执行动作选择“监视”,该APP被正常使用。
|
||||
* 执行动作选择“限速”,户会感知网速变差,当限速比例高达**时,APP出现无法使用的情况。
|
||||
* 若指定了客户端IP,该配置只对该用户生效,其他用户不受影响。
|
||||
* 若选择了记录日志,日志界面出现该配置的日志。
|
||||
41
src/main/webapp/online-help/app/basic_protocol.md
Normal file
41
src/main/webapp/online-help/app/basic_protocol.md
Normal file
@@ -0,0 +1,41 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
基础协议的识别和管控,配置指定协议的封堵、监视界面。
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* 配置描述:用户自定义该条配置的描述信息。
|
||||
* 是否记录日志:是否生成日志信息。
|
||||
* 基础协议:选择管控的协议。
|
||||
* 执行动作:基础协议有两种管控动作:阻断、监视。若选择监视,用户需指定客户端IP相关信息。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
IP类配置,当执行动作选择“监视”,必须填写对应的IP配置。
|
||||
|
||||
* IP类型:IPV4或IPV6。
|
||||
* 协议:可选TCP、UDP和全部。
|
||||
* IP格式:可选IP、IP范围和IP/子网掩码。
|
||||
* 源IP:IP格式选择“IP”,该文本框填合法的单IP;IP格式选择“IP范围”,IP段只能配置x.x.x.0-x.x.x.255;IP/子网掩码中子网掩码值限制为16-32。
|
||||
* 源端口:端口与端口掩码范围是0-65535。
|
||||
* 目的IP:限制同源IP。
|
||||
* 目的端口:端口与端口掩码范围是0-65535。
|
||||
* 另:源IP与目的IP不能相同
|
||||
|
||||
#### [4.配置生效范围](#accordion1_4)
|
||||
|
||||
配置生效范围,分为“全部”和“选择区域”。“全部”指所有地区;“选择区域”需选择区域和运营商,并且可以同时选择多个区域和多个运营商,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:选择来函文件类型,必选项;
|
||||
* 类型:指明该配置的类型,可同时选多个,比如信息内容安全、网络攻击等,非必选项;
|
||||
* 性质:指明该配置的性质,可同时选多个,比如政治事务、暴力恐怖等,非必选项;
|
||||
* 用户标签:用户自定义标签,可同时选多个,非必选项;
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 执行动作选择“阻断”,使用该协议的应用全部无法正常使用;
|
||||
* 执行动作选择“监视”,使用该协议的应用不受影响。
|
||||
* 若指定了客户端IP,该配置只对该用户生效,其他用户不受影响。
|
||||
* 若选择了记录日志,日志界面出现该配置的日志。
|
||||
20
src/main/webapp/online-help/app/domain_feature_advance.md
Normal file
20
src/main/webapp/online-help/app/domain_feature_advance.md
Normal file
@@ -0,0 +1,20 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
用户自定义域名特征,为特定应用添加域名的特征。
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* 社交应用:用户选择APP。
|
||||
* 配置描述:用户自定义该条配置的描述信息。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
* 域名:填写正确的域名,最长1024字符。
|
||||
* 匹配方式:包含子串匹配、左匹配、有匹配和完全匹配。
|
||||
* 是否十六进制:若关键字填写十六进制格式的特征,选择十六进制,否则为非十六进制。
|
||||
|
||||
#### [4.预期效果](#accordion1_4)
|
||||
|
||||
将该域名特征添加给了指定的APP,如用户产生具有该特征的数据,会有如下效果。* 若用户下发该APP阻断配置,请求该域名被阻断,若用户选择生成日志,会有该APP的阻断日志。
|
||||
* 若用户下发该APP监视配置,域名请求正常工作,若用户选择生成日志,会有该APP的监视日志。
|
||||
* 若用户下发该APP限速配置,户会感知域名响应变差,若用户选择生成日志,会有该APP的限速日志。
|
||||
34
src/main/webapp/online-help/app/payload_feature_advance.md
Normal file
34
src/main/webapp/online-help/app/payload_feature_advance.md
Normal file
@@ -0,0 +1,34 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
用户自定义数据包载荷特征,为特定应用添加载荷的特征。
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* 社交应用:用户选择APP。
|
||||
* 配置描述:用户自定义该条配置的描述信息。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
APP载荷类约束条件:
|
||||
|
||||
* 匹配区域:共7类APP载荷特征,分别是:载荷、C2S载荷、S2C载荷,C2S方向包序列,S2C方向包序列,二层头,三层头。
|
||||
* 关键字:可填多个关键字,最长1024字符,用回车键分割。
|
||||
* 匹配方式:包含子串匹配、左匹配、有匹配和完全匹配。
|
||||
* 表达式类型:分为“无表达式”和“与表达式”,“无表达式”可以和任意一种匹配方式组合使用,“与表达式”只能和子串匹配组合使用。
|
||||
* 是否十六进制:十六进制的
|
||||
|
||||
IP类约束条件:
|
||||
|
||||
* IP类型:可选IPV4或IPV6。
|
||||
* IP格式:可选IP、IP范围和IP/子网掩码。
|
||||
* 目的IP:IP格式选择“IP”,该文本框填合法的单个IP;IP格式选择“IP范围”,IP段只能配置x.x.x.0-x.x.x.255;IP/子网掩码中子网掩码值限制为16-32。
|
||||
* 目的端口:端口与端口掩码范围是0-65535。
|
||||
* 协议:可选TCP、UDP、全部。全部表示TCP或UDP。
|
||||
|
||||
可为一个应用添加最多3个APP载荷特征和1个IP范围特征。当同时满足APP载荷特征和IP范围特征时,该配置才生效。
|
||||
|
||||
#### [4.预期效果](#accordion1_4)
|
||||
|
||||
将该载荷特征添加给了指定的APP,如用户产生具有该载荷特征的数据,会有如下效果。* 若用户下发该APP阻断配置,具有该载荷特征的数据流被阻断,若用户选择生成日志,会有该APP的阻断日志。;
|
||||
* 若用户下发该APP监视配置,具有该载荷特征的数据正常工作,若用户选择生成日志,会有该APP的监视日志。
|
||||
* 若用户下发该APP限速配置,户会感知响应变差,若用户选择生成日志,会有该APP的限速日志。
|
||||
33
src/main/webapp/online-help/app/ssl_feature_advance.md
Normal file
33
src/main/webapp/online-help/app/ssl_feature_advance.md
Normal file
@@ -0,0 +1,33 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
用户自定义SSL协议特征,为特定应用添加SSL协议的特征。
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* 社交应用:用户选择APP。
|
||||
* 配置描述:用户自定义该条配置的描述信息。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
APP SSL类约束条件:
|
||||
|
||||
* 匹配区域:选择具体的SSL特征。
|
||||
* 关键字:可填多个关键字,最长1024字符,用回车键分割。比如匹配区域选择SSL_SNI,关键字填完整的域名,用户需按实际情况填写,可参考抓包工具的数据包解析结果。
|
||||
* 匹配方式:包含子串匹配、左匹配、有匹配和完全匹配。
|
||||
* 是否十六进制:若关键字填写十六进制格式的特征,选择十六进制,否则为非十六进制。
|
||||
|
||||
IP类约束条件:
|
||||
|
||||
* IP类型:可选IPV4或IPV6。
|
||||
* IP格式:可选IP、IP范围和IP/子网掩码。
|
||||
* 目的IP:IP格式选择“IP”,该文本框填合法的单个IP;IP格式选择“IP范围”,IP段只能配置x.x.x.0-x.x.x.255;IP/子网掩码中子网掩码值限制为16-32。
|
||||
* 目的端口:端口与端口掩码范围是0-65535。
|
||||
* 协议:可选TCP、UDP、全部。全部表示TCP或UDP。
|
||||
|
||||
可为一个应用添加最多3个APP SSL特征和1个IP范围特征。当同时满足APP SSL特征和IP范围特征时,该配置才生效。
|
||||
|
||||
#### [4.预期效果](#accordion1_4)
|
||||
|
||||
将该SLL特征添加给了指定的APP,如用户产生具有该特征的数据,会有如下效果。* 若用户下发该APP阻断配置,具有该特征的数据流被阻断,若用户选择生成日志,会有该APP的阻断日志。
|
||||
* 若用户下发该APP监视配置,具有该特征的数据正常工作,若用户选择生成日志,会有该APP的监视日志。
|
||||
* 若用户下发该APP限速配置,户会感知响应变差,若用户选择生成日志,会有该APP的限速日志。
|
||||
42
src/main/webapp/online-help/app/tunnel_behavior.md
Normal file
42
src/main/webapp/online-help/app/tunnel_behavior.md
Normal file
@@ -0,0 +1,42 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
对用户使用加密隧道的行为进行识别和管控,比如识别用户使用加密隧道进行视频通话的行为。
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* 配置描述:用户自定义该条配置的描述信息。
|
||||
* 是否记录日志:是否生成日志信息。
|
||||
* 加密隧道协议:选择一种加密隧道协议。
|
||||
* 行为类型:包括“视频”和“其他”,视频指实时视频通话,注意,使用youtube播放视频属于“其他”。
|
||||
* 执行动作:加密隧道行为有两种管控动作:阻断、监视。若选择监视,用户需指定客户端相关信息。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
IP类配置,当执行动作选择“监视”,必须填写对应的IP配置。
|
||||
|
||||
* IP类型:IPV4或IPV6。
|
||||
* 协议:可选TCP、UDP和全部。
|
||||
* IP格式:可选IP、IP范围和IP/子网掩码。
|
||||
* 源IP:IP格式选择“IP”,该文本框填合法的单IP;IP格式选择“IP范围”,IP段只能配置x.x.x.0-x.x.x.255;IP/子网掩码中子网掩码值限制为16-32。
|
||||
* 源端口:端口与端口掩码范围是0-65535。
|
||||
* 目的IP:限制同源IP。
|
||||
* 目的端口:端口与端口掩码范围是0-65535。
|
||||
* 另:源IP与目的IP不能相同
|
||||
|
||||
#### [4.配置生效范围](#accordion1_4)
|
||||
|
||||
配置生效范围,分为“全部”和“选择区域”。“全部”指所有地区;“选择区域”需选择区域和运营商,并且可以同时选择多个区域和多个运营商,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:选择来函文件类型,必选项;
|
||||
* 类型:指明该配置的类型,可同时选多个,比如信息内容安全、网络攻击等,非必选项;
|
||||
* 性质:指明该配置的性质,可同时选多个,比如政治事务、暴力恐怖等,非必选项;
|
||||
* 用户标签:用户自定义标签,可同时选多个,非必选项;
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 执行动作选择“阻断”,使用该协议的应用全部无法正常使用;若指定了行为,只有该行为无法正常使用。
|
||||
* 执行动作选择“监视”,使用该协议的应用不受影响。
|
||||
* 若指定了客户端IP,该配置只对该用户生效,其他用户不受影响。
|
||||
* 若选择了记录日志,日志界面出现该配置的日志。
|
||||
102
src/main/webapp/online-help/editHelp.html
Normal file
102
src/main/webapp/online-help/editHelp.html
Normal file
@@ -0,0 +1,102 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>markdown test</title>
|
||||
<meta charset="utf-8" />
|
||||
<script type="text/javascript" src="../../static/global/plugins/jquery.min.js"></script>
|
||||
<link rel="stylesheet" href="../../static/global/plugins/editor.md-master/css/editormd.css" />
|
||||
<script type="text/javascript" src="../../static/global/plugins/editor.md-master/editormd.js"></script>
|
||||
<script type="text/javascript" src="../../static/global/plugins/showdown-master/dist/showdown.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
//初始化编辑器
|
||||
var testEditor;
|
||||
var converter = new showdown.Converter();//初始化showdown编辑器
|
||||
$(function () {
|
||||
testEditor = editormd("editormd-help", {
|
||||
width: "90%",
|
||||
height: 740,
|
||||
path: '../../static/global/plugins/editor.md-master/lib/',
|
||||
toolbarIcons:function(){
|
||||
return ["undo","redo","|","bold","del","italic","quote","ucwords","uppercase","lowercase","|","h1","h2","h3","h4","h5","h6","|","list-ul","list-ol","hr","link","reference-link","|","code-block","table","|","watch","clear","|","save"];
|
||||
},
|
||||
// 用于增加自定义工具栏的功能,可以直接插入HTML标签,不使用默认的元素创建图标
|
||||
toolbarCustomIcons : {
|
||||
save : "<button type=\"button\" class=\"btn btn-primary\" onclick=\"javascript:saveHelpInfo()\">save</button>",
|
||||
},
|
||||
markdown: "",
|
||||
codeFold: true,
|
||||
syncScrolling : true, //编辑区和预览区同步滚动
|
||||
// //这个配置在simple.html中并没有,但是为了能够提交表单,使用这个配置可以让构造出来的HTML代码直接在第二个隐藏的textarea域中,方便post提交表单。
|
||||
saveHTMLToTextarea: true, // 保存 HTML 到 Textarea
|
||||
searchReplace: true,
|
||||
watch : false, // 关闭实时预览
|
||||
htmlDecode: "style,script,iframe|on*", // 开启 HTML 标签解析,为了安全性,默认不开启
|
||||
emoji: true,
|
||||
taskList: true,
|
||||
tocm: true, // Using [TOCM]
|
||||
tex: true, // 开启科学公式TeX语言支持,默认关闭
|
||||
flowChart: true, // 开启流程图支持,默认关闭
|
||||
sequenceDiagram: true ,// 开启时序/序列图支持,默认关闭
|
||||
onload: function(){
|
||||
if(toolLang!=null&&toolLang!=undefined){
|
||||
if(toolLang.indexOf("cn")==-1){
|
||||
var path="../../static/global/plugins/editor.md-master/languages/";//插件语言包目录
|
||||
if(toolLang==""||toolLang.indexOf("en")!=-1){//设置菜单栏默认语言为 en
|
||||
toolLang="en";
|
||||
}else if(toolLang.indexOf("ru")!=-1){
|
||||
//toolLang="ru";
|
||||
toolLang="en";//暂时设置为英文,如有俄文,需改为ru
|
||||
}
|
||||
editormd.loadScript(path + toolLang, function() {
|
||||
testEditor.lang = editormd.defaults.lang;
|
||||
// 只重建涉及语言包的部分,如工具栏、弹出对话框等
|
||||
testEditor.recreate();
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
//var markdown=converter.makeMarkdown(helpInfo);//将提取的页面数据
|
||||
$("#edit_help_textarea").text(markdown);
|
||||
});
|
||||
function saveHelpInfo(){
|
||||
//var helpInfoval=testEditor.getTextareaSavedHTML();
|
||||
var helpInfoval=$("#edit_help_textarea").text();
|
||||
clearAlter();
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "/gwall/nis/sys/saveHelp",
|
||||
dataType:"json",
|
||||
data: "editedHelpInfo="+encodeURIComponent(encodeURIComponent(helpInfoval))+"&helpHrefVal="+encodeURIComponent(helpHrefVal),
|
||||
success: function(data){
|
||||
if(data){
|
||||
clearAlter();
|
||||
$(".help").prepend("<div class=\"alert alert-success alert-dismissable\"><button type=\"button\" class=\"close\" data-dismiss=\"alert\"aria-hidden=\"true\">×</button>save successs</div>");
|
||||
}else{
|
||||
clearAlter();
|
||||
$(".help").prepend("<div class=\"alert alert-danger alert-dismissable\"><button type=\"button\" class=\"close\" data-dismiss=\"alert\"aria-hidden=\"true\">×</button>save faild</div>");
|
||||
}
|
||||
},
|
||||
error:function(msg){
|
||||
clearAlter();
|
||||
$(".help").prepend("<div class=\"alert alert-danger alert-dismissable\"><button type=\"button\" class=\"close\" data-dismiss=\"alert\"aria-hidden=\"true\">×</button>save faild</div>");
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function clearAlter(){
|
||||
var alertObj=$(".alert");
|
||||
if(alertObj!=null&&alertObj!=undefined){
|
||||
alertObj.remove();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="editormd-help" >
|
||||
<textarea style="display:none;" id="edit_help_textarea"></textarea>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
44
src/main/webapp/online-help/ntc/BGP.md
Normal file
44
src/main/webapp/online-help/ntc/BGP.md
Normal file
@@ -0,0 +1,44 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成针对BGP流量的配置,从而对包含特定IP或AS特征的BGP流量进行监测或阻断。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作,是否记录管控日志。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为阻断、监测二选一。
|
||||
* 是否记录日志:对网络流量施加执行动作时,是否记录命中BGP协议配置的流量信息,包括发现时间、IP、AS等。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
BGP协议管控的流量属性信息:
|
||||
|
||||
* AS:配置自治系统的关键词,精确匹配,非二进制,大小写不敏感。
|
||||
* IP:选择IP类型、协议、IP模式、端口模式,并且填写对应的具体IP与端口值,选择匹配方向是单向还是双向匹配。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
BGP协议管控配置的属性信息:
|
||||
|
||||
* 源IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 源端口:端口与端口掩码范围是0-65535。
|
||||
* 目的IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 目的端口:端口与端口掩码范围是0-65535。
|
||||
* 另:源IP与目的IP不能相同。
|
||||
|
||||
#### [4.配置生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 监测预期效果:记录符合配置条件的BGP流量监测日志。
|
||||
* 阻断预期效果:阻断符合配置条件的BGP流量,并记录阻断日志。
|
||||
45
src/main/webapp/online-help/ntc/DNS.md
Normal file
45
src/main/webapp/online-help/ntc/DNS.md
Normal file
@@ -0,0 +1,45 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成针对DNS流量的配置,从而对包含特定IP或DNS关键词特征的DNS流量进行监测或阻断。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作,是否记录管控日志。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为阻断、监测二选一。
|
||||
* 是否记录日志:对网络流量施加执行动作时,是否记录命中DNS协议配置的流量信息,包括发现时间、IP、请求内容等。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
DNS协议管控的流量属性信息:
|
||||
|
||||
* keyword:DNS关键词。匹配字段选择,例如QNAME;关键字填写;表达式类型选择,支持选择与表达式;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* IP:选择IP类型、协议、IP模式、端口模式,并且填写对应的具体IP与端口值,选择匹配方向是单向还是双向匹配。
|
||||
* Subscribe ID:IP地址对应的用户信息关键字,子串匹配,非二进制,大小写不敏感。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
DNS协议管控配置的属性信息:
|
||||
|
||||
* 客户端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 客户端端口:端口与端口掩码范围是0-65535。
|
||||
* 服务端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 服务端端口:端口与端口掩码范围是0-65535。
|
||||
* 另:客户端IP与服务端IP不能相同。
|
||||
|
||||
#### [4.配置生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 监测预期效果:记录符合配置条件的DNS流量监测日志。
|
||||
* 阻断预期效果:阻断符合配置条件的DNS请求或对符合配置条件的DNS请求抢答欺骗包,并记录阻断日志。
|
||||
46
src/main/webapp/online-help/ntc/FTP.md
Normal file
46
src/main/webapp/online-help/ntc/FTP.md
Normal file
@@ -0,0 +1,46 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成针对FTP流量的配置,从而对包含特定IP、URL或内容特征的FTP流量进行监测或阻断。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作,是否记录管控日志。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为阻断、监测二选一。
|
||||
* 是否记录日志:对网络流量施加执行动作时,是否记录命中FTP协议配置的流量信息,包括发现时间、IP、URL等。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
FTP协议扩展管控的流量属性信息:
|
||||
|
||||
* URL:FTP的URL。关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;非二进制;大小写不敏感。
|
||||
* FTP内容:关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* IP:选择IP类型、协议、IP模式、端口模式,并且填写对应的具体IP与端口值,选择匹配方向是单向还是双向匹配。
|
||||
* Subscribe ID:IP地址对应的用户信息关键字,子串匹配,非二进制,大小写不敏感。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
FTP协议管控配置的属性信息:
|
||||
|
||||
* 客户端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 客户端端口:端口与端口掩码范围是0-65535。
|
||||
* 服务端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 服务端端口:端口与端口掩码范围是0-65535。
|
||||
* 另:客户端IP与服务端IP不能相同。
|
||||
|
||||
#### [4.配置生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 监测预期效果:记录符合配置条件的FTP流量监测日志。
|
||||
* 阻断预期效果:阻断符合配置条件的FTP访问,即无法获取到该FTP内容,并记录阻断日志。
|
||||
34
src/main/webapp/online-help/ntc/HTTP_URL.md
Normal file
34
src/main/webapp/online-help/ntc/HTTP_URL.md
Normal file
@@ -0,0 +1,34 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成针对HTTP流量的配置,从而对包含特定URL特征的HTTP流量进行加入白名单、监测或阻断。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为白名单、阻断、监测三选一。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
HTTP协议管控的流量属性信息:
|
||||
|
||||
* URL:HTTP统一资源定位符关键词。关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;非二进制;大小写不敏感。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
#### [4.配置生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 监测预期效果:记录符合配置条件的HTTP流量监测日志。
|
||||
* 阻断预期效果:阻断符合配置条件的HTTP访问,即访问页面无响应,并记录阻断日志。
|
||||
54
src/main/webapp/online-help/ntc/HTTP_advanced.md
Normal file
54
src/main/webapp/online-help/ntc/HTTP_advanced.md
Normal file
@@ -0,0 +1,54 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成针对HTTP流量的扩展配置,从而对包含特定IP、URL、字段或内容特征的HTTP流量进行监测或阻断。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作,是否记录管控日志。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为阻断、监测二选一。
|
||||
* 是否记录日志:对网络流量施加执行动作时,是否记录命中HTTP扩展配置的流量信息,包括发现时间、IP、URL、请求头、请求体、响应头、响应体等。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
HTTP协议扩展管控的流量属性信息,分为请求侧与响应侧。 请求侧:
|
||||
|
||||
* URL:关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* 字段:匹配字段选择,例如User Agent、Cookie等;关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* 请求消息体:关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* IP:选择IP类型、协议、IP模式、端口模式,并且填写对应的具体IP与端口值,选择匹配方向是单向还是双向匹配。
|
||||
* Subscribe ID:IP地址对应的用户信息关键字,子串匹配,非二进制,大小写不敏感。
|
||||
|
||||
响应侧:
|
||||
|
||||
* 响应头域字段:匹配字段选择,例如set-cookie、Content-Type等;关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* 响应消息体:关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* IP:选择IP类型、协议、IP模式、端口模式,并且填写对应的具体IP与端口值,选择匹配方向是单向还是双向匹配。
|
||||
* Subscribe ID:IP地址对应的用户信息关键字,子串匹配,非二进制,大小写不敏感。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
HTTP协议扩展管控配置的属性信息:
|
||||
|
||||
* 客户端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 客户端端口:端口与端口掩码范围是0-65535。
|
||||
* 服务端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 服务端端口:端口与端口掩码范围是0-65535。
|
||||
* 另:客户端IP与服务端IP不能相同。
|
||||
|
||||
#### [4.配置生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 监测预期效果:记录符合配置条件的HTTP流量监测日志。
|
||||
* 阻断预期效果:阻断符合配置条件的HTTP访问,即访问页面无响应,并记录阻断日志。
|
||||
36
src/main/webapp/online-help/ntc/HTTP_website.md
Normal file
36
src/main/webapp/online-help/ntc/HTTP_website.md
Normal file
@@ -0,0 +1,36 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成针对HTTP流量的配置,从而对包含特定网站关键词特征的HTTP流量进行监测或阻断。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作,是否记录管控日志。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为阻断、监测二选一。
|
||||
* 是否记录日志:对网络流量施加执行动作时,是否记录命中配置的HTTP流量信息,包括发现时间、IP、URL、请求头、请求体、响应头、响应体等。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
HTTP协议网站管控的流量属性信息,分为请求侧与响应侧:
|
||||
|
||||
* 请求侧消息体关键词:关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* 响应侧消息体关键词:关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
#### [4.配置生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 监测预期效果:记录符合配置条件的HTTP流量监测日志。
|
||||
* 阻断预期效果:阻断符合配置条件的HTTP访问,即访问页面无响应,并记录阻断日志。
|
||||
45
src/main/webapp/online-help/ntc/Mail.md
Normal file
45
src/main/webapp/online-help/ntc/Mail.md
Normal file
@@ -0,0 +1,45 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成针对Mail流量的配置,从而对包含特定IP、收发件人特征的Mail流量进行监测或阻断。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作,是否记录管控日志。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为阻断、监测二选一。
|
||||
* 是否记录日志:对网络流量施加执行动作时,是否记录命中Mail协议配置的流量信息,包括发现时间、IP、收发件人等。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
MAIL协议管控的流量属性信息:
|
||||
|
||||
* Mail头部关键词:匹配字段选择,例如发件人From与收件人To;关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* IP:选择IP类型、协议、IP模式、端口模式,并且填写对应的具体IP与端口值,选择匹配方向是单向还是双向匹配。
|
||||
* Subscribe ID:IP地址对应的用户信息关键字,子串匹配,非二进制,大小写不敏感。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
MAIL协议管控配置的属性信息:
|
||||
|
||||
* 客户端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 客户端端口:端口与端口掩码范围是0-65535。
|
||||
* 服务端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 服务端端口:端口与端口掩码范围是0-65535。
|
||||
* 另:客户端IP与服务端IP不能相同。
|
||||
|
||||
#### [4.生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 监测预期效果:记录符合配置条件的Mail流量监测日志。
|
||||
* 阻断预期效果:阻断符合配置条件的Mail邮件,即该邮件无法正常发送或接收,并记录阻断日志。
|
||||
46
src/main/webapp/online-help/ntc/Mail_advanced.md
Normal file
46
src/main/webapp/online-help/ntc/Mail_advanced.md
Normal file
@@ -0,0 +1,46 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成针对Mail流量的扩展配置,从而对包含特定IP、收发件人、主题或邮件正文特征的Mail流量进行监测或阻断。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作,是否记录管控日志。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为阻断、监测二选一。
|
||||
* 是否记录日志:对网络流量施加执行动作时,是否记录命中Mail协议扩展配置的流量信息,包括发现时间、IP、收发件人等。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
MAIL协议扩展管控的流量属性信息:
|
||||
|
||||
* Mail头部关键词:匹配字段选择,例如发件人From、收件人To、主题;关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* Mail正文关键词:匹配字段选择,例如正文内容、附件名称、附件内容;关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* IP:选择IP类型、协议、IP模式、端口模式,并且填写对应的具体IP与端口值,选择匹配方向是单向还是双向匹配。
|
||||
* Subscribe ID:IP地址对应的用户信息关键字,子串匹配,非二进制,大小写不敏感。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
MAIL协议管控配置的属性信息:
|
||||
|
||||
* 客户端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 客户端端口:端口与端口掩码范围是0-65535。
|
||||
* 服务端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 服务端端口:端口与端口掩码范围是0-65535。
|
||||
* 另:客户端IP与服务端IP不能相同。
|
||||
|
||||
#### [4.配置生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 监测预期效果:记录符合配置条件的Mail流量监测日志。
|
||||
* 阻断预期效果:阻断符合配置条件的Mail邮件,即该邮件无法正常发送或接收,并记录阻断日志。
|
||||
47
src/main/webapp/online-help/ntc/SSL.md
Normal file
47
src/main/webapp/online-help/ntc/SSL.md
Normal file
@@ -0,0 +1,47 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成针对SSL流量的配置,从而对包含特定IP、SNI、SAN或CN特征的SSL流量进行监测或阻断。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作,是否记录管控日志。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为阻断、监测二选一。
|
||||
* 是否记录日志:对网络流量施加执行动作时,是否记录命中SSL协议配置的流量信息,包括发现时间、IP、SNI、SAN、CN等。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
SSL协议管控的流量属性信息:
|
||||
|
||||
* SNI:SSL请求服务器名称指示关键词。关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* SAN:SSL域名主体替代名称关键词。关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* CN:SSL域名通用名关键词。关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流);是否大小写敏感选择。
|
||||
* IP:选择IP类型、协议、IP模式、端口模式,并且填写对应的具体IP与端口值,选择匹配方向是单向还是双向匹配。
|
||||
* Subscribe ID:IP地址对应的用户信息关键字,子串匹配,非二进制,大小写不敏感。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
SSL协议管控配置的属性信息:
|
||||
|
||||
* 客户端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 客户端端口:端口与端口掩码范围是0-65535。
|
||||
* 服务端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 服务端端口:端口与端口掩码范围是0-65535。
|
||||
* 另:客户端IP与服务端IP不能相同。
|
||||
|
||||
#### [4.配置生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 监测预期效果:记录符合配置条件的SSL流量监测日志。
|
||||
* 阻断预期效果:阻断符合配置条件的SSL网络流量,例如阻止某次特定HTTPS访问,并记录阻断日志。
|
||||
46
src/main/webapp/online-help/ntc/ip_address.md
Normal file
46
src/main/webapp/online-help/ntc/ip_address.md
Normal file
@@ -0,0 +1,46 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成对网络流量IP特征的配置,对包含特定IP特征的流量进行阻断、监测、丢弃或限速。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作,是否记录管控日志。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为阻断、监测、丢弃、限速四选一。
|
||||
* 是否记录日志:对网络流量施加执行动作时,是否命中IP配置的网络流量信息,包括发现时间、IP、端口等。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
IP地址管控的流量属性信息:
|
||||
|
||||
* IP:选择IP类型、协议、IP模式、端口模式,并且填写对应的具体IP与端口值,选择匹配方向是单向还是双向匹配。
|
||||
* ASN:自治系统号选择,可以选择下拉菜单中的自治系统。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
IP管控配置的属性信息:
|
||||
|
||||
* 客户端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 客户端端口:端口与端口掩码范围是0-65535。
|
||||
* 服务端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 服务端端口:端口与端口掩码范围是0-65535。
|
||||
* 另:客户端IP与服务端IP不能相同。
|
||||
|
||||
#### [4.配置生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 监测预期效果:记录符合配置条件的IP监测流量日志。
|
||||
* 阻断预期效果:阻断承载于配置IP或IP组之上的TCP流量,即发送TCP的RST报文,并记录阻断日志。
|
||||
* 限速预期效果:限制承载于配置IP或IP组之上网络流量的传输速率。
|
||||
* 丢弃预期效果:丢弃承载于配置IP或IP组之上的网络流量报文,使得目的端无法收到报文。
|
||||
34
src/main/webapp/online-help/ntc/ip_white_list.md
Normal file
34
src/main/webapp/online-help/ntc/ip_white_list.md
Normal file
@@ -0,0 +1,34 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成针对网络流量的IP白名单配置,将特定IP或IP组设置为白名单。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为单一选项白名单。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
此处指流量的IP属性:即配置特定IP为白名单。
|
||||
|
||||
* IP Type:IP类型,可以选择IPv4或者IPv6。
|
||||
* IP Pattern:IP配置模式,可以选择特定IP、IP段或者IP掩码三种模式。
|
||||
* Client IP:具体的IP白名单配置。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
IP白名单配置的属性信息:
|
||||
|
||||
* 客户端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 客户端端口:端口与端口掩码范围是0-65535。
|
||||
* 服务端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 服务端端口:端口与端口掩码范围是0-65535。
|
||||
* 另:客户端IP与服务端IP不能相同。
|
||||
|
||||
#### [4.配置标签](#accordion1_6)
|
||||
|
||||
#### [5.预期效果](#accordion1_7)
|
||||
|
||||
设置为白名单的IP或IP组上的网络流量不受其他配置的控制与影响,其上所有网络行为皆可正常无虞。
|
||||
54
src/main/webapp/online-help/ntc/p2p.md
Normal file
54
src/main/webapp/online-help/ntc/p2p.md
Normal file
@@ -0,0 +1,54 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成针对P2P流量(包括EMULE协议与BT协议)的配置,从而对包含特定IP、EMULE搜索关键词与文件标识的P2P流量进行监测或阻断。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作,是否记录管控日志。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为阻断、监测二选一。
|
||||
* 是否记录日志:对网络流量施加执行动作时,是否记录命中配置的P2P流量信息,包括发现时间、IP、文件标识等。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
P2P协议扩展管控的流量属性信息:
|
||||
|
||||
* EMULE 搜索关键词:关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* 文件标识:首先选择标识类型,BT INFO 或者EMULE fileid;关键字填写十六进制数标识;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是二进制;大小写敏感。
|
||||
* IP:IP配置类型,EMULE SERVER、BT TRACKER分别为客户端与EMULE、BT服务器的通信,EMULE NODE、BT NODE分别为客户端与客户端之间的通信,IP配置类型四选一;选择IP类型、协议与客户端与服务端的IP模式、端口模式,并且填写对应的具体IP与端口值,选择匹配方向是单向还是双向匹配。
|
||||
* Subscribe ID:IP地址对应的用户信息关键字。关键字填写;子串匹配,非二进制,大小写不敏感。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
P2P协议管控配置的属性信息:
|
||||
|
||||
* BT INFO:长度不超过20Byte。
|
||||
* EMULE Fileid:长度不超过16Byte。
|
||||
* 客户端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 客户端端口:端口与端口掩码范围是0-65535。
|
||||
* 服务端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 服务端端口:端口与端口掩码范围是0-65535。
|
||||
* 另:客户端IP与服务端IP不能相同。
|
||||
|
||||
#### [4.配置生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* IP封堵效果:BT客户端(关闭utp及DHT相关设置)新添加的种子文件速度为0;Emule客户端(关闭迷惑协议)新添加的下载文件速度为0,Emule客户端服务器(不包括KAD网络)连接失败,无法进行Servers搜索。
|
||||
* IP监测效果:BT返回该链接含有的infohash值,Emule返回该链接含有的fileid和keywordhash或搜素关键词等信息。
|
||||
* BT INFOHASH封堵:客户端中对应要封堵的INFOHASH无下载速度(需先下配置,再新建bt下载任务),如果选择记录日志,则返回相应的INFOHASH封堵日志。
|
||||
* BT INFOHASH监测:客户端中对应监测INFOHASH无影响(需先下配置,再新建bt下载任务),返回对应的INFOHASH监测日志。
|
||||
* EMULE FILEID封堵:客户端中对应要封堵的FILEID无下载速度(需先下配置,再新建文件下载任务),如果选择记录日志,则返回相应的EMULE封堵日志。
|
||||
* EMULE FILEID监测:客户端中对应监测FILEID无影响(需先下配置,再新建文件下载任务),返回对应的监测日志。
|
||||
* EMULE搜索关键词命中封堵配置时,显示搜索结果列表为空,返回相应的EMULE封堵日志。
|
||||
* EMULE搜索关键词命中监测配置时,对搜索结果没有影响,界面返回实际对应的搜索关键词信息。
|
||||
45
src/main/webapp/online-help/ntc/stream_media.md
Normal file
45
src/main/webapp/online-help/ntc/stream_media.md
Normal file
@@ -0,0 +1,45 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成针对流媒体流量(包括 RTSP协议与RTMP协议)的配置,从而对包含特定IP或URL特征的流媒体流量进行监测或阻断。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作,是否记录管控日志。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为阻断、监测二选一。
|
||||
* 是否记录日志:对网络流量施加执行动作时,是否记录命中流媒体配置的流量信息,包括发现时间、IP、URL等。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
流媒体协议扩展管控的流量属性信息:
|
||||
|
||||
* URL:流媒体的URL。关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;非二进制;大小写不敏感。
|
||||
* IP:选择IP类型、协议、IP模式、端口模式,并且填写对应的具体IP与端口值,选择匹配方向是单向还是双向匹配。
|
||||
* Subscribe ID:IP地址对应的用户信息关键字,子串匹配,非二进制,大小写不敏感。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
流媒体协议管控配置的属性信息:
|
||||
|
||||
* 客户端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 客户端端口:端口与端口掩码范围是0-65535。
|
||||
* 服务端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 服务端端口:端口与端口掩码范围是0-65535。
|
||||
* 另:客户端IP与服务端IP不能相同。
|
||||
|
||||
#### [4.生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 监测预期效果:记录符合配置条件的流媒体流量监测日志。
|
||||
* 阻断预期效果:阻断符合配置条件的流媒体流量,即客户端无法正常访问并播放该流媒体音视频内容,并记录阻断日志。
|
||||
46
src/main/webapp/online-help/ntc/voip.md
Normal file
46
src/main/webapp/online-help/ntc/voip.md
Normal file
@@ -0,0 +1,46 @@
|
||||
#### [0.功能简介](#accordion1_0)
|
||||
|
||||
本页面完成针对VoIP流量(包括SIP协议与RTP协议)的配置,从而对包含特定IP、VoIP账号特征的VoIP流量进行监测或阻断。
|
||||
|
||||
#### [1.配置基础信息](#accordion1_1)
|
||||
|
||||
配置基础信息包括:规则名称,执行动作,是否记录管控日志。
|
||||
|
||||
* 规则名称:用户自定义的该条配置的描述信息。
|
||||
* 执行动作:配置施加于网络传输单元时,对网络流量施加什么样的动作,此处为阻断、监测二选一。
|
||||
* 是否记录日志:对网络流量施加执行动作时,是否记录命中配置的VoIP流量信息,包括发现时间、IP、VoIP主被叫账号、通话语音等。
|
||||
|
||||
#### [2.业务配置属性](#accordion1_2)
|
||||
|
||||
VoIP协议扩展管控的流量属性信息:
|
||||
|
||||
* VoIP账号:关键字填写;匹配方式选择,例如子串匹配、前缀匹配、后缀匹配与精确匹配;是否二进制选择(此处是指关键字内容是否为二进制原始码流,选择是,则关键字处填写十六进制数);是否大小写敏感选择。
|
||||
* IP:选择IP类型、协议与客户端与服务端的IP模式、端口模式,并且填写对应的具体IP与端口值,选择匹配方向是单向还是双向匹配。
|
||||
* Subscribe ID:IP地址对应的用户信息关键字。关键字填写;子串匹配,非二进制,大小写不敏感。
|
||||
|
||||
#### [3.配置约束条件](#accordion1_3)
|
||||
|
||||
VoIP协议管控配置的属性信息:
|
||||
|
||||
* VoIP账号:长度不超过1500Byte。
|
||||
* 客户端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 客户端端口:端口与端口掩码范围是0-65535。
|
||||
* 服务端IP:合法的单IP;IP段只能配置x.x.x.0-x.x.x.255;IP/mask中mask值限制为16-32。
|
||||
* 服务端端口:端口与端口掩码范围是0-65535。
|
||||
* 另:客户端IP与服务端IP不能相同。
|
||||
|
||||
#### [4.配置生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效。
|
||||
|
||||
#### [5.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
|
||||
#### [6.预期效果](#accordion1_7)
|
||||
|
||||
* 监测预期效果:记录符合配置条件的VoIP流量监测日志。
|
||||
* 阻断预期效果:阻断符合配置条件的VoIP通话,即客户端无法拨通本次VoIP电话,客户端与服务端均收到挂断、通话超时、服务器异常的虚假报文,并记录阻断日志。
|
||||
32
src/main/webapp/online-help/proxy/cache_policy.md
Normal file
32
src/main/webapp/online-help/proxy/cache_policy.md
Normal file
@@ -0,0 +1,32 @@
|
||||
#### [1.Function Introduction](#accordion1_1)
|
||||
|
||||
On National Proxy System, Individual Cache policy rules determine whether to cache or not based on traffic attributes, such as URL and Cookies.
|
||||
|
||||
#### [2.Action](#accordion1_2)
|
||||
|
||||
For cache action, the optimization parameters are:
|
||||
|
||||
* A Cache key:is a unique string that lets the National Proxy System look for web content when requests hit them. It’s made up of a hostname, path, and cookie parts. By default, the Proxy use the entire URL as the cache key. Selecting the correct cache key will ensure maximum cache footprint and increase cache hits.
|
||||
* Ignore Query String in URL:in case the query strings doesn’t actually indicate that the object need to be different then you could EXCLUDE them from the cache key. For example, after ignoring “sqp” and “rs” of URL: “https://example.com/pic.jpg?sqp=UAAI&rs=AOn4”.
|
||||
* Include Cookie Values:in case the server send different content for the same URL based on the cookie value, you can include that cookie value as a part of cache key. For example, the server may set a cookie at the client called "prefLang=ru" to record user preferred language, you could add "prefLang" to distinguish different web content.
|
||||
* Disable Revalidate:is an ON-OFF switch. The pragma-no-cache header in a client’s request causes the proxy to re-fetch the entire object from the original server, even if the cached copy of the object is fresh. By default this option is switch OFF, which means a client’s non-conditional request results in a conditional GET request sent to the original server if the object is already in cache. The conditional request allows the original server to return the 304 Not Modified response, if the content in cache is still fresh. Thereby, the server-side bandwidth and latency consumed are lesser as the full content is not retrieved again from the original server.
|
||||
* Cache Dynamic Content:is an ON-OFF switch. A URL is considered dynamic if it ends in “.asp(x)” or contains a question mark (?), a semicolon (;), or “cgi”. Ignore Query String overrides this option (switch on).
|
||||
* Cache Cookied Content:is an ON-OFF switch. By default, the Proxy does NOT cache cookied content of any type. If this option is switch on, the system cache all Cookeid content except HTML.
|
||||
* Ignore Request no-cache Headers:is an ON-OFF switch. By default, the proxy strictly observes client Cache-Control: no-cache directives. As known as:
|
||||
* i. Authorization
|
||||
* ii. WWW-Authenticate
|
||||
* iii. Cache-Control: no-store
|
||||
* iv. Cache-Control: no-cache
|
||||
* If a requested object contains a no-cache header, then proxy forwards the request to the origin server even if it has a fresh copy in cache. You can configure proxy to ignore client no-cache directives such that it ignores no-cache headers from client requests and serves the object from its cache. Ignore Response no-cache Headers — is an ON-OFF switch. By default, a response from an origin server with a no-cache header is not stored in the cache. As known as:
|
||||
* i. Cache-Control: no-store
|
||||
* ii. Cache-Control: private
|
||||
* iii. Set-Cookie
|
||||
* iv. Cache-Control: no-cache
|
||||
* v. WWW-Authenticate
|
||||
* vi. Expires header with a value of 0 (zero) or a past date.If you configure proxy to ignore no-cache headers, then proxy also ignores no-store headers. The default behavior of observing no-cache directives is appropriate in most cases.
|
||||
* Forcing Object Caching: is an ON-OFF switch. You can force Proxy to cache specific URLs (including dynamic URLs) for a specified duration, regardless of Cache-Control response headers.
|
||||
* Minimum Use: sets the number of times an item must be requested by clients before Proxy caches it. This is useful if the cache is constantly filling up, as it ensures that only the most frequently accessed items are added to the cache. By default, Proxy cache object at its first appearance. The Counter resets in every 30 minutes. Note that the requests is counted in computing unit independently.
|
||||
* Max Cache Object Size: sets the upper limit of an object size, larger object will not be cached. By default, Proxy does not cache object larger than 1 GB.
|
||||
* Cache Pinning Time: configures Proxy to keep certain objects in the cache for a specified time. You can use this option to ensure that the most popular objects are in cache when needed and to prevent cache manager from deleting important objects. Proxy observes Cache-Control headers and pins an object in the cache only if it is indeed cacheable.
|
||||
* Max Cache Size: sets the upper limit of the size of storage for a policy. By default, Proxy uses all available disk space. When the cache size reaches the limit, the cache manager removes the files that were least recently used to bring the cache size back under the limit.
|
||||
* Inactive Time: specifies how long an item can remain in the cache without being accessed. A file that has not been requested for this time is automatically deleted from the cache by the cache manager, regardless of whether or not it has expired.
|
||||
24
src/main/webapp/online-help/proxy/control_policy.md
Normal file
24
src/main/webapp/online-help/proxy/control_policy.md
Normal file
@@ -0,0 +1,24 @@
|
||||
#### [1.Function Introduction](#accordion1_1)
|
||||
|
||||
On National Proxy System, Individual Control policy rules determine whether to allow, block, redirect or replace a session based on traffic attributes, such as URL, request header fields, request body keywords, response header fields, response body keywords, IP address, Subscribe ID and their combination. You could specify these attributes in the submenu of Control Policy.
|
||||
|
||||
#### [2.Action](#accordion1_2)
|
||||
|
||||
You could select one of the five actions for above attributes, as known as:
|
||||
|
||||
* Monitor:the Proxy produce a log to record matched HTTP session information.
|
||||
* Block:the Proxy terminate matched HTTP session with an error page and produce a log. You MUST specify a Response Code and a Response Content to generate an error page.
|
||||
* Redirect: the Proxy redirect matched HTTP session to a predefined URL. Since redirection need to be performed before delivering response to client, condition of response body is not applicable in this action. You MUST configure the redirect response via Response Code and Response URL. The Response URL MUST start with a scheme (http:// or https://). You SHOULD NOT select 301 as Response Code unless you exactly know what you are doing. This action produces a log.
|
||||
* Replace:the Proxy Searches in a given HTTP part to Find a given string, and Replace any matches with another given string. If no match was found, the session remained untouched. For performance concerns, condition of request body and response body is not available in this action. For example, you can configure the Proxy to search in the response body of URL “www.example.com/index.html”, find every “string1” and replace with “string2”. This action produces a log.
|
||||
* Whitelist:the Proxy pass-through the matched sessions and produce no log.
|
||||
* In case of HTTP session matches one more policies, the priority order is Whitelist > Reject > Redirect > Replace > Monitor, action with higher priority overrides others.
|
||||
|
||||
#### [3.Attibutes](#accordion1_3)
|
||||
|
||||
The attributes are detailed in following context:
|
||||
|
||||
* URL:From proxy’s perspective, a HTTP URL consists of a hierarchical sequence of three components: URL = hostname/path\[?query\] . The URL path name can also be specified by the user in the local writing system. If not already encoded, it is converted to UTF-8, and any characters not part of the basic URL character set are escaped as hexadecimal using percent-encoding; for example, search keywords “русский” in Google produces URL: https://www.google.com/search?q=%D1%80%D1%83%D1%81%D1%81%D0%BA%D0%B8%D0%B9 To perform policy action on above URL, you could input the whole URL in the input box. Or, you could input original keywords and let the Proxy do the decoding, e.g. “google.com/search” & “русский”. Note that the scheme string MUST be excluded from the URL, it’s “https://” in this case.
|
||||
* Request Header: is used to set conditions on request header fields. Header fields are colon-separated key-value pairs in clear-text string format, terminated by a carriage return (CR) and line feed (LF) character sequence. For example, “user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64)“ is a header filed in request header. The Matching District is used to configure the field’s key, if the key was presented, the Proxy will search in the value for Keywords.
|
||||
* Response Header: is used to set conditions on response header fields. Its configuration is similar to Request Header.
|
||||
* Request Body:is used to set conditions on request’s body message. The Proxy searches the pre-configured Keywords in it. You can configure non-ASCII or non-utf8 keywords by turn on HEX.
|
||||
* Response Body:is used to set conditions on response’s body message. Its configuration is similar to Request Body.
|
||||
34
src/main/webapp/online-help/proxy/domain_intercept_policy.md
Normal file
34
src/main/webapp/online-help/proxy/domain_intercept_policy.md
Normal file
@@ -0,0 +1,34 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
域名拦截主要是根据域名对网站进行拦截,主要分为域名监测,域名白名单和域名限速功能,匹配的方式为子串匹配。当检测到请求的url中包含有配置的域名,根据上述三个功能,进行相应的替换替换,证书不替换和,限速功能。
|
||||
|
||||
#### [2\. 基础配置信息](#accordion1_2)
|
||||
|
||||
* 域名:监测网站的域名,或是域名的子串
|
||||
|
||||
#### [3\. 业务配置属性](#accordion1_2)
|
||||
|
||||
* 域名:请求URL中的域名,或是URL中域名的子串
|
||||
* 限速:对被测机器限制网速,根据配置的数值比列丢包
|
||||
|
||||
#### [4.配置约束条件](#accordion1_4)
|
||||
|
||||
* 域名:配置的监测域名,合法的域名表示
|
||||
* 丢包率:在0.001-0.009之间
|
||||
|
||||
#### [5.预期效果](#accordion1_5)
|
||||
|
||||
* 黑名单:浏览器证书替换
|
||||
* 白名单:浏览器证书不替换
|
||||
* 限速:测试有等比例接近的丢包
|
||||
|
||||
#### [6.配置生效区域](#accordion1_6)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效
|
||||
|
||||
#### [7.配置标签](#accordion1_7)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据。
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
71
src/main/webapp/online-help/proxy/https_block_log.md
Normal file
71
src/main/webapp/online-help/proxy/https_block_log.md
Normal file
@@ -0,0 +1,71 @@
|
||||
#### [1.基础信息](#accordion1_1)
|
||||
|
||||
Proxy日志按照控制策略类型进行分类,分为HTTP(S)监测、HTTP(S)管控、HTTP(S)重定向配置、HTTP(S)替换。每类日志页面下有两个基础搜索选项:开始时间、结束时间。和三个功能按钮搜:搜索、重置、筛选和右侧的设置按钮。
|
||||
|
||||
* 选项名称:开始时间-
|
||||
* 执行动作:点击“开始时间”可以选择搜索日志的时间范围。时间选项中有当前时间的日历和时间表,以确定具体的筛选时间,下方三个选项“clear”表示清空当前选择、“Today”表示将选择时间定为当前时间,“OK”表示确认。确认时间范围后,搜索结果将返回时间范围内的满足搜索条件的HTTP(S)管控日志
|
||||
|
||||
* 选项名称:结束时间-
|
||||
* 执行动作:点击“结束时间”可以选择搜索日志的时间范围。时间选项中有当前时间的日历和时间表,以确定具体的筛选时间,下方三个选项“clear”表示清空当前选择、“Today”表示将选择时间定为当前时间,“OK”表示确认。确认时间范围后,搜索结果将返回时间范围内的满足搜索条件的HTTP(S)管控日志
|
||||
|
||||
* 选项名称:搜索-
|
||||
* 执行动作:点击“搜索”,将返回满足时间范围和筛选条件内的HTTP(S)重定向日志
|
||||
|
||||
* 选项名称:重置-
|
||||
* 执行动作:点击“重置”,将筛选条件和开始时间结束时间清空
|
||||
|
||||
* 选项名称:筛选-
|
||||
* 执行动作:点击“筛选”,扩展日志筛选条件。eg.传输层协议、传输方向等
|
||||
|
||||
* 选项名称:筛选-
|
||||
* 执行动作:点击“筛选”,选择查询结果输出的日志信息项
|
||||
|
||||
#### [2.拓展筛选项](#accordion1_3)
|
||||
|
||||
点开筛选按钮后,会出现扩展搜索选项:传输层协议、传输方向、出入口、处理机IP、源IP、目的IP和配置ID。
|
||||
|
||||
* 选项名称:传输层协议-
|
||||
* 执行动作:点击“筛选”——>选择“传输层协议”,可以选择:L2TP、IPv4\_UDP、IPv6、IPv6\_UDP、OpenVPN、MAC、MPLS、IPv4\_TCP、IPv4、IPv6\_TCP、PPTP、VLAN、GRE。确认筛选的传输层协议后,搜索结果将返回选定时间范围内的对应协议的HTTP(S)管控日志,不做选择时默认所有协议
|
||||
|
||||
* 选项名称:传输方向-
|
||||
* 执行动作:点击“筛选”——>选择“传输方向”,可以选择:境内、境外。境内表示触发规则的源IP为内部IP,境外表示触发规则的源IP为外部IP。确认筛选的传输方向后,搜索结果将返回选定时间范围内的对应传输方向的HTTP(S)重定向日志,不做选择时默认境内外
|
||||
|
||||
* 选项名称:出入口-
|
||||
* 执行动作:点击“筛选”——>选择“出入口”。暂时不支持该功能
|
||||
|
||||
* 选项名称:处理机IP-
|
||||
* 执行动作:点击“筛选”——>选择“处理机IP”,输入筛选的处理机IP地址,支持IPv4和IPv6,IPv4输入“IPv4 xxx”,IPv输入“IPv6 xxx”(xxx为对应IP地址),eg."IPv4 192.168.17.3"、"IPv6 fc00::1:1f"。确认筛选的处理机IP后,搜索结果将返回选定时间范围内的对应处理机IP的HTTP(S)管控日志,不做选择时默认所有IP
|
||||
|
||||
* 选项名称:源IP-
|
||||
* 执行动作:点击“筛选”——>选择“源IP”,输入筛选的源IP地址,支持IPv4和IPv6,IPv4输入“IPv4 xxx”,IPv输入“IPv6 xxx”(xxx为对应IP地址),eg."IPv4 192.168.17.3"、"IPv6 fc00::1:1f"。确认筛选的源IP后,搜索结果将返回选定时间范围内的对应源IP的HTTP(S)管控日志,不做选择时默认所有IP
|
||||
|
||||
* 选项名称:目的IP-
|
||||
* 执行动作:点击“筛选”——>选择“目的IP”,输入筛选的目的IP地址,支持IPv4和IPv6,IPv4输入“IPv4 xxx”,IPv输入“IPv6 xxx”(xxx为对应IP地址),eg."IPv4 192.168.17.3"、"IPv6 fc00::1:1f"。确认筛选的目的IP后,搜索结果将返回选定时间范围内的对应目的IP的HTTP(S)管控日志,不做选择时默认所有IP
|
||||
|
||||
* 选项名称:配置ID-
|
||||
* 执行动作:点击“筛选”——>选择“配置ID”,输入筛选的配置ID。确认筛选的目的IP后,搜索结果将返回选定时间范围内的对应配置ID的HTTP(S)重定向日志,不做选择时默认所有配置
|
||||
|
||||
#### [3.日志信息标签:配置ID、发现时间、出入口、URL、处理机IP、传输层协议、源目的IP端口等](#accordion1_2)
|
||||
|
||||
此处对日志信息每项标签做解析,帮助使用人员理解日志具体信息: Proxy在命中记录日志的控制策略时将会产生相应的日志信息,命中配置的消息日志信息包括:配置ID、发现时间、出入口、URL、处理机IP、传输层协议、目的IP、源IP、目的端口、源端口、串联设备、方向、流类型、服务端地址、客户端地址、客户端ASN、服务端ASN、客户端用户名、服务端用户名、现场日志文件地址。
|
||||
|
||||
* 配置ID:命中配置的配置ID
|
||||
* 发现时间:命中规则的时间
|
||||
* 出入口:暂不支持
|
||||
* URL:命中配置的URL
|
||||
* 处理机IP:处理这条命中规则的服务器IP
|
||||
* 传输层协议:这条消息的传输层协议
|
||||
* 目的IP:命中配置的连接的目的IP
|
||||
* 源IP:命中配置的连接的源IP
|
||||
* 目的端口:命中配置的连接的目的端口
|
||||
* 源端口:命中配置的连接的源端口
|
||||
* 串联设备:暂不支持
|
||||
* 方向:该日志是传输方向--境内/境外
|
||||
* 流类型:该流是单向或双向流
|
||||
* 服务端地址:该流服务端所在的地理区域,eg.Hong Kong、United States
|
||||
* 客户端地址:该流客户端所在的地理区域,eg.Hong Kong、United States
|
||||
* 客户端ASN:客户端的ASN号(自治系统号)
|
||||
* 服务端ASN:服务端的ASN号(自治系统号)
|
||||
* 客户端用户名:客户端账户的用户名
|
||||
* 服务端用户名:服务端账户的用户名
|
||||
* 现场日志文件地址:该日志保存的地址
|
||||
49
src/main/webapp/online-help/proxy/https_block_policy.md
Normal file
49
src/main/webapp/online-help/proxy/https_block_policy.md
Normal file
@@ -0,0 +1,49 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
HTTP(s)阻断主要的功能是实现浏览器无法访问网站。当配置的测试机的IP地址等信息后,被测机器无法访问网站,阻断上网的功能,主要包括IP阻断,URL阻断,请求头域阻断,应答头域阻断,请求内容阻断,应答内容阻断,账号阻断
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* HTTP URL:“同域名拦截”
|
||||
* HTTP 请求头域:同“HTTP(s)监测”
|
||||
* HTTP 应答头域:同“HTTP(s)监测”
|
||||
* HTTP 请求内容:同“HTTP(s)监测”
|
||||
* HTTP 应答内容:同“HTTP(s)监测”
|
||||
* 账号:同“HTTP(s)监测”
|
||||
|
||||
#### [2.业务配置属性](#accordion1_3)
|
||||
|
||||
* IP:同“HTTP(s)监测”
|
||||
* HTTP URL:同“HTTP(s)监测”
|
||||
* HTTP 请求头域:同“HTTP(s)监测”
|
||||
* HTTP 应答头域:同“HTTP(s)监测”
|
||||
* HTTP 请求内容:同“HTTP(s)监测”
|
||||
* HTTP 应答内容:同“HTTP(s)监测”
|
||||
* 账号:同“HTTP(s)监测”
|
||||
|
||||
#### [4.配置约束条件](#accordion1_4)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* URL:同“域名拦截”
|
||||
* HTTP 请求头:同“HTTP(s)监测”
|
||||
* HTTP 应答头:同“HTTP(s)监测”
|
||||
* HTTP 请求内容:同“HTTP(s)监测”
|
||||
* HTTP 应答内容:同“HTTP(s)监测”
|
||||
* 账号:同“HTTP(s)监测”
|
||||
|
||||
#### [5.预期效果](#accordion1_5)
|
||||
|
||||
* 阻断效果:浏览器无法访问页面
|
||||
* 日志检查:生成日志
|
||||
|
||||
#### [6.配置生效区域](#accordion1_6)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效
|
||||
|
||||
#### [7.配置标签](#accordion1_7)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据。
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
71
src/main/webapp/online-help/proxy/https_monitor_log.md
Normal file
71
src/main/webapp/online-help/proxy/https_monitor_log.md
Normal file
@@ -0,0 +1,71 @@
|
||||
#### [1.基础信息](#accordion1_1)
|
||||
|
||||
Proxy日志按照控制策略类型进行分类,分为HTTP(S)监测、HTTP(S)管控、HTTP(S)重定向配置、HTTP(S)替换。每类日志页面下有两个基础搜索选项:开始时间、结束时间。和三个功能按钮搜:搜索、重置、筛选和右侧的设置按钮。
|
||||
|
||||
* 选项名称:开始时间-
|
||||
* 执行动作:点击“开始时间”可以选择搜索日志的时间范围。时间选项中有当前时间的日历和时间表,以确定具体的筛选时间,下方三个选项“clear”表示清空当前选择、“Today”表示将选择时间定为当前时间,“OK”表示确认。确认时间范围后,搜索结果将返回时间范围内的满足搜索条件的HTTP(S)监测日志
|
||||
|
||||
* 选项名称:结束时间-
|
||||
* 执行动作:点击“结束时间”可以选择搜索日志的时间范围。时间选项中有当前时间的日历和时间表,以确定具体的筛选时间,下方三个选项“clear”表示清空当前选择、“Today”表示将选择时间定为当前时间,“OK”表示确认。确认时间范围后,搜索结果将返回时间范围内的满足搜索条件的HTTP(S)监测日志
|
||||
|
||||
* 选项名称:搜索-
|
||||
* 执行动作:点击“搜索”,将返回满足时间范围和筛选条件内的HTTP(S)监测日志
|
||||
|
||||
* 选项名称:重置-
|
||||
* 执行动作:点击“重置”,将筛选条件和开始时间结束时间清空
|
||||
|
||||
* 选项名称:筛选-
|
||||
* 执行动作:点击“筛选”,扩展日志筛选条件。eg.传输层协议、传输方向等
|
||||
|
||||
* 选项名称:筛选-
|
||||
* 执行动作:点击“筛选”,选择查询结果输出的日志信息项
|
||||
|
||||
#### [2.拓展筛选项](#accordion1_3)
|
||||
|
||||
点开筛选按钮后,会出现扩展搜索选项:传输层协议、传输方向、出入口、处理机IP、源IP、目的IP和配置ID。
|
||||
|
||||
* 选项名称:传输层协议-
|
||||
* 执行动作:点击“筛选”——>选择“传输层协议”,可以选择:L2TP、IPv4\_UDP、IPv6、IPv6\_UDP、OpenVPN、MAC、MPLS、IPv4\_TCP、IPv4、IPv6\_TCP、PPTP、VLAN、GRE。确认筛选的传输层协议后,搜索结果将返回选定时间范围内的对应协议的HTTP(S)监测日志,不做选择时默认所有协议
|
||||
|
||||
* 选项名称:传输方向-
|
||||
* 执行动作:点击“筛选”——>选择“传输方向”,可以选择:境内、境外。境内表示触发规则的源IP为内部IP,境外表示触发规则的源IP为外部IP。确认筛选的传输方向后,搜索结果将返回选定时间范围内的对应传输方向的HTTP(S)监测日志,不做选择时默认境内外
|
||||
|
||||
* 选项名称:出入口-
|
||||
* 执行动作:点击“筛选”——>选择“出入口”。暂时不支持该功能
|
||||
|
||||
* 选项名称:处理机IP-
|
||||
* 执行动作:点击“筛选”——>选择“处理机IP”,输入筛选的处理机IP地址,支持IPv4和IPv6,IPv4输入“IPv4 xxx”,IPv输入“IPv6 xxx”(xxx为对应IP地址),eg."IPv4 192.168.17.3"、"IPv6 fc00::1:1f"。确认筛选的处理机IP后,搜索结果将返回选定时间范围内的对应处理机IP的HTTP(S)监测日志,不做选择时默认所有IP
|
||||
|
||||
* 选项名称:源IP-
|
||||
* 执行动作:点击“筛选”——>选择“源IP”,输入筛选的源IP地址,支持IPv4和IPv6,IPv4输入“IPv4 xxx”,IPv输入“IPv6 xxx”(xxx为对应IP地址),eg."IPv4 192.168.17.3"、"IPv6 fc00::1:1f"。确认筛选的源IP后,搜索结果将返回选定时间范围内的对应源IP的HTTP(S)监测日志,不做选择时默认所有IP
|
||||
|
||||
* 选项名称:目的IP-
|
||||
* 执行动作:点击“筛选”——>选择“目的IP”,输入筛选的目的IP地址,支持IPv4和IPv6,IPv4输入“IPv4 xxx”,IPv输入“IPv6 xxx”(xxx为对应IP地址),eg."IPv4 192.168.17.3"、"IPv6 fc00::1:1f"。确认筛选的目的IP后,搜索结果将返回选定时间范围内的对应目的IP的HTTP(S)监测日志,不做选择时默认所有IP
|
||||
|
||||
* 选项名称:配置ID-
|
||||
* 执行动作:点击“筛选”——>选择“配置ID”,输入筛选的配置ID。确认筛选的目的IP后,搜索结果将返回选定时间范围内的对应配置ID的HTTP(S)监测日志,不做选择时默认所有配置
|
||||
|
||||
#### [3.日志信息标签:配置ID、发现时间、出入口、URL、处理机IP、传输层协议、源目的IP端口等](#accordion1_2)
|
||||
|
||||
此处对日志信息每项标签做解析,帮助使用人员理解日志具体信息: Proxy在命中记录日志的控制策略时将会产生相应的日志信息,命中配置的消息日志信息包括:配置ID、发现时间、出入口、URL、处理机IP、传输层协议、目的IP、源IP、目的端口、源端口、串联设备、方向、流类型、服务端地址、客户端地址、客户端ASN、服务端ASN、客户端用户名、服务端用户名、现场日志文件地址。
|
||||
|
||||
* 配置ID:命中配置的配置ID
|
||||
* 发现时间:命中规则的时间
|
||||
* 出入口:暂不支持
|
||||
* URL:命中配置的URL
|
||||
* 处理机IP:处理这条命中规则的服务器IP
|
||||
* 传输层协议:这条消息的传输层协议
|
||||
* 目的IP:命中配置的连接的目的IP
|
||||
* 源IP:命中配置的连接的源IP
|
||||
* 目的端口:命中配置的连接的目的端口
|
||||
* 源端口:命中配置的连接的源端口
|
||||
* 串联设备:暂不支持
|
||||
* 方向:该日志是传输方向--境内/境外
|
||||
* 流类型:该流是单向或双向流
|
||||
* 服务端地址:该流服务端所在的地理区域,eg.Hong Kong、United States
|
||||
* 客户端地址:该流客户端所在的地理区域,eg.Hong Kong、United States
|
||||
* 客户端ASN:客户端的ASN号(自治系统号)
|
||||
* 服务端ASN:服务端的ASN号(自治系统号)
|
||||
* 客户端用户名:客户端账户的用户名
|
||||
* 服务端用户名:服务端账户的用户名
|
||||
* 现场日志文件地址:该日志保存的地址
|
||||
52
src/main/webapp/online-help/proxy/https_monitor_policy.md
Normal file
52
src/main/webapp/online-help/proxy/https_monitor_policy.md
Normal file
@@ -0,0 +1,52 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
HTTP(s)监测与IP监测的功能类似,额外增加了其他的监测,主要包括URL监测,请求头域监测,应答头域监测,请求内容监测,应答内容监测,账号监测。
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* HTTP URL:同“域名拦截”
|
||||
* HTTP 请求头域:HTTP发送请求的头域信息
|
||||
* HTTP 应答头域:HTTP应答的头域信息
|
||||
* HTTP 请求内容:HTTP请求体中的内容
|
||||
* HTTP 应答内容:HTTP 响应体的内容
|
||||
* 账号:上网登陆账号
|
||||
|
||||
#### [3.业务配置属性](#accordion1_3)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* 端口:同“IP拦截”
|
||||
* HTTP URL:同“域名拦截”
|
||||
* URL:同“域名拦截”
|
||||
* HTTP 请求头域:浏览器发送头信息的请求头,其中包括请求方法
|
||||
* HTTP 应答头域:HTTP响应的头信息
|
||||
* HTTP 请求内容:HTTP请求体
|
||||
* HTTP 应答内容:HTTP响应体
|
||||
* 账号:拨号上网账号
|
||||
|
||||
#### [4.配置约束条件](#accordion1_4)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* 端口:同“IP拦截”
|
||||
* URL:配置的URL必须是可访问的
|
||||
* HTTP 请求头域:合法的请求头域
|
||||
* HTTP 应答头域:合法的应答头域
|
||||
* HTTP 请求内容:合法HTTP请求体
|
||||
* HTTP 应答内容:合法HTTP响应体
|
||||
* 账号:拨号上网的账号
|
||||
|
||||
#### [5.预期效果](#accordion1_5)
|
||||
|
||||
* 证书替换:浏览器的证书替换,有日志
|
||||
* 账号监测:检测到配置的账号,有日志
|
||||
|
||||
#### [6.配置生效区域](#accordion1_6)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效
|
||||
|
||||
#### [7.配置标签](#accordion1_7)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据。
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
71
src/main/webapp/online-help/proxy/https_redirect_log.md
Normal file
71
src/main/webapp/online-help/proxy/https_redirect_log.md
Normal file
@@ -0,0 +1,71 @@
|
||||
#### [1.基础信息](#accordion1_1)
|
||||
|
||||
Proxy日志按照控制策略类型进行分类,分为HTTP(S)监测、HTTP(S)管控、HTTP(S)重定向配置、HTTP(S)替换。每类日志页面下有两个基础搜索选项:开始时间、结束时间。和三个功能按钮搜:搜索、重置、筛选和右侧的设置按钮。
|
||||
|
||||
* 选项名称:开始时间-
|
||||
* 执行动作:点击“开始时间”可以选择搜索日志的时间范围。时间选项中有当前时间的日历和时间表,以确定具体的筛选时间,下方三个选项“clear”表示清空当前选择、“Today”表示将选择时间定为当前时间,“OK”表示确认。确认时间范围后,搜索结果将返回时间范围内的满足搜索条件的HTTP(S)重定向配置日志
|
||||
|
||||
* 选项名称:结束时间-
|
||||
* 执行动作:点击“结束时间”可以选择搜索日志的时间范围。时间选项中有当前时间的日历和时间表,以确定具体的筛选时间,下方三个选项“clear”表示清空当前选择、“Today”表示将选择时间定为当前时间,“OK”表示确认。确认时间范围后,搜索结果将返回时间范围内的满足搜索条件的HTTP(S)重定向配置日志
|
||||
|
||||
* 选项名称:搜索-
|
||||
* 执行动作:点击“搜索”,将返回满足时间范围和筛选条件内的HTTP(S)重定向日志
|
||||
|
||||
* 选项名称:重置-
|
||||
* 执行动作:点击“重置”,将筛选条件和开始时间结束时间清空
|
||||
|
||||
* 选项名称:筛选-
|
||||
* 执行动作:点击“筛选”,扩展日志筛选条件。eg.传输层协议、传输方向等
|
||||
|
||||
* 选项名称:筛选-
|
||||
* 执行动作:点击“筛选”,选择查询结果输出的日志信息项
|
||||
|
||||
#### [2.拓展筛选项](#accordion1_3)
|
||||
|
||||
点开筛选按钮后,会出现扩展搜索选项:传输层协议、传输方向、出入口、处理机IP、源IP、目的IP和配置ID。
|
||||
|
||||
* 选项名称:传输层协议-
|
||||
* 执行动作:点击“筛选”——>选择“传输层协议”,可以选择:L2TP、IPv4\_UDP、IPv6、IPv6\_UDP、OpenVPN、MAC、MPLS、IPv4\_TCP、IPv4、IPv6\_TCP、PPTP、VLAN、GRE。确认筛选的传输层协议后,搜索结果将返回选定时间范围内的对应协议的HTTP(S)重定向配置日志,不做选择时默认所有协议
|
||||
|
||||
* 选项名称:传输方向-
|
||||
* 执行动作:点击“筛选”——>选择“传输方向”,可以选择:境内、境外。境内表示触发规则的源IP为内部IP,境外表示触发规则的源IP为外部IP。确认筛选的传输方向后,搜索结果将返回选定时间范围内的对应传输方向的HTTP(S)重定向日志,不做选择时默认境内外
|
||||
|
||||
* 选项名称:出入口-
|
||||
* 执行动作:点击“筛选”——>选择“出入口”。暂时不支持该功能
|
||||
|
||||
* 选项名称:处理机IP-
|
||||
* 执行动作:点击“筛选”——>选择“处理机IP”,输入筛选的处理机IP地址,支持IPv4和IPv6,IPv4输入“IPv4 xxx”,IPv输入“IPv6 xxx”(xxx为对应IP地址),eg."IPv4 192.168.17.3"、"IPv6 fc00::1:1f"。确认筛选的处理机IP后,搜索结果将返回选定时间范围内的对应处理机IP的HTTP(S)重定向配置日志,不做选择时默认所有IP
|
||||
|
||||
* 选项名称:源IP-
|
||||
* 执行动作:点击“筛选”——>选择“源IP”,输入筛选的源IP地址,支持IPv4和IPv6,IPv4输入“IPv4 xxx”,IPv输入“IPv6 xxx”(xxx为对应IP地址),eg."IPv4 192.168.17.3"、"IPv6 fc00::1:1f"。确认筛选的源IP后,搜索结果将返回选定时间范围内的对应源IP的HTTP(S)重定向配置日志,不做选择时默认所有IP
|
||||
|
||||
* 选项名称:目的IP-
|
||||
* 执行动作:点击“筛选”——>选择“目的IP”,输入筛选的目的IP地址,支持IPv4和IPv6,IPv4输入“IPv4 xxx”,IPv输入“IPv6 xxx”(xxx为对应IP地址),eg."IPv4 192.168.17.3"、"IPv6 fc00::1:1f"。确认筛选的目的IP后,搜索结果将返回选定时间范围内的对应目的IP的HTTP(S)重定向配置日志,不做选择时默认所有IP
|
||||
|
||||
* 选项名称:配置ID-
|
||||
* 执行动作:点击“筛选”——>选择“配置ID”,输入筛选的配置ID。确认筛选的目的IP后,搜索结果将返回选定时间范围内的对应配置ID的HTTP(S)重定向日志,不做选择时默认所有配置
|
||||
|
||||
#### [3.日志信息标签:配置ID、发现时间、出入口、URL、处理机IP、传输层协议、源目的IP端口等](#accordion1_2)
|
||||
|
||||
此处对日志信息每项标签做解析,帮助使用人员理解日志具体信息: Proxy在命中记录日志的控制策略时将会产生相应的日志信息,命中配置的消息日志信息包括:配置ID、发现时间、出入口、URL、处理机IP、传输层协议、目的IP、源IP、目的端口、源端口、串联设备、方向、流类型、服务端地址、客户端地址、客户端ASN、服务端ASN、客户端用户名、服务端用户名、现场日志文件地址。
|
||||
|
||||
* 配置ID:命中配置的配置ID
|
||||
* 发现时间:命中规则的时间
|
||||
* 出入口:暂不支持
|
||||
* URL:命中配置的URL
|
||||
* 处理机IP:处理这条命中规则的服务器IP
|
||||
* 传输层协议:这条消息的传输层协议
|
||||
* 目的IP:命中配置的连接的目的IP
|
||||
* 源IP:命中配置的连接的源IP
|
||||
* 目的端口:命中配置的连接的目的端口
|
||||
* 源端口:命中配置的连接的源端口
|
||||
* 串联设备:暂不支持
|
||||
* 方向:该日志是传输方向--境内/境外
|
||||
* 流类型:该流是单向或双向流
|
||||
* 服务端地址:该流服务端所在的地理区域,eg.Hong Kong、United States
|
||||
* 客户端地址:该流客户端所在的地理区域,eg.Hong Kong、United States
|
||||
* 客户端ASN:客户端的ASN号(自治系统号)
|
||||
* 服务端ASN:服务端的ASN号(自治系统号)
|
||||
* 客户端用户名:客户端账户的用户名
|
||||
* 服务端用户名:服务端账户的用户名
|
||||
* 现场日志文件地址:该日志保存的地址
|
||||
49
src/main/webapp/online-help/proxy/https_redirect_policy.md
Normal file
49
src/main/webapp/online-help/proxy/https_redirect_policy.md
Normal file
@@ -0,0 +1,49 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
HTTP(s)重定向主要对将请求的页面根据配置的信息重定向到指定的网页,主要包括应答重定向,IP重定向,URL重定向,请求头域重定向和应答头域重定向,请求内容重定向,应答内容重定向,账号重定向。
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* HTTP URL:同“域名拦截”
|
||||
* HTTP 请求头域:同“HTTP(s)监测”
|
||||
* HTTP 应答头域:同“HTTP(s)监测”
|
||||
* HTTP 请求内容:同“HTTP(s)监测”
|
||||
* HTTP 应答内容:同“HTTP(s)监测”
|
||||
* 账号:同“HTTP(s)监测”
|
||||
|
||||
#### [3.业务配置属性](#accordion1_3)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* HTTP URL:同“域名拦截”
|
||||
* HTTP 请求头域:同“HTTP(s)监测”
|
||||
* HTTP 应答头域:同“HTTP(s)监测”
|
||||
* HTTP 请求内容:同“HTTP(s)监测”
|
||||
* HTTP 应答内容:同“HTTP(s)监测”
|
||||
* 账号:同“HTTP(s)监测”
|
||||
|
||||
#### [4.配置约束条件](#accordion1_4)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* HTTP URL:同“域名拦截”
|
||||
* HTTP 请求头域:同“HTTP(s)监测”
|
||||
* HTTP 应答头域:同“HTTP(s)监测”
|
||||
* HTTP 请求内容:同“HTTP(s)监测”
|
||||
* HTTP 应答内容:同“HTTP(s)监测”
|
||||
* 账号:同“HTTP(s)监测”
|
||||
|
||||
#### [5.预期效果](#accordion1_5)
|
||||
|
||||
* 页面重定向:浏览器重定向到指定的页面
|
||||
* 日志:生成日志
|
||||
|
||||
#### [6.配置生效区域](#accordion1_6)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效
|
||||
|
||||
#### [7.配置标签](#accordion1_7)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据。
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
71
src/main/webapp/online-help/proxy/https_replace_log.md
Normal file
71
src/main/webapp/online-help/proxy/https_replace_log.md
Normal file
@@ -0,0 +1,71 @@
|
||||
#### [1.基础信息](#accordion1_1)
|
||||
|
||||
Proxy日志按照控制策略类型进行分类,分为HTTP(S)监测、HTTP(S)管控、HTTP(S)重定向配置、HTTP(S)替换。每类日志页面下有两个基础搜索选项:开始时间、结束时间。和三个功能按钮搜:搜索、重置、筛选和右侧的设置按钮。
|
||||
|
||||
* 选项名称:开始时间-
|
||||
* 执行动作:点击“开始时间”可以选择搜索日志的时间范围。时间选项中有当前时间的日历和时间表,以确定具体的筛选时间,下方三个选项“clear”表示清空当前选择、“Today”表示将选择时间定为当前时间,“OK”表示确认。确认时间范围后,搜索结果将返回时间范围内的满足搜索条件的HTTP(S)替换日志
|
||||
|
||||
* 选项名称:结束时间-
|
||||
* 执行动作:点击“结束时间”可以选择搜索日志的时间范围。时间选项中有当前时间的日历和时间表,以确定具体的筛选时间,下方三个选项“clear”表示清空当前选择、“Today”表示将选择时间定为当前时间,“OK”表示确认。确认时间范围后,搜索结果将返回时间范围内的满足搜索条件的HTTP(S)替换日志
|
||||
|
||||
* 选项名称:搜索-
|
||||
* 执行动作:点击“搜索”,将返回满足时间范围和筛选条件内的HTTP(S)重定向日志
|
||||
|
||||
* 选项名称:重置-
|
||||
* 执行动作:点击“重置”,将筛选条件和开始时间结束时间清空
|
||||
|
||||
* 选项名称:筛选-
|
||||
* 执行动作:点击“筛选”,扩展日志筛选条件。eg.传输层协议、传输方向等
|
||||
|
||||
* 选项名称:筛选-
|
||||
* 执行动作:点击“筛选”,选择查询结果输出的日志信息项
|
||||
|
||||
#### [2.拓展筛选项](#accordion1_3)
|
||||
|
||||
点开筛选按钮后,会出现扩展搜索选项:传输层协议、传输方向、出入口、处理机IP、源IP、目的IP和配置ID。
|
||||
|
||||
* 选项名称:传输层协议-
|
||||
* 执行动作:点击“筛选”——>选择“传输层协议”,可以选择:L2TP、IPv4\_UDP、IPv6、IPv6\_UDP、OpenVPN、MAC、MPLS、IPv4\_TCP、IPv4、IPv6\_TCP、PPTP、VLAN、GRE。确认筛选的传输层协议后,搜索结果将返回选定时间范围内的对应协议的HTTP(S)替换日志,不做选择时默认所有协议
|
||||
|
||||
* 选项名称:传输方向-
|
||||
* 执行动作:点击“筛选”——>选择“传输方向”,可以选择:境内、境外。境内表示触发规则的源IP为内部IP,境外表示触发规则的源IP为外部IP。确认筛选的传输方向后,搜索结果将返回选定时间范围内的对应传输方向的HTTP(S)重定向日志,不做选择时默认境内外
|
||||
|
||||
* 选项名称:出入口-
|
||||
* 执行动作:点击“筛选”——>选择“出入口”。暂时不支持该功能
|
||||
|
||||
* 选项名称:处理机IP-
|
||||
* 执行动作:点击“筛选”——>选择“处理机IP”,输入筛选的处理机IP地址,支持IPv4和IPv6,IPv4输入“IPv4 xxx”,IPv输入“IPv6 xxx”(xxx为对应IP地址),eg."IPv4 192.168.17.3"、"IPv6 fc00::1:1f"。确认筛选的处理机IP后,搜索结果将返回选定时间范围内的对应处理机IP的HTTP(S)替换日志,不做选择时默认所有IP
|
||||
|
||||
* 选项名称:源IP-
|
||||
* 执行动作:点击“筛选”——>选择“源IP”,输入筛选的源IP地址,支持IPv4和IPv6,IPv4输入“IPv4 xxx”,IPv输入“IPv6 xxx”(xxx为对应IP地址),eg."IPv4 192.168.17.3"、"IPv6 fc00::1:1f"。确认筛选的源IP后,搜索结果将返回选定时间范围内的对应源IP的HTTP(S)替换日志,不做选择时默认所有IP
|
||||
|
||||
* 选项名称:目的IP-
|
||||
* 执行动作:点击“筛选”——>选择“目的IP”,输入筛选的目的IP地址,支持IPv4和IPv6,IPv4输入“IPv4 xxx”,IPv输入“IPv6 xxx”(xxx为对应IP地址),eg."IPv4 192.168.17.3"、"IPv6 fc00::1:1f"。确认筛选的目的IP后,搜索结果将返回选定时间范围内的对应目的IP的HTTP(S)替换日志,不做选择时默认所有IP
|
||||
|
||||
* 选项名称:配置ID-
|
||||
* 执行动作:点击“筛选”——>选择“配置ID”,输入筛选的配置ID。确认筛选的目的IP后,搜索结果将返回选定时间范围内的对应配置ID的HTTP(S)重定向日志,不做选择时默认所有配置
|
||||
|
||||
#### [3.日志信息标签:配置ID、发现时间、出入口、URL、处理机IP、传输层协议、源目的IP端口等](#accordion1_2)
|
||||
|
||||
此处对日志信息每项标签做解析,帮助使用人员理解日志具体信息: Proxy在命中记录日志的控制策略时将会产生相应的日志信息,命中配置的消息日志信息包括:配置ID、发现时间、出入口、URL、处理机IP、传输层协议、目的IP、源IP、目的端口、源端口、串联设备、方向、流类型、服务端地址、客户端地址、客户端ASN、服务端ASN、客户端用户名、服务端用户名、现场日志文件地址。
|
||||
|
||||
* 配置ID:命中配置的配置ID
|
||||
* 发现时间:命中规则的时间
|
||||
* 出入口:暂不支持
|
||||
* URL:命中配置的URL
|
||||
* 处理机IP:处理这条命中规则的服务器IP
|
||||
* 传输层协议:这条消息的传输层协议
|
||||
* 目的IP:命中配置的连接的目的IP
|
||||
* 源IP:命中配置的连接的源IP
|
||||
* 目的端口:命中配置的连接的目的端口
|
||||
* 源端口:命中配置的连接的源端口
|
||||
* 串联设备:暂不支持
|
||||
* 方向:该日志是传输方向--境内/境外
|
||||
* 流类型:该流是单向或双向流
|
||||
* 服务端地址:该流服务端所在的地理区域,eg.Hong Kong、United States
|
||||
* 客户端地址:该流客户端所在的地理区域,eg.Hong Kong、United States
|
||||
* 客户端ASN:客户端的ASN号(自治系统号)
|
||||
* 服务端ASN:服务端的ASN号(自治系统号)
|
||||
* 客户端用户名:客户端账户的用户名
|
||||
* 服务端用户名:服务端账户的用户名
|
||||
* 现场日志文件地址:该日志保存的地址
|
||||
43
src/main/webapp/online-help/proxy/https_replace_policy.md
Normal file
43
src/main/webapp/online-help/proxy/https_replace_policy.md
Normal file
@@ -0,0 +1,43 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
HTTP(s)替换的主要功能是将访问网站的应答内容替换为配置的内容,主要包括IP替换,URL替换,请求头域替换和应答头域替换,账号替换
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* HTTP URL:同“域名拦截”
|
||||
* HTTP 请求头域:同“HTTP(s)监测”
|
||||
* HTTP 应答头域:同“HTTP(s)监测”
|
||||
* 账号:同“HTTP(s)监测”
|
||||
|
||||
#### [3.业务配置属性](#accordion1_2)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* HTTP URL:同“域名拦截”
|
||||
* HTTP 请求头域:同“HTTP(s)监测”
|
||||
* HTTP 应答头域:同“HTTP(s)监测”
|
||||
* 账号:同“HTTP(s)监测”
|
||||
|
||||
#### [4.配置约束条件](#accordion1_3)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* HTTP URL:同“域名拦截”
|
||||
* HTTP 请求头域:同“HTTP(s)监测”
|
||||
* HTTP 应答头域:同“HTTP(s)监测”
|
||||
* 账号:同“HTTP(s)监测”
|
||||
|
||||
#### [5.预期效果](#accordion1_4)
|
||||
|
||||
* 证书检查:浏览器的证书被替换
|
||||
* 日志检查:产生日志信息
|
||||
|
||||
#### [6.配置生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效
|
||||
|
||||
#### [7.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据。
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
39
src/main/webapp/online-help/proxy/https_whiteList_policy.md
Normal file
39
src/main/webapp/online-help/proxy/https_whiteList_policy.md
Normal file
@@ -0,0 +1,39 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
HTTP(s)白名单主要是对访问的网站进行拦截,但是不替换证书,从而不解析网站的加密流量,主要包括IP拦截白名单,URL白名单,请求头域白名单,账号白名单
|
||||
|
||||
#### [2.基础配置信息](#accordion1_2)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* HTTP URL:同“域名拦截”
|
||||
* HTTP 请求头域:同“HTTP(s)监测”
|
||||
* 账号:同“HTTP(s)监测”
|
||||
|
||||
#### [3.业务配置属性](#accordion1_2)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* HTTP URL:同“域名拦截”
|
||||
* HTTP 请求头域:同“HTTP(s)监测”
|
||||
* 账号:同“HTTP(s)监测”
|
||||
|
||||
#### [4.配置约束条件](#accordion1_3)
|
||||
|
||||
* IP:同“IP拦截”
|
||||
* HTTP URL:同“域名拦截”
|
||||
* HTTP 请求头域:同“HTTP(s)监测”
|
||||
* 账号:同“HTTP(s)监测”
|
||||
|
||||
#### [5.预期效果](#accordion1_4)
|
||||
|
||||
* 证书检查:证书未替换
|
||||
|
||||
#### [6.配置生效区域](#accordion1_5)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效
|
||||
|
||||
#### [7.配置标签](#accordion1_6)
|
||||
|
||||
* 来函:官方或其他组织下达的配置流量管控依据
|
||||
* 分类:配置所属的类别
|
||||
* 性质:配置所属的性质
|
||||
* 标签:配置所属的标签
|
||||
19
src/main/webapp/online-help/proxy/intercept_policy.md
Normal file
19
src/main/webapp/online-help/proxy/intercept_policy.md
Normal file
@@ -0,0 +1,19 @@
|
||||
#### [1.Function Introduction](#accordion1_1)
|
||||
|
||||
On National Proxy System, Individual Intercept policy rules determines whether to intercept/optimize a connection based on traffic attributes, such as IP address, domain name and Subscribe ID. You could specify these attributes in IP Intercept and Domain Intercept.
|
||||
|
||||
#### [2.Action](#accordion1_2)
|
||||
|
||||
Both IP intercept and Domain Intercept are subject two actions:
|
||||
|
||||
* Bypass: the Proxy passes through the network connection without apply an optimization or policy checking. It’s could be used to bypass SSL pinning applications, such as Apple Store and WhatsApp, or a of a VIP’s IP address. In case of traffic matches one more policies, bypass overrides intercept.
|
||||
* Intercept: the National Proxy System intercepts network traffic for further control policy and cache policy checking. When a connection is set to intercept, the proxy terminates the connection and initiates a new connection between client and server. If the connection is SSL encrypted, the original certificate is replaced with a substitute one.
|
||||
|
||||
When Intercept Related Domains is enabled, domains that share one certificates with the specified domain are considered as the same. For example, if the intercept facebook.com with Intercept Related Domain option, then *.xx.fbcdn.net, fb.com, .messenger.com and etc. are also intercepted. There may be side effects that intercept many different websites when they were hosted in a same CDN provider (Content Delivery Network).
|
||||
|
||||
Key ring determines which certificate will be used to generate substitute certificate. You could configure key ring through Proxy Policy Object page. If no key ring is specified, proxy will use the default one.
|
||||
|
||||
Intercept policy produces no log. You can find out if the interception is successful by checking if the certificate is issued by your pre-configured Root CA. You need a PC which traffic has already directed to the Proxy, and a web browser to test the policy. For Chrome and Microsoft Internet Explorer, you could click the lock icon on the address bar to view certificate. For Firefox, after you clicking the lock icon, click “>” button to show connection details, click “more information”, and then click “view certificate”. If the browser warning that the connection is not secure, one possible reason is you haven’t install/trust the root certificate yet.
|
||||
|
||||
|
||||
### Note: You should exercise caution because web applications may not cooperate with SSL interception, such as SSL pinning, mutual authentication or non-standard SSL implementation.
|
||||
45
src/main/webapp/online-help/proxy/ip_intercept_policy.md
Normal file
45
src/main/webapp/online-help/proxy/ip_intercept_policy.md
Normal file
@@ -0,0 +1,45 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
IP拦截主要用于配置拦截的IP地址和端口号,测试拦截的效果,其中包括拦截黑名单和拦截白名单,当选择黑名单,这配置了IP地址的被测机器的浏览器证书替换,当选择白名单,则浏览器的证书不会替换。拦截的端口一般配置为服务的端口。
|
||||
|
||||
#### [2.配置基础属性](#accordion1_2)
|
||||
|
||||
* 源IP:用户的IP地址
|
||||
* 目的IP:网络服务器的IP
|
||||
* 源端口:用户的端口
|
||||
* 目的端口:服务使用的端口
|
||||
* 端口掩码:使用掩码表示的端口
|
||||
* IP范围:表示一段范围内的IP地址
|
||||
* IP掩码:使用掩码方式表示的IP段地址
|
||||
|
||||
#### [3.业务配置属性](#accordion1_3)
|
||||
|
||||
* 源IP:报文中的源IP
|
||||
* 目的IP:报文中目的IP
|
||||
* 源端口:报文中的源端口
|
||||
* 目的端口:报文中的目的端口
|
||||
|
||||
#### [4.配置约束条件](#accordion1_4)
|
||||
|
||||
* 源IP:与目的IP不同,且合法
|
||||
* 源端口:在0——65535范围以内
|
||||
* 目的IP:与源IP不同,且合法
|
||||
* 目的端口:在0——65535范围以为
|
||||
* IP范围:x.x.x.0——x.x.x.255
|
||||
* IP掩码:x.x.x.x/mask,mask属于16—32
|
||||
|
||||
#### [5.预期效果](#accordion1_5)
|
||||
|
||||
* 黑名单:浏览器证书替换
|
||||
* 白名单:证书未替换
|
||||
|
||||
#### [6.配置生效区域](#accordion1_6)
|
||||
|
||||
配置的生效区域,生效区域包括地区,以及ISP,地区和ISP可组合,即某个地区的某个运营商流量生效, 或者某个地区的所有流量生效,或者某个运营商的所有流量生效,也可全域生效
|
||||
|
||||
#### [7.配置标签](#accordion1_7)
|
||||
|
||||
* 来函:必选项,官方或其他组织下达的配置流量管控依据。
|
||||
* 分类:非必选项,配置分类,例如内容安全、网络攻击等。
|
||||
* 性质:非必选项,配置性质,例如政治、暴力、宗教等。
|
||||
* 标签:非必选项,自定义标签。
|
||||
154
src/main/webapp/online-help/proxy/proxy_policy_object.md
Normal file
154
src/main/webapp/online-help/proxy/proxy_policy_object.md
Normal file
@@ -0,0 +1,154 @@
|
||||
#### [1.Function Introduction](#accordion1_1)
|
||||
|
||||
A policy object is a single object or a collective unit that groups discrete identities such as IP addresses, URLs, applications, or users. With policy objects that are a collective unit, you can reference the object in policy instead of manually selecting multiple objects one at a time. Typically, when creating a policy object, you group objects that require similar permissions in policy.
|
||||
|
||||
#### [2.Key Ring](#accordion1_2)
|
||||
|
||||
On National Proxy System, Key Ring is a pair of private key and public certificate. You can also import a certificate chain containing multiple certificates. Key Ring is a policy object, you can reference it in Intercept Policy. There are three Certificate Type:
|
||||
|
||||
* End-entity Certificate: is used for web servers to identify themselves. The Public Key File MUST be .p12 format that contains entire certificate chain. The Private Key File could be .pem, .key or .p12 format. This certificate type is not applicable to Domain Intercept for it cannot be used to sign other certificates. Expire After parameter is also not applicable to end-entity certificate for the same reason.
|
||||
* Intermedia Certificate: is used to sign other certificates. An intermediate certificate must be signed by another intermediate certificate, or a root certificate. The Public Key File MUST be .p12 format that contains entire certificate chain. The Expire After parameter indicates the expiration of the substitute certificate that was issued by this intermedia certificate.
|
||||
* Root Certificate: is used to sign other certificates. The Public Key File could be .der, .cer, .crt or .pem format. The Expire After parameter has the same meaning as Intermedia Certificate. Specification of certificate formats:
|
||||
* .pem- (Privacy-enhanced Electronic Mail) Base64 encoded DER certificate, enclosed between "-----BEGIN CERTIFICATE-----" and "-----END CERTIFICATE-----"
|
||||
* .cer, .crt, .der – usually in binary DER form, but Base64-encoded certificates are common too (see .pem above)
|
||||
* .p12 – PKCS#12, may contain certificate(s) (public) and private keys (without password protected)
|
||||
|
||||
#### [3.Trusted Certificate](#accordion1_3)
|
||||
|
||||
National Proxy System has a build-in trusted certificate authorities list. When the original certificate is issued by a certificate authority that not in the list, the proxy will issued the substitute certificate with an untrusted root certificate, and so consequently, the browser could identify unsecure connections.
|
||||
|
||||
You can add a custom certificate authority to the trusted certificate authorities of the system.
|
||||
|
||||
The certificate MUST be PEM format.
|
||||
|
||||
Following are the National Proxy System’s default trusted certificate authorities:
|
||||
|
||||
* ACCVRAIZ1
|
||||
* Actalis Authentication Root CA
|
||||
* AddTrust External CA Root
|
||||
* AffirmTrust Commercial
|
||||
* AffirmTrust Networking
|
||||
* AffirmTrust Premium
|
||||
* AffirmTrust Premium ECC
|
||||
* Amazon Root CA 1
|
||||
* Amazon Root CA 2
|
||||
* Amazon Root CA 3
|
||||
* Amazon Root CA 4
|
||||
* Atos TrustedRoot 2011
|
||||
* Autoridad de Certificacion Firmaprofesional CIF A62634068
|
||||
* Baltimore CyberTrust Root
|
||||
* Buypass Class 2 Root CA
|
||||
* Buypass Class 3 Root CA
|
||||
* CA Disig Root R2
|
||||
* CFCA EV ROOT
|
||||
* COMODO Certification Authority
|
||||
* COMODO ECC Certification Authority
|
||||
* COMODO RSA Certification Authority
|
||||
* Certigna
|
||||
* Certinomis - Root CA
|
||||
* Class 2 Primary CA
|
||||
* Certplus Root CA G1
|
||||
* Certplus Root CA G2
|
||||
* Certum Trusted Network CA
|
||||
* Certum Trusted Network CA 2
|
||||
* Chambers of Commerce Root - 2008
|
||||
* AAA Certificate Services
|
||||
* Cybertrust Global Root
|
||||
* D-TRUST Root Class 3 CA 2 2009
|
||||
* D-TRUST Root Class 3 CA 2 EV 2009
|
||||
* DST Root CA X3
|
||||
* Deutsche Telekom Root CA 2
|
||||
* DigiCert Assured ID Root CA
|
||||
* DigiCert Assured ID Root G2
|
||||
* DigiCert Assured ID Root G3
|
||||
* DigiCert Global Root CA
|
||||
* DigiCert Global Root G2
|
||||
* DigiCert Global Root G3
|
||||
* DigiCert High Assurance EV Root CA
|
||||
* DigiCert Trusted Root G4
|
||||
* E-Tugra Certification Authority
|
||||
* EC-ACC
|
||||
* EE Certification Centre Root CA
|
||||
* Entrust.net Certification Authority (2048)
|
||||
* Entrust Root Certification Authority
|
||||
* Entrust Root Certification Authority - EC1
|
||||
* Entrust Root Certification Authority - G2
|
||||
* GDCA TrustAUTH R5 ROOT
|
||||
* GeoTrust Global CA
|
||||
* GeoTrust Primary Certification Authority
|
||||
* GeoTrust Primary Certification Authority - G2
|
||||
* GeoTrust Primary Certification Authority - G3
|
||||
* GeoTrust Universal CA
|
||||
* GeoTrust Universal CA 2
|
||||
* GlobalSign
|
||||
* GlobalSign
|
||||
* GlobalSign Root CA
|
||||
* GlobalSign
|
||||
* GlobalSign
|
||||
* Global Chambersign Root - 2008
|
||||
* Go Daddy Root Certificate Authority - G2
|
||||
* Hellenic Academic and Research Institutions ECC RootCA 2015
|
||||
* Hellenic Academic and Research Institutions RootCA 2011
|
||||
* Hellenic Academic and Research Institutions RootCA 2015
|
||||
* Hongkong Post Root CA 1
|
||||
* ISRG Root X1
|
||||
* IdenTrust Commercial Root CA 1
|
||||
* IdenTrust Public Sector Root CA 1
|
||||
* Izenpe.com
|
||||
* LuxTrust Global Root 2
|
||||
* Microsec e-Szigno Root CA 2009
|
||||
* NetLock Arany (Class Gold) Főtanúsítvány
|
||||
* Network Solutions Certificate Authority
|
||||
* OISTE WISeKey Global Root GA CA
|
||||
* OISTE WISeKey Global Root GB CA
|
||||
* OpenTrust Root CA G1
|
||||
* OpenTrust Root CA G2
|
||||
* OpenTrust Root CA G3
|
||||
* QuoVadis Root Certification Authority
|
||||
* QuoVadis Root CA 1 G3
|
||||
* QuoVadis Root CA 2
|
||||
* QuoVadis Root CA 2 G3
|
||||
* QuoVadis Root CA 3
|
||||
* QuoVadis Root CA 3 G3
|
||||
* SSL.com EV Root Certification Authority ECC
|
||||
* SSL.com EV Root Certification Authority RSA R2
|
||||
* SSL.com Root Certification Authority ECC
|
||||
* SSL.com Root Certification Authority RSA
|
||||
* SZAFIR ROOT CA2
|
||||
* SecureSign RootCA11
|
||||
* SecureTrust CA
|
||||
* Secure Global CA
|
||||
* Sonera Class2 CA
|
||||
* Staat der Nederlanden EV Root CA
|
||||
* Staat der Nederlanden Root CA - G2
|
||||
* Staat der Nederlanden Root CA - G3
|
||||
* Starfield Root Certificate Authority - G2
|
||||
* Starfield Services Root Certificate Authority - G2
|
||||
* SwissSign Gold CA - G2
|
||||
* SwissSign Silver CA - G2
|
||||
* T-TeleSec GlobalRoot Class 2
|
||||
* T-TeleSec GlobalRoot Class 3
|
||||
* TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1
|
||||
* TWCA Global Root CA
|
||||
* TWCA Root Certification Authority
|
||||
* TeliaSonera Root CA v1
|
||||
* TrustCor ECA-1
|
||||
* TrustCor RootCert CA-1
|
||||
* TrustCor RootCert CA-2
|
||||
* TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H5
|
||||
* USERTrust ECC Certification Authority
|
||||
* USERTrust RSA Certification Authority
|
||||
* VeriSign Class 3 Public Primary Certification Authority - G4
|
||||
* VeriSign Class 3 Public Primary Certification Authority - G5
|
||||
* VeriSign Universal Root Certification Authority
|
||||
* VeriSign Class 3 Public Primary Certification Authority - G3
|
||||
* Visa eCommerce Root
|
||||
* XRamp Global Certification Authority
|
||||
* thawte Primary Root CA
|
||||
* thawte Primary Root CA - G2
|
||||
* thawte Primary Root CA - G3
|
||||
* Microsoft Root Authority
|
||||
* Microsoft Root Certificate Authority
|
||||
* Microsoft Root Certificate Authority 2010
|
||||
* Microsoft Root Certificate Authority 2011
|
||||
* Baltimore CyberTrust Root
|
||||
37
src/main/webapp/online-help/ysp/audio_sample.md
Normal file
37
src/main/webapp/online-help/ysp/audio_sample.md
Normal file
@@ -0,0 +1,37 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
音频样例匹配功能,可对网络流量中的音频内容进行分析,找出与用户配置的音频样例相匹配的音视频流量,并执行阻断与监测动作,产生日志
|
||||
|
||||
#### [2.配置基础信息](#accordion1_2)
|
||||
|
||||
* 规则名称:统一填写
|
||||
* 执行动作:(阻断与监测)统一填写
|
||||
|
||||
#### [3.业务配置属性](#accordion1_3)
|
||||
|
||||
* 源文件:上传本地音频文件,将以该文件中包含的音频信息与流量中传输的音频进行匹配,命中后执行配置动作,产生日志
|
||||
* 置信度:当执行动作为监测时,用户可指定匹配命中的最小置信度,置信度可选值为70、80、90、100
|
||||
|
||||
#### [4.配置约束条件](#accordion1_4)
|
||||
|
||||
* 上传的本地音频文件大小应不大于20MB
|
||||
* 上传的本地音频文件时长应不大于2分钟
|
||||
* 支持的本地音频文件格式为:mp4,flv,asf,wmv,avi,mpeg,mov,dat,m4v,m4p,m4b,webm,ogv,wav,mp3
|
||||
|
||||
#### [5.配置生效区域](#accordion1_5)
|
||||
|
||||
统一填写
|
||||
|
||||
#### [6.配置标签](#accordion1_6)
|
||||
|
||||
* 统一填写
|
||||
|
||||
#### [7.预期效果](#accordion1_7)
|
||||
|
||||
* 首次分析阻断效果:命中样例配置后,客户端收到NTC系统发送的虚假RST报文,如此时该音视频未缓存或下载完成,则中断当前音视频的播放或下载
|
||||
* 后续访问阻断效果:首次分析命中后,会生成该音视频的传输特征,后续访问直接依据传输特征进行阻断
|
||||
|
||||
#### [8.免责声明](#accordion1_8)
|
||||
|
||||
* 对于音视频编码的索引信息在音视频文件尾部的情况,本系统不予支持
|
||||
* 由于音视频内容分析滞后于网络传输,本系统不保证首次观看音视频时的阻断效果
|
||||
35
src/main/webapp/online-help/ysp/file_digest.md
Normal file
35
src/main/webapp/online-help/ysp/file_digest.md
Normal file
@@ -0,0 +1,35 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
文件摘要检测功能,可提取网络流量中传输文件的摘要信息,并找出与用户配置的文件具有相似摘要的流量,命中配置后,执行阻断与监测动作,产生日志
|
||||
|
||||
#### [2.配置基础信息](#accordion1_2)
|
||||
|
||||
* 规则名称:统一填写
|
||||
* 执行动作:(阻断与监测)统一填写
|
||||
|
||||
#### [3.业务配置属性](#accordion1_3)
|
||||
|
||||
* 文件:上传本地文件,该文件将与流量中包含的文件进行匹配,命中后执行配置动作,产生日志
|
||||
* 置信度:当执行动作为监测时,用户可指定匹配命中的最小置信度,置信度可选值为70、80、90、100
|
||||
|
||||
#### [4.配置约束条件](#accordion1_4)
|
||||
|
||||
* 上传的本地文件大小应不大于20MB
|
||||
* 支持的本地文件格式为:txt,doc,img,docx,pptx,xlsx,xls,ppt
|
||||
|
||||
#### [5.配置生效区域](#accordion1_5)
|
||||
|
||||
统一填写
|
||||
|
||||
#### [6.配置标签](#accordion1_6)
|
||||
|
||||
* 统一填写
|
||||
|
||||
#### [7.预期效果](#accordion1_7)
|
||||
|
||||
* 首次分析阻断效果:当客户端下载某文件,并命中文件摘要配置后,客户端将收到NTC系统发送的虚假RST报文,如此时该文件未下载完成,则中断当前文件的下载
|
||||
* 后续访问阻断效果:首次分析命中后,会生成该文件的传输特征,后续下载请求直接依据传输特征进行阻断
|
||||
|
||||
#### [8.免责声明](#accordion1_8)
|
||||
|
||||
* 由于文件摘要的分析滞后于网络传输,本系统不保证首次文件下载时的阻断效果
|
||||
33
src/main/webapp/online-help/ysp/picture_sample.md
Normal file
33
src/main/webapp/online-help/ysp/picture_sample.md
Normal file
@@ -0,0 +1,33 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
图片样例匹配功能,可对网络流量中的图片内容进行分析,找出与用户配置的图片样例相匹配的图片流量,并执行阻断与监测动作,产生日志
|
||||
|
||||
#### [2.配置基础信息](#accordion1_2)
|
||||
|
||||
* 规则名称:统一填写
|
||||
* 执行动作:阻断与监测(统一填写)
|
||||
|
||||
#### [3.业务配置属性](#accordion1_3)
|
||||
|
||||
* 源文件:上传本地图片文件,将以该文件中包含的图片画面信息与流量中传输的图片进行匹配,命中后执行配置动作,产生日志
|
||||
* 置信度:当执行动作为监测时,用户可指定匹配命中的最小置信度,置信度可选值为70、80、90、100
|
||||
|
||||
#### [4\. 配置约束条件](#accordion1_4)
|
||||
|
||||
* 支持的上传图片格式为:bmp,jpg,tiff,raw,gif
|
||||
|
||||
#### [5.配置生效区域](#accordion1_5)
|
||||
|
||||
统一填写
|
||||
|
||||
#### [6.配置标签](#accordion1_6)
|
||||
|
||||
* 统一填写
|
||||
|
||||
#### [7.预期效果](#accordion1_7)
|
||||
|
||||
* 阻断效果:客户端访问某图片命中图片样例配置后,会生成该图片的传输特征,后续对该图片的访问直接依据传输特征进行阻断
|
||||
|
||||
#### [8.免责声明](#accordion1_8)
|
||||
|
||||
* 对于图片文件大于4MB的图片,本系统不予支持
|
||||
38
src/main/webapp/online-help/ysp/video_sample.md
Normal file
38
src/main/webapp/online-help/ysp/video_sample.md
Normal file
@@ -0,0 +1,38 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
视频样例匹配功能,可对网络流量中的视频内容进行分析,找出与用户配置的视频样例相匹配的视频流量,并执行阻断与监测动作,产生日志
|
||||
|
||||
#### [2.配置基础信息](#accordion1_2)
|
||||
|
||||
* 规则名称:统一填写
|
||||
* 执行动作:(阻断与监测)统一填写
|
||||
|
||||
#### [3.业务配置属性](#accordion1_3)
|
||||
|
||||
* 源文件:上传本地视频文件,将以该文件中包含的视频画面信息与流量中传输的视频进行匹配,命中后执行配置动作,产生日志
|
||||
* 置信度:当执行动作为监测时,用户可指定匹配命中的最小置信度,置信度可选值为70、80、90、100
|
||||
|
||||
#### [4.配置约束条件](#accordion1_4)
|
||||
|
||||
* 上传的本地视频文件大小应不大于20MB
|
||||
* 上传的本地视频文件时长应不大于2分钟
|
||||
* 支持的本地视频文件格式为:mp4,flv,asf,wmv,avi,mpeg,mov,dat,m4v,m4p,m4b,webm
|
||||
|
||||
#### [5.配置生效区域](#accordion1_5)
|
||||
|
||||
统一填写
|
||||
|
||||
#### [6.配置标签](#accordion1_6)
|
||||
|
||||
* 统一填写
|
||||
|
||||
#### [7.预期效果](#accordion1_7)
|
||||
|
||||
* 首次分析阻断效果:命中样例配置后,客户端收到NTC系统发送的虚假RST报文,如此时该视频未缓存或下载完成,则中断当前视频的播放或下载
|
||||
* 后续访问阻断效果:首次分析命中后,会生成该视频的传输特征,后续访问直接依据传输特征进行阻断
|
||||
|
||||
#### [8.免责声明](#accordion1_8)
|
||||
|
||||
* 对于音视频编码的索引信息在音视频文件尾部的情况,本系统不予支持
|
||||
* 对于分辨率大于4兆的视频,本系统不予支持
|
||||
* 由于音视频内容分析滞后于网络传输,本系统不保证首次观看音视频时的阻断效果
|
||||
34
src/main/webapp/online-help/ysp/video_scene.md
Normal file
34
src/main/webapp/online-help/ysp/video_scene.md
Normal file
@@ -0,0 +1,34 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
视频场景检测功能,可检测出网络中传输的包含视频色情场景的流量,并根据用户配置,进行阻断或监测,产生日志
|
||||
|
||||
#### [2.配置基础信息](#accordion1_2)
|
||||
|
||||
* 执行动作:(阻断与监测)统一填写
|
||||
|
||||
#### [3.业务配置属性](#accordion1_3)
|
||||
|
||||
* 置信度:当执行动作为监测时,用户可指定匹配命中的最小置信度,置信度可选值为70、80、90、100
|
||||
|
||||
#### [4.配置约束条件](#accordion1_4)
|
||||
|
||||
* 无
|
||||
|
||||
#### [5.配置生效区域](#accordion1_5)
|
||||
|
||||
统一填写
|
||||
|
||||
#### [6.配置标签](#accordion1_6)
|
||||
|
||||
* 统一填写
|
||||
|
||||
#### [7.预期效果](#accordion1_7)
|
||||
|
||||
* 首次分析阻断效果:检测到色情场景后,客户端收到NTC系统发送的虚假RST报文,如此时该视频未缓存或下载完成,则中断当前视频的播放或下载
|
||||
* 后续访问阻断效果:首次分析命中后,会生成该视频的传输特征,后续访问直接通过传输特征进行阻断
|
||||
|
||||
#### [8.免责声明](#accordion1_8)
|
||||
|
||||
* 对于音视频编码的索引信息在音视频文件尾部的情况,本系统不予支持
|
||||
* 对于分辨率大于4兆的视频,本系统不予支持
|
||||
* 由于音视频内容分析滞后于网络传输,本系统不保证首次观看音视频时的阻断效果
|
||||
35
src/main/webapp/online-help/ysp/voip_sample.md
Normal file
35
src/main/webapp/online-help/ysp/voip_sample.md
Normal file
@@ -0,0 +1,35 @@
|
||||
#### [1.功能简介](#accordion1_1)
|
||||
|
||||
VOIP样例匹配功能,可对VOIP流量中的语音内容进行分析,找出与用户配置的音频样例相匹配的VOIP流量,并执行阻断与监测动作,产生日志
|
||||
|
||||
#### [2.配置基础信息](#accordion1_2)
|
||||
|
||||
* 规则名称:统一填写
|
||||
* 执行动作:(阻断与监测)统一填写
|
||||
|
||||
#### [3.业务配置属性](#accordion1_3)
|
||||
|
||||
* 源文件:上传本地音频文件,将以该文件中包含的音频信息与流量中传输的VOIP音频内容进行匹配,命中后执行配置动作,产生日志
|
||||
* 置信度:当执行动作为监测时,用户可指定匹配命中的最小置信度,置信度可选值为70、80、90、100
|
||||
|
||||
#### [4.配置约束条件](#accordion1_4)
|
||||
|
||||
* 上传的本地音频文件大小应不大于20MB
|
||||
* 上传的本地音频文件时长应不大于2分钟
|
||||
* 支持的本地音频文件格式为:mp4,flv,asf,wmv,avi,mpeg,mov,dat,m4v,m4p,m4b,webm,ogv,wav,mp3
|
||||
|
||||
#### [5.配置生效区域](#accordion1_5)
|
||||
|
||||
统一填写
|
||||
|
||||
#### [6.配置标签](#accordion1_6)
|
||||
|
||||
* 统一填写
|
||||
|
||||
#### [7.预期效果](#accordion1_7)
|
||||
|
||||
* 阻断效果:命中配置后,通过串联设备临时规则,丢弃后续传输报文,已接通的VOIP电话不中断,但无后继语音内容
|
||||
|
||||
#### [8.免责声明](#accordion1_8)
|
||||
|
||||
无
|
||||
15
src/main/webapp/static/global/plugins/editor.md-master/.gitignore
vendored
Normal file
15
src/main/webapp/static/global/plugins/editor.md-master/.gitignore
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
logs
|
||||
*.log
|
||||
*.pid
|
||||
*.seed
|
||||
node_modules/
|
||||
.sass-cache/
|
||||
research/
|
||||
test/
|
||||
backup/
|
||||
examples/uploads/**/*
|
||||
*.bat
|
||||
*.sh
|
||||
.project
|
||||
.url
|
||||
css/*.map
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"esnext": true,
|
||||
"bitwise": true,
|
||||
"camelcase": true,
|
||||
"curly": true,
|
||||
"eqeqeq": true,
|
||||
"immed": true,
|
||||
"indent": 4,
|
||||
"latedef": true,
|
||||
"newcap": true,
|
||||
"noarg": true,
|
||||
"quotmark": "double",
|
||||
"regexp": true,
|
||||
"undef": true,
|
||||
"unused": true,
|
||||
"strict": true,
|
||||
"trailing": true,
|
||||
"smarttabs": true,
|
||||
"white": true
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
#Bugs
|
||||
|
||||
> 说明:删除线表示已经解决。
|
||||
|
||||
####IE8
|
||||
|
||||
- ~~不能加载;~~
|
||||
- flowChart(流程图)、sequenceDiagram(序列图)不支持IE8;
|
||||
- ~~不支持Markdown转HTML页面解析预览;~~
|
||||
|
||||
####IE8 & IE9 & IE10
|
||||
|
||||
- KaTeX会出现解析错误,但不影响程序运行;
|
||||
|
||||
####Sea.js
|
||||
|
||||
- ~~Raphael.js无法加载;~~
|
||||
|
||||
####Require.js
|
||||
|
||||
- ~~CodeMirror编辑器的代码无法高亮;~~
|
||||
- ~~sequenceDiagram不支持: `Uncaught TypeError: Cannot call method 'isArray' of undefined.`~~
|
||||
534
src/main/webapp/static/global/plugins/editor.md-master/CHANGE.md
Normal file
534
src/main/webapp/static/global/plugins/editor.md-master/CHANGE.md
Normal file
@@ -0,0 +1,534 @@
|
||||
## 更新日志
|
||||
|
||||
### v1.0.x
|
||||
|
||||
##### v1.0.0 beta
|
||||
|
||||
预览版:基本功能完成;
|
||||
|
||||
##### v1.0.0 releases
|
||||
|
||||
发布 v1.0.0 正式版。
|
||||
|
||||
主要更新:
|
||||
|
||||
- 新建分支 `mathjax-version`,但不打算继续对此分支进行开发;
|
||||
|
||||
- 移除 MathJax,改用 KaTeX [#2](https://github.com/pandao/editor.md/issues/2),解析和预览响应速度大幅度提高 [#3](https://github.com/pandao/editor.md/issues/3);
|
||||
- 移除 `mathjax` 配置项;
|
||||
- 移除 `mathjaxURL` 属性;
|
||||
- 移除 `setMathJaxConfig()` 方法;
|
||||
- 移除 `loadMathJax()` 方法;
|
||||
- 移除MathJax的所有示例;
|
||||
- 新增 `tex` 配置项,表示是否开启支持科学公式 TeX ,基于 KaTeX;
|
||||
- 新增 `katexURL` 属性;
|
||||
- 新增 `loadKaTeX` 方法;
|
||||
- 新增 KaTeX 的示例;
|
||||
|
||||
- `setCodeEditor()` 方法更名为 `setCodeMirror()`;
|
||||
|
||||
- 合并 CodeMirror 使用到的多个 JS 模块文件,大幅减少 HTTP 请求,加快下载速度;
|
||||
- 新增合并后的两个模块文件:`./lib/codemirror/modes.min.js`、`./lib/codemirror/addons.min.js` ;
|
||||
- `Gulpfile.js` 新增合并 CodeMirror 模块文件的任务方法 `codemirror-mode` 和 `codemirror-addon` ;
|
||||
- 另外在使用 Require.js 时,因为 CodeMirror 的严格模块依赖的限制,不能使用上述合并的模块文件,仍然采用动态加载多个模块文件;
|
||||
|
||||
- 更新 `README.md` 等相关文档和示例;
|
||||
|
||||
- 解决 Sea.js 环境下 Raphael.js 无法运行导致不支持流程图和时序图的问题,即必须先加载 Raphael.js ,后加载 Sea.js ;
|
||||
|
||||
### v1.1.x
|
||||
|
||||
##### v1.1.0
|
||||
|
||||
主要更新:
|
||||
|
||||
- 设计并更换了 Logo;
|
||||
- 新增添加图片、链接、锚点链接、代码块、预格式文本等操作弹出对话框层及示例;
|
||||
- 新增支持图片(跨域)上传;
|
||||
- 改用 `<textarea>` 来存放 Markdown 源文档;
|
||||
- 新增支持自定义工具栏;
|
||||
- 新增支持多语言;
|
||||
- 新增支持 Zepto.js;
|
||||
- 新增支持多个 Editor.md 并存和动态加载 Editor.md 及示例;
|
||||
- 新增支持智能识别和解析 HTML 标签及示例;
|
||||
- 新增多个外部操作方法接口及示例;
|
||||
- 修复了一些大大小小的 Bug;
|
||||
|
||||
具体更新如下:
|
||||
|
||||
- 更换 Logo,建立基础 VI;
|
||||
- 创建了全系列 WebFont 字体 `dist/fonts/editormd-logo.*` ;
|
||||
- 新增样式类 `editormd-logo` 等;
|
||||
|
||||
- 改用 `<textarea>` 来存放 Markdown 源文档;
|
||||
- 原先使用 `<script type="text/markdown"></script>` 来存放 Markdown 源文档;
|
||||
- 创建 Editor.md 只需要写一个 `<div id="xxxx"></div>` ,如果没有添加 `class="editormd"` 属性会自动添加,另外如果不存在 `<textarea>` 标签,则也会自动添加 `<textarea>` ;
|
||||
|
||||
- 新增支持智能识别和解析 HTML 标签,增强了 Markdown 语法的扩展性,几乎无限,例如:插入视频等等;
|
||||
- 新增配置项 `htmlDecode` ,表示是否开启 HTML 标签识别和解析,但是为了安全性,默认不开启;
|
||||
- 新增识别和解析 HTML 标签的示例;
|
||||
|
||||
- 新增插入链接、锚点链接、预格式文本和代码块的弹出对话框层;
|
||||
- 弹出层改为使用固定定位;
|
||||
- 新增动态创建对话框的方法 `createDialog()`;
|
||||
- 新增静态属性 `editormd.codeLanguages` ,用于存放代码语言列表;
|
||||
|
||||
- 开始支持图片上传;
|
||||
- 新增添加图片(上传)弹出对话框层;
|
||||
- 支持基于 iframe 的跨域上传,并添加相应的示例( PHP 版);
|
||||
|
||||
- 开始支持自定义工具栏图标及操作处理;
|
||||
- 配置项 `toolbarIcons` 类型由数组更改为函数,返回一个图标按钮列表数组;
|
||||
- 新增配置项 `toolbarHandlers` 和 `toolbarIconsTexts` ,分别用于自定义按钮操作处理和按钮内容文本;
|
||||
- 新增方法 `getToolbarHandles()` ,用于可在外部使用默认的操作方法;
|
||||
- 新增成员属性 `activeIcon` ,可获取当前或上次点击的工具栏图标的 jQuery 实例对象;
|
||||
|
||||
- 新增表单取值、自定义工具栏、图片上传、多个 Editor.md 并存和动态加载 Editor.md 等多个示例;
|
||||
|
||||
- 新增插入锚点按钮和操作处理;
|
||||
|
||||
- 新增预览 HTML 内容窗口的关闭按钮,之前只能按 ESC 才能退出 HTML 全窗口预览;
|
||||
|
||||
- 新增多语言( l18n )及动态加载语言包支持;
|
||||
- 新增英语 `en` 和繁体中文 `zh-tw` 语言包模块;
|
||||
- 修改一些方法的内部实现以支持动态语言加载:
|
||||
- `toolbarHandler()` 更为 `setToolbarHandler()` ;
|
||||
- `setToolbar()` 方法包含 `setToolbarHandler()` ;
|
||||
- 新建 `createInfoDialog()` 方法;
|
||||
- 修改 `showInfoDialog()` 和 `hideInfoDialog()` 方法的内部实现等;
|
||||
|
||||
- 修改多次 Bug ,并优化触摸事件,改进对 iPad 的支持;
|
||||
|
||||
- 工具栏新增清空按钮和清空方法 `clear()` ,解决工具栏文本会被选中出现蓝底的问题;
|
||||
|
||||
- 配置项 `tocStartLevel` 的默认值由 2 改为 1,表示默认从 H1 开始生成 ToC;
|
||||
|
||||
- 解决 IE8 下加载出错的问题;
|
||||
- 新增两个静态成员属性 `isIE` 和 `isIE8` ,用于判断 IE8;
|
||||
- 由于 IE8 不支持 FlowChart 和 SequenceDiagram,默认在 IE8 下不加载这两个组件,无论是否开启;
|
||||
|
||||
- 新增 Zepto.js 的支持;
|
||||
- 为了兼容 Zepto.js ,某些元素在操作处理上不再使用 `outerWidth()` 、 `outerHeight()` 、`hover()` 、`is()` 等方法;
|
||||
- 为了避免修改 flowChart.js 和 sequence-diagram.js 的源码,所以想支持 flowChart 或 sequenceDiagram 得加上这一句: `var jQuery = Zepto;`;
|
||||
|
||||
- 新增 `editormd.$name` 属性,修改 `editormd.homePage` 属性的新地址;
|
||||
|
||||
- `editormd.markdownToHTML()` 新增方法返回一个 jQuery 实例对象;
|
||||
- 该实例对象定义了一个 `getMarkdown()`方法,用于获取 Markdown 源代码;
|
||||
- 该实例对象定义了一个 `tocContainer` 成员属性,即 ToC 列表的父层的 jQuery 实例对象;
|
||||
|
||||
- 新增只读模式;
|
||||
- 新增配置项 `readOnly` ,默认值为 `false` ,即可编辑模式;
|
||||
- 其他相关改动;
|
||||
|
||||
- 新增方法 `focus()` 、 `setCursor()` 、 `getCursor()` 、`setSelection()` 、`getSelection()` 、 `replaceSelection()` 和 `insertValue()` 方法,并增加对应的示例;
|
||||
|
||||
- 新增配置项 `saveHTMLToTextarea` ,用于将解析后的 HTML 保存到 Textarea,以供提交到后台程序;
|
||||
- `getHTML()` 方法必须在 `saveHTMLToTextarea == true` 的情况下才能使用;
|
||||
- 新增 `getHTML()` 方法的别名 `getTextareaSavedHTML()` 方法;
|
||||
- 新增方法 `getPreviewedHTML()` ,用于获取预览窗口的 HTML ;
|
||||
|
||||
- 修复了一些大大小小的 Bugs;
|
||||
|
||||
##### v1.1.1
|
||||
|
||||
- 接受一个 pull 请求,修复了 `getHTML ()` 和 `getPreviewedHTML()` 方法中的 3 处错误;
|
||||
|
||||
##### v1.1.2
|
||||
|
||||
- 修复 Bug [#10](https://github.com/pandao/editor.md/issues/10);
|
||||
- 修复 Bug [#12](https://github.com/pandao/editor.md/issues/12);
|
||||
|
||||
##### v1.1.3
|
||||
|
||||
- 修复 Bug [#14](https://github.com/pandao/editor.md/issues/14);
|
||||
- 修复 Bug [#15](https://github.com/pandao/editor.md/issues/15);
|
||||
|
||||
##### v1.1.4
|
||||
|
||||
- 修复 Bug [#17](https://github.com/pandao/editor.md/issues/17);
|
||||
- 修改了 `getToolbarHandles()` 和 `setToolbarHandler()` 方法;
|
||||
- 从 `editormd.scss` 中分离出 `editormd.logo.scss` ,并生成 `editormd.logo.css` ,以便单独使用;
|
||||
- 同时修改了 `Gulpfile.js` 的相应任务;
|
||||
|
||||
##### v1.1.5
|
||||
|
||||
- 修复 Bug [#18](https://github.com/pandao/editor.md/issues/18);
|
||||
- 修改了 `showInfoDialog()` 和 `createInfoDialog()` 方法;
|
||||
- 新增 `infoDialogPosition()` 方法;
|
||||
|
||||
- 修复 Bug [#20](https://github.com/pandao/editor.md/issues/20);
|
||||
- 修改了引用的处理函数;
|
||||
- 插入的 headers 的 `#` 号后面都加上了一个空格;
|
||||
|
||||
##### v1.1.6
|
||||
|
||||
修复多处 Bug,具体如下:
|
||||
|
||||
- 修复 Bug [#23](https://github.com/pandao/editor.md/issues/23),即 Headers 的 id 属性的重复及中文问题;
|
||||
- 修改了 `editormd.markedRenderer()` 方法;
|
||||
|
||||
- 修复 Bug [#24](https://github.com/pandao/editor.md/issues/24);
|
||||
- 修改了 `setMarkdown()` 、 `clear()` 和 `loadedDisplay()` 方法的内部实现;
|
||||
- 新增了 `katexRender()` 、 `flowChartAndSequenceDiagramRender()` 、 `previewCodeHighlight()` 方法;
|
||||
|
||||
- 修复有些情况下无法保存 Markdown 源文档到 textarea 的问题;
|
||||
- 修改了 `setCodeMirror()` 、 `recreateEditor()` 等方法;
|
||||
|
||||
- 修改了以上 Bug 及部分相关示例文件;
|
||||
|
||||
##### v1.1.7
|
||||
|
||||
修复多处 Bug,具体如下:
|
||||
|
||||
- 修复 Bug [#25](https://github.com/pandao/editor.md/issues/25);
|
||||
- 修改了 `loadedDisplay()` 方法,将 `settings.onload` 移动了 `CodeMirror.on("change")` 事件注册后再触发;
|
||||
|
||||
- 修复 Bug [#26](https://github.com/pandao/editor.md/issues/26);
|
||||
- 修改了 `saveToTextareas()` 方法;
|
||||
- 新增 `state.loaded` 和 `state.watching` 两个属性;
|
||||
|
||||
- 修改了以上 Bug 相关示例文件;
|
||||
|
||||
##### v1.1.8
|
||||
|
||||
改进功能,具体如下:
|
||||
|
||||
- 改进 [#27](https://github.com/pandao/editor.md/issues/27);
|
||||
- 新增配置项 `matchWordHighlight` ,可选值有: `true, false, "onselected"` ,默认值为 `true` ,即开启自动匹配和标示相同单词;
|
||||
|
||||
- 改进 [#28](https://github.com/pandao/editor.md/issues/28);
|
||||
- 将 `jquery.min.js` 、 `font-awesome.min.css` 、 `github-markdown.css` 移除(这是一个疏忽,它们不是动态加载的依赖模块或者不需要的,避免不必要的硬盘空间占用);
|
||||
|
||||
- 修改了所有相关的示例文件;
|
||||
|
||||
##### v1.1.9
|
||||
|
||||
- 修复无法解析 heading link 的 Bug [#29](https://github.com/pandao/editor.md/issues/29);
|
||||
|
||||
- 修改了 `editormd.markedRenderer()` 方法的内部实现;
|
||||
- 新增了 `editormd.trim()` ,用于清除字符串两边的空格;
|
||||
- 修改了所有相关的示例文件和测试用例 `marked-heading-link-test.html` ;
|
||||
|
||||
- 修改了 `README.md` ,添加了 `Shields.io` 图标;
|
||||
|
||||
### v1.2
|
||||
|
||||
##### v1.2.0
|
||||
|
||||
v1.2.0 主要更新:
|
||||
|
||||
- 新增代码折叠、搜索替换、自定义样式主题和自定义快捷键等功能;
|
||||
- 新增 Emoji 表情、@Link 、GFM Task Lists 支持;
|
||||
- 新增表格插入、Emoji 表情插入、HTML 实体字符插入、使用帮助等对话框;
|
||||
- 新增插件扩展机制;
|
||||
- 新增手动加载依赖模块方式;
|
||||
- 改用 `Prefixes.css` 作 CSS 前缀预处理;
|
||||
- 改进和增强工具栏自定义功能,完善事件监听和处理方法;
|
||||
- 部分功能改进(更加方便的预格式文本/代码插入、自动闭合标签等)、新增多个方法、改进 Require.js 支持和修复多个 Bug 等等;
|
||||
|
||||
**具体更新如下:**
|
||||
|
||||
- 新建 v1.1.x 分支;
|
||||
- v1.2 文件结构变动较大;
|
||||
|
||||
- 新增代码折叠、自动闭合标签和搜索替换功能;
|
||||
- 搜索快捷键 `Ctrl + F / Command + F` ;
|
||||
- 替换快捷键 `Ctrl + Shift + F / Command + Option + F` ;
|
||||
- 折叠快捷键 `Ctrl + Q / Command + Q` ;
|
||||
|
||||
- 新增自定义主题支持;
|
||||
- 新增 3 个成员方法 `setTheme()` 、 `setCodeMirrorOption()` 和 `getCodeMirrorOption()` ;
|
||||
|
||||
- 新增 @Link 支持;
|
||||
|
||||
- 新增 GFM Task Lists 支持;
|
||||
|
||||
- 新增 Emoji 表情支持;
|
||||
- 支持 Github emoji `:emoji-name:` 、FontAwesome icons(`:fa-xxx:`)、Twitter emoji (twemoji) ( `:tw-xxxx:` )、Editor.md logo icons( `:editormd-logo:` )形式的 Emoji;
|
||||
- 新增属性 `editormd.emoji` 、 `editormd.twemoji` 、 `editormd.urls` 和 `editormd.regex`;
|
||||
|
||||
- 新增 HTML 实体字符插入、插入表格和使用帮助对话框;
|
||||
- 修改了 `createDialog()` 等方法;
|
||||
- 新增 `mask` 成员属性和锁屏方法 `editormd.lockScreen()` 、 `editormd.fn.lockScreen()` ;
|
||||
|
||||
- 改进插入预格式文本和代码对话框;
|
||||
- 将 `<textarea>` 改为 `CodeMirror` ,输入更加方便和直观;
|
||||
|
||||
- 新增自定义键盘快捷键功能;
|
||||
- 新增 2 个方法: `addKeyMap()` 和 `removeKayMap()`;
|
||||
|
||||
- 改用 `Prefixes.css` 作CSS前缀预处理;
|
||||
- SCSS前缀预处理mixins改用 [Prefixes.scss](https://github.com/pandao/prefixes.scss "Prefixes.scss");
|
||||
|
||||
- 改进和增强工具栏自定义功能;
|
||||
- 新增配置项 `toolbarCustomIcons` ,用于增加自定义工具栏的功能,可以直接插入 HTML 标签,不使用默认的元素创建图标;
|
||||
- 新增工具栏列表预设值属性 `editormd.toolbarModes` ;
|
||||
- 移除成员属性 `toolbarIconHandlers` ;
|
||||
|
||||
- 完善和新增事件处理方法;
|
||||
- 新增事件回调注册方法 `on()` ;
|
||||
- 新增事件回调移除方法 `off()` ;
|
||||
- 新增事件回调处理配置项: `onresize` 、 `onscroll` 、`onpreviewscroll` 、 `onpreviewing` 、 `onpreviewed` 、`onwatch` 和 `onunwatch` ;
|
||||
|
||||
- 新增手动加载依赖模块方式,以便可同步使用成员方法;
|
||||
- 新增属性 `autoLoadModules` ,默认值为 `true` ;
|
||||
|
||||
- 新增插件及扩展机制;
|
||||
|
||||
- 新增插件自定义机制,改变整体结构(包括文件结构),以便更加方便地实现插件扩展;
|
||||
- 新增对象扩展方法 `extends()` 、 `set()` ;
|
||||
|
||||
- 新增成员方法和属性:
|
||||
|
||||
- 新增两个方法: `setValue()` 、`getValue()`;
|
||||
- 新增 `config()` 方法,用于加载后重新配置;
|
||||
- 增加两个属性 `cm` ,是 `codeEditor` 的简写, `cmElement` 是 `codeMirror` 的别名;
|
||||
|
||||
- 成员方法的改进:
|
||||
|
||||
- 改进: `showToolbar()` 和 `hideToolbar()` 方法增加一个 `callback` 函数,用于直接回调操作;
|
||||
- 改进:修改了 `previewCodeHighlight()` 方法;
|
||||
- 更名: `recreateEditor()` 更名为 `recreate()` ;
|
||||
- 移除 `setMarked()` 方法;
|
||||
|
||||
- 新增 HTML 标签解析过滤机制;
|
||||
- 通过设置 `settings.htmlDecode = "style,script,iframe"` 来实现过滤指定标签的解析;
|
||||
|
||||
- 改进 Require.js 支持;
|
||||
- 修复 Require.js 下 CodeMirror 编辑器的代码无法高亮的问题;
|
||||
- 更新 `underscore` 版本至 `1.8.2` ;
|
||||
- 移除 `editormd.requirejsInit()` 和 `editormd.requireModules()` 方法;
|
||||
- 新增 `Require.js/AMD` 专用版本文件 `editormd.amd.js` ;
|
||||
- 新建 Gulp 任务 `amd` ;
|
||||
|
||||
- 修改和新增以上改进等相关示例;
|
||||
|
||||
### v1.3
|
||||
|
||||
#### v1.3.0
|
||||
|
||||
主要更新:
|
||||
|
||||
- 预设键盘快捷键处理(粗体等),插入 Markdown 更加方便;
|
||||
- 更新 CodeMirror 版本为 `5.0` ;
|
||||
- 更新 Marked 版本为 `0.3.3`;
|
||||
- 新增自动高度和工具栏固定定位功能;
|
||||
- 改进表格插入对话框;
|
||||
- 工具栏新增三个按钮,分别是将所选文本首字母转成大写、转成小写、转成大写;
|
||||
- 修改使用帮助文档;
|
||||
- 修复多个 Bug;
|
||||
|
||||
具体更新如下:
|
||||
|
||||
- 新增常用键盘快捷键预设处理;
|
||||
- 新增属性 `editormd.keyMaps` ,预设一些常用操作,例如插入粗体等;
|
||||
- 新增成员方法 `registerKeyMaps()` ;
|
||||
- 退出HTML全屏预览快捷键更改为 `Shift + ESC`;
|
||||
- 新增配置项 `disabledKeyMaps` ,用于屏蔽一些快捷键操作;
|
||||
- 更新 CodeMirror 版本为 `5.0`;
|
||||
- 修改无法输入 `/` 的问题;
|
||||
- 更新 Marked 版本为 `0.3.3`;
|
||||
- 新增自动高度和工具栏固定定位(滚动条拖动时)模式;
|
||||
- 新增配置项 `settings.autoHeight` ;
|
||||
- 新增配置项 `settings.toolbarAutoFixed` ;
|
||||
- 新增方法 `setToolbarAutoFixed(true|false)` ;
|
||||
- 新增邮箱地址自动添加链接功能;
|
||||
- 新增配置项 `emailLink` ,默认为 `true` ;
|
||||
- 改进表格插入对话框;
|
||||
- 工具栏新增三个按钮,分别是将所选文本首字母转成大写、转成小写、转成大写;
|
||||
- 新增方法 `editormd.ucwords()` ,别名 `editormd.wordsFirstUpperCase()` ;
|
||||
- 新增方法 `editormd.ucfirst()` ,别名 `editormd.firstUpperCase()` ;
|
||||
- 新增两个成员方法 `getSelections()` 和 `getSelections()` ;
|
||||
|
||||
- 修复 Font awesome 图标 emoji 部分无法解析的 Bug,[#39](https://github.com/pandao/editor.md/issues/39)
|
||||
- 改进 @link 功能 [#40](https://github.com/pandao/editor.md/issues/40);
|
||||
- 新增配置项 `atLink` ,默认为 `true` ;
|
||||
- 修复无法输入 `/` 的问题 [#42](https://github.com/pandao/editor.md/issues/42);
|
||||
- 修改使用帮助说明的错误 [#43](https://github.com/pandao/editor.md/issues/43);
|
||||
- 新增配置项 `pluginPath`,默认为空时,等于 `settings.path + "../plugins/"` ;
|
||||
|
||||
### v1.4
|
||||
|
||||
#### v1.4.0
|
||||
|
||||
主要更新:
|
||||
|
||||
- 新增延迟解析机制,预览更即时;
|
||||
- 新增跳转到指定行的功能和对话框;
|
||||
- 新增 ToC 下拉菜单、自定义 ToC 容器的功能;
|
||||
- 新增跳转到行、搜索的工具栏按钮;
|
||||
- 新增支持插入和解析(打印)分页符;
|
||||
- 改进快捷键功能和自动高度模式等;
|
||||
- 改进:将锚点链接改名为引用链接;
|
||||
- 改进编辑器重建和重配置功能;
|
||||
- 修复多个 Bug;
|
||||
|
||||
具体更新:
|
||||
|
||||
- 新增延迟解析预览的机制,解决输入太多太快出现的 “延迟卡顿” 问题;
|
||||
- 新增配置项 `delay` ,默认值为 `300`;
|
||||
- 修复当输入速度太快时,解析Flowchart会抛出错误的问题;
|
||||
- 修改 iPad 等移动终端的浏览器无法上传图片的问题 [#48](https://github.com/pandao/editor.md/issues/48);
|
||||
- 修复单独引用 `editormd.preview.css` 时无法显示 Font Awesome 和 Editor.md logo 字体的问题;
|
||||
- 更新和修改 Gulp 构建;
|
||||
- 修改了 `Gulpfile.js` ,并且 `gulp-ruby-sass` 升级到最新版本 `1.0.0-alpha.3` ;
|
||||
- 编辑 SCSS 时,不再生成 CSS 的 Source map 文件;
|
||||
- 执行 jshint 和更正一些 JS 写法的不规范,精简了代码;
|
||||
- 新增配置项 `appendMarkdown` 和 `appendMarkdown()` 方法,用于(初始化前后)追加 Markdown 到 Textarea ;
|
||||
- 改进部分预设快捷键功能,包括 F9 (watch)、F10 (preview)、F11 (fullscreen)等;
|
||||
- 修复自动高度模式下出现的几个问题;
|
||||
- 全屏退出时高度不正确的问题:修改了 `fullscreenExit()` 方法的内部实现;
|
||||
- 当解析预览后的 HTML 内容高度高于 Markdown 源码编辑器高度时,无法正确预览的问题 [#49](https://github.com/pandao/editor.md/issues/49);
|
||||
- 修改 `onscroll` 和 `onpreviewscroll` 无法访问 `this` 的问题;
|
||||
- 修改 `init()` 方法,可以只设置一个参数;
|
||||
- 新增插入 TeX (KaTeX) 公式的快捷键 `Ctrl + Shift + K` 和插入方法 `tex()` ;
|
||||
- 将锚点链接改为引用链接,引用的链接改为插入到页尾;
|
||||
- 工具栏的名称 `anchor` 改为 `reference-link`;
|
||||
- 工具栏的名称 `htmlEntities` 改名为 `html-entities`;
|
||||
- 改进编辑器重建和重配置功能;
|
||||
- 修改了 `loadedDisplay()` 方法;
|
||||
- 修改了 `config()` 和 `recreate()` 方法;
|
||||
- 新增跳转到指定行的功能;
|
||||
- 新增方法 `gotoLine()` ;
|
||||
- 新增跳转到行对话框插件 `goto-line-dialog` ;
|
||||
- 新增快捷键 `Ctrl + Alt + G` ;
|
||||
- 改进 `executePlugin()` 方法;
|
||||
- 修改了 `help-dialog/help.md` ;
|
||||
- 新增搜索工具栏按钮;
|
||||
- 新增方法 `search()` 、`searchReplace()` 和 `searchReplaceAll()` ;
|
||||
- 原全屏预览 HTML 按钮的图标改为 `fa-desktop`;
|
||||
- 改为默认开启搜索替换功能;
|
||||
- 更换了关于 Editor.md 的标语( slogan );
|
||||
- 标题按钮 `h` 改为大写的 `H`;
|
||||
- `saveToTextareas()` 方法更名为 `save()`;
|
||||
- 新增 ToC 下拉菜单、自定义 ToC 容器的功能;
|
||||
- 新增 Markdown 扩展语法 `[TOCM]` ,自动生成 ToC 下拉菜单;
|
||||
- 新增配置项 `tocm` ,默认为 `true`,即可以使用 `[TOCM]` ;
|
||||
- 新增配置项 `tocDropdown` 和 `tocTitle` ;
|
||||
- 新增方法 `editormd.tocDropdownMenu()` ;
|
||||
- 新增配置项 `tocContainer` ,值为 jQuery 选择器,默认为空;
|
||||
- 修改了配置项 `placeholder` 的默认值;
|
||||
- 改进对 IE8 的兼容支持;
|
||||
- 修复 Firefox 下因为 `Object.watch()` 而出现的问题;
|
||||
- 新增支持插入和解析(打印)分页符;
|
||||
- 新增配置项 `pageBreak` ,默认值为 `true`;
|
||||
- 新增语法 `[========]` ,即括号内至少 8 个等号;
|
||||
- 新增插入分页符的工具栏图标和方法 `pagebreak()` ;
|
||||
- 新增插入分页符的快捷键 `Shift + Alt + P`;
|
||||
- 修复一些 Bug,包括 [#51](https://github.com/pandao/editor.md/issues/51) 等;
|
||||
- 新增和修改以上更新的相关示例;
|
||||
|
||||
#### v1.4.1
|
||||
|
||||
- 新增配置项 `syncScrolling`,即是否开启同步滚动预览,默认值为 `false` ;
|
||||
- 修复 Bug [#64](https://github.com/pandao/editor.md/issues/64);
|
||||
- 更新 `editormd.katexURL` 资源地址的默认值,即更新版本为 `0.3.0` ;
|
||||
- 新增测试用例`tests/katex-tests.html`;
|
||||
- 修改示例文件`examples/katex.html`;
|
||||
- 修复 Bug [#66](https://github.com/pandao/editor.md/issues/66);
|
||||
- 修复编辑器工具栏按钮 `:hover` CSS3 transition 无效的问题;
|
||||
- 修改了 `README.md`;
|
||||
|
||||
#### v1.4.2
|
||||
|
||||
- 改进和增强自定义工具栏功能,支持图标按钮右对齐 [#69](https://github.com/pandao/editor.md/issues/69);
|
||||
- 改进和增强 HTML 标签的解析过滤功能,支持过滤指定的属性等 [#70](https://github.com/pandao/editor.md/issues/70);
|
||||
- 删除分支 `mathjax-version` 和 `v1.1.9`;
|
||||
|
||||
#### v1.4.3
|
||||
|
||||
- 改进:可配置是否自动聚焦编辑器 [#74](https://github.com/pandao/editor.md/issues/74);
|
||||
- 新增配置项 `autoFocus`,默认值为 `true`;
|
||||
- 修复 Bug [#77](https://github.com/pandao/editor.md/issues/77);
|
||||
- 改进:帮助对话框里的链接改为新窗口打开,避免直接跳转到链接,导致编辑内容丢失的问题 [#79](https://github.com/pandao/editor.md/issues/79);
|
||||
- 改进和完善编辑器配置项;
|
||||
- 新增配置项 `tabSize`、`indentUnit` 和 `lineWrapping`;
|
||||
- 新增配置项 `autoCloseBrackets` 和 `showTrailingSpace` ;
|
||||
- 新增配置项 `matchBrackets`、`indentWithTabs` 和 `styleSelectedText`;
|
||||
- 改进:修改 CSS `font-family`,改进跨平台中英文字体显示;
|
||||
- 修改了 `README.md`;
|
||||
|
||||
#### v1.4.4
|
||||
|
||||
- 修复 Bug [#81](https://github.com/pandao/editor.md/issues/81),即不支持 `:+1:` 的问题;
|
||||
- 修复 Bug [#85](https://github.com/pandao/editor.md/issues/85),即图片上传返回结果不支持 `Content-Type=application/json` 的问题;
|
||||
- 修复图片上传无法显示 loading 的问题;
|
||||
|
||||
#### v1.4.5
|
||||
|
||||
- 规范项目的中英文混排;
|
||||
- 新增配置项 `name`,用于指定 Markdown textarea 的 `name="xxxx"` 属性;
|
||||
- 修复 Bug,即无法正确解析公式的 `<` 和 `>` 的问题 [#87](https://github.com/pandao/editor.md/issues/87);
|
||||
- 修复 Bug,即 `getHTML()` 无效的问题 [#95](https://github.com/pandao/editor.md/issues/95);
|
||||
- 修复 Bug,即火狐上传图片后无法返回值的问题 [#96](https://github.com/pandao/editor.md/issues/96);
|
||||
- 修改了图片上传插件;
|
||||
- 修改 PHP 上传类及示例;
|
||||
- 方法更名:`extends()` 更名为 `extend()`,以兼容 IE8;
|
||||
- 修复 IE8 下 Emoji 正则表达式字符集越界的问题;
|
||||
- 更新了 `README.md` 和 `CHANGE.md` 等相关文档文件;
|
||||
|
||||
|
||||
### v1.5
|
||||
|
||||
#### v1.5.0
|
||||
|
||||
主要更新:
|
||||
|
||||
- 新增:编辑器黑色主题 Dark,改进自定义主题功能(即工具栏、编辑区、预览区可分别设置主题样式);
|
||||
- 新增:多行公式支持;
|
||||
- 新增:支持非编辑状态下的 ToC 自定义容器;
|
||||
- 新增:支持设置为单向同步滚动;
|
||||
- 改进:编辑器样式美化,更换了滚动条样式;
|
||||
- 改进:提高同步滚动定位的精确度;
|
||||
- 改进:修复和改进 HTML 标签及属性过滤功能;
|
||||
- 改进:修复在 Bootstrap 下的兼容性问题;
|
||||
- 修复多处 Bug;
|
||||
|
||||
具体更新:
|
||||
|
||||
- 新增:解析后的代码块自动换行;
|
||||
|
||||
- 新增:支持多行公式;
|
||||
- 新增:新增语法:\`\`\`math | latex | katex;
|
||||
- 改进:美化 KaTeX 公式,即加大字号等;
|
||||
|
||||
- 新增:支持设置为单向同步滚动,即只是编辑区单向同步滚动,配置项 `syncScrolling : "single"`;
|
||||
- 新增:配置同步滚动示例文件 `sync-scrolling.html`;
|
||||
|
||||
- 新增:增加了编辑器样式主题 Dark,即工具栏和预览区各自有一个暗黑色主题;
|
||||
- 变更:自 `v1.5.0` 开始,配置项 `theme` 改为指定 Editor.md 本身的主题;
|
||||
- 新增配置项 `editorTheme` ,用于指定编辑区的主题,即 CodeMirror 的主题;
|
||||
- 新增配置项 `previewTheme` ,用于指定预览区的主题;
|
||||
- 新增方法 `setEditorTheme()`,别名: `setCodeMirror()`;
|
||||
- 新增方法 `setPreviewTheme()`;
|
||||
- 修改了方法 `setTheme()` ;
|
||||
- 更换了滚动条样式,Only Webkit;
|
||||
- 改进全屏状态下的样式显示,去掉 JS 操作的部分,改为通过 CSS 样式类 `.editormd-fullscreen` 控制;
|
||||
- 修改和增加相关的方法、SCSS 文件及示例文件 `themes.html`;
|
||||
|
||||
- 新增:非编辑状态下 ToC 自定义容器支持;
|
||||
- 新增配置项 `markdownSourceCode`,即解析后是否保留源码,默认为不保留 `false`;
|
||||
- 新增配置项 `tocContainer`,值为自定义 ToC 容器的 ID 选择器 `#xxxxx`,默认为空;
|
||||
- 新增和修改了相关示例文件;
|
||||
|
||||
- 新增:新增加了 CSS 样式类 `editormd-preview-active`,可以控制全屏HTML预览时的内容层样式;
|
||||
- 修改了 `previewing()` 和 `previewed()` 方法;
|
||||
- 相关 issues [#103](https://github.com/pandao/editor.md/issues/103);
|
||||
- 另外也调整了关闭按钮的位置;
|
||||
|
||||
- 改进:修复插入 Emoji `:moon:` 无法显示的问题,修改为其是 `:waxing_gibbous_moon:` 的别名 [#94](https://github.com/pandao/editor.md/pull/94);
|
||||
|
||||
- 改进:修改了 CodeMirror 代码行的左右内间距,使其不会挨着左边的行号层;
|
||||
- 相关 issues [#97](https://github.com/pandao/editor.md/issues/97);
|
||||
|
||||
- 改进:修改了同步滚动的定位算法,提高精确度;
|
||||
- 修正问题 [#99](https://github.com/pandao/editor.md/issues/99);
|
||||
- 修改了 `bindScrollEvent()` 方法;
|
||||
|
||||
- 改进:完善 HTML 标签过滤功能,即代码块、`<pre>` 预格式文本和行内代码里的标签及属性不会被过滤;
|
||||
- 修复 Bug [#105](https://github.com/pandao/editor.md/issues/105);
|
||||
- 改进:当不显示行号时 `settings.lineNumbers == false`,CodeMirror 行号层去掉右边框;
|
||||
- 改进:根据指针在当前行的位置更合理插入标题和水平线 [#104](https://github.com/pandao/editor.md/pull/104);
|
||||
- 改进:调整了字体,优先显示 `"YaHei Consolas Hybrid", Consolas`;
|
||||
- 改进:修复在 Bootstrap 下的兼容性问题,即因为 box-sizing 写错位置导致的弹出层宽度等错位问题 [#107](https://github.com/pandao/editor.md/issues/107);
|
||||
@@ -0,0 +1,342 @@
|
||||
"use strict";
|
||||
|
||||
var os = require("os");
|
||||
var gulp = require("gulp");
|
||||
var gutil = require("gulp-util");
|
||||
var sass = require("gulp-ruby-sass");
|
||||
var jshint = require("gulp-jshint");
|
||||
var uglify = require("gulp-uglifyjs");
|
||||
var rename = require("gulp-rename");
|
||||
var concat = require("gulp-concat");
|
||||
var notify = require("gulp-notify");
|
||||
var header = require("gulp-header");
|
||||
var minifycss = require("gulp-minify-css");
|
||||
//var jsdoc = require("gulp-jsdoc");
|
||||
//var jsdoc2md = require("gulp-jsdoc-to-markdown");
|
||||
var pkg = require("./package.json");
|
||||
var dateFormat = require("dateformatter").format;
|
||||
var replace = require("gulp-replace");
|
||||
|
||||
pkg.name = "Editor.md";
|
||||
pkg.today = dateFormat;
|
||||
|
||||
var headerComment = ["/*",
|
||||
" * <%= pkg.name %>",
|
||||
" *",
|
||||
" * @file <%= fileName(file) %> ",
|
||||
" * @version v<%= pkg.version %> ",
|
||||
" * @description <%= pkg.description %>",
|
||||
" * @license MIT License",
|
||||
" * @author <%= pkg.author %>",
|
||||
" * {@link <%= pkg.homepage %>}",
|
||||
" * @updateTime <%= pkg.today('Y-m-d') %>",
|
||||
" */",
|
||||
"\r\n"].join("\r\n");
|
||||
|
||||
var headerMiniComment = "/*! <%= pkg.name %> v<%= pkg.version %> | <%= fileName(file) %> | <%= pkg.description %> | MIT License | By: <%= pkg.author %> | <%= pkg.homepage %> | <%=pkg.today('Y-m-d') %> */\r\n";
|
||||
|
||||
var scssTask = function(fileName, path) {
|
||||
|
||||
path = path || "scss/";
|
||||
|
||||
var distPath = "css";
|
||||
|
||||
return sass(path + fileName + ".scss", { style: "expanded", sourcemap: false, noCache : true })
|
||||
.pipe(gulp.dest(distPath))
|
||||
.pipe(header(headerComment, {pkg : pkg, fileName : function(file) {
|
||||
var name = file.path.split(file.base);
|
||||
return name[1].replace("\\", "");
|
||||
}}))
|
||||
.pipe(gulp.dest(distPath))
|
||||
.pipe(rename({ suffix: ".min" }))
|
||||
.pipe(gulp.dest(distPath))
|
||||
.pipe(minifycss())
|
||||
.pipe(gulp.dest(distPath))
|
||||
.pipe(header(headerMiniComment, {pkg : pkg, fileName : function(file) {
|
||||
var name = file.path.split(file.base);
|
||||
return name[1].replace("\\", "");
|
||||
}}))
|
||||
.pipe(gulp.dest(distPath))
|
||||
.pipe(notify({ message: fileName + ".scss task completed!" }));
|
||||
};
|
||||
|
||||
gulp.task("scss", function() {
|
||||
return scssTask("editormd");
|
||||
});
|
||||
|
||||
gulp.task("scss2", function() {
|
||||
return scssTask("editormd.preview");
|
||||
});
|
||||
|
||||
gulp.task("scss3", function() {
|
||||
return scssTask("editormd.logo");
|
||||
});
|
||||
|
||||
gulp.task("js", function() {
|
||||
return gulp.src("./src/editormd.js")
|
||||
.pipe(jshint("./.jshintrc"))
|
||||
.pipe(jshint.reporter("default"))
|
||||
.pipe(header(headerComment, {pkg : pkg, fileName : function(file) {
|
||||
var name = file.path.split(file.base);
|
||||
return name[1].replace(/[\\\/]?/, "");
|
||||
}}))
|
||||
.pipe(gulp.dest("./"))
|
||||
.pipe(rename({ suffix: ".min" }))
|
||||
.pipe(uglify()) // {outSourceMap: true, sourceRoot: './'}
|
||||
.pipe(gulp.dest("./"))
|
||||
.pipe(header(headerMiniComment, {pkg : pkg, fileName : function(file) {
|
||||
var name = file.path.split(file.base + ( (os.platform() === "win32") ? "\\" : "/") );
|
||||
return name[1].replace(/[\\\/]?/, "");
|
||||
}}))
|
||||
.pipe(gulp.dest("./"))
|
||||
.pipe(notify({ message: "editormd.js task complete" }));
|
||||
});
|
||||
|
||||
gulp.task("amd", function() {
|
||||
var replaceText1 = [
|
||||
'var cmModePath = "codemirror/mode/";',
|
||||
' var cmAddonPath = "codemirror/addon/";',
|
||||
'',
|
||||
' var codeMirrorModules = [',
|
||||
' "jquery", "marked", "prettify",',
|
||||
' "katex", "raphael", "underscore", "flowchart", "jqueryflowchart", "sequenceDiagram",',
|
||||
'',
|
||||
' "codemirror/lib/codemirror",',
|
||||
' cmModePath + "css/css",',
|
||||
' cmModePath + "sass/sass",',
|
||||
' cmModePath + "shell/shell",',
|
||||
' cmModePath + "sql/sql",',
|
||||
' cmModePath + "clike/clike",',
|
||||
' cmModePath + "php/php",',
|
||||
' cmModePath + "xml/xml",',
|
||||
' cmModePath + "markdown/markdown",',
|
||||
' cmModePath + "javascript/javascript",',
|
||||
' cmModePath + "htmlmixed/htmlmixed",',
|
||||
' cmModePath + "gfm/gfm",',
|
||||
' cmModePath + "http/http",',
|
||||
' cmModePath + "go/go",',
|
||||
' cmModePath + "dart/dart",',
|
||||
' cmModePath + "coffeescript/coffeescript",',
|
||||
' cmModePath + "nginx/nginx",',
|
||||
' cmModePath + "python/python",',
|
||||
' cmModePath + "perl/perl",',
|
||||
' cmModePath + "lua/lua",',
|
||||
' cmModePath + "r/r", ',
|
||||
' cmModePath + "ruby/ruby", ',
|
||||
' cmModePath + "rst/rst",',
|
||||
' cmModePath + "smartymixed/smartymixed",',
|
||||
' cmModePath + "vb/vb",',
|
||||
' cmModePath + "vbscript/vbscript",',
|
||||
' cmModePath + "velocity/velocity",',
|
||||
' cmModePath + "xquery/xquery",',
|
||||
' cmModePath + "yaml/yaml",',
|
||||
' cmModePath + "erlang/erlang",',
|
||||
' cmModePath + "jade/jade",',
|
||||
'',
|
||||
' cmAddonPath + "edit/trailingspace", ',
|
||||
' cmAddonPath + "dialog/dialog", ',
|
||||
' cmAddonPath + "search/searchcursor", ',
|
||||
' cmAddonPath + "search/search", ',
|
||||
' cmAddonPath + "scroll/annotatescrollbar", ',
|
||||
' cmAddonPath + "search/matchesonscrollbar", ',
|
||||
' cmAddonPath + "display/placeholder", ',
|
||||
' cmAddonPath + "edit/closetag", ',
|
||||
' cmAddonPath + "fold/foldcode",',
|
||||
' cmAddonPath + "fold/foldgutter",',
|
||||
' cmAddonPath + "fold/indent-fold",',
|
||||
' cmAddonPath + "fold/brace-fold",',
|
||||
' cmAddonPath + "fold/xml-fold", ',
|
||||
' cmAddonPath + "fold/markdown-fold",',
|
||||
' cmAddonPath + "fold/comment-fold", ',
|
||||
' cmAddonPath + "mode/overlay", ',
|
||||
' cmAddonPath + "selection/active-line", ',
|
||||
' cmAddonPath + "edit/closebrackets", ',
|
||||
' cmAddonPath + "display/fullscreen",',
|
||||
' cmAddonPath + "search/match-highlighter"',
|
||||
' ];',
|
||||
'',
|
||||
' define(codeMirrorModules, factory);'
|
||||
].join("\r\n");
|
||||
|
||||
var replaceText2 = [
|
||||
"if (typeof define == \"function\" && define.amd) {",
|
||||
" $ = arguments[0];",
|
||||
" marked = arguments[1];",
|
||||
" prettify = arguments[2];",
|
||||
" katex = arguments[3];",
|
||||
" Raphael = arguments[4];",
|
||||
" _ = arguments[5];",
|
||||
" flowchart = arguments[6];",
|
||||
" CodeMirror = arguments[9];",
|
||||
" }"
|
||||
].join("\r\n");
|
||||
|
||||
gulp.src("src/editormd.js")
|
||||
.pipe(rename({ suffix: ".amd" }))
|
||||
.pipe(gulp.dest('./'))
|
||||
.pipe(header(headerComment, {pkg : pkg, fileName : function(file) {
|
||||
var name = file.path.split(file.base);
|
||||
return name[1].replace(/[\\\/]?/, "");
|
||||
}}))
|
||||
.pipe(gulp.dest("./"))
|
||||
.pipe(replace("/* Require.js define replace */", replaceText1))
|
||||
.pipe(gulp.dest('./'))
|
||||
.pipe(replace("/* Require.js assignment replace */", replaceText2))
|
||||
.pipe(gulp.dest('./'))
|
||||
.pipe(rename({ suffix: ".min" }))
|
||||
.pipe(uglify()) //{outSourceMap: true, sourceRoot: './'}
|
||||
.pipe(gulp.dest("./"))
|
||||
.pipe(header(headerMiniComment, {pkg : pkg, fileName : function(file) {
|
||||
var name = file.path.split(file.base + ( (os.platform() === "win32") ? "\\" : "/") );
|
||||
return name[1].replace(/[\\\/]?/, "");
|
||||
}}))
|
||||
.pipe(gulp.dest("./"))
|
||||
.pipe(notify({ message: "amd version task complete"}));
|
||||
});
|
||||
|
||||
|
||||
var codeMirror = {
|
||||
path : {
|
||||
src : {
|
||||
mode : "lib/codemirror/mode",
|
||||
addon : "lib/codemirror/addon"
|
||||
},
|
||||
dist : "lib/codemirror"
|
||||
},
|
||||
modes : [
|
||||
"css",
|
||||
"sass",
|
||||
"shell",
|
||||
"sql",
|
||||
"clike",
|
||||
"php",
|
||||
"xml",
|
||||
"markdown",
|
||||
"javascript",
|
||||
"htmlmixed",
|
||||
"gfm",
|
||||
"http",
|
||||
"go",
|
||||
"dart",
|
||||
"coffeescript",
|
||||
"nginx",
|
||||
"python",
|
||||
"perl",
|
||||
"lua",
|
||||
"r",
|
||||
"ruby",
|
||||
"rst",
|
||||
"smartymixed",
|
||||
"vb",
|
||||
"vbscript",
|
||||
"velocity",
|
||||
"xquery",
|
||||
"yaml",
|
||||
"erlang",
|
||||
"jade",
|
||||
],
|
||||
|
||||
addons : [
|
||||
"edit/trailingspace",
|
||||
"dialog/dialog",
|
||||
"search/searchcursor",
|
||||
"search/search",
|
||||
"scroll/annotatescrollbar",
|
||||
"search/matchesonscrollbar",
|
||||
"display/placeholder",
|
||||
"edit/closetag",
|
||||
"fold/foldcode",
|
||||
"fold/foldgutter",
|
||||
"fold/indent-fold",
|
||||
"fold/brace-fold",
|
||||
"fold/xml-fold",
|
||||
"fold/markdown-fold",
|
||||
"fold/comment-fold",
|
||||
"mode/overlay",
|
||||
"selection/active-line",
|
||||
"edit/closebrackets",
|
||||
"display/fullscreen",
|
||||
"search/match-highlighter"
|
||||
]
|
||||
};
|
||||
|
||||
gulp.task("cm-mode", function() {
|
||||
|
||||
var modes = [
|
||||
codeMirror.path.src.mode + "/meta.js"
|
||||
];
|
||||
|
||||
for(var i in codeMirror.modes) {
|
||||
var mode = codeMirror.modes[i];
|
||||
modes.push(codeMirror.path.src.mode + "/" + mode + "/" + mode + ".js");
|
||||
}
|
||||
|
||||
return gulp.src(modes)
|
||||
.pipe(concat("modes.min.js"))
|
||||
.pipe(gulp.dest(codeMirror.path.dist))
|
||||
.pipe(uglify()) // {outSourceMap: true, sourceRoot: codeMirror.path.dist}
|
||||
.pipe(gulp.dest(codeMirror.path.dist))
|
||||
.pipe(header(headerMiniComment, {pkg : pkg, fileName : function(file) {
|
||||
var name = file.path.split(file.base + "\\");
|
||||
return (name[1]?name[1]:name[0]).replace(/\\/g, "");
|
||||
}}))
|
||||
.pipe(gulp.dest(codeMirror.path.dist))
|
||||
.pipe(notify({ message: "codemirror-mode task complete!" }));
|
||||
});
|
||||
|
||||
gulp.task("cm-addon", function() {
|
||||
|
||||
var addons = [];
|
||||
|
||||
for(var i in codeMirror.addons) {
|
||||
var addon = codeMirror.addons[i];
|
||||
addons.push(codeMirror.path.src.addon + "/" + addon + ".js");
|
||||
}
|
||||
|
||||
return gulp.src(addons)
|
||||
.pipe(concat("addons.min.js"))
|
||||
.pipe(gulp.dest(codeMirror.path.dist))
|
||||
.pipe(uglify()) //{outSourceMap: true, sourceRoot: codeMirror.path.dist}
|
||||
.pipe(gulp.dest(codeMirror.path.dist))
|
||||
.pipe(header(headerMiniComment, {pkg : pkg, fileName : function(file) {
|
||||
var name = file.path.split(file.base + "\\");
|
||||
return (name[1]?name[1]:name[0]).replace(/\\/g, "");
|
||||
}}))
|
||||
.pipe(gulp.dest(codeMirror.path.dist))
|
||||
.pipe(notify({ message: "codemirror-addon.js task complete" }));
|
||||
});
|
||||
/*
|
||||
gulp.task("jsdoc", function(){
|
||||
return gulp.src(["./src/editormd.js", "README.md"])
|
||||
.pipe(jsdoc.parser())
|
||||
.pipe(jsdoc.generator("./docs/html"));
|
||||
});
|
||||
|
||||
gulp.task("jsdoc2md", function() {
|
||||
return gulp.src("src/js/editormd.js")
|
||||
.pipe(jsdoc2md())
|
||||
.on("error", function(err){
|
||||
gutil.log(gutil.colors.red("jsdoc2md failed"), err.message);
|
||||
})
|
||||
.pipe(rename(function(path) {
|
||||
path.extname = ".md";
|
||||
}))
|
||||
.pipe(gulp.dest("docs/markdown"));
|
||||
});
|
||||
*/
|
||||
gulp.task("watch", function() {
|
||||
gulp.watch("scss/editormd.scss", ["scss"]);
|
||||
gulp.watch("scss/editormd.preview.scss", ["scss", "scss2"]);
|
||||
gulp.watch("scss/editormd.logo.scss", ["scss", "scss3"]);
|
||||
gulp.watch("src/editormd.js", ["js", "amd"]);
|
||||
});
|
||||
|
||||
gulp.task("default", function() {
|
||||
gulp.run("scss");
|
||||
gulp.run("scss2");
|
||||
gulp.run("scss3");
|
||||
gulp.run("js");
|
||||
gulp.run("amd");
|
||||
gulp.run("cm-addon");
|
||||
gulp.run("cm-mode");
|
||||
});
|
||||
@@ -0,0 +1,22 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 pandao
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
119
src/main/webapp/static/global/plugins/editor.md-master/README.md
Normal file
119
src/main/webapp/static/global/plugins/editor.md-master/README.md
Normal file
@@ -0,0 +1,119 @@
|
||||
# Editor.md
|
||||
|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
**Editor.md** : The open source embeddable online markdown editor (component), based on CodeMirror & jQuery & Marked.
|
||||
|
||||
### Features
|
||||
|
||||
- Support Standard Markdown / CommonMark and GFM (GitHub Flavored Markdown);
|
||||
- Full-featured: Real-time Preview, Image (cross-domain) upload, Preformatted text/Code blocks/Tables insert, Code fold, Search replace, Read only, Themes, Multi-languages, L18n, HTML entities, Code syntax highlighting...;
|
||||
- Markdown Extras : Support [ToC (Table of Contents)](https://pandao.github.io/editor.md/examples/toc.html), [Emoji](https://pandao.github.io/editor.md/examples/emoji.html), [Task lists](https://pandao.github.io/editor.md/examples/task-lists.html), [@Links](https://pandao.github.io/editor.md/examples/@links.html)...;
|
||||
- Compatible with all major browsers (IE8+), compatible Zepto.js and iPad;
|
||||
- Support [decode & fliter of the HTML tags & attributes](https://pandao.github.io/editor.md/examples/html-tags-decode.html);
|
||||
- Support [TeX (LaTeX expressions, Based on KaTeX)](https://pandao.github.io/editor.md/examples/katex.html), [Flowchart](https://pandao.github.io/editor.md/examples/flowchart.html) and [Sequence Diagram](https://pandao.github.io/editor.md/examples/sequence-diagram.html) of Markdown extended syntax;
|
||||
- Support AMD/CMD (Require.js & Sea.js) Module Loader, and Custom/define editor plugins;
|
||||
|
||||
[README & Examples (English)](https://pandao.github.io/editor.md/en.html)
|
||||
|
||||
|
||||
--------
|
||||
|
||||
**Editor.md** 是一款开源的、可嵌入的 Markdown 在线编辑器(组件),基于 CodeMirror、jQuery 和 Marked 构建。
|
||||
|
||||

|
||||
|
||||
#### 主要特性
|
||||
|
||||
- 支持通用 Markdown / CommonMark 和 GFM (GitHub Flavored Markdown) 风格的语法,也可[变身为代码编辑器](https://pandao.github.io/editor.md/examples/change-mode.html);
|
||||
- 支持实时预览、图片(跨域)上传、预格式文本/代码/表格插入、代码折叠、跳转到行、搜索替换、只读模式、自定义样式主题和多语言语法高亮等功能;
|
||||
- 支持 [ToC(Table of Contents)](https://pandao.github.io/editor.md/examples/toc.html)、[Emoji表情](https://pandao.github.io/editor.md/examples/emoji.html)、[Task lists](https://pandao.github.io/editor.md/examples/task-lists.html)、[@链接](https://pandao.github.io/editor.md/examples/@links.html)等 Markdown 扩展语法;
|
||||
- 支持 TeX 科学公式(基于 [KaTeX](https://pandao.github.io/editor.md/examples/katex.html))、流程图 [Flowchart](https://pandao.github.io/editor.md/examples/flowchart.html) 和 [时序图 Sequence Diagram](https://pandao.github.io/editor.md/examples/sequence-diagram.html);
|
||||
- 支持[识别和解析 HTML 标签,并且支持自定义过滤标签及属性解析](https://pandao.github.io/editor.md/examples/html-tags-decode.html),具有可靠的安全性和几乎无限的扩展性;
|
||||
- 支持 AMD / CMD 模块化加载(支持 [Require.js](https://pandao.github.io/editor.md/examples/use-requirejs.html) & [Sea.js](https://pandao.github.io/editor.md/examples/use-seajs.html)),并且支持[自定义扩展插件](https://pandao.github.io/editor.md/examples/define-plugin.html);
|
||||
- 兼容主流的浏览器(IE8+)和 [Zepto.js](https://pandao.github.io/editor.md/examples/use-zepto.html),且支持 iPad 等平板设备;
|
||||
|
||||
#### Examples
|
||||
|
||||
[https://pandao.github.io/editor.md/examples/index.html](https://pandao.github.io/editor.md/examples/index.html)
|
||||
|
||||
#### Download & install
|
||||
|
||||
[Github download](https://github.com/pandao/editor.md/archive/master.zip)
|
||||
|
||||
Bower install :
|
||||
|
||||
```shell
|
||||
bower install editor.md
|
||||
```
|
||||
|
||||
#### Usages
|
||||
|
||||
HTML:
|
||||
|
||||
```html
|
||||
<link rel="stylesheet" href="editormd.min.css" />
|
||||
<div id="editormd">
|
||||
<textarea style="display:none;">### Hello Editor.md !</textarea>
|
||||
</div>
|
||||
```
|
||||
|
||||
> Tip: Editor.md can auto append `<textarea>` tag;
|
||||
|
||||
javascript:
|
||||
|
||||
```html
|
||||
<script src="jquery.min.js"></script>
|
||||
<script src="editormd.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
var editor = editormd("editormd", {
|
||||
path : "../lib/" // Autoload modules mode, codemirror, marked... dependents libs path
|
||||
});
|
||||
|
||||
/*
|
||||
// or
|
||||
var editor = editormd({
|
||||
id : "editormd",
|
||||
path : "../lib/"
|
||||
});
|
||||
*/
|
||||
});
|
||||
</script>
|
||||
```
|
||||
|
||||
Using modular script loader :
|
||||
|
||||
- [Using Require.js](https://github.com/pandao/editor.md/tree/master/examples/use-requirejs.html)
|
||||
- [Using Sea.js](https://github.com/pandao/editor.md/tree/master/examples/use-seajs.html)
|
||||
|
||||
#### Dependents
|
||||
|
||||
- [CodeMirror](http://codemirror.net/ "CodeMirror")
|
||||
- [marked](https://github.com/chjj/marked "marked")
|
||||
- [jQuery](http://jquery.com/ "jQuery")
|
||||
- [FontAwesome](http://fontawesome.io/ "FontAwesome")
|
||||
- [github-markdown.css](https://github.com/sindresorhus/github-markdown-css "github-markdown.css")
|
||||
- [KaTeX](http://khan.github.io/KaTeX/ "KaTeX")
|
||||
- [prettify.js](http://code.google.com/p/google-code-prettify/ "prettify.js")
|
||||
- [Rephael.js](http://raphaeljs.com/ "Rephael.js")
|
||||
- [flowchart.js](http://adrai.github.io/flowchart.js/ "flowchart.js")
|
||||
- [sequence-diagram.js](http://bramp.github.io/js-sequence-diagrams/ "sequence-diagram.js")
|
||||
- [Prefixes.scss](https://github.com/pandao/prefixes.scss "Prefixes.scss")
|
||||
|
||||
#### Changes
|
||||
|
||||
[Change logs](https://github.com/pandao/editor.md/blob/master/CHANGE.md)
|
||||
|
||||
#### License
|
||||
|
||||
The MIT License.
|
||||
|
||||
Copyright (c) 2015 Pandao
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"name": "editor.md",
|
||||
"version": "1.5.0",
|
||||
"homepage": "https://github.com/pandao/editor.md",
|
||||
"authors": [
|
||||
"Pandao <pandao@vip.qq.com>"
|
||||
],
|
||||
"description": "Open source online markdown editor.",
|
||||
"keywords": [
|
||||
"editor.md",
|
||||
"markdown",
|
||||
"editor"
|
||||
],
|
||||
"license": "MIT",
|
||||
"ignore": [
|
||||
"**/.*",
|
||||
"research",
|
||||
"docs",
|
||||
"node_modules",
|
||||
"bower_components",
|
||||
"test",
|
||||
"tests"
|
||||
]
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,98 @@
|
||||
/*
|
||||
* Editor.md
|
||||
*
|
||||
* @file editormd.logo.css
|
||||
* @version v1.5.0
|
||||
* @description Open source online markdown editor.
|
||||
* @license MIT License
|
||||
* @author Pandao
|
||||
* {@link https://github.com/pandao/editor.md}
|
||||
* @updateTime 2015-06-09
|
||||
*/
|
||||
|
||||
/*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */
|
||||
@font-face {
|
||||
font-family: 'editormd-logo';
|
||||
src: url("../fonts/editormd-logo.eot?-5y8q6h");
|
||||
src: url(".../fonts/editormd-logo.eot?#iefix-5y8q6h") format("embedded-opentype"), url("../fonts/editormd-logo.woff?-5y8q6h") format("woff"), url("../fonts/editormd-logo.ttf?-5y8q6h") format("truetype"), url("../fonts/editormd-logo.svg?-5y8q6h#icomoon") format("svg");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
.editormd-logo,
|
||||
.editormd-logo-1x,
|
||||
.editormd-logo-2x,
|
||||
.editormd-logo-3x,
|
||||
.editormd-logo-4x,
|
||||
.editormd-logo-5x,
|
||||
.editormd-logo-6x,
|
||||
.editormd-logo-7x,
|
||||
.editormd-logo-8x {
|
||||
font-family: 'editormd-logo';
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
font-size: inherit;
|
||||
line-height: 1;
|
||||
display: inline-block;
|
||||
text-rendering: auto;
|
||||
vertical-align: inherit;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
.editormd-logo:before,
|
||||
.editormd-logo-1x:before,
|
||||
.editormd-logo-2x:before,
|
||||
.editormd-logo-3x:before,
|
||||
.editormd-logo-4x:before,
|
||||
.editormd-logo-5x:before,
|
||||
.editormd-logo-6x:before,
|
||||
.editormd-logo-7x:before,
|
||||
.editormd-logo-8x:before {
|
||||
content: "\e1987";
|
||||
/*
|
||||
HTML Entity 󡦇
|
||||
example: <span class="editormd-logo">󡦇</span>
|
||||
*/
|
||||
}
|
||||
|
||||
.editormd-logo-1x {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.editormd-logo-lg {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
.editormd-logo-2x {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.editormd-logo-3x {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.editormd-logo-4x {
|
||||
font-size: 4em;
|
||||
}
|
||||
|
||||
.editormd-logo-5x {
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
.editormd-logo-6x {
|
||||
font-size: 6em;
|
||||
}
|
||||
|
||||
.editormd-logo-7x {
|
||||
font-size: 7em;
|
||||
}
|
||||
|
||||
.editormd-logo-8x {
|
||||
font-size: 8em;
|
||||
}
|
||||
|
||||
.editormd-logo-color {
|
||||
color: #2196F3;
|
||||
}
|
||||
2
src/main/webapp/static/global/plugins/editor.md-master/css/editormd.logo.min.css
vendored
Normal file
2
src/main/webapp/static/global/plugins/editor.md-master/css/editormd.logo.min.css
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/*! Editor.md v1.5.0 | editormd.logo.min.css | Open source online markdown editor. | MIT License | By: Pandao | https://github.com/pandao/editor.md | 2015-06-09 */
|
||||
/*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */@font-face{font-family:editormd-logo;src:url(../fonts/editormd-logo.eot?-5y8q6h);src:url(.../fonts/editormd-logo.eot?#iefix-5y8q6h)format("embedded-opentype"),url(../fonts/editormd-logo.woff?-5y8q6h)format("woff"),url(../fonts/editormd-logo.ttf?-5y8q6h)format("truetype"),url(../fonts/editormd-logo.svg?-5y8q6h#icomoon)format("svg");font-weight:400;font-style:normal}.editormd-logo,.editormd-logo-1x,.editormd-logo-2x,.editormd-logo-3x,.editormd-logo-4x,.editormd-logo-5x,.editormd-logo-6x,.editormd-logo-7x,.editormd-logo-8x{font-family:editormd-logo;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;font-size:inherit;line-height:1;display:inline-block;text-rendering:auto;vertical-align:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.editormd-logo-1x:before,.editormd-logo-2x:before,.editormd-logo-3x:before,.editormd-logo-4x:before,.editormd-logo-5x:before,.editormd-logo-6x:before,.editormd-logo-7x:before,.editormd-logo-8x:before,.editormd-logo:before{content:"\e1987"}.editormd-logo-1x{font-size:1em}.editormd-logo-lg{font-size:1.2em}.editormd-logo-2x{font-size:2em}.editormd-logo-3x{font-size:3em}.editormd-logo-4x{font-size:4em}.editormd-logo-5x{font-size:5em}.editormd-logo-6x{font-size:6em}.editormd-logo-7x{font-size:7em}.editormd-logo-8x{font-size:8em}.editormd-logo-color{color:#2196F3}
|
||||
5
src/main/webapp/static/global/plugins/editor.md-master/css/editormd.min.css
vendored
Normal file
5
src/main/webapp/static/global/plugins/editor.md-master/css/editormd.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
5
src/main/webapp/static/global/plugins/editor.md-master/css/editormd.preview.min.css
vendored
Normal file
5
src/main/webapp/static/global/plugins/editor.md-master/css/editormd.preview.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 116 KiB |
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 118 KiB |
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 120 KiB |
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 114 KiB |
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 120 KiB |
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 117 KiB |
Binary file not shown.
@@ -0,0 +1,65 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>JSDoc: Home</title>
|
||||
|
||||
<script src="scripts/prettify/prettify.js"> </script>
|
||||
<script src="scripts/prettify/lang-css.js"> </script>
|
||||
<!--[if lt IE 9]>
|
||||
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||||
<![endif]-->
|
||||
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
|
||||
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div id="main">
|
||||
|
||||
<h1 class="page-title">Home</h1>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h3> </h3>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<nav>
|
||||
<h2><a href="index.html">Home</a></h2>
|
||||
</nav>
|
||||
|
||||
<br class="clear">
|
||||
|
||||
<footer>
|
||||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0</a> on Mon Jun 08 2015 01:07:40 GMT+0800 (中国标准时间)
|
||||
</footer>
|
||||
|
||||
<script> prettyPrint(); </script>
|
||||
<script src="scripts/linenumber.js"> </script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,25 @@
|
||||
/*global document */
|
||||
(function() {
|
||||
var source = document.getElementsByClassName('prettyprint source linenums');
|
||||
var i = 0;
|
||||
var lineNumber = 0;
|
||||
var lineId;
|
||||
var lines;
|
||||
var totalLines;
|
||||
var anchorHash;
|
||||
|
||||
if (source && source[0]) {
|
||||
anchorHash = document.location.hash.substring(1);
|
||||
lines = source[0].getElementsByTagName('li');
|
||||
totalLines = lines.length;
|
||||
|
||||
for (; i < totalLines; i++) {
|
||||
lineNumber++;
|
||||
lineId = 'line' + lineNumber;
|
||||
lines[i].id = lineId;
|
||||
if (lineId === anchorHash) {
|
||||
lines[i].className += ' selected';
|
||||
}
|
||||
}
|
||||
}
|
||||
})();
|
||||
@@ -0,0 +1,202 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
@@ -0,0 +1,2 @@
|
||||
PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n"]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com",
|
||||
/^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]);
|
||||
@@ -0,0 +1,28 @@
|
||||
var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
|
||||
(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a=
|
||||
[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c<i;++c){var j=f[c];if(/\\[bdsw]/i.test(j))a.push(j);else{var j=m(j),d;c+2<i&&"-"===f[c+1]?(d=m(f[c+2]),c+=2):d=j;b.push([j,d]);d<65||j>122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;c<b.length;++c)i=b[c],i[0]<=j[1]+1?j[1]=Math.max(j[1],i[1]):f.push(j=i);b=["["];o&&b.push("^");b.push.apply(b,a);for(c=0;c<
|
||||
f.length;++c)i=f[c],b.push(e(i[0])),i[1]>i[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c<b;++c){var j=f[c];j==="("?++i:"\\"===j.charAt(0)&&(j=+j.substring(1))&&j<=i&&(d[j]=-1)}for(c=1;c<d.length;++c)-1===d[c]&&(d[c]=++t);for(i=c=0;c<b;++c)j=f[c],j==="("?(++i,d[i]===void 0&&(f[c]="(?:")):"\\"===j.charAt(0)&&
|
||||
(j=+j.substring(1))&&j<=i&&(f[c]="\\"+d[i]);for(i=c=0;c<b;++c)"^"===f[c]&&"^"!==f[c+1]&&(f[c]="");if(a.ignoreCase&&s)for(c=0;c<b;++c)j=f[c],a=j.charAt(0),j.length>=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p<d;++p){var g=a[p];if(g.ignoreCase)l=!0;else if(/[a-z]/i.test(g.source.replace(/\\u[\da-f]{4}|\\x[\da-f]{2}|\\[^UXux]/gi,""))){s=!0;l=!1;break}}for(var r=
|
||||
{b:8,t:9,n:10,v:11,f:12,r:13},n=[],p=0,d=a.length;p<d;++p){g=a[p];if(g.global||g.multiline)throw Error(""+g);n.push("(?:"+y(g)+")")}return RegExp(n.join("|"),l?"gi":"g")}function M(a){function m(a){switch(a.nodeType){case 1:if(e.test(a.className))break;for(var g=a.firstChild;g;g=g.nextSibling)m(g);g=a.nodeName;if("BR"===g||"LI"===g)h[s]="\n",t[s<<1]=y++,t[s++<<1|1]=a;break;case 3:case 4:g=a.nodeValue,g.length&&(g=p?g.replace(/\r\n?/g,"\n"):g.replace(/[\t\n\r ]+/g," "),h[s]=g,t[s<<1]=y,y+=g.length,
|
||||
t[s++<<1|1]=a)}}var e=/(?:^|\s)nocode(?:\s|$)/,h=[],y=0,t=[],s=0,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=document.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);m(a);return{a:h.join("").replace(/\n$/,""),c:t}}function B(a,m,e,h){m&&(a={a:m,d:a},e(a),h.push.apply(h,a.e))}function x(a,m){function e(a){for(var l=a.d,p=[l,"pln"],d=0,g=a.a.match(y)||[],r={},n=0,z=g.length;n<z;++n){var f=g[n],b=r[f],o=void 0,c;if(typeof b===
|
||||
"string")c=!1;else{var i=h[f.charAt(0)];if(i)o=f.match(i[1]),b=i[0];else{for(c=0;c<t;++c)if(i=m[c],o=f.match(i[1])){b=i[0];break}o||(b="pln")}if((c=b.length>=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m),
|
||||
l=[],p={},d=0,g=e.length;d<g;++d){var r=e[d],n=r[3];if(n)for(var k=n.length;--k>=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,
|
||||
q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/,
|
||||
q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g,
|
||||
"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a),
|
||||
a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e}
|
||||
for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g<d.length;++g)e(d[g]);m===(m|0)&&d[0].setAttribute("value",
|
||||
m);var r=s.createElement("OL");r.className="linenums";for(var n=Math.max(0,m-1|0)||0,g=0,z=d.length;g<z;++g)l=d[g],l.className="L"+(g+n)%10,l.firstChild||l.appendChild(s.createTextNode("\xa0")),r.appendChild(l);a.appendChild(r)}function k(a,m){for(var e=m.length;--e>=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*</.test(m)?"default-markup":"default-code";return A[a]}function E(a){var m=
|
||||
a.g;try{var e=M(a.h),h=e.a;a.a=h;a.c=e.c;a.d=0;C(m,h)(a);var k=/\bMSIE\b/.test(navigator.userAgent),m=/\n/g,t=a.a,s=t.length,e=0,l=a.c,p=l.length,h=0,d=a.e,g=d.length,a=0;d[g]=s;var r,n;for(n=r=0;n<g;)d[n]!==d[n+2]?(d[r++]=d[n++],d[r++]=d[n++]):n+=2;g=r;for(n=r=0;n<g;){for(var z=d[n],f=d[n+1],b=n+2;b+2<=g&&d[b+1]===f;)b+=2;d[r++]=z;d[r++]=f;n=b}for(d.length=r;h<p;){var o=l[h+2]||s,c=d[a+2]||s,b=Math.min(o,c),i=l[h+1],j;if(i.nodeType!==1&&(j=t.substring(e,b))){k&&(j=j.replace(m,"\r"));i.nodeValue=
|
||||
j;var u=i.ownerDocument,v=u.createElement("SPAN");v.className=d[a+1];var x=i.parentNode;x.replaceChild(v,i);v.appendChild(i);e<o&&(l[h+1]=i=u.createTextNode(t.substring(b,o)),x.insertBefore(i,v.nextSibling))}e=b;e>=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
|
||||
"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"],
|
||||
H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
|
||||
J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
|
||||
I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^<?]+/],["dec",/^<!\w[^>]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^<xmp\b[^>]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),
|
||||
["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css",
|
||||
/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),
|
||||
["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes",
|
||||
hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p<h.length&&l.now()<e;p++){var n=h[p],k=n.className;if(k.indexOf("prettyprint")>=0){var k=k.match(g),f,b;if(b=
|
||||
!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p<h.length?setTimeout(m,
|
||||
250):a&&a()}for(var e=[document.getElementsByTagName("pre"),document.getElementsByTagName("code"),document.getElementsByTagName("xmp")],h=[],k=0;k<e.length;++k)for(var t=0,s=e[k].length;t<s;++t)h.push(e[k][t]);var e=q,l=Date;l.now||(l={now:function(){return+new Date}});var p=0,d,g=/\blang(?:uage)?-([\w.]+)(?!\S)/;m()};window.PR={createSimpleLexer:x,registerLangHandler:k,sourceDecorator:u,PR_ATTRIB_NAME:"atn",PR_ATTRIB_VALUE:"atv",PR_COMMENT:"com",PR_DECLARATION:"dec",PR_KEYWORD:"kwd",PR_LITERAL:"lit",
|
||||
PR_NOCODE:"nocode",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ"}})();
|
||||
@@ -0,0 +1,353 @@
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
src: url('../fonts/OpenSans-Regular-webfont.eot');
|
||||
src:
|
||||
local('Open Sans'),
|
||||
local('OpenSans'),
|
||||
url('../fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),
|
||||
url('../fonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans Light';
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
src: url('../fonts/OpenSans-Light-webfont.eot');
|
||||
src:
|
||||
local('Open Sans Light'),
|
||||
local('OpenSans Light'),
|
||||
url('../fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/OpenSans-Light-webfont.woff') format('woff'),
|
||||
url('../fonts/OpenSans-Light-webfont.svg#open_sanslight') format('svg');
|
||||
}
|
||||
|
||||
html
|
||||
{
|
||||
overflow: auto;
|
||||
background-color: #fff;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
line-height: 1.5;
|
||||
color: #4d4e53;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
a, a:visited, a:active {
|
||||
color: #0095dd;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
header
|
||||
{
|
||||
display: block;
|
||||
padding: 0px 4px;
|
||||
}
|
||||
|
||||
tt, code, kbd, samp {
|
||||
font-family: Consolas, Monaco, 'Andale Mono', monospace;
|
||||
}
|
||||
|
||||
.class-description {
|
||||
font-size: 130%;
|
||||
line-height: 140%;
|
||||
margin-bottom: 1em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.class-description:empty {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#main {
|
||||
float: left;
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
article dl {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
section
|
||||
{
|
||||
display: block;
|
||||
background-color: #fff;
|
||||
padding: 12px 24px;
|
||||
border-bottom: 1px solid #ccc;
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
.variation {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.signature-attributes {
|
||||
font-size: 60%;
|
||||
color: #aaa;
|
||||
font-style: italic;
|
||||
font-weight: lighter;
|
||||
}
|
||||
|
||||
nav
|
||||
{
|
||||
display: block;
|
||||
float: right;
|
||||
margin-top: 28px;
|
||||
width: 30%;
|
||||
box-sizing: border-box;
|
||||
border-left: 1px solid #ccc;
|
||||
padding-left: 16px;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
font-family: 'Lucida Grande', 'Lucida Sans Unicode', arial, sans-serif;
|
||||
font-size: 100%;
|
||||
line-height: 17px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
nav ul a, nav ul a:visited, nav ul a:active {
|
||||
font-family: Consolas, Monaco, 'Andale Mono', monospace;
|
||||
line-height: 18px;
|
||||
color: #4D4E53;
|
||||
}
|
||||
|
||||
nav h3 {
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
nav li {
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
footer {
|
||||
display: block;
|
||||
padding: 6px;
|
||||
margin-top: 12px;
|
||||
font-style: italic;
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4 {
|
||||
font-weight: 200;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h1
|
||||
{
|
||||
font-family: 'Open Sans Light', sans-serif;
|
||||
font-size: 48px;
|
||||
letter-spacing: -2px;
|
||||
margin: 12px 24px 20px;
|
||||
}
|
||||
|
||||
h2, h3
|
||||
{
|
||||
font-size: 30px;
|
||||
font-weight: 700;
|
||||
letter-spacing: -1px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
h4
|
||||
{
|
||||
font-size: 18px;
|
||||
letter-spacing: -0.33px;
|
||||
margin-bottom: 12px;
|
||||
color: #4d4e53;
|
||||
}
|
||||
|
||||
h5, .container-overview .subsection-title
|
||||
{
|
||||
font-size: 120%;
|
||||
font-weight: bold;
|
||||
letter-spacing: -0.01em;
|
||||
margin: 8px 0 3px 0;
|
||||
}
|
||||
|
||||
h6
|
||||
{
|
||||
font-size: 100%;
|
||||
letter-spacing: -0.01em;
|
||||
margin: 6px 0 3px 0;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.ancestors { color: #999; }
|
||||
.ancestors a
|
||||
{
|
||||
color: #999 !important;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.clear
|
||||
{
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.important
|
||||
{
|
||||
font-weight: bold;
|
||||
color: #950B02;
|
||||
}
|
||||
|
||||
.yes-def {
|
||||
text-indent: -1000px;
|
||||
}
|
||||
|
||||
.type-signature {
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.name, .signature {
|
||||
font-family: Consolas, Monaco, 'Andale Mono', monospace;
|
||||
}
|
||||
|
||||
.details { margin-top: 14px; border-left: 2px solid #DDD; }
|
||||
.details dt { width: 120px; float: left; padding-left: 10px; padding-top: 6px; }
|
||||
.details dd { margin-left: 70px; }
|
||||
.details ul { margin: 0; }
|
||||
.details ul { list-style-type: none; }
|
||||
.details li { margin-left: 30px; padding-top: 6px; }
|
||||
.details pre.prettyprint { margin: 0 }
|
||||
.details .object-value { padding-top: 0; }
|
||||
|
||||
.description {
|
||||
margin-bottom: 1em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.code-caption
|
||||
{
|
||||
font-style: italic;
|
||||
font-size: 107%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.prettyprint
|
||||
{
|
||||
border: 1px solid #ddd;
|
||||
width: 80%;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.prettyprint.source {
|
||||
width: inherit;
|
||||
}
|
||||
|
||||
.prettyprint code
|
||||
{
|
||||
font-size: 100%;
|
||||
line-height: 18px;
|
||||
display: block;
|
||||
padding: 4px 12px;
|
||||
margin: 0;
|
||||
background-color: #fff;
|
||||
color: #4D4E53;
|
||||
}
|
||||
|
||||
.prettyprint code span.line
|
||||
{
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.prettyprint.linenums
|
||||
{
|
||||
padding-left: 70px;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.prettyprint.linenums ol
|
||||
{
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.prettyprint.linenums li
|
||||
{
|
||||
border-left: 3px #ddd solid;
|
||||
}
|
||||
|
||||
.prettyprint.linenums li.selected,
|
||||
.prettyprint.linenums li.selected *
|
||||
{
|
||||
background-color: lightyellow;
|
||||
}
|
||||
|
||||
.prettyprint.linenums li *
|
||||
{
|
||||
-webkit-user-select: text;
|
||||
-moz-user-select: text;
|
||||
-ms-user-select: text;
|
||||
user-select: text;
|
||||
}
|
||||
|
||||
.params, .props
|
||||
{
|
||||
border-spacing: 0;
|
||||
border: 0;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.params .name, .props .name, .name code {
|
||||
color: #4D4E53;
|
||||
font-family: Consolas, Monaco, 'Andale Mono', monospace;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
.params td, .params th, .props td, .props th
|
||||
{
|
||||
border: 1px solid #ddd;
|
||||
margin: 0px;
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
padding: 4px 6px;
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
.params thead tr, .props thead tr
|
||||
{
|
||||
background-color: #ddd;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.params .params thead tr, .props .props thead tr
|
||||
{
|
||||
background-color: #fff;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.params th, .props th { border-right: 1px solid #aaa; }
|
||||
.params thead .last, .props thead .last { border-right: 1px solid #ddd; }
|
||||
|
||||
.params td.description > p:first-child,
|
||||
.props td.description > p:first-child
|
||||
{
|
||||
margin-top: 0;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.params td.description > p:last-child,
|
||||
.props td.description > p:last-child
|
||||
{
|
||||
margin-bottom: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.disabled {
|
||||
color: #454545;
|
||||
}
|
||||
@@ -0,0 +1,111 @@
|
||||
/* JSDoc prettify.js theme */
|
||||
|
||||
/* plain text */
|
||||
.pln {
|
||||
color: #000000;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* string content */
|
||||
.str {
|
||||
color: #006400;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* a keyword */
|
||||
.kwd {
|
||||
color: #000000;
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* a comment */
|
||||
.com {
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* a type name */
|
||||
.typ {
|
||||
color: #000000;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* a literal value */
|
||||
.lit {
|
||||
color: #006400;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* punctuation */
|
||||
.pun {
|
||||
color: #000000;
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* lisp open bracket */
|
||||
.opn {
|
||||
color: #000000;
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* lisp close bracket */
|
||||
.clo {
|
||||
color: #000000;
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* a markup tag name */
|
||||
.tag {
|
||||
color: #006400;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* a markup attribute name */
|
||||
.atn {
|
||||
color: #006400;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* a markup attribute value */
|
||||
.atv {
|
||||
color: #006400;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* a declaration */
|
||||
.dec {
|
||||
color: #000000;
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* a variable name */
|
||||
.var {
|
||||
color: #000000;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* a function name */
|
||||
.fun {
|
||||
color: #000000;
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* Specify class=linenums on a pre to get line numbering */
|
||||
ol.linenums {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
/* Tomorrow Theme */
|
||||
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
|
||||
/* Pretty printing styles. Used with prettify.js. */
|
||||
/* SPAN elements with the classes below are added by prettyprint. */
|
||||
/* plain text */
|
||||
.pln {
|
||||
color: #4d4d4c; }
|
||||
|
||||
@media screen {
|
||||
/* string content */
|
||||
.str {
|
||||
color: #718c00; }
|
||||
|
||||
/* a keyword */
|
||||
.kwd {
|
||||
color: #8959a8; }
|
||||
|
||||
/* a comment */
|
||||
.com {
|
||||
color: #8e908c; }
|
||||
|
||||
/* a type name */
|
||||
.typ {
|
||||
color: #4271ae; }
|
||||
|
||||
/* a literal value */
|
||||
.lit {
|
||||
color: #f5871f; }
|
||||
|
||||
/* punctuation */
|
||||
.pun {
|
||||
color: #4d4d4c; }
|
||||
|
||||
/* lisp open bracket */
|
||||
.opn {
|
||||
color: #4d4d4c; }
|
||||
|
||||
/* lisp close bracket */
|
||||
.clo {
|
||||
color: #4d4d4c; }
|
||||
|
||||
/* a markup tag name */
|
||||
.tag {
|
||||
color: #c82829; }
|
||||
|
||||
/* a markup attribute name */
|
||||
.atn {
|
||||
color: #f5871f; }
|
||||
|
||||
/* a markup attribute value */
|
||||
.atv {
|
||||
color: #3e999f; }
|
||||
|
||||
/* a declaration */
|
||||
.dec {
|
||||
color: #f5871f; }
|
||||
|
||||
/* a variable name */
|
||||
.var {
|
||||
color: #c82829; }
|
||||
|
||||
/* a function name */
|
||||
.fun {
|
||||
color: #4271ae; } }
|
||||
/* Use higher contrast and text-weight for printable form. */
|
||||
@media print, projection {
|
||||
.str {
|
||||
color: #060; }
|
||||
|
||||
.kwd {
|
||||
color: #006;
|
||||
font-weight: bold; }
|
||||
|
||||
.com {
|
||||
color: #600;
|
||||
font-style: italic; }
|
||||
|
||||
.typ {
|
||||
color: #404;
|
||||
font-weight: bold; }
|
||||
|
||||
.lit {
|
||||
color: #044; }
|
||||
|
||||
.pun, .opn, .clo {
|
||||
color: #440; }
|
||||
|
||||
.tag {
|
||||
color: #006;
|
||||
font-weight: bold; }
|
||||
|
||||
.atn {
|
||||
color: #404; }
|
||||
|
||||
.atv {
|
||||
color: #060; } }
|
||||
/* Style */
|
||||
/*
|
||||
pre.prettyprint {
|
||||
background: white;
|
||||
font-family: Consolas, Monaco, 'Andale Mono', monospace;
|
||||
font-size: 12px;
|
||||
line-height: 1.5;
|
||||
border: 1px solid #ccc;
|
||||
padding: 10px; }
|
||||
*/
|
||||
|
||||
/* Specify class=linenums on a pre to get line numbering */
|
||||
ol.linenums {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0; }
|
||||
|
||||
/* IE indents via margin-left */
|
||||
li.L0,
|
||||
li.L1,
|
||||
li.L2,
|
||||
li.L3,
|
||||
li.L4,
|
||||
li.L5,
|
||||
li.L6,
|
||||
li.L7,
|
||||
li.L8,
|
||||
li.L9 {
|
||||
/* */ }
|
||||
|
||||
/* Alternate shading for lines */
|
||||
li.L1,
|
||||
li.L3,
|
||||
li.L5,
|
||||
li.L7,
|
||||
li.L9 {
|
||||
/* */ }
|
||||
File diff suppressed because it is too large
Load Diff
4
src/main/webapp/static/global/plugins/editor.md-master/editormd.amd.min.js
vendored
Normal file
4
src/main/webapp/static/global/plugins/editor.md-master/editormd.amd.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
4598
src/main/webapp/static/global/plugins/editor.md-master/editormd.js
Normal file
4598
src/main/webapp/static/global/plugins/editor.md-master/editormd.js
Normal file
File diff suppressed because it is too large
Load Diff
3
src/main/webapp/static/global/plugins/editor.md-master/editormd.min.js
vendored
Normal file
3
src/main/webapp/static/global/plugins/editor.md-master/editormd.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,135 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>@links - Editor.md examples</title>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
<link rel="stylesheet" href="../css/editormd.css" />
|
||||
<link rel="shortcut icon" href="https://pandao.github.io/editor.md/favicon.ico" type="image/x-icon" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="layout">
|
||||
<header>
|
||||
<h1>@links</h1>
|
||||
<p>Github Flavored Markdown extras syntax</p>
|
||||
</header>
|
||||
<div id="test-editormd">
|
||||
<textarea style="display:none;">### Disable @link & email address auto link
|
||||
|
||||
> Editor.md default enable @link & email address auto link;
|
||||
> Unsupported xxxx@xxxxx, xxxx@localhost ...
|
||||
|
||||
```javascript
|
||||
var testEditor;
|
||||
|
||||
$(function() {
|
||||
// You can custom @link base url.
|
||||
editormd.urls.atLinkBase = "https://github.com/";
|
||||
|
||||
testEditor = editormd("test-editormd", {
|
||||
atLink : false, // disable @link
|
||||
emailLink : false, // disable email address auto link
|
||||
path : '../lib/'
|
||||
});
|
||||
});
|
||||
```
|
||||
|
||||
### @links
|
||||
|
||||
[TOC]
|
||||
|
||||
~~@mentions~~, #refs @tylerlong `inline code @tylerlong`, [links](), **formatting**, and <del>tags</del> supported @pandao;
|
||||
list syntax required (any unordered or ordered list supported) @pandao;
|
||||
this is @pandao a complete item @pandao xxx.test@gmail.com;
|
||||
|
||||
link [@pandao](https://github.com/pandao "@pandao") @ xxx.test@gmail.com;
|
||||
link [@pandao](https://github.com/pandao "@pandao")
|
||||
fsdafds [Gmail](mailto:xxx.test@gmail.com) this is an incomplete item **@pandao**;
|
||||
|
||||
*@pandao* this is an incomplete item ___@pandao___;
|
||||
|
||||
<xxx.test@gmail.com>
|
||||
|
||||
<mailto:xxx.test@gmail.com>
|
||||
|
||||
Email test : [email me](mailto:test@test.com) [Gmail](mailto:xxx.test@gmail.com) dsfdfsdfsdfsdf xxx.test@gmail.com fdfsdfsdf 5956565656565@vip.qq.com
|
||||
|
||||
# Github: @pandao
|
||||
## Github: @pandao
|
||||
### Github: @tylerlong
|
||||
#### Github: @tylerlong
|
||||
##### Github: @tylerlong
|
||||
###### Github: @tylerlong [Gmail](mailto:xxx.test@gmail.com)
|
||||
|
||||
- dafssdfsdaf@chjj dfsdfsdf [5956565656565@vip.qq.com](mailto:5956565656565@vip.qq.com)
|
||||
- dafssdfsdaf@chjj dfsdfsdf
|
||||
- dafssdfsdaf@chjj dfsdfsdf
|
||||
- dafss@pandao dfsdaf@chjj dfsdfsdf
|
||||
- dafssd: @pandao fsdaf@chjj dfsdfsdf @codemirror @pandao
|
||||
+ dafssdfsdaf@chjj dfsdfsdf
|
||||
+ dafss@pandaodfsdaf@chjj dfsdfsdf
|
||||
|
||||
|
||||
1. @chjj 第一行@pandao fsdaf@chjj dfsdfsdf :fa-save:: @pandao
|
||||
- dafssdfsdaf@chjj dfsdfsdf
|
||||
- dafss@pandao dfsdaf@chjj dfsdfsdf
|
||||
2. @chjj 第二行@pandao fsdaf@chjj dfsdfsdf @codemirror @pandao
|
||||
3. 第三行@pandao fsdaf@chjj dfsdfsdf :fa-save:: @pandao
|
||||
|
||||
> Blockquotes @pandao
|
||||
|
||||
> dd@pandao引用文本(Blockquotes @pandao)fdasfad @_pandao fdasfad @xxx454xxx fdasfad @xx_x454xxx454
|
||||
|
||||
|@pandao First Header | Second@pandao Header@pandao |
|
||||
| ------------- | ------------- |
|
||||
| Content@pandao Cell | @pandao Content Cell @pandao|
|
||||
| Con@pandao tent Cell@pandao | Content@pan-dao Cell dfsdfsdf @pan_dao |
|
||||
|
||||
dsfdf@pandao fasdfsdfsfddffd@pandao
|
||||
|
||||
dfasfasdfasdf:bangbang:
|
||||
|
||||
This is an H1 @pandao
|
||||
=============
|
||||
|
||||
This @pandao an H2 @pandao
|
||||
-------------
|
||||
|
||||
http://socialpro.demo.ipandao.com/app/images/welcom-logo@2x.png
|
||||
|
||||
http://socialpro.demo.ipandao.com/app/images/welcom-logo@3x.png
|
||||
|
||||
http://socialpro.demo.ipandao.com/app/images/welcom-logo@4x.png
|
||||
|
||||
[](http://socialpro.demo.ipandao.com/app/images/welcom-logo@2x.png)
|
||||
|
||||
|
||||
[http://socialpro.demo.ipandao.com/app/images/welcom-logo@2x.png](http://socialpro.demo.ipandao.com/app/images/welcom-logo@2x.png)
|
||||
[http://socialpro.demo.ipandao.com/app/images/welcom-logo@3x.png](http://socialpro.demo.ipandao.com/app/images/welcom-logo@3x.png)
|
||||
|
||||

|
||||
</textarea>
|
||||
</div>
|
||||
</div>
|
||||
<script src="js/jquery.min.js"></script>
|
||||
<script src="../editormd.js"></script>
|
||||
<script type="text/javascript">
|
||||
var testEditor;
|
||||
|
||||
$(function() {
|
||||
// You can custom @link base url.
|
||||
editormd.urls.atLinkBase = "https://github.com/";
|
||||
|
||||
testEditor = editormd("test-editormd", {
|
||||
width : "90%",
|
||||
height : 720,
|
||||
toc : true,
|
||||
//atLink : false, // disable @link
|
||||
//emailLink : false, // disable email address auto link
|
||||
todoList : true,
|
||||
path : '../lib/'
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Auto height - Editor.md examples</title>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
<link rel="stylesheet" href="css/editormd.min.css" />
|
||||
|
||||
<link rel="stylesheet" href="../css/editormd.css" />
|
||||
<link rel="shortcut icon" href="https://pandao.github.io/editor.md/favicon.ico" type="image/x-icon" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="layout">
|
||||
<header>
|
||||
<h1>Auto height test</h1>
|
||||
</header>
|
||||
<div class="btns">
|
||||
<button id="append-btn">Append markdown</button>
|
||||
</div>
|
||||
<div id="test-editormd">
|
||||
<textarea style="display:none;">
|
||||
|
||||
</textarea>
|
||||
</div>
|
||||
</div>
|
||||
<script src="js/jquery.min.js"></script>
|
||||
<script src="../editormd.js"></script>
|
||||
<script type="text/javascript">
|
||||
var testEditor;
|
||||
|
||||
$(function() {
|
||||
testEditor = editormd("test-editormd", {
|
||||
width : "90%",
|
||||
autoHeight : false,
|
||||
height : "500px",
|
||||
path : "../lib/",
|
||||
htmlDecode : "style,script,iframe",
|
||||
tex : true,
|
||||
emoji : true,
|
||||
taskList : true,
|
||||
flowChart : true,
|
||||
sequenceDiagram : true
|
||||
});
|
||||
|
||||
$("#append-btn").click(function(){
|
||||
$.get("./test.md", function(md){
|
||||
testEditor.appendMarkdown(md);
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,508 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Chnage mode - Editor.md examples</title>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
<link rel="stylesheet" href="../css/editormd.css" />
|
||||
<link rel="shortcut icon" href="https://pandao.github.io/editor.md/favicon.ico" type="image/x-icon" />
|
||||
<style>
|
||||
#codes textarea {display: none;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="layout">
|
||||
<header>
|
||||
<h1>Chnage mode</h1>
|
||||
<p>Become to the code editor</p>
|
||||
<p>Modes : <select id="modes">
|
||||
<option value="">select modes</option>
|
||||
</select> Themes :
|
||||
<select id="themes">
|
||||
<option selected="selected" value="">select themes</option>
|
||||
</select>
|
||||
</p>
|
||||
</header>
|
||||
<div class="btns">
|
||||
<button id="get-code-btn">Get code source</button>
|
||||
<button id="fullscreen-btn">Fullscreen (Press F11 into, ESC exit)</button>
|
||||
</div>
|
||||
<div id="codes">
|
||||
<textarea id="html-code"><!DOCTYPE html>
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Chnage mode - Editor.md examples</title>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
<link rel="stylesheet" href="../css/editormd.css" />
|
||||
<link rel="shortcut icon" href="https://pandao.github.io/editor.md/favicon.ico" type="image/x-icon" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="layout">
|
||||
<header>
|
||||
<h1>Chnage mode</h1>
|
||||
</header>
|
||||
<div id="test-editormd">
|
||||
<textarea style="display:none;"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<script src="js/jquery.min.js"></script>
|
||||
<script src="../editormd.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
var testEditor = editormd("test-editormd", {
|
||||
width : "90%",
|
||||
height : 720,
|
||||
watch : false,
|
||||
toolbar : false,
|
||||
codeFold : true,
|
||||
searchReplace : true,
|
||||
placeholder : "Enjoy coding!",
|
||||
value : (localStorage.mode) ? $("#"+localStorage.mode.replace("text/", "")+"-code").val() : $("#html-code").val(),
|
||||
theme : (localStorage.theme) ? localStorage.theme : "default",
|
||||
mode : (localStorage.mode) ? localStorage.mode : "text/html",
|
||||
path : '../lib/'
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html></textarea>
|
||||
<textarea id="javascript-code">$(function() {
|
||||
var testEditor = editormd("test-editormd", {
|
||||
width : "90%",
|
||||
height : 720,
|
||||
watch : false,
|
||||
toolbar : false,
|
||||
codeFold : true,
|
||||
searchReplace : true,
|
||||
placeholder : "Enjoy coding!",
|
||||
value : (localStorage.mode) ? $("#"+localStorage.mode.replace("text/", "")+"-code").val() : $("#html-code").val(),
|
||||
theme : (localStorage.theme) ? localStorage.theme : "default",
|
||||
mode : (localStorage.mode) ? localStorage.mode : "text/html",
|
||||
path : '../lib/'
|
||||
});
|
||||
});</textarea>
|
||||
<textarea id="xml-code"><?xml version="1.0" encoding="utf-8" ?>
|
||||
<root>
|
||||
<photo url="https://pandao.github.io/editor.md/examples/images/7.jpg">
|
||||
<title>李健首张专辑《似水流年》封面</title>
|
||||
<width>360</width>
|
||||
<height>360</height>
|
||||
</photo>
|
||||
<photo url="https://pandao.github.io/editor.md/examples/images/7.jpg">
|
||||
<title>李健首张专辑《似水流年》封面</title>
|
||||
<width>360</width>
|
||||
<height>360</height>
|
||||
</photo>
|
||||
<photo url="https://pandao.github.io/editor.md/examples/images/7.jpg">
|
||||
<title>李健首张专辑《似水流年》封面</title>
|
||||
<width>360</width>
|
||||
<height>360</height>
|
||||
</photo>
|
||||
</root></textarea>
|
||||
<textarea id="ruby-code">#!/usr/bin/ruby
|
||||
|
||||
puts "Hello World!";
|
||||
|
||||
# Ruby knows what you
|
||||
# mean, even if you
|
||||
# want to do math on
|
||||
# an entire Array
|
||||
cities = %w[ London
|
||||
Oslo
|
||||
Paris
|
||||
Amsterdam
|
||||
Berlin ]
|
||||
visited = %w[Berlin Oslo]
|
||||
|
||||
puts "I still need " +
|
||||
"to visit the " +
|
||||
"following cities:",
|
||||
cities - visited</textarea>
|
||||
<textarea id="json-code">{
|
||||
"employees": [
|
||||
{
|
||||
"firstName" : "Bill",
|
||||
"lastName" : "Gates"
|
||||
},
|
||||
{
|
||||
"firstName" : "George",
|
||||
"lastName" : "Bush"
|
||||
},
|
||||
{
|
||||
"firstName" : "Thomas",
|
||||
"lastName" : "Carter"
|
||||
}
|
||||
],
|
||||
"employees": [
|
||||
{
|
||||
"firstName" : "Bill",
|
||||
"lastName" : "Gates"
|
||||
},
|
||||
{
|
||||
"firstName" : "George",
|
||||
"lastName" : "Bush"
|
||||
},
|
||||
{
|
||||
"firstName" : "Thomas",
|
||||
"lastName" : "Carter"
|
||||
}
|
||||
],
|
||||
}</textarea>
|
||||
<textarea id="php-code"><?php
|
||||
$app = new Phalcon\Mvc\Micro();
|
||||
|
||||
//Set a route with the name "show-post"
|
||||
$app->get('/blog/{year}/{title}', function ($year, $title) use ($app) {
|
||||
|
||||
//.. show the post here
|
||||
return $year.$title;
|
||||
|
||||
})->setName('show-post');
|
||||
|
||||
$app->get('/', function () {
|
||||
echo "<h1>Welcome !</h1>";
|
||||
|
||||
echo $app->url->get(array(
|
||||
'for' => 'show-post',
|
||||
'title' => 'php-is-a-great-framework',
|
||||
'year' => 2012
|
||||
));
|
||||
});
|
||||
|
||||
$app->get('/posts/{year:[0-9]+}/{title:[a-zA-Z\-]+}', function ($year, $title) {
|
||||
echo "<h1>Title: $title</h1>";
|
||||
echo "<h2>Year: $year</h2>";
|
||||
});
|
||||
|
||||
//Requiring another file
|
||||
$app->get('/show/results', function () {
|
||||
require 'views/results.php';
|
||||
});
|
||||
|
||||
//Returning a JSON
|
||||
$app->get('/get/some-json', function () {
|
||||
echo json_encode(array("some", "important", "data"));
|
||||
});
|
||||
|
||||
//This route makes a redirection to another route
|
||||
$app->post('/old/welcome', function () use ($app) {
|
||||
$app->response->redirect("new/welcome");
|
||||
});
|
||||
|
||||
$app->post('/new/welcome', function () use ($app) {
|
||||
echo 'This is the new Welcome';
|
||||
});
|
||||
|
||||
/*
|
||||
//Matches if the HTTP method is POST
|
||||
$app->post('/api/products/add', "add_product");
|
||||
|
||||
//Matches if the HTTP method is PUT
|
||||
$app->put('/api/products/update/{id}', "update_product");
|
||||
|
||||
//Matches if the HTTP method is DELETE
|
||||
$app->put('/api/products/remove/{id}', "delete_product");
|
||||
|
||||
//Matches if the HTTP method is GET or POST
|
||||
$app->map('/repos/store/refs')->via(array('GET', 'POST'));
|
||||
*/
|
||||
|
||||
$app->handle();
|
||||
?></textarea>
|
||||
<textarea id="cpp-code">#include "dialog.h"
|
||||
#include <QApplication>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QApplication a(argc, argv);
|
||||
Dialog w;
|
||||
w.show();
|
||||
|
||||
return a.exec();
|
||||
}</textarea>
|
||||
<textarea id="java-code">package com.demo.blog;
|
||||
|
||||
import com.jfinal.aop.Before;
|
||||
import com.jfinal.core.Controller;
|
||||
|
||||
@Before(BlogInterceptor.class)
|
||||
public class BlogController extends Controller {
|
||||
public void index() {
|
||||
setAttr("blogPage", Blog.me.paginate(getParaToInt(0, 1), 10));
|
||||
render("blog.html");
|
||||
}
|
||||
|
||||
public void add() {
|
||||
}
|
||||
|
||||
@Before(BlogValidator.class)
|
||||
public void save() {
|
||||
getModel(Blog.class).save();
|
||||
redirect("/blog");
|
||||
}
|
||||
|
||||
public void edit() {
|
||||
setAttr("blog", Blog.me.findById(getParaToInt()));
|
||||
}
|
||||
|
||||
@Before(BlogValidator.class)
|
||||
public void update() {
|
||||
getModel(Blog.class).update();
|
||||
redirect("/blog");
|
||||
}
|
||||
|
||||
public void delete() {
|
||||
Blog.me.deleteById(getParaToInt());
|
||||
redirect("/blog");
|
||||
}
|
||||
}
|
||||
</textarea>
|
||||
<textarea id="actionscript-code">package com.flite
|
||||
{
|
||||
import flash.net.*;
|
||||
import flash.events.*;
|
||||
import flash.display.*;
|
||||
|
||||
/**
|
||||
* @package com.flite
|
||||
* @class XMLLoader
|
||||
* @author pandao pandao@vip.qq.com
|
||||
*/
|
||||
|
||||
public class XMLLoder
|
||||
{
|
||||
public var xml:XML;
|
||||
public var url:String;
|
||||
public var list:XMLList;
|
||||
public var percent:Number = 0;
|
||||
public var onload:Function;
|
||||
public var onerror:Function;
|
||||
public var onpreload:Function;
|
||||
public var onprogress:Function;
|
||||
|
||||
private var loader:URLLoader;
|
||||
|
||||
public function XMLLoder(url:String) : void
|
||||
{
|
||||
this.url = url;
|
||||
|
||||
xml = new XML();
|
||||
xml.ignoreWhite = true;
|
||||
|
||||
loader = new URLLoader();
|
||||
loader.load(new URLRequest(url));
|
||||
loader.addEventListener(Event.OPEN, preloadHandler);
|
||||
loader.addEventListener(IOErrorEvent.IO_ERROR, errorHandler);
|
||||
loader.addEventListener(ProgressEvent.PROGRESS, progressHandler);
|
||||
loader.addEventListener(Event.COMPLETE, loadedHandler);
|
||||
}
|
||||
|
||||
private function preloadHandler(event:Event) : void
|
||||
{
|
||||
onpreload = onpreload || new Function;
|
||||
onpreload(event);
|
||||
}
|
||||
|
||||
private function errorHandler(event:IOErrorEvent) : void
|
||||
{
|
||||
onerror = onerror || new Function;
|
||||
onerror(event);
|
||||
}
|
||||
|
||||
private function progressHandler(event:ProgressEvent) : void
|
||||
{
|
||||
percent = Math.round((event.bytesLoaded / event.bytesTotal) * 100);
|
||||
|
||||
onprogress = onprogress || new Function;
|
||||
onprogress(event, percent);
|
||||
}
|
||||
|
||||
private function loadedHandler(event:Event) : void
|
||||
{
|
||||
xml = XML(loader.data);
|
||||
|
||||
onload = onload || new Function;
|
||||
onload(xml);
|
||||
}
|
||||
}
|
||||
|
||||
}</textarea><textarea id="perl-code">#!/usr/bin/perl
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
print "Hello, World...\n";
|
||||
</textarea>
|
||||
<textarea id="go-code">package main
|
||||
|
||||
import (
|
||||
"github.com/astaxie/beego"
|
||||
)
|
||||
|
||||
type MainController struct {
|
||||
beego.Controller
|
||||
}
|
||||
|
||||
func (this *MainController) Get() {
|
||||
this.Ctx.WriteString("hello world")
|
||||
}
|
||||
|
||||
func main() {
|
||||
beego.Router("/", &MainController{})
|
||||
beego.Run()
|
||||
}</textarea><textarea id="python-code">#!/usr/bin/env python
|
||||
|
||||
from flask import Flask
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route('/')
|
||||
def hello_world():
|
||||
return 'Hello World!'
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run()</textarea>
|
||||
<textarea id="css-code"> body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,
|
||||
th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
|
||||
margin:0;padding:0;
|
||||
}
|
||||
|
||||
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
audio, canvas, video {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
body, button, input, select, textarea {
|
||||
font:12px/1.5 Tahoma, "Hiragino Sans GB", "Microsoft Yahei", Arial;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size:12px;
|
||||
color:#666;
|
||||
background:#fff url(../images/) no-repeat left top;
|
||||
}
|
||||
|
||||
a {
|
||||
color:#444;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color:#065BC2;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.clear {
|
||||
zoom:1;
|
||||
}
|
||||
|
||||
.clear:after {
|
||||
content:"";
|
||||
height:0;
|
||||
visibility:hidden;
|
||||
clear:both;
|
||||
display:block;
|
||||
}
|
||||
|
||||
img {
|
||||
border:none;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
}</textarea></div>
|
||||
<div id="test-editormd">
|
||||
<textarea style="display:none;"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<script src="js/jquery.min.js"></script>
|
||||
<script src="../editormd.js"></script>
|
||||
<script type="text/javascript">
|
||||
var testEditor;
|
||||
|
||||
function getCodeValue() {
|
||||
return (localStorage.modeName) ? $("#"+localStorage.modeName.replace("text/", "").replace("c/c++", "cpp")+"-code").val() : $("#html-code").val();
|
||||
}
|
||||
|
||||
$(function() {
|
||||
testEditor = editormd("test-editormd", {
|
||||
width : "90%",
|
||||
height : 720,
|
||||
watch : false,
|
||||
toolbar : false,
|
||||
codeFold : true,
|
||||
searchReplace : true,
|
||||
placeholder : "Enjoy coding!",
|
||||
value : getCodeValue(),
|
||||
theme : (localStorage.theme) ? localStorage.theme : "default",
|
||||
mode : (localStorage.mode) ? localStorage.mode : "text/html",
|
||||
path : '../lib/'
|
||||
});
|
||||
|
||||
$("#get-code-btn").bind("click", function() {
|
||||
alert(testEditor.getValue());
|
||||
});
|
||||
|
||||
$("#fullscreen-btn").bind("click", function() {
|
||||
testEditor.fullscreen();
|
||||
});
|
||||
|
||||
var select = $("#themes");
|
||||
|
||||
for (var i = 0, len = editormd.themes.length; i < len; i ++)
|
||||
{
|
||||
var theme = editormd.themes[i];
|
||||
var selected = (localStorage.theme == theme) ? " selected=\"selected\"" : "";
|
||||
select.append("<option value=\"" + theme + "\"" + selected + ">" + theme + "</option>");
|
||||
}
|
||||
|
||||
select.change(function(){
|
||||
var theme = $(this).val();
|
||||
|
||||
if (theme == "")
|
||||
{
|
||||
alert("theme == \"\"");
|
||||
return false;
|
||||
}
|
||||
|
||||
localStorage.theme = theme;
|
||||
testEditor.setTheme(theme);
|
||||
});
|
||||
|
||||
var modesSelect = $("#modes");
|
||||
var modeNames = ["text/html", "javascript", "php", "text/xml", "text/json", "java", "actionscript", "perl", "go", "python", "c/c++", "css", "ruby"];
|
||||
var modes = ["text/html", "javascript", "php", "text/xml", "text/json", "clike", "javascript", "perl", "go", "python", "clike", "css", "ruby"];
|
||||
|
||||
for (var i = 0, len = modes.length; i < len; i ++)
|
||||
{
|
||||
var mode = modes[i];
|
||||
var selected = (localStorage.modeName == modeNames[i]) ? " selected=\"selected\"" : "";
|
||||
modesSelect.append("<option value=\"" + mode + "\"" + selected + " name=\"" + modeNames[i] + "\"" + selected + ">" + modeNames[i] + "</option>");
|
||||
}
|
||||
|
||||
modesSelect.change(function(){
|
||||
var mode = $(this).val();
|
||||
var modeName = $(this).find("option:selected").attr("name");
|
||||
|
||||
if (mode == "")
|
||||
{
|
||||
alert("mode == \"\"");
|
||||
return false;
|
||||
}
|
||||
|
||||
localStorage.mode = mode;
|
||||
localStorage.modeName = modeName;
|
||||
|
||||
var code = getCodeValue();
|
||||
|
||||
testEditor.setCodeMirrorOption("mode", mode);
|
||||
//testEditor.setCodeMirrorOption("value", code);
|
||||
testEditor.setValue(code);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Code folding - Editor.md examples</title>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
<link rel="stylesheet" href="../css/editormd.css" />
|
||||
<link rel="shortcut icon" href="https://pandao.github.io/editor.md/favicon.ico" type="image/x-icon" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="layout">
|
||||
<header>
|
||||
<h1>Code folding</h1>
|
||||
<p>Switch code folding : Press Ctrl + Q / Command + Q</p>
|
||||
</header>
|
||||
<div id="test-editormd">
|
||||
<textarea style="display:none;"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<script src="js/jquery.min.js"></script>
|
||||
<script src="../editormd.js"></script>
|
||||
<script type="text/javascript">
|
||||
var testEditor;
|
||||
|
||||
$(function() {
|
||||
$.get("./test.md", function(md) {
|
||||
testEditor = editormd("test-editormd", {
|
||||
width : "90%",
|
||||
height : 720,
|
||||
markdown : "#### Setting\r\n\r\n {\n codeFold : true\n }\r\n\r\n" + md,
|
||||
codeFold : true,
|
||||
htmlDecode : true,
|
||||
tex : true,
|
||||
taskList : true,
|
||||
emoji : true,
|
||||
flowChart : true,
|
||||
sequenceDiagram : true,
|
||||
path : '../lib/'
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
5
src/main/webapp/static/global/plugins/editor.md-master/examples/css/editormd.min.css
vendored
Normal file
5
src/main/webapp/static/global/plugins/editor.md-master/examples/css/editormd.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,94 @@
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
*, *:before, *:after {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
audio, canvas, video {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
img {
|
||||
border: none;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
ul, ol {
|
||||
/*list-style: none;*/
|
||||
}
|
||||
|
||||
.clear {
|
||||
*zoom: 1; /* for IE 6/7 */
|
||||
}
|
||||
|
||||
.clear:before, .clear:after {
|
||||
height: 0;
|
||||
content: "";
|
||||
font-size: 0;
|
||||
display: table;
|
||||
line-height: 0; /* for Opera */
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.clear:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Tahoma, STXihei, "华文细黑", STHeiti, "Helvetica Neue", Helvetica, Tahoma, "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "宋体", Heiti, "黑体", sans-serif;
|
||||
background: #fff;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#layout {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#layout > header, .btns {
|
||||
padding: 15px 0;
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.btns {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.btns button {
|
||||
padding: 2px 8px;
|
||||
}
|
||||
|
||||
#layout > header > h1 {
|
||||
font-size: 20px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.btns button, .btn {
|
||||
padding: 8px 10px;
|
||||
background: #fff;
|
||||
border: 1px solid #ddd;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
cursor: pointer;
|
||||
-webkit-transition: background 300ms ease-out;
|
||||
transition: background 300ms ease-out;
|
||||
}
|
||||
|
||||
.btns button:hover, .btn:hover {
|
||||
background: #f6f6f6;
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user