-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1、中间件高级版支持启动达索Catia CAD设计软件内嵌到网页运行; 2、优化中间件文件下载性能及识别文件名生成算法; 3、PageHiOffice插入图片支持悬浮于文字之上,解决部分下载地址包含问号等时提示文件名非法问题; 4、PageHiPlayer多引擎及VLC网页播放器优化Win7下叠加透明网页效果,解决Win7下多引擎播放时VLC切换播放时可能卡死问题; 5、PageHiPlayer多引擎及VLC网页播放器支持设置服务器上及Base64编码的水印图片,优化截图操作,解决接口调用全屏时充满窗口设置无效问题
- Loading branch information
1 parent
0137fa4
commit 6612ffc
Showing
166 changed files
with
1,051 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
Bin/Plugins/199BB8A7-9DD5-41F5-AE9D-2AA94300B0B3/PluginAuth.paf
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Bin/Plugins/199BB8A7-9DD5-41F5-AE9D-2AA94300B0B3/WrlFileApplet.dll
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Catia Applet</title> | ||
<style> | ||
.CatiaCadApplet | ||
{ | ||
margin: 0px 0 0 0px; | ||
width: 480px; | ||
height: 320px; | ||
border: 1px solid blue; | ||
} | ||
</style> | ||
<script src="PluginOK/base.js"></script> | ||
<script src="PluginOK/PluginOK.js"></script> | ||
</head> | ||
|
||
<body> | ||
<div id="CatiaCadApplet" class="CatiaCadApplet"</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Catia Applet</title> | ||
</head> | ||
<style> | ||
.CatiaCadApplet | ||
{ | ||
margin: 210px 0 0 20px; | ||
width: 480px; | ||
height: 320px; | ||
border: 1px solid blue; | ||
} | ||
</style> | ||
<body> | ||
<div id="CatiaCadApplet" class="CatiaCadApplet"</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
| ||
<!DOCTYPE html> | ||
<html manifest="/websocket.appcache"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> | ||
<title>Solidworks Applet Test</title> | ||
|
||
<link href="css/res.css" rel="stylesheet"/> | ||
<link rel="shortcut icon" href="{% static 'Files/favicon.ico' %}" type="image/x-icon"> | ||
|
||
<script src="PluginOK/base.js"></script> | ||
<script src="PluginOK/PluginOK.js"></script> | ||
|
||
<script language ="javascript" type ="text/javascript" for="WrlWS" event="onopen()"> | ||
showmessage('连接成功'); | ||
WrlVisibilityListener(true); | ||
WrlScrollListener(true); | ||
$('body').find('#btn_send').attr('disabled', false); | ||
</script> | ||
|
||
<script language ="javascript" type ="text/javascript" for="WrlWS" event="onclose(param1,param2,param3)"> | ||
WrlVisibilityListener(false); | ||
WrlScrollListener(false); | ||
nAppletRunID = 0; | ||
nRequstAppletID = 0; | ||
showmessage(param2); | ||
$('body').find('#btn_conn').attr('disabled', false); | ||
$('body').find('#btn_close').attr('disabled', true); | ||
$('body').find('#btn_send').attr('disabled', true); | ||
$('body').find('#btn_fitpage').attr('disabled', true); | ||
</script> | ||
|
||
<script language ="javascript" type ="text/javascript" for="WrlWS" event="onmessage(param)"> | ||
DealRecMessage(param); | ||
</script> | ||
|
||
<script language ="javascript" type ="text/javascript" for="WrlWS" event="onerror(param)"> | ||
showmessage(param); | ||
</script> | ||
<script type="text/javascript"> | ||
$(document).ready(function(){ | ||
$("#inp_url").attr("value",GetDefaultConn()); | ||
}); | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<object ID="WrlWS" CLASSID="CLSID:C0971B90-4513-4E2D-A0B6-15B915FE748A" width="0" height="0"></object> | ||
<br /> | ||
<iframe name="CatiaCadApplet" id="CatiaCadApplet" src="CatiaCadApplet3.html" frameborder="0" align="left" width="550" height="540" scrolling="no"> | ||
</iframe> | ||
<div class="container"> | ||
<div class="page-header"> | ||
<h2 style="margin-top:20px;margin-left:20px; text-align:center; ">PluginOK内嵌Solidworks小程序自动适配及还原1</h2> | ||
</div> | ||
<div class="row" style="margin-bottom:20px;"> | ||
<div class="col-sm-6 col-md-5 col-lg-4"> | ||
<div> | ||
<input type="text" class="form-control" size="50" style="margin-bottom:3px;" id="inp_url" placeholder="连接" value="ws://localhost:80?sid=12345&flag=1" /> | ||
<button type="button" id="btn_conn" class="btn btn-primary">连接</button> | ||
<button type="button" id="btn_close" class="btn btn-danger" disabled="disabled">断开</button> | ||
<button type="button" id="btn_clear" class="btn btn-danger">清空通讯记录</button> | ||
<button type="button" id="btn_fitpage" class="btn btn-danger" disabled="disabled">适配显示切换</button> | ||
</div> | ||
<br /> | ||
<div style="margin-bottom:20px;"> | ||
<textarea id="inp_send" class="form-control" style="margin-bottom:3px;min-width:350px;min-height:250px;" placeholder="请输入发送的内容">{"req":"Wrl_CatiaApplet","rid":8,"para":{"Type":"0","Title":"Catia Applet","Flag":66,"Left":20,"Top":20,"Width":480,"Height":320,"IframeX":0,"IframeY":210,"BarW":0,"BarH":0,"ScrollTop":0,"Version":"0","Web": [],"Open":"D:/Zorro/Test.CATPart"}}</textarea> | ||
<button type="button" id="btn_send" class="btn btn-info btn-block">发送(Ctrl+Enter)</button> | ||
</div> | ||
</div> | ||
<div class="col-sm-6 col-md-7 col-lg-8"> | ||
<div id="div_msgzone" class="panel panel-default"> | ||
<div class="panel-heading">通讯记录</div> | ||
<div id="div_msg" class="panel-body" style="min-height:400px;width:500px;"></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
| ||
<!DOCTYPE html> | ||
<html manifest="/websocket.appcache"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> | ||
<title>Catia Applet Test</title> | ||
<style> | ||
.CatiaCadApplet { | ||
margin: 20px 0 0 20px; | ||
width: 480px; | ||
height: 320px; | ||
border: 1px solid blue; | ||
} | ||
</style> | ||
|
||
<link href="css/res.css" rel="stylesheet"/> | ||
<link rel="shortcut icon" href="{% static 'Files/favicon.ico' %}" type="image/x-icon"> | ||
|
||
<script src="PluginOK/base.js"></script> | ||
<script src="PluginOK/PluginOK.js"></script> | ||
|
||
<script language ="javascript" type ="text/javascript" for="WrlWS" event="onopen()"> | ||
showmessage('连接成功'); | ||
WrlVisibilityListener(true); | ||
WrlScrollListener(true); | ||
$('body').find('#btn_send').attr('disabled', false); | ||
</script> | ||
|
||
<script language ="javascript" type ="text/javascript" for="WrlWS" event="onclose(param1,param2,param3)"> | ||
WrlVisibilityListener(false); | ||
WrlScrollListener(false); | ||
nAppletRunID = 0; | ||
nRequstAppletID = 0; | ||
showmessage(param2); | ||
$('body').find('#btn_conn').attr('disabled', false); | ||
$('body').find('#btn_send').attr('disabled', true); | ||
$('body').find('#btn_close').attr('disabled', true); | ||
$('body').find('#btn_max').attr('disabled', true); | ||
$('body').find('#btn_restore').attr('disabled', true); | ||
</script> | ||
|
||
<script language ="javascript" type ="text/javascript" for="WrlWS" event="onmessage(param)"> | ||
DealRecMessage(param); | ||
</script> | ||
|
||
<script language ="javascript" type ="text/javascript" for="WrlWS" event="onerror(param)"> | ||
showmessage(param); | ||
</script> | ||
<script type="text/javascript"> | ||
$(document).ready(function(){ | ||
$("#inp_url").attr("value",GetDefaultConn()); | ||
}); | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<object ID="WrlWS" CLASSID="CLSID:C0971B90-4513-4E2D-A0B6-15B915FE748A" width="0" height="0"></object> | ||
<br /> | ||
<iframe name="CatiaCadApplet" id="CatiaCadApplet" src="CatiaCadApplet0.html" frameborder="0" align="left" width="500" height="350" scrolling="no"> | ||
</iframe> | ||
<div class="container"> | ||
<div class="page-header"> | ||
<h2 style="margin-top:20px;margin-left:20px; text-align:center; ">PluginOK内嵌Catia CAD小程序指定位置最大适配显示及还原1</h2> | ||
</div> | ||
<div class="row" style="margin-bottom:20px;"> | ||
<div class="col-sm-6 col-md-5 col-lg-4"> | ||
<div> | ||
<input type="text" class="form-control" size="50" style="margin-bottom:4px;" id="inp_url" placeholder="连接" value="ws://local.zorrosoft.com:80?sid=123&flag=1" /> | ||
<button type="button" id="btn_conn" class="btn btn-primary">连接</button> | ||
<span style="width:10px;"> </span> | ||
<button type="button" id="btn_close" class="btn btn-danger" disabled="disabled">断开</button> | ||
<span style="width:10px;"> </span> | ||
<button type="button" id="btn_clear" class="btn btn-danger">清空通讯记录</button> | ||
<br /> | ||
<br /> | ||
<button type="button" id="btn_max" class="btn btn-danger" disabled="disabled">适配显示</button> | ||
<span style="width:10px;"> </span> | ||
<button type="button" id="btn_restore" class="btn btn-danger" disabled="disabled">还原显示</button> | ||
</div> | ||
<br /> | ||
<div style="margin-bottom:20px;"> | ||
<textarea id="inp_send" class="form-control" style="margin-bottom:3px;min-width:350px;min-height:250px;" placeholder="请输入发送的内容">{"req":"Wrl_CatiaApplet","rid":5,"para":{"Type":"0","Title":"Catia Applet","Flag":64,"IframeX":-20,"IframeY":8,"BarW":0,"BarH":0,"ScrollTop":0,"Version":"1","Web": [],"Open":"D:/Zorro/Test.CATPart"}}</textarea> | ||
<button type="button" id="btn_send" class="btn btn-info btn-block">发送(Ctrl+Enter)</button> | ||
</div> | ||
</div> | ||
<div class="col-sm-6 col-md-7 col-lg-8"> | ||
<div id="div_msgzone" class="panel panel-default"> | ||
<div class="panel-heading">通讯记录</div> | ||
<div id="div_msg" class="panel-body" style="min-height:400px;width:500px;"></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<!DOCTYPE html> | ||
<html manifest="/websocket.appcache"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> | ||
<title>当前页内嵌Solidworks小程序编辑审核3D工程图</title> | ||
<script type="text/javascript"> | ||
</script> | ||
|
||
<link href="css/res.css" rel="stylesheet"/> | ||
<script src="PluginOK/base.js"></script> | ||
<script src="PluginOK/PluginOK.js"></script> | ||
|
||
<script language ="javascript" type ="text/javascript" for="WrlWS" event="onopen()"> | ||
showmessage('连接成功'); | ||
WrlVisibilityListener(true); | ||
WrlScrollListener(true); | ||
$('body').find('#btn_send').attr('disabled', false); | ||
</script> | ||
|
||
<script language ="javascript" type ="text/javascript" for="WrlWS" event="onclose(param1,param2,param3)"> | ||
showmessage(param2); | ||
WrlVisibilityListener(false); | ||
WrlScrollListener(false); | ||
$('body').find('#btn_conn').attr('disabled', false); | ||
$('body').find('#btn_close').attr('disabled', true); | ||
$('body').find('#btn_send').attr('disabled', true); | ||
</script> | ||
|
||
<script language ="javascript" type ="text/javascript" for="WrlWS" event="onmessage(param)"> | ||
DealRecMessage(param); | ||
showmessage(param, 'receive'); | ||
</script> | ||
|
||
<script language ="javascript" type ="text/javascript" for="WrlWS" event="onerror(param)"> | ||
showmessage(param); | ||
</script> | ||
<script type="text/javascript"> | ||
$(document).ready(function(){ | ||
$("#inp_url").attr("value",GetDefaultConn()); | ||
}); | ||
</script> | ||
</head> | ||
<style> | ||
.CatiaCadApplet | ||
{ | ||
margin: 0px 0px 0px 0px; | ||
width: 20px; | ||
height: 20px; | ||
border: 1px solid blue; | ||
} | ||
</style> | ||
<body> | ||
<div id="CatiaCadApplet" class="CatiaCadApplet"</div> | ||
<object ID="WrlWS" CLASSID="CLSID:C0971B90-4513-4E2D-A0B6-15B915FE748A" width="0" height="0"></object> | ||
<div class="container"> | ||
<div class="page-header"> | ||
<h2 style="margin-top:20px;margin-left:20px; text-align:center; ">牛插(PluginOK)中间件在线体验</h2> | ||
<a href=http://local.zorrosoft.com/Files/PluginOK.pdf>产品介绍</a> | ||
<a href=http://local.zorrosoft.com/Files/PluginOK.zip>中间件安装包</a> | ||
<a href=http://local.zorrosoft.com/Files/ZbaSDK.zip>中间件开发包(SDK)</a> | ||
<br /> | ||
<br /> | ||
</div> | ||
<div class="row" style="margin-bottom:20px;"> | ||
<div class="col-sm-6 col-md-5 col-lg-4"> | ||
<div> | ||
<input type="text" class="form-control" size="80" style="margin-bottom:3px;" id="inp_url" placeholder="连接" value="ws://wrl.zorrosoft.com:80? | ||
sid=123&flag=1" /> | ||
<button type="button" id="btn_conn" class="btn btn-primary">连接</button> | ||
<span style="width:10px;"> </span> | ||
<button type="button" id="btn_close" class="btn btn-danger" disabled="disabled">断开</button> | ||
<span style="width:10px;"> </span> | ||
<button type="button" id="btn_clear" class="btn btn-danger">清空通讯记录</button> | ||
</div> | ||
<br /> | ||
<div style="margin-bottom:20px;"> | ||
<textarea id="inp_send" class="form-control" style="margin-bottom:3px;min-width:350px;min-height:200px;" placeholder="请输入发送的内容">{"req":"Wrl_CatiaApplet","rid":97,"para":{"Type":"0","Title":"Catia Applet Full","Flag":72,"IframeX":0,"IframeY":0,"ScrollTop":0,"Web": [],"Open":"D:/Zorro/Test.CATPart","Version":0}}</textarea> | ||
<button type="button" id="btn_send" class="btn btn-info btn-block">发送(Ctrl+Enter)</button> | ||
</div> | ||
</div> | ||
<div class="col-sm-6 col-md-7 col-lg-8"> | ||
<div id="div_msgzone" class="panel panel-default"> | ||
<div class="panel-heading">通讯记录</div> | ||
<div id="div_msg" class="panel-body" style="min-height:300px;"></div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.