![]() |
爱热闹的充电器 · 三国杀10周年特权点怎么弄-西瓜视频· 4 月前 · |
![]() |
刚毅的针织衫 · 白话统计学习笔记:我们应该使用什么统计模型? ...· 6 月前 · |
![]() |
霸气的石榴 · 怎样让 PsExec.exe ...· 7 月前 · |
![]() |
拉风的凳子 · 通过Druid连接池获取Connection ...· 9 月前 · |
![]() |
打篮球的蛋挞 · 哈希时间锁合约 — WeCross ...· 9 月前 · |
![]() |
霸气的泡面
1 年前 |
Could you give some more info for ''script dummies'' as me?
I recently (today) did my 1st heatmap on JMP following the instructions given in this very useful video: https://www.youtube.com/watch?v=uaBFoI3l-8U
If somebody could create a similar video but also including the script for how to add the stars (eg *p<0.05, **p<0.01, **** p<0.001), i think the whole JMP community would be really happy about it :)
Alternatively if someone had some time to explain step by step what script would be needed and how it could be incorporated in a JMP dataset it would still be very useful.
Thanks for the understanding!
Here is a script that should be a good start in creating what you want
Names Default To Here( 1 );
// Open a sample data table
dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" );
// Run the Correlation Platform to get the data
mult = dt << Multivariate(
invisible,
Y( :NPN1, :PNP1, :PNP2, :NPN2, :PNP3, :IVP1 ),
Estimation Method( "Row-wise" ),
Matrix Format( "Square" ),
Scatterplot Matrix( 0 ),
Pairwise Correlations( 1 )
// Create data tables of the stats required
dtCorr = Report( mult )["Correlations"][Matrix Box( 1 )] << make into data table(invisible);
dtSig = Report( mult )["Pairwise Correlations"][Table Box( 1 )] << make into data table(invisible);
// Delete the Row Name column, not wanted in analysis
dtCorr << delete columns( 1 );
// Set the 100 colors to be used to color the graph
colorMatrix = [-16558990, -16558990, -16557962, -16557962, -16557191, -16557191, -16556419, -16556419, -16555391,
-16555391, -16554619, -16554619, -16553848, -16553848, -16553076, -16553076, -16552048, -16552048, -16551277,
-16551277, -16550506, -16550506, -16549735, -16549735, -16548964, -16548964, -16547936, -16547936, -16481629,
-16481629, -16480858, -16480858, -16480087, -16480087, -16479316, -16479316, -16478288, -16478288, -16477517,
-16477517, -16476746, -16476746, -16410184, -16410184, -16343621, -16343621, -16277315, -16277315, -16210752,
-16210752, -16144190, -16144190, -16077628, -16077628, -16011321, -16011321, -15944759, -15944759, -15878196,
-15878196, -15811634, -15811634, -15745328, -15745328, -15678765, -15678765, -15612459, -15612459, -15415082,
-15415082, -15217705, -15217705, -15020328, -15020328, -14822951, -14822951, -14625829, -14625829, -14428452,
-14428452, -14231075, -14231075, -14099234, -14099234, -13901857, -13901857, -13704735, -13704735, -13507358,
-13507358, -13309981, -13309981, -13113116, -13113116, -12916508, -12916508, -12719643, -12719643, -12522778,
-12522778];
// Get the column names in the Corr data table
columnNamesList = dtCorr << get column names( string );
// Create the output
nw = New Window( "Correlations",
gb = Graph Box(
Frame Size( 800, 800 ),
X Scale( 0, N Col( dtCorr ) + 2 ),
Y Scale( 0, N Rows( dtCorr ) + 2 ),
// Loop across the the rows and columns to find the correlation values and plot the results
For( x = 1, x <= N Cols( dtCorr ), x++,
For( y = 1, y <= N Rows( dtCorr ), y++,
// Find the color to use from the color matrix
fc = Abs( Floor( (dtCorr[y, x] * 100) + .5 ) );
If( fc < 1, fc = 1 );
fcc = colorMatrix[fc];
// Set the color
Eval( Parse( "Fill Color(" || Char( fcc ) || ");" ) );
Pen Color( "black" );
// create the output square
xlist1 = Matrix( x ) || Matrix( x ) || Matrix( x + 1 ) || Matrix( x + 1 );
xlist2 = Matrix( N Cols( dtCorr ) + 1 - y ) || Matrix( N Cols( dtCorr ) + 1 - y + 1 ) ||
Matrix( N Cols( dtCorr ) + 1 - y + 1 ) || Matrix( N Cols( dtCorr ) + 1 - y );
Polygon( xlist1, xlist2 );
// Draw a line around the square
Line( xlist1, xlist2 );
// Add the "*" for significant correlations, by going through the significant data table
Text Color( "Black" );
Text Size( 20 );
For( i = 1, i <= N Rows( dtSig ), i++,
If( dtSig:Signif Prob[i] <= .05,
textList = {};
Insert Into( textList, Loc( columnNamesList, dtSig:Variable[i] )[1] + .5 );
Insert Into( textList, N Cols( dtCorr ) + 1 - Loc( columnNamesList, dtSig:by Variable[i] )[1] + .5 );
Text( Center Justified, textList, "*" );
textList = {};
Insert Into( textList, Loc( columnNamesList, dtSig:by Variable[i] )[1] + .5 );
Insert Into( textList, N Cols( dtCorr ) + 1 - Loc( columnNamesList, dtSig:Variable[i] )[1] + .5 );
// Write the symbol in the middle of the square
Text( Center Justified, textList, "*" );
var data = div.getElementsByClassName("video-js");
var script = document.createElement('script');
script.src = "https://players.brightcove.net/" + data_account + "/" + data_palyer + "_default/index.min.js";
for(var i=0;i< data.length;i++){
videodata.push(data[i]);
for(var i=0;i< videodata.length;i++){
document.getElementsByClassName('lia-vid-container')[i].innerHTML = videodata[i].outerHTML;
document.body.appendChild(script);
catch(e){
if(!compiled){
/* Re compile html */
$compile(rootElement.querySelectorAll('div.lia-message-body-content')[0])($scope);
if (code_l.toLowerCase() != newBody.getAttribute("slang").toLowerCase()) {
/* Adding Translation flag */
var tr_obj = $filter('filter')($scope.sourceLangList, function (obj_l) {
return obj_l.code.toLowerCase() === newBody.getAttribute("slang").toLowerCase()
if (tr_obj.length > 0) {
tr_text = "This post originally written in lilicon-trans-text has been computer translated for you. When you reply, it will also be translated back to lilicon-trans-text.".replace(/lilicon-trans-text/g, tr_obj[0].title);
try {
if ($scope.wootMessages[$rootScope.profLang] != undefined) {
tr_text = $scope.wootMessages[$rootScope.profLang].replace(/lilicon-trans-text/g, tr_obj[0].title);
} catch (e) {
} else {
tr_text = "This message was translated for your convenience!";
try {
if (!document.getElementById("tr-msz-" + value)) {
var tr_para = document.createElement("P");
tr_para.setAttribute("id", "tr-msz-" + value);
tr_para.setAttribute("class", "tr-msz");
tr_para.style.textAlign = 'justify';
var tr_fTag = document.createElement("IMG");
tr_fTag.setAttribute("class", "tFlag");
tr_fTag.setAttribute("src", "/html/assets/lingoTrFlag.PNG");
tr_fTag.style.marginRight = "5px";
tr_fTag.style.height = "14px";
tr_para.appendChild(tr_fTag);
var tr_textNode = document.createTextNode(tr_text);
tr_para.appendChild(tr_textNode);
/* Woot message only for multi source */
if(rootElement.querySelector(".lia-quilt-forum-message")){
rootElement.querySelector(".lia-quilt-forum-message").appendChild(tr_para);
} else if(rootElement.querySelector(".lia-message-view-blog-topic-message")) {
rootElement.querySelector(".lia-message-view-blog-topic-message").appendChild(tr_para);
} else if(rootElement.querySelector(".lia-quilt-blog-reply-message")){
rootElement.querySelector(".lia-quilt-blog-reply-message").appendChild(tr_para);
} else if(rootElement.querySelector(".lia-quilt-tkb-message")){
rootElement.querySelector(".lia-quilt-tkb-message .lia-quilt-row:nth-child(3)").appendChild(tr_para);
} else if(rootElement.querySelector(".lia-quilt-tkb-reply-message")){
rootElement.querySelector(".lia-quilt-tkb-reply-message").insertBefore(tr_para,rootElement.querySelector(".lia-quilt-row.lia-quilt-row-footer"));
} else if(rootElement.querySelector(".lia-quilt-idea-message")){
rootElement.querySelector(".lia-quilt-idea-message").appendChild(tr_para);
else {
if (rootElement.querySelectorAll('div.lia-quilt-row-footer').length > 0) {
rootElement.querySelectorAll('div.lia-quilt-row-footer')[0].appendChild(tr_para);
} else {
rootElement.querySelectorAll('div.lia-quilt-column-message-footer')[0].appendChild(tr_para);
} catch (e) {
/* $( "div.message-uid-"+value ).find( "div.lia-message-body-content" ).append(body_L); */
} else {
/* Do not display button for same language */
// syncList.remove(value);
var index = $scope.syncList.indexOf(value);
if (index > -1) {
$scope.syncList.splice(index, 1);
/* V 2.0:2 = Reply Sync button for multi source translation */
} catch(e){console.log(e)}
if ((rContent != undefined) && (rContent != "")) {
drawCanvas(decodeURIComponent(rContent));
$window.connectorStatus.prop = "completed";
/** Update variable with selected language code **/
$scope.previousSelCode = code_l;
* @function manageTranslation
* @description Managess the translation of given language for the thread
* @param {string} langCode - Language Code
* @param {string} tid - Thread ID
$scope.manageTranslation = function (langCode, tid) {
/* V 2.0:5 = actualStatus variable introduced to indicate detailed connector status on UI. This variable holds the actual translation percentage */
$scope.transPercent = "";
$scope.actualStatus = "";
if (tid != "") {
var bulkTranslation = lithiumPlugin.bulkTranslation(langCode, tid);
bulkTranslation.then(function (trContent) {
if (trContent.body != "") {
$scope.showPreview(trContent.body, $scope.mszList, langCode);
if ((trContent.status != "NA") && trContent.status != null) {
// $scope.transPercent = String(trContent.status);
$scope.actualStatus = String(trContent.status);
} else {
$rootScope.errorMsg = "Translation is in progress. Please retry in a few minutes."
$scope.workbench = trContent.wb;
/* V 2.0:4 = Trigger uncalled or delayed callbacks (documnet uploaded/translation completed from lithium).*/
if (trContent.callback == 'true') {
var trCompletCallback = lithiumPlugin.trCompletCallback(langCode, trContent.docID);
trCompletCallback.then(function (callback) {
// $rootScope.errorMsg = "Downloading Translated content in " + langCode + " now. Please check again in a few minutes."
$rootScope.errorMsg = "Downloading Translated content. Please refresh after some time.";
} else if (trContent.callback == 'upload') {
var trCompletUpload = lithiumPlugin.trCompletUpload(langCode, trContent.docID);
trCompletUpload.then(function (callback) {
$rootScope.errorMsg = "Uploading content to translate. Please check again in a few minutes."
} else if ("many" == "one") {
$scope.updateOOS();
} else if ((trContent.status != null) && trContent.status.includes("100")) {
/* If everything fine then only check Out of Sync status */
$scope.updateOOS();
} else {
/* If translation perccent is less than 100 then show the percentage on UI */
$scope.transPercent = $scope.actualStatus;
}).catch(function (error) {
console.error("Manage translation Error:"+error);
* @function selectThisLang
* @description Called on select dropdown.
* @param {string} lang - Language code
$scope.selectThisLang = function (lang, anonymousFlag) {
/* 1.4:3 Update Analytics on language selection */
try {
lingoThreadLangSelected(lang, '72364');
} catch (e) {
/* var obj = $filter('filter')($scope.sourceLangList, function (obj) {return obj.code === lang});
if(obj.length > 0) {
if((anonymousFlag == undefined) && ("" != obj[0].id)) {
$window.location.href = "?profile.language="+obj[0].id;
return "";
/** Display Translated content **/
var getTranslation = lithiumPlugin.getTranslation(lang, "72364");
getTranslation.then(function (trContent) {
if (trContent.body != "") {
$scope.showPreview(trContent.body, $scope.mszList, lang);
} else {
$rootScope.errorMsg = "Translation is in progress. Please retry in a few minutes."
* @function openWorkbench
* @description Opens the workbench link of the selected code
$scope.openWorkbench = function (wbLink) {
/* Open workbench link in new tab */
$window.open(decodeURIComponent(wbLink), '_blank');
* @function detectBrowserLanguage
* @description detects the browser language and displays the UI to request translation for browser language
$scope.detectBrowserLanguage = function () {
/* Get cookie value of the user choice regarding browser language translation */
var brTChoice = cookieService.getBrTChoice()
if (brTChoice != undefined && brTChoice == "true") {
/* Do nothing if user dont want option for browser language translation */
} else {
/* Get user browser language */
var brLangCode = window.navigator.userLanguage || window.navigator.language;
brLang = "";
/* Get right language code of the browser language. Get the first value in the matching list */
if (brLangCode.indexOf("-") >= 0) {
var obj = $filter('filter')($scope.languages, function (obj) {
return obj.code === brLangCode
if (obj.length > 0) {
brLang = obj[0];
} else {
var obj = $filter('filter')($scope.languages, function (obj) {
return obj.code.split("-")[0] === brLangCode
if (obj.length > 0) {
brLang = obj[0];
/* If browser language is valid one then provide UI to request browser language translation */
if (brLang != "") {
var defaultLang = "";
if (('en-US'.indexOf(brLang.code) == -1) && (brLang.code.indexOf('en-US') == -1) && (defaultLang.indexOf(brLang.code) == -1) && (brLang.code.indexOf(defaultLang) == -1)) {
$scope.brLang = brLang;
$scope.brTransMsg = "brTransMsg.html";
} else {
$scope.brTransMsg = "";
* @function neverDisplayBrTransMsg
* @description sets cookie if user never want browser language translation choice
$scope.neverDisplayBrTransMsg = function () {
cookieService.putBrTChoice()
$scope.brTransMsg = "";
* @function trnaslateToBrowserLang
* @param {isTranslate} isTranslate - true/false
* @description Requests for browser translation based on user choice
$scope.trnaslateToBrowserLang = function (isTranslate) {
if (isTranslate) {
/* Point language dropdown to browser language */
$scope.selLang = $scope.brLang.code;
/* Initiate preview process for browser language */
$scope.selectThisLang($scope.selLang);
/* Remove browser language translation UI */
$scope.brTransMsg = "";
} else {
$scope.brTransMsg = "";
/* V1.4 */
* @function translateThisThread
* @description Triggers the translation on button click
* @param {mode} manual click or auto - click/null
$scope.translateThisThread = function (mode) {
if (mode != undefined && mode == 'click') {
/* Cheking author decision on validation */
if ((document.querySelectorAll(".lingo-TrFlag").length == 0) && ("-1" != "-1")) {
if (!confirm("This thread is not selected for translation by the Author. Do you want to translate this thread?")) {
return false;
$scope.showTransLation = true;
/* If language exists in selected languages then initiate or manage translation */
if ("true" == "true") {
$scope.selLang = "zh-CN";
/* 1.4 Update Analytics on language selected */
try {
lingoThreadLangSelected('zh-CN', '72364');
} catch (e) {
if (angular.element(document.querySelector("#trABody"))) {
console.log(angular.element(document.querySelector("trABody")));
$scope.showPreview(angular.element(document.querySelector("#trABody")).innerHTML, $scope.mszList, "zh-CN");
$scope.manageTranslation("zh-CN", "72364");
} else {
if ("true" == "true") {
alert("Requested languages not present in the selected languages list");
/* Detecting Browser language */
$scope.detectBrowserLanguage();
$rootScope.profLang = "";
/* If language exists in selected languages then initiate or manage translation */
/* Get Cookie */
function getCookie(cname) {
var name = cname + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
return "";
var lang_code = "";
if ("true" == "true") { /* Language from Parameter */
var lang_code = "zh-CN";
} else if (anonLang = getCookie('lia.anon.profile.language')) { /* Language from cookie */
/* Get code from source list */
var srObj = $filter('filter')($scope.sourceLangList, function (obj) {
return obj.id === anonLang
if (srObj.length > 0) {
/* check code in selected languages */
var selObj = $filter('filter')($scope.languages, function (obj) {
return obj.code === srObj[0].code
if (selObj.length > 0) {
lang_code = srObj[0].code;
} else if (brLangCode = window.navigator.userLanguage || window.navigator.language) { /* Browser Language */
/* Get right language code of the browser language. Get the first value in the matching list */
if (brLangCode.indexOf("-") >= 0) {
var obj = $filter('filter')($scope.languages, function (obj) {
return obj.code === brLangCode
if (obj.length > 0) {
lang_code = obj[0].code;
} else {
var obj = $filter('filter')($scope.languages, function (obj) {
return obj.code.split("-")[0] === brLangCode
if (obj.length > 0) {
lang_code = obj[0].code;
} else {
$rootScope.profLang = lang_code;
if (lang_code == "") {
lang_code = "en-US";
$scope.selLang = lang_code;
if (angular.element(document.querySelector("#trABody"))) {
console.log(angular.element(document.querySelector("#trABody")).innerHTML);
$scope.showPreview(angular.element(document.querySelector("#trABody")).innerHTML, $scope.mszList, $scope.selLang);
$scope.showTransLation = true;
$scope.selectThisLang($scope.selLang, "1");
if ("auto" == "true") {
try {
lingoThreadLangSelected($scope.selLang, '72364');
} catch (e) {
$scope.manageTranslation($scope.selLang, "72364");
/* V1.4 Loading dashbaord (converted into script to remove glitch) */
$scope.dashboard = "dashboard.html";
* @function triggerRefresh
* @description Managess the translation of given language for the thread
* @param {string} langCode - Language Code
* @param {string} tid - Thread ID
$scope.triggerRefresh = function (langCode, tid) {
if (confirm("Are you sure you want to manually resubmit the translation?")) {
$scope.transPercent = "";
var manualTriggerTrans = lithiumPlugin.manualTriggerTrans(langCode, tid);
manualTriggerTrans.then(function (status) {
if (status == "refresh") {
var resetTranslation = lithiumPlugin.resetTranslation(tid);
resetTranslation.then(function (error) {
if (error) {
$rootScope.errorMsg = error.$;
} else {
var bulkTranslation = lithiumPlugin.bulkTranslation(langCode, tid);
bulkTranslation.then(function (data) {
$rootScope.errorMsg = "Translation has been refreshed. Please refresh page after some time.";
} else {
$rootScope.errorMsg = status;
/* V 2.0: 2 = this function called on click reply sync button */
* @function manualOOS
* @description Sends the Out of sync check request.
$scope.manualTriggerOSS = function (replyID) {
if ($scope.transPercent != "") {
var manualOSS = lithiumPlugin.manualOSS("72364", replyID);
manualOSS.then(function (value) {
if (!value.includes("false")) {
$scope.transPercent = "";
$rootScope.errorMsg = "Message requested for re-translation. Please refresh the page in a few minutes.";
} else {
$rootScope.errorMsg = "Auto translation of message failed. Please refresh the page and retry.";
} else {
$rootScope.errorMsg = "Translation is in progress. Please retry in a few minutes.";
.factory('httpInterceptor', ['$q', '$rootScope',
function ($q, $rootScope) { /* httpInterceptor intercepts the http calls */
return {
request: function (config) {
if (config.url.indexOf("lingotek") >= 0) {
/* Start Loader */
$rootScope.isLoading = true;
$rootScope.errorMsg = "";
return config || $q.when(config);
requestError: function (request) {
if ((request.config != undefined) && (request.config.url.indexOf("lingotek") >= 0)) {
/* Stop Loader */
$rootScope.isLoading = false;
/* Display error message */
$rootScope.errorMsg = "Error while processing the request. Please refresh the page and retry.";
return $q.reject(request);
response: function (response) {
if (response.config.url.indexOf("lingotek") >= 0) {
/* Stop Loader */
$rootScope.isLoading = false;
return response || $q.when(response);
responseError: function (response) {
if ((response.config != undefined) && (response.config.url.indexOf("lingotek") >= 0)) {
/* Display error message */
$rootScope.errorMsg = "Error while processing the request. Please refresh the page and retry.";
/* Stop Loader */
$rootScope.isLoading = false;
return $q.reject(response);
.service('lithiumPlugin', function ($http, $rootScope) { /* Service that connects the dashboard with Lithium endpoints */
/* V 2.0:7 = Converting all POST calls GET calls */
* @function isOutOfSync
* @param {string} sourceID - Thread id
* @description Sends the ot of sync check request
var isOutOfSync = function (sourceID) {
return $http.get('/plugins/custom/sasinstitute/sasinstitute2/lingotek_ep_proj_callback?mode=OSS&tid=' + sourceID + '&xslt=json.xsl').then(function (result) {
var apiResponse = result.data;
return apiResponse.result;
function (result) {
// debugger;
return {"status": "false"};
* @function getTrContent
* @param {string} code - Language code
* @param {string} tid - Thread id
* @description Get the translated content from Lithium.
var getTranslation = function (code, tid) {
/* var param = {
mode:'trContent',
code:code,
tid:tid,
xslt:'json.xsl'
}; */
return $http.get('/plugins/custom/sasinstitute/sasinstitute2/lingotek_ep_rest_connector?mode=trContent&code=' + code + '&tid=' + tid + '&xslt=json.xsl').then(function (result) {
var apiResponse = result.data;
return apiResponse.result;
}, function (response) {
return {
"id": "",
"body": "",
"subject": "",
"status": "",
"wb": ""
* @function bulkTransStatus
* @param {string} code - Language code
* @param {string} tid - Thread id
* @description Manages translation of given thread
var bulkTranslation = function (code, tid) {
/* V1.1: 2*/
/* var param = {
mode:'manageTrContent',
code:code,
tid:tid,
xslt:'json.xsl'
}; */
return $http.get('/plugins/custom/sasinstitute/sasinstitute2/lingotek_ep_rest_connector?mode=manageTrContent&code=' + code + '&tid=' + tid + '&xslt=json.xsl').then(function (result) {
var apiResponse = result.data;
/* V1.4:3 GA code, capturing thread info on post */
if (apiResponse.result.posts != undefined) {
var trPosts = JSON.parse(apiResponse.result.posts);
angular.forEach(trPosts, function (pObj_l) {
try {
lingoUpdateSource(pObj_l.source, pObj_l.tid);
catch (error) {
console.log(error);
return apiResponse.result;
}, function (response) {
return {
"id": "",
"body": "",
"status": "",
"wb": ""
* @function setDefaultLang
* @param {string} code - Language code
* @description Changes the user default language to requested language.
var setDefaultLang = function (code) {
/* V1.1: 2*/
return $http.get("/plugins/custom/sasinstitute/sasinstitute2/lingotek_ep_settings?mode=langSet&xslt=json.xsl&code=" + code).then(function (result) {
debugger;
return result.data.result.value;
function (result) {
return "Error. Please retry in a few minutes";
/* V 2.0: 1 */
* @function resetTranslation
* @param {string} tid - Thread ID
* @description Calls the endpoint to reset the translation of given thread.
var resetTranslation = function (tid) {
return $http.get('/plugins/custom/sasinstitute/sasinstitute2/lingotek_support?mode=refresh&tid=' + tid + '&xslt=json.xsl').then(function (result) {
var apiResponse = result.data;
return apiResponse.logs.error;
function (result) {
return "";
* @function manualTriggerTrans
* @param {string} code - Language code
* @param {string} tid - Thread id
* @description Manages translation of given thread
var manualTriggerTrans = function (code, tid) {
/* V 2.0: 3*/
/* var param = {
mode:'mtrigger',
code:code,
tid:tid,
xslt:'json.xsl'
}; */
return $http.get('/plugins/custom/sasinstitute/sasinstitute2/lingotek_ep_proj_callback?mode=mtrigger&code=' + code + '&tid=' + tid + '&xslt=json.xsl').then(function (result) {
var apiResponse = result.data;
return apiResponse.result.status;
}, function (response) {
return "Please retry in a few minutes.";
/** @function isOutOfSync
* @param {string} sourceID - Thread id
* @description Sends the ot of sync check request
var manualOSS = function (sourceID, replyID) {
return $http.get('/plugins/custom/sasinstitute/sasinstitute2/lingotek_ep_proj_callback?mode=manualOSS&tid=' + sourceID + '&reply=' + replyID + '&xslt=json.xsl').then(function (result) {
var apiResponse = result.data;
return apiResponse.result.status;
function (result) {
// debugger;
return "false";
/* V 2.0: 3 */
* @function trCompletCallback
* @param {string} code - Language code
* @param {string} docID - Document id
* @description Triggers the translation completed callback from Lithium
var trCompletCallback = function (code, docID) {
return $http.get('/plugins/custom/sasinstitute/sasinstitute2/lingotek_ep_proj_callback?mode=callback&type=target&progress=100&document_id=' + docID + '&locale_code=' + code + '&xslt=json.xsl').then(function (result) {
var apiResponse = result.data;
return apiResponse.result.status;
}, function (response) {
return "Please retry in a few minutes.";
/* V 2.0: 3 */
* @function trCompletUpload
* @param {string} code - Language code
* @param {string} docID - Document id
* @description Triggers the document upload callback from Lithium
var trCompletUpload = function (code, docID) {
return $http.get('/plugins/custom/sasinstitute/sasinstitute2/lingotek_ep_proj_callback?mode=callback&type=document_uploaded_auto&progress=0&document_id=' + docID + '&xslt=json.xsl').then(function (result) {
var apiResponse = result.data;
return apiResponse.result.status;
}, function (response) {
return "Please retry in a few minutes.";
return {
isOutOfSync: isOutOfSync,
getTranslation: getTranslation,
bulkTranslation: bulkTranslation,
setDefaultLang: setDefaultLang,
resetTranslation: resetTranslation,
manualTriggerTrans: manualTriggerTrans,
manualOSS: manualOSS,
trCompletCallback: trCompletCallback,
trCompletUpload: trCompletUpload
.service("cookieService", function () { /* Service for cookie storage */
* @function getBrTChoice
* @description Returns the cookie set for browser language translation.
var getBrTChoice = function () {
var cname = "it_lang_notify_hide";
var name = cname + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1);
if (c.indexOf(name) == 0) return c.substring(name.length, c.length);
return "";
* @function getBrTChoice
* @description Sets the cookie for browser language translation.
var putBrTChoice = function () {
var cname = "it_lang_notify_hide";
var exdays = 30;
var d = new Date();
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
var expires = "expires=" + d.toUTCString();
document.cookie = cname + "=" + "true" + "; " + expires;
return {
getBrTChoice: getBrTChoice,
putBrTChoice: putBrTChoice
})(LITHIUM.angular);
// -->
![]() |
爱热闹的充电器 · 三国杀10周年特权点怎么弄-西瓜视频 4 月前 |