---------------------------------------- 2020-07-14 20:57:59,681 [19] INFO - Information: 0 : 2020-07-14 20:58:00,845 [19] INFO - /* ------------- {{OmitSourceOutput:Begin}} -------------- */ context.write("\r\n\r\n"); function isNumeric(n) { return !isNaN(parseFloat(n)) && isFinite(n); } function isNull(obj) { return obj === undefined || obj == null || !obj || 0 === obj.length; } String.prototype.format = function() { var args = arguments; return this.replace(/{(\d+)}/g, function(match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); }; String.format = function(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function(match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); }; // trim() polyfill - https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/String/Trim if (!String.prototype.trim) { String.prototype.trim = function () { return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ''); }; } // // var vbCrLf = "\r\n"; // // function less(lessString) { // return _context.Less(lessString); // } // // function HtmlEncode(obj){ // return system.htmlEncode(obj); // } // // // helps convert some ZP string values to a bool. // function IsTrue(obj){ // return (obj == "True" || obj === true || obj == 1 ); // } // // // Prüfen, ob leer. // function IsEmpty(str) { // return (!str || 0 === str.length); // } // // // Prüfen, ob leer oder nur Whitespaces enthalten. // function IsBlank(str) { // return (!str || /^\s*$/.test(str)); // } // // // Prüfen, ob leer. // String.prototype.IsEmpty = function() { // return (this.length === 0 || !this.trim()); // }; // // // Prüfen ob NULL oder undefined. // function isNull(obj) { // return obj === undefined || obj == null || !obj // } // // // Eigene Format-Funktion. // // Beispiel: "Dies ist {0} Test.".Format("ein"); // if (!String.prototype.Format) { // String.prototype.Format = function() { // var args = arguments; // return this.replace(/{(\d+)}/g, function(match, number) { // return typeof args[number] != 'undefined' // ? args[number] // : match // ; // }); // }; // } // // // Alternative Schreibweise für Format-Funktion. // // Beispiel: String.Format("Dies ist {0} Test.", "ein"); // if (!String.Format) { // String.Format = function(format) { // var args = Array.prototype.slice.call(arguments, 1); // return format.replace(/{(\d+)}/g, function(match, number) { // return typeof args[number] != 'undefined' // ? args[number] // : match // ; // }); // }; // } // // /* // // HTML-Attribut ausgeben, nur wenn auch Inhalt hat. // function htmlAttr(attrName, attrValue) { // if ( IsBlank(attrValue) ) { // return ""; // } else { // return '{0}="{1}"'.Format( attrName, attrValue ); // } // } // // // HTML-Attribut ausgeben wenn condition == true. // function htmlAttrIf(condition, attrName, attrValue) { // if ( ! IsTrue(condition) ) { // return ""; // } else { // return htmlAttr(attrName, attrValue); // } // } // */ // // // Ersatz für die VBSkript isNumeric Funktion -> http://stackoverflow.com/questions/18082/validate-decimal-numbers-in-javascript-isnumeric // function isNumeric(n) { // return !isNaN(parseFloat(n)) && isFinite(n); // } // // // Einfacher Ersatz für VBScript Replace() - die "count" und "compare" Parameter von VBScript werden nicht unterstützt! // function Replace(searchstring, find, replace) { // return searchstring.replace(find, replace); // } // // // diverse String helper. Quelle: http://www.4guysfromrolla.com/webtech/vb2java.shtml // function Left(str, n) { // if (n <= 0){ // Invalid bound, return blank string // return ""; // } // else if (n > String(str).length){ // Invalid bound, return // return str; // entire string // } // else { // Valid bound, return appropriate substring // return String(str).substring(0,n); // } // } // // function Right(str, n) { // if (n <= 0){ // Invalid bound, return blank string // return ""; // } // else if (n > String(str).length){ // Invalid bound, return // return str; // entire string // } // else { // Valid bound, return appropriate substring // var iLen = String(str).length; // return String(str).substring(iLen, iLen - n); // } // } // // function Mid(str, start, len) { // // this is using ONE-Based strongs to mimic vbscript! // // // Make sure start and len are within proper bounds // if (start <= 0 || len < 0){ // return ""; // } // // var iEnd, iLen = String(str).length; // if (start + len > iLen){ // iEnd = iLen; // } // else { // iEnd = (start - 1) + len; // } // return String(str).substring(start-1,iEnd); // } // context.write("\r\n"); /* ------------- {{OmitSourceOutput:End}} -------------- */ context.write("\r\n"); /* Shortcuts. */ var article = null; var page = null; var projectFolder = null; var project = null; var system = null; 2020-07-14 20:58:00,845 [19] INFO - --------- 2020-07-14 20:58:00,845 [Zeta Producer 15 main thread] INFO - Information: 0 : 2020-07-14 20:58:00,845 [Zeta Producer 15 main thread] INFO - [MyformFooterCheckButton] state = 'Normal', color = 'Color [A=255, R=106, G=106, B=106]'. 2020-07-14 20:58:00,846 [19] INFO - Information: 0 : 2020-07-14 20:58:00,846 [19] INFO - --------- 2020-07-14 20:58:00,846 [Zeta Producer 15 main thread] INFO - Information: 0 : 2020-07-14 20:58:00,846 [Zeta Producer 15 main thread] INFO - [MyformFooterCheckButton] state = 'Normal', color = 'Color [A=255, R=106, G=106, B=106]'. 2020-07-14 20:58:00,846 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,846 [19] INFO - Information: 0 : 2020-07-14 20:58:00,846 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,847 [19] INFO - --------- 2020-07-14 20:58:00,847 [19] INFO - Information: 0 : 2020-07-14 20:58:00,847 [19] INFO - --------- 2020-07-14 20:58:00,847 [19] INFO - /* ------------- {{OmitSourceOutput:Begin}} -------------- */ context.write("\r\n\r\n"); function isNumeric(n) { return !isNaN(parseFloat(n)) && isFinite(n); } function isNull(obj) { return obj === undefined || obj == null || !obj || 0 === obj.length; } String.prototype.format = function() { var args = arguments; return this.replace(/{(\d+)}/g, function(match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); }; String.format = function(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function(match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); }; // trim() polyfill - https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/String/Trim if (!String.prototype.trim) { String.prototype.trim = function () { return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ''); }; } // // var vbCrLf = "\r\n"; // // function less(lessString) { // return _context.Less(lessString); // } // // function HtmlEncode(obj){ // return system.htmlEncode(obj); // } // // // helps convert some ZP string values to a bool. // function IsTrue(obj){ // return (obj == "True" || obj === true || obj == 1 ); // } // // // Prüfen, ob leer. // function IsEmpty(str) { // return (!str || 0 === str.length); // } // // // Prüfen, ob leer oder nur Whitespaces enthalten. // function IsBlank(str) { // return (!str || /^\s*$/.test(str)); // } // // // Prüfen, ob leer. // String.prototype.IsEmpty = function() { // return (this.length === 0 || !this.trim()); // }; // // // Prüfen ob NULL oder undefined. // function isNull(obj) { // return obj === undefined || obj == null || !obj // } // // // Eigene Format-Funktion. // // Beispiel: "Dies ist {0} Test.".Format("ein"); // if (!String.prototype.Format) { // String.prototype.Format = function() { // var args = arguments; // return this.replace(/{(\d+)}/g, function(match, number) { // return typeof args[number] != 'undefined' // ? args[number] // : match // ; // }); // }; // } // // // Alternative Schreibweise für Format-Funktion. // // Beispiel: String.Format("Dies ist {0} Test.", "ein"); // if (!String.Format) { // String.Format = function(format) { // var args = Array.prototype.slice.call(arguments, 1); // return format.replace(/{(\d+)}/g, function(match, number) { // return typeof args[number] != 'undefined' // ? args[number] // : match // ; // }); // }; // } // // /* // // HTML-Attribut ausgeben, nur wenn auch Inhalt hat. // function htmlAttr(attrName, attrValue) { // if ( IsBlank(attrValue) ) { // return ""; // } else { // return '{0}="{1}"'.Format( attrName, attrValue ); // } // } // // // HTML-Attribut ausgeben wenn condition == true. // function htmlAttrIf(condition, attrName, attrValue) { // if ( ! IsTrue(condition) ) { // return ""; // } else { // return htmlAttr(attrName, attrValue); // } // } // */ // // // Ersatz für die VBSkript isNumeric Funktion -> http://stackoverflow.com/questions/18082/validate-decimal-numbers-in-javascript-isnumeric // function isNumeric(n) { // return !isNaN(parseFloat(n)) && isFinite(n); // } // // // Einfacher Ersatz für VBScript Replace() - die "count" und "compare" Parameter von VBScript werden nicht unterstützt! // function Replace(searchstring, find, replace) { // return searchstring.replace(find, replace); // } // // // diverse String helper. Quelle: http://www.4guysfromrolla.com/webtech/vb2java.shtml // function Left(str, n) { // if (n <= 0){ // Invalid bound, return blank string // return ""; // } // else if (n > String(str).length){ // Invalid bound, return // return str; // entire string // } // else { // Valid bound, return appropriate substring // return String(str).substring(0,n); // } // } // // function Right(str, n) { // if (n <= 0){ // Invalid bound, return blank string // return ""; // } // else if (n > String(str).length){ // Invalid bound, return // return str; // entire string // } // else { // Valid bound, return appropriate substring // var iLen = String(str).length; // return String(str).substring(iLen, iLen - n); // } // } // // function Mid(str, start, len) { // // this is using ONE-Based strongs to mimic vbscript! // // // Make sure start and len are within proper bounds // if (start <= 0 || len < 0){ // return ""; // } // // var iEnd, iLen = String(str).length; // if (start + len > iLen){ // iEnd = iLen; // } // else { // iEnd = (start - 1) + len; // } // return String(str).substring(start-1,iEnd); // } // context.write("\r\n"); /* ------------- {{OmitSourceOutput:End}} -------------- */ context.write("\r\n"); /* Shortcuts. */ var article = null; var page = null; var projectFolder = null; var project = null; var system = null; 2020-07-14 20:58:00,847 [19] INFO - Information: 0 : 2020-07-14 20:58:00,847 [19] INFO - /* ------------- {{OmitSourceOutput:Begin}} -------------- */ context.write("\r\n\r\n"); function isNumeric(n) { return !isNaN(parseFloat(n)) && isFinite(n); } function isNull(obj) { return obj === undefined || obj == null || !obj || 0 === obj.length; } String.prototype.format = function() { var args = arguments; return this.replace(/{(\d+)}/g, function(match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); }; String.format = function(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function(match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); }; // trim() polyfill - https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/String/Trim if (!String.prototype.trim) { String.prototype.trim = function () { return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ''); }; } // // var vbCrLf = "\r\n"; // // function less(lessString) { // return _context.Less(lessString); // } // // function HtmlEncode(obj){ // return system.htmlEncode(obj); // } // // // helps convert some ZP string values to a bool. // function IsTrue(obj){ // return (obj == "True" || obj === true || obj == 1 ); // } // // // Prüfen, ob leer. // function IsEmpty(str) { // return (!str || 0 === str.length); // } // // // Prüfen, ob leer oder nur Whitespaces enthalten. // function IsBlank(str) { // return (!str || /^\s*$/.test(str)); // } // // // Prüfen, ob leer. // String.prototype.IsEmpty = function() { // return (this.length === 0 || !this.trim()); // }; // // // Prüfen ob NULL oder undefined. // function isNull(obj) { // return obj === undefined || obj == null || !obj // } // // // Eigene Format-Funktion. // // Beispiel: "Dies ist {0} Test.".Format("ein"); // if (!String.prototype.Format) { // String.prototype.Format = function() { // var args = arguments; // return this.replace(/{(\d+)}/g, function(match, number) { // return typeof args[number] != 'undefined' // ? args[number] // : match // ; // }); // }; // } // // // Alternative Schreibweise für Format-Funktion. // // Beispiel: String.Format("Dies ist {0} Test.", "ein"); // if (!String.Format) { // String.Format = function(format) { // var args = Array.prototype.slice.call(arguments, 1); // return format.replace(/{(\d+)}/g, function(match, number) { // return typeof args[number] != 'undefined' // ? args[number] // : match // ; // }); // }; // } // // /* // // HTML-Attribut ausgeben, nur wenn auch Inhalt hat. // function htmlAttr(attrName, attrValue) { // if ( IsBlank(attrValue) ) { // return ""; // } else { // return '{0}="{1}"'.Format( attrName, attrValue ); // } // } // // // HTML-Attribut ausgeben wenn condition == true. // function htmlAttrIf(condition, attrName, attrValue) { // if ( ! IsTrue(condition) ) { // return ""; // } else { // return htmlAttr(attrName, attrValue); // } // } // */ // // // Ersatz für die VBSkript isNumeric Funktion -> http://stackoverflow.com/questions/18082/validate-decimal-numbers-in-javascript-isnumeric // function isNumeric(n) { // return !isNaN(parseFloat(n)) && isFinite(n); // } // // // Einfacher Ersatz für VBScript Replace() - die "count" und "compare" Parameter von VBScript werden nicht unterstützt! // function Replace(searchstring, find, replace) { // return searchstring.replace(find, replace); // } // // // diverse String helper. Quelle: http://www.4guysfromrolla.com/webtech/vb2java.shtml // function Left(str, n) { // if (n <= 0){ // Invalid bound, return blank string // return ""; // } // else if (n > String(str).length){ // Invalid bound, return // return str; // entire string // } // else { // Valid bound, return appropriate substring // return String(str).substring(0,n); // } // } // // function Right(str, n) { // if (n <= 0){ // Invalid bound, return blank string // return ""; // } // else if (n > String(str).length){ // Invalid bound, return // return str; // entire string // } // else { // Valid bound, return appropriate substring // var iLen = String(str).length; // return String(str).substring(iLen, iLen - n); // } // } // // function Mid(str, start, len) { // // this is using ONE-Based strongs to mimic vbscript! // // // Make sure start and len are within proper bounds // if (start <= 0 || len < 0){ // return ""; // } // // var iEnd, iLen = String(str).length; // if (start + len > iLen){ // iEnd = iLen; // } // else { // iEnd = (start - 1) + len; // } // return String(str).substring(start-1,iEnd); // } // context.write("\r\n"); /* ------------- {{OmitSourceOutput:End}} -------------- */ context.write("\r\n"); /* Shortcuts. */ var article = null; var page = null; var projectFolder = null; var project = null; var system = null; 2020-07-14 20:58:00,848 [19] INFO - --------- 2020-07-14 20:58:00,848 [19] INFO - Information: 0 : 2020-07-14 20:58:00,848 [19] INFO - --------- 2020-07-14 20:58:00,848 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1834. 2020-07-14 20:58:00,848 [19] INFO - Information: 0 : 2020-07-14 20:58:00,848 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1834. 2020-07-14 20:58:00,848 [19] INFO - --------- 2020-07-14 20:58:00,848 [19] INFO - Information: 0 : 2020-07-14 20:58:00,848 [19] INFO - --------- 2020-07-14 20:58:00,849 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,849 [19] INFO - Information: 0 : 2020-07-14 20:58:00,849 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,849 [19] INFO - --------- 2020-07-14 20:58:00,849 [19] INFO - Information: 0 : 2020-07-14 20:58:00,849 [19] INFO - --------- 2020-07-14 20:58:00,849 [19] INFO - function SE637303570796782110() {} SE637303570796782110.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\pages\default.html'. if (shop.active) { var basketPageUrl = null; var currentProjectFolderId = page.projectFolder.id; var projectFolderBasketArticle; var foundItems = project.getArticlesWithStyle("basket"); for ( var g=0; g < foundItems.count; ++g ) { var foundItem = foundItems.item(g); if ( foundItem.active ) { if ( isNull(firstBasketArticle) ){ var firstBasketArticle = foundItem.page.url; } if ( project.getPage(foundItem.page.id).projectFolder.id == currentProjectFolderId ){ projectFolderBasketArticle = foundItem.page.url; } } } var basketPageUrl = projectFolderBasketArticle || firstBasketArticle; context.write("\n\t"); if ( basketPageUrl && page.url !== basketPageUrl ){ context.write("\n\t
\n\t\t\n\t\t\t \n\t\t\t0\n\t\t\n\t
\n\t\n\t"); } } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\pages\default.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570796782110().executeScript(); 2020-07-14 20:58:00,849 [19] INFO - Information: 0 : 2020-07-14 20:58:00,850 [19] INFO - function SE637303570796782110() {} SE637303570796782110.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\pages\default.html'. if (shop.active) { var basketPageUrl = null; var currentProjectFolderId = page.projectFolder.id; var projectFolderBasketArticle; var foundItems = project.getArticlesWithStyle("basket"); for ( var g=0; g < foundItems.count; ++g ) { var foundItem = foundItems.item(g); if ( foundItem.active ) { if ( isNull(firstBasketArticle) ){ var firstBasketArticle = foundItem.page.url; } if ( project.getPage(foundItem.page.id).projectFolder.id == currentProjectFolderId ){ projectFolderBasketArticle = foundItem.page.url; } } } var basketPageUrl = projectFolderBasketArticle || firstBasketArticle; context.write("\n\t"); if ( basketPageUrl && page.url !== basketPageUrl ){ context.write("\n\t
\n\t\t\n\t\t\t \n\t\t\t0\n\t\t\n\t
\n\t\n\t"); } } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\pages\default.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570796782110().executeScript(); 2020-07-14 20:58:00,850 [19] INFO - --------- 2020-07-14 20:58:00,850 [19] INFO - Information: 0 : 2020-07-14 20:58:00,850 [19] INFO - --------- 2020-07-14 20:58:00,854 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,854 [19] INFO - Information: 0 : 2020-07-14 20:58:00,854 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,854 [19] INFO - --------- 2020-07-14 20:58:00,854 [19] INFO - Information: 0 : 2020-07-14 20:58:00,854 [19] INFO - --------- 2020-07-14 20:58:00,855 [19] INFO - function SE637303570796782110() {} SE637303570796782110.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\pages\default.html'. if (shop.active) { var basketPageUrl = null; var currentProjectFolderId = page.projectFolder.id; var projectFolderBasketArticle; var foundItems = project.getArticlesWithStyle("basket"); for ( var g=0; g < foundItems.count; ++g ) { var foundItem = foundItems.item(g); if ( foundItem.active ) { if ( isNull(firstBasketArticle) ){ var firstBasketArticle = foundItem.page.url; } if ( project.getPage(foundItem.page.id).projectFolder.id == currentProjectFolderId ){ projectFolderBasketArticle = foundItem.page.url; } } } var basketPageUrl = projectFolderBasketArticle || firstBasketArticle; context.write("\n\t"); if ( basketPageUrl && page.url !== basketPageUrl ){ context.write("\n\t
\n\t\t\n\t\t\t \n\t\t\t0\n\t\t\n\t
\n\t\n\t"); } } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\pages\default.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570796782110().executeScript(); 2020-07-14 20:58:00,855 [19] INFO - Information: 0 : 2020-07-14 20:58:00,855 [19] INFO - function SE637303570796782110() {} SE637303570796782110.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\pages\default.html'. if (shop.active) { var basketPageUrl = null; var currentProjectFolderId = page.projectFolder.id; var projectFolderBasketArticle; var foundItems = project.getArticlesWithStyle("basket"); for ( var g=0; g < foundItems.count; ++g ) { var foundItem = foundItems.item(g); if ( foundItem.active ) { if ( isNull(firstBasketArticle) ){ var firstBasketArticle = foundItem.page.url; } if ( project.getPage(foundItem.page.id).projectFolder.id == currentProjectFolderId ){ projectFolderBasketArticle = foundItem.page.url; } } } var basketPageUrl = projectFolderBasketArticle || firstBasketArticle; context.write("\n\t"); if ( basketPageUrl && page.url !== basketPageUrl ){ context.write("\n\t
\n\t\t\n\t\t\t \n\t\t\t0\n\t\t\n\t
\n\t\n\t"); } } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\pages\default.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570796782110().executeScript(); 2020-07-14 20:58:00,855 [19] INFO - --------- 2020-07-14 20:58:00,855 [19] INFO - Information: 0 : 2020-07-14 20:58:00,855 [19] INFO - --------- 2020-07-14 20:58:00,856 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1835. 2020-07-14 20:58:00,856 [19] INFO - Information: 0 : 2020-07-14 20:58:00,856 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1835. 2020-07-14 20:58:00,856 [19] INFO - --------- 2020-07-14 20:58:00,856 [19] INFO - Information: 0 : 2020-07-14 20:58:00,856 [19] INFO - --------- 2020-07-14 20:58:00,857 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,857 [19] INFO - Information: 0 : 2020-07-14 20:58:00,857 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,857 [19] INFO - --------- 2020-07-14 20:58:00,857 [19] INFO - Information: 0 : 2020-07-14 20:58:00,859 [19] INFO - --------- 2020-07-14 20:58:00,860 [19] INFO - function SE637303570808572784() {} SE637303570808572784.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\pages\default.html'. context.write("\r\n\r\n\r\n\t"); context.write( page.title ); context.write("\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t"); if ( "../assets/favicon.ico" !== "" ) { context.write(""); } context.write("\r\n\t\r\n\t"); if ( parseInt(page.attribute("webfonts-deactivate", 0)) !== 1 ){context.write(project.webFonts())} context.write("\r\n\r\n\t"); context.write( project.bundleCss() ); context.write("\r\n\r\n\t\r\n\r\n\t"); var additionalCss = page.attribute("additional_css"); if ( additionalCss ) { context.write("\r\n\t\t"); context.write( additionalCss ); context.write("\r\n\t"); } context.write(" \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t"); context.write( project.bundleJs() ); context.write("\r\n\t\r\n\t\r\n\t"); if ( page.attribute("search_field_visible") ) { context.write("\r\n\t\t\r\n\t"); } context.write("\r\n\t\r\n\t\r\n\t\r\n\t"); context.write( system.partial("rss.html") ); context.write("\r\n\t\r\n\t"); var header = page.anyAreaArticles("Header") || (system.preview && system.showEmptyPreviewAreas) var news = page.anyAreaArticles("News") || (system.preview && system.showEmptyPreviewAreas) function hasVisibleChildPages(pageId) { var p = project.getPage(pageId); if ( !isNull(p) ) { var cps = p.pages; for ( var i = 0; i < cps.count; ++i ) { var cp = cps.item(i); if ( cp.visible && cp.active ) { return true; } } } return false; } var sidebar = hasVisibleChildPages(page.id) || page.level >= 2 || news; context.write("\r\n\r\n\t\r\n\t\r\n\r\n\r\n\t\r\n\t\r\n\t
\r\n\t\t
\r\n\t\t\t\r\n\t\t\t"); if ( page.anyAreaArticles("Banner") || (system.preview && system.showEmptyPreviewAreas) ) { context.write("\r\n\t\t\t\t
\r\n\t\t\t\t\t"); context.write( system.partial("area.html", "Banner", 0, null, null, "zpgrid") ); context.write("\r\n\t\t\t\t
\r\n\t\t\t"); } context.write("\r\n\t\t\t
\r\n\t\t\t\t"); if ( page.attribute("search_field_visible") ) { context.write("
\" method=\"get\">
"); } context.write("\r\n\t\t\t\t"); if ( (page.attribute("show_web_logo") && "../assets/willi.png" !== "") || page.attribute("show_web_name") ) { context.write("\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( (page.attribute("show_web_logo") && "../assets/willi.png" !== "") || (system.preview && system.showEmptyPreviewAreas) ) { context.write("\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( page.attribute("show_web_name") ) { context.write("\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t"); if ( page.attribute("web_name_slogan") ) { context.write("\r\n\t\t\t\t\t\t\t\t\t
Vom Gerätewagen der Schweizer Feuerwehr zum Expeditionsmobil \"Willi\"
\r\n\t\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t"); if ( (page.attribute("show_web_logo") && "../assets/willi.png" !== "") || (system.preview && system.showEmptyPreviewAreas) ) { context.write("\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t\r\n\t\t\t"); if ( header ) { context.write("\r\n\t\t\t\t"); context.write( system.partial("header.html") ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\t\r\n\t\t\t"); context.write( system.partial("hauptmenu.html") ); context.write("\t\t\t\t\t\r\n\t\t\t\r\n\t\t\t"); if ( page.attribute("show_breadcrumb") ) { context.write("
\r\n\t\t\t\t"); context.write( system.partial("breadcrumbs.html", (page.attribute("breadcrumb")||"").replace(/"/g, """), (page.attribute("breadcrumb_separator")||"").replace(/"/g, """) ) ); context.write("\r\n\t\t\t
"); } context.write("\r\n\t\t\t\r\n\t\t\t
\r\n\t\t\t\t"); if ( "bottom" == "top" ){ context.write("\r\n\t\t\t\t\t"); context.write( system.partial("submenu-layout.html") ); context.write("\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); context.write( system.partial("area.html", "Standard", 0, null, null, "zpgrid") ); context.write("
\r\n\t\t\t\t
\r\n\t\t\t\t"); if ( "bottom" == "bottom" ){ context.write("\r\n\t\t\t\t\t"); context.write( system.partial("submenu-layout.html") ); context.write("\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); context.write( system.partial("area.html", "News", 1, "news") ); context.write("\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t"); context.write( system.partial('zpextramenu.html') ); context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); if ( page.attribute("show_copyright") || project.showCreatorText ) { context.write("\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t"); if ( page.attribute("show_copyright") ) { context.write("\r\n\t\t\t\t\t\t\t© 2018 Willi"); if ( project.showCreatorText ) { context.write(". "); } context.write("\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t"); if ( project.showCreatorText ) { context.write("\r\n\t\t\t\t\t\t\t"); context.write(project.creatorText); context.write("\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t\r\n\t\t\t"); if ( page.anyAreaArticles("Footer") || (system.preview && system.showEmptyPreviewAreas) ) { context.write("\r\n\t\t\t\t
\r\n\t\t\t\t\t"); context.write( system.partial("area.html", "Footer", 0, null, null, "zpgrid") ); context.write("\r\n\t\t\t\t
\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\r\n\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\pages\default.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570808572784().executeScript(); 2020-07-14 20:58:00,860 [19] INFO - Information: 0 : 2020-07-14 20:58:00,860 [19] INFO - function SE637303570808572784() {} SE637303570808572784.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\pages\default.html'. context.write("\r\n\r\n\r\n\t"); context.write( page.title ); context.write("\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t"); if ( "../assets/favicon.ico" !== "" ) { context.write(""); } context.write("\r\n\t\r\n\t"); if ( parseInt(page.attribute("webfonts-deactivate", 0)) !== 1 ){context.write(project.webFonts())} context.write("\r\n\r\n\t"); context.write( project.bundleCss() ); context.write("\r\n\r\n\t\r\n\r\n\t"); var additionalCss = page.attribute("additional_css"); if ( additionalCss ) { context.write("\r\n\t\t"); context.write( additionalCss ); context.write("\r\n\t"); } context.write(" \r\n\t\r\n\t\r\n\t\r\n\t\r\n\t"); context.write( project.bundleJs() ); context.write("\r\n\t\r\n\t\r\n\t"); if ( page.attribute("search_field_visible") ) { context.write("\r\n\t\t\r\n\t"); } context.write("\r\n\t\r\n\t\r\n\t\r\n\t"); context.write( system.partial("rss.html") ); context.write("\r\n\t\r\n\t"); var header = page.anyAreaArticles("Header") || (system.preview && system.showEmptyPreviewAreas) var news = page.anyAreaArticles("News") || (system.preview && system.showEmptyPreviewAreas) function hasVisibleChildPages(pageId) { var p = project.getPage(pageId); if ( !isNull(p) ) { var cps = p.pages; for ( var i = 0; i < cps.count; ++i ) { var cp = cps.item(i); if ( cp.visible && cp.active ) { return true; } } } return false; } var sidebar = hasVisibleChildPages(page.id) || page.level >= 2 || news; context.write("\r\n\r\n\t\r\n\t\r\n\r\n\r\n\t\r\n\t\r\n\t
\r\n\t\t
\r\n\t\t\t\r\n\t\t\t"); if ( page.anyAreaArticles("Banner") || (system.preview && system.showEmptyPreviewAreas) ) { context.write("\r\n\t\t\t\t
\r\n\t\t\t\t\t"); context.write( system.partial("area.html", "Banner", 0, null, null, "zpgrid") ); context.write("\r\n\t\t\t\t
\r\n\t\t\t"); } context.write("\r\n\t\t\t
\r\n\t\t\t\t"); if ( page.attribute("search_field_visible") ) { context.write("
\" method=\"get\">
"); } context.write("\r\n\t\t\t\t"); if ( (page.attribute("show_web_logo") && "../assets/willi.png" !== "") || page.attribute("show_web_name") ) { context.write("\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( (page.attribute("show_web_logo") && "../assets/willi.png" !== "") || (system.preview && system.showEmptyPreviewAreas) ) { context.write("\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( page.attribute("show_web_name") ) { context.write("\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t"); if ( page.attribute("web_name_slogan") ) { context.write("\r\n\t\t\t\t\t\t\t\t\t
Vom Gerätewagen der Schweizer Feuerwehr zum Expeditionsmobil \"Willi\"
\r\n\t\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t"); if ( (page.attribute("show_web_logo") && "../assets/willi.png" !== "") || (system.preview && system.showEmptyPreviewAreas) ) { context.write("\r\n\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t\r\n\t\t\t"); if ( header ) { context.write("\r\n\t\t\t\t"); context.write( system.partial("header.html") ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\t\r\n\t\t\t"); context.write( system.partial("hauptmenu.html") ); context.write("\t\t\t\t\t\r\n\t\t\t\r\n\t\t\t"); if ( page.attribute("show_breadcrumb") ) { context.write("
\r\n\t\t\t\t"); context.write( system.partial("breadcrumbs.html", (page.attribute("breadcrumb")||"").replace(/"/g, """), (page.attribute("breadcrumb_separator")||"").replace(/"/g, """) ) ); context.write("\r\n\t\t\t
"); } context.write("\r\n\t\t\t\r\n\t\t\t
\r\n\t\t\t\t"); if ( "bottom" == "top" ){ context.write("\r\n\t\t\t\t\t"); context.write( system.partial("submenu-layout.html") ); context.write("\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); context.write( system.partial("area.html", "Standard", 0, null, null, "zpgrid") ); context.write("
\r\n\t\t\t\t
\r\n\t\t\t\t"); if ( "bottom" == "bottom" ){ context.write("\r\n\t\t\t\t\t"); context.write( system.partial("submenu-layout.html") ); context.write("\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); context.write( system.partial("area.html", "News", 1, "news") ); context.write("\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t
\r\n\t\t\t\t"); context.write( system.partial('zpextramenu.html') ); context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); if ( page.attribute("show_copyright") || project.showCreatorText ) { context.write("\r\n\t\t\t\t\t
\r\n\t\t\t\t\t\t"); if ( page.attribute("show_copyright") ) { context.write("\r\n\t\t\t\t\t\t\t© 2018 Willi"); if ( project.showCreatorText ) { context.write(". "); } context.write("\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t"); if ( project.showCreatorText ) { context.write("\r\n\t\t\t\t\t\t\t"); context.write(project.creatorText); context.write("\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\t
\r\n\t\t\t
\r\n\t\t\t\r\n\t\t\t"); if ( page.anyAreaArticles("Footer") || (system.preview && system.showEmptyPreviewAreas) ) { context.write("\r\n\t\t\t\t
\r\n\t\t\t\t\t"); context.write( system.partial("area.html", "Footer", 0, null, null, "zpgrid") ); context.write("\r\n\t\t\t\t
\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\r\n\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\pages\default.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570808572784().executeScript(); 2020-07-14 20:58:00,861 [19] INFO - --------- 2020-07-14 20:58:00,861 [19] INFO - Information: 0 : 2020-07-14 20:58:00,861 [19] INFO - --------- 2020-07-14 20:58:00,877 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:00,882 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,882 [19] INFO - Information: 0 : 2020-07-14 20:58:00,882 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,882 [19] INFO - --------- 2020-07-14 20:58:00,882 [19] INFO - Information: 0 : 2020-07-14 20:58:00,882 [19] INFO - --------- 2020-07-14 20:58:00,883 [19] INFO - function SE637303570808822799() {} SE637303570808822799.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\rss.html'. if ( project.rss ) { var feeds = projectFolder.rssFeeds; for ( var i=0; i\r\n\t\t"); } } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\rss.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570808822799().executeScript(); 2020-07-14 20:58:00,883 [19] INFO - Information: 0 : 2020-07-14 20:58:00,883 [19] INFO - function SE637303570808822799() {} SE637303570808822799.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\rss.html'. if ( project.rss ) { var feeds = projectFolder.rssFeeds; for ( var i=0; i\r\n\t\t"); } } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\rss.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570808822799().executeScript(); 2020-07-14 20:58:00,883 [19] INFO - --------- 2020-07-14 20:58:00,883 [19] INFO - Information: 0 : 2020-07-14 20:58:00,883 [19] INFO - --------- 2020-07-14 20:58:00,884 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,885 [19] INFO - Information: 0 : 2020-07-14 20:58:00,885 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,885 [19] INFO - --------- 2020-07-14 20:58:00,885 [19] INFO - Information: 0 : 2020-07-14 20:58:00,885 [19] INFO - --------- 2020-07-14 20:58:00,885 [19] INFO - function SE637303570808822799() {} SE637303570808822799.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\rss.html'. if ( project.rss ) { var feeds = projectFolder.rssFeeds; for ( var i=0; i\r\n\t\t"); } } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\rss.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570808822799().executeScript(); 2020-07-14 20:58:00,885 [19] INFO - Information: 0 : 2020-07-14 20:58:00,885 [19] INFO - function SE637303570808822799() {} SE637303570808822799.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\rss.html'. if ( project.rss ) { var feeds = projectFolder.rssFeeds; for ( var i=0; i\r\n\t\t"); } } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\rss.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570808822799().executeScript(); 2020-07-14 20:58:00,885 [19] INFO - --------- 2020-07-14 20:58:00,885 [19] INFO - Information: 0 : 2020-07-14 20:58:00,886 [19] INFO - --------- 2020-07-14 20:58:00,886 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1836. 2020-07-14 20:58:00,886 [19] INFO - Information: 0 : 2020-07-14 20:58:00,886 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1836. 2020-07-14 20:58:00,886 [19] INFO - --------- 2020-07-14 20:58:00,886 [19] INFO - Information: 0 : 2020-07-14 20:58:00,886 [19] INFO - --------- 2020-07-14 20:58:00,886 [19] INFO - [system.partial] „rss.html“ 4 ms „“ 2020-07-14 20:58:00,886 [19] INFO - Information: 0 : 2020-07-14 20:58:00,886 [19] INFO - [system.partial] „rss.html“ 4 ms „“ 2020-07-14 20:58:00,888 [19] INFO - Information: 0 : 2020-07-14 20:58:00,888 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:00,894 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:00,905 [19] INFO - Information: 0 : 2020-07-14 20:58:00,905 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:00,906 [19] INFO - Information: 0 : 2020-07-14 20:58:00,906 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:00,924 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:00,947 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,947 [19] INFO - Information: 0 : 2020-07-14 20:58:00,947 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,947 [19] INFO - --------- 2020-07-14 20:58:00,947 [19] INFO - Information: 0 : 2020-07-14 20:58:00,947 [19] INFO - --------- 2020-07-14 20:58:00,947 [19] INFO - function SE637303570809472836() {} SE637303570809472836.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-search.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-search.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809472836().executeScript(); 2020-07-14 20:58:00,947 [19] INFO - Information: 0 : 2020-07-14 20:58:00,948 [19] INFO - function SE637303570809472836() {} SE637303570809472836.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-search.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-search.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809472836().executeScript(); 2020-07-14 20:58:00,948 [19] INFO - --------- 2020-07-14 20:58:00,948 [19] INFO - Information: 0 : 2020-07-14 20:58:00,948 [19] INFO - --------- 2020-07-14 20:58:00,949 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,949 [19] INFO - Information: 0 : 2020-07-14 20:58:00,949 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,949 [19] INFO - --------- 2020-07-14 20:58:00,949 [19] INFO - Information: 0 : 2020-07-14 20:58:00,949 [19] INFO - --------- 2020-07-14 20:58:00,949 [19] INFO - function SE637303570809472836() {} SE637303570809472836.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-search.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-search.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809472836().executeScript(); 2020-07-14 20:58:00,950 [19] INFO - Information: 0 : 2020-07-14 20:58:00,950 [19] INFO - function SE637303570809472836() {} SE637303570809472836.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-search.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-search.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809472836().executeScript(); 2020-07-14 20:58:00,950 [19] INFO - --------- 2020-07-14 20:58:00,950 [19] INFO - Information: 0 : 2020-07-14 20:58:00,950 [19] INFO - --------- 2020-07-14 20:58:00,950 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1837. 2020-07-14 20:58:00,950 [19] INFO - Information: 0 : 2020-07-14 20:58:00,950 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1837. 2020-07-14 20:58:00,950 [19] INFO - --------- 2020-07-14 20:58:00,951 [19] INFO - Information: 0 : 2020-07-14 20:58:00,951 [19] INFO - --------- 2020-07-14 20:58:00,951 [19] INFO - [system.partial] „inline-editing-search.html“ 4 ms „“ 2020-07-14 20:58:00,951 [19] INFO - Information: 0 : 2020-07-14 20:58:00,951 [19] INFO - [system.partial] „inline-editing-search.html“ 4 ms „“ 2020-07-14 20:58:00,951 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,951 [19] INFO - Information: 0 : 2020-07-14 20:58:00,951 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,952 [19] INFO - --------- 2020-07-14 20:58:00,952 [19] INFO - Information: 0 : 2020-07-14 20:58:00,952 [19] INFO - --------- 2020-07-14 20:58:00,952 [19] INFO - function SE637303570809512838() {} SE637303570809512838.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-logo.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-logo.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809512838().executeScript(); 2020-07-14 20:58:00,952 [19] INFO - Information: 0 : 2020-07-14 20:58:00,952 [19] INFO - function SE637303570809512838() {} SE637303570809512838.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-logo.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-logo.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809512838().executeScript(); 2020-07-14 20:58:00,952 [19] INFO - --------- 2020-07-14 20:58:00,952 [19] INFO - Information: 0 : 2020-07-14 20:58:00,952 [19] INFO - --------- 2020-07-14 20:58:00,953 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,953 [19] INFO - Information: 0 : 2020-07-14 20:58:00,954 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,954 [19] INFO - --------- 2020-07-14 20:58:00,954 [19] INFO - Information: 0 : 2020-07-14 20:58:00,954 [19] INFO - --------- 2020-07-14 20:58:00,954 [19] INFO - function SE637303570809512838() {} SE637303570809512838.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-logo.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-logo.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809512838().executeScript(); 2020-07-14 20:58:00,954 [19] INFO - Information: 0 : 2020-07-14 20:58:00,954 [19] INFO - function SE637303570809512838() {} SE637303570809512838.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-logo.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-logo.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809512838().executeScript(); 2020-07-14 20:58:00,954 [19] INFO - --------- 2020-07-14 20:58:00,954 [19] INFO - Information: 0 : 2020-07-14 20:58:00,954 [19] INFO - --------- 2020-07-14 20:58:00,955 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1838. 2020-07-14 20:58:00,955 [19] INFO - Information: 0 : 2020-07-14 20:58:00,955 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1838. 2020-07-14 20:58:00,955 [19] INFO - --------- 2020-07-14 20:58:00,955 [19] INFO - Information: 0 : 2020-07-14 20:58:00,955 [19] INFO - --------- 2020-07-14 20:58:00,955 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:00,955 [19] INFO - [system.partial] „inline-editing-logo.html“ 3 ms „“ 2020-07-14 20:58:00,955 [19] INFO - Information: 0 : 2020-07-14 20:58:00,955 [19] INFO - [system.partial] „inline-editing-logo.html“ 3 ms „“ 2020-07-14 20:58:00,957 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,957 [19] INFO - Information: 0 : 2020-07-14 20:58:00,957 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,958 [19] INFO - --------- 2020-07-14 20:58:00,958 [19] INFO - Information: 0 : 2020-07-14 20:58:00,958 [19] INFO - --------- 2020-07-14 20:58:00,958 [19] INFO - function SE637303570809572842() {} SE637303570809572842.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-webtitle.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-webtitle.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809572842().executeScript(); 2020-07-14 20:58:00,958 [19] INFO - Information: 0 : 2020-07-14 20:58:00,958 [19] INFO - function SE637303570809572842() {} SE637303570809572842.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-webtitle.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-webtitle.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809572842().executeScript(); 2020-07-14 20:58:00,958 [19] INFO - --------- 2020-07-14 20:58:00,958 [19] INFO - Information: 0 : 2020-07-14 20:58:00,958 [19] INFO - --------- 2020-07-14 20:58:00,969 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,969 [19] INFO - Information: 0 : 2020-07-14 20:58:00,969 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,969 [19] INFO - --------- 2020-07-14 20:58:00,969 [19] INFO - Information: 0 : 2020-07-14 20:58:00,970 [19] INFO - --------- 2020-07-14 20:58:00,970 [19] INFO - function SE637303570809572842() {} SE637303570809572842.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-webtitle.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-webtitle.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809572842().executeScript(); 2020-07-14 20:58:00,970 [19] INFO - Information: 0 : 2020-07-14 20:58:00,970 [19] INFO - function SE637303570809572842() {} SE637303570809572842.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-webtitle.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-webtitle.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809572842().executeScript(); 2020-07-14 20:58:00,970 [19] INFO - --------- 2020-07-14 20:58:00,970 [19] INFO - Information: 0 : 2020-07-14 20:58:00,970 [19] INFO - --------- 2020-07-14 20:58:00,970 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1839. 2020-07-14 20:58:00,970 [19] INFO - Information: 0 : 2020-07-14 20:58:00,970 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1839. 2020-07-14 20:58:00,971 [19] INFO - --------- 2020-07-14 20:58:00,971 [19] INFO - Information: 0 : 2020-07-14 20:58:00,971 [19] INFO - --------- 2020-07-14 20:58:00,971 [19] INFO - [system.partial] „inline-editing-webtitle.html“ 13 ms „“ 2020-07-14 20:58:00,971 [19] INFO - Information: 0 : 2020-07-14 20:58:00,971 [19] INFO - [system.partial] „inline-editing-webtitle.html“ 13 ms „“ 2020-07-14 20:58:00,972 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,972 [19] INFO - Information: 0 : 2020-07-14 20:58:00,972 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,972 [19] INFO - --------- 2020-07-14 20:58:00,973 [19] INFO - Information: 0 : 2020-07-14 20:58:00,973 [19] INFO - --------- 2020-07-14 20:58:00,973 [19] INFO - function SE637303570809722850() {} SE637303570809722850.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\header.html'. var areaName = "Header"; var headers = page.articlesInArea(areaName); var headerShown = false; for ( var ihead = 0; ihead < headers.count; ++ihead ){ // in a header-area, we only render the first active container/row/article if ( headerShown && ihead > 0 ){ break; } context.write(headers.item(ihead).render()); headerShown = true; } context.write("\r\n\r\n\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\header.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809722850().executeScript(); 2020-07-14 20:58:00,973 [19] INFO - Information: 0 : 2020-07-14 20:58:00,973 [19] INFO - function SE637303570809722850() {} SE637303570809722850.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\header.html'. var areaName = "Header"; var headers = page.articlesInArea(areaName); var headerShown = false; for ( var ihead = 0; ihead < headers.count; ++ihead ){ // in a header-area, we only render the first active container/row/article if ( headerShown && ihead > 0 ){ break; } context.write(headers.item(ihead).render()); headerShown = true; } context.write("\r\n\r\n\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\header.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809722850().executeScript(); 2020-07-14 20:58:00,973 [19] INFO - --------- 2020-07-14 20:58:00,973 [19] INFO - Information: 0 : 2020-07-14 20:58:00,973 [19] INFO - --------- 2020-07-14 20:58:00,974 [19] INFO - Information: 0 : 2020-07-14 20:58:00,975 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:00,979 [19] INFO - Information: 0 : 2020-07-14 20:58:00,979 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:00,979 [19] INFO - Information: 0 : 2020-07-14 20:58:00,979 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:00,980 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,980 [19] INFO - Information: 0 : 2020-07-14 20:58:00,981 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,981 [19] INFO - --------- 2020-07-14 20:58:00,981 [19] INFO - Information: 0 : 2020-07-14 20:58:00,981 [19] INFO - --------- 2020-07-14 20:58:00,981 [19] INFO - function SE637303570809802855() {} SE637303570809802855.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleheader\standard.html'. var cssClass = article.cssClass || ""; if ( cssClass ){ cssClass = " " + cssClass; } var inlineCss = article.inlineCss || ""; if ( inlineCss ){ inlineCss = ' style="' + inlineCss + '"'; } if ( "950" !== "" && "250" !== "" ){ var ratio = (parseInt("250") / parseInt("950")) * 100; } else{ var ratio = 30; } var wrapperStyles = ' style="height: 0; padding-bottom: ' + ratio + '%;"'; context.write("\r\n\r\n
\r\n\t
\r\n\t\t
    \r\n\t\t"); var numHeaders = article.value("header-count"); for ( var i = 1; i <= numHeaders; ++i ) { var headerTitle = article.valueExpanded("header-title-" + i, ""); var headerDescription = article.valueExpanded("header-description-" + i, ""); var headerImage = article.value("header-image-" + i); var image = project.getImage(headerImage); if ( image ){ image.skipContentCopy(); } var clickHref = ""; if ( article.value("header-image-clickurl-" + i, "") ) { clickHref = system.partial("zplink-expanded.html", "header-image-clickurl-" + i); } var linkDataAttributes = ""; var clickUrl = article.value("header-image-clickurl-" + i, ""); var clickTarget = article.value("header-image-clickurl-" + i + "_target", ""); if ( clickUrl !== "" ){ linkDataAttributes += ' data-clickurl="' + clickUrl + '"'; } if ( clickTarget !== "" ){ linkDataAttributes += ' data-clicktarget="' + clickTarget + '"'; } context.write("\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t"); if ( image ) { context.write("\r\n\t\t\t\t\t"); if ( clickHref ){ context.write("\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\"");\r\n\t\t\t\t\t"); if ( clickHref ){ context.write("\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); if ( headerTitle || headerDescription ) { context.write("\r\n\t\t\t\t\t"); if ( !image ){ context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); if ( headerTitle ) { context.write("\r\n\t\t\t\t\t\t\t"); context.write( system.partial("header-headline.html", i) ); context.write("\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t"); context.write( headerDescription ); context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t"); if ( !image ){ context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\r\n\r\n\t\t"); } context.write("\r\n\r\n
\r\n
\r\n
\r\n\r\n"); var nextText = system.htmlEncode(page.attribute("header_next_text")) || "weiter"; var prevText = system.htmlEncode(page.attribute("header_prev_text")) || "zurück"; var inlineEditingInitDelay = 50; var useSmoothHeight = "true" === "false" ? "false" : "true"; if ( useSmoothHeight === "true" ){ inlineEditingInitDelay = 1000; } context.write("\r\n\r\n"); if ( numHeaders > 0 ) { context.write("\r\n\t\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleheader\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809802855().executeScript(); 2020-07-14 20:58:00,981 [19] INFO - Information: 0 : 2020-07-14 20:58:00,981 [19] INFO - function SE637303570809802855() {} SE637303570809802855.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleheader\standard.html'. var cssClass = article.cssClass || ""; if ( cssClass ){ cssClass = " " + cssClass; } var inlineCss = article.inlineCss || ""; if ( inlineCss ){ inlineCss = ' style="' + inlineCss + '"'; } if ( "950" !== "" && "250" !== "" ){ var ratio = (parseInt("250") / parseInt("950")) * 100; } else{ var ratio = 30; } var wrapperStyles = ' style="height: 0; padding-bottom: ' + ratio + '%;"'; context.write("\r\n\r\n
\r\n\t
\r\n\t\t
    \r\n\t\t"); var numHeaders = article.value("header-count"); for ( var i = 1; i <= numHeaders; ++i ) { var headerTitle = article.valueExpanded("header-title-" + i, ""); var headerDescription = article.valueExpanded("header-description-" + i, ""); var headerImage = article.value("header-image-" + i); var image = project.getImage(headerImage); if ( image ){ image.skipContentCopy(); } var clickHref = ""; if ( article.value("header-image-clickurl-" + i, "") ) { clickHref = system.partial("zplink-expanded.html", "header-image-clickurl-" + i); } var linkDataAttributes = ""; var clickUrl = article.value("header-image-clickurl-" + i, ""); var clickTarget = article.value("header-image-clickurl-" + i + "_target", ""); if ( clickUrl !== "" ){ linkDataAttributes += ' data-clickurl="' + clickUrl + '"'; } if ( clickTarget !== "" ){ linkDataAttributes += ' data-clicktarget="' + clickTarget + '"'; } context.write("\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t"); if ( image ) { context.write("\r\n\t\t\t\t\t"); if ( clickHref ){ context.write("\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\"");\r\n\t\t\t\t\t"); if ( clickHref ){ context.write("\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); if ( headerTitle || headerDescription ) { context.write("\r\n\t\t\t\t\t"); if ( !image ){ context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); if ( headerTitle ) { context.write("\r\n\t\t\t\t\t\t\t"); context.write( system.partial("header-headline.html", i) ); context.write("\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t"); context.write( headerDescription ); context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t"); if ( !image ){ context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\r\n\r\n\t\t"); } context.write("\r\n\r\n
\r\n
\r\n
\r\n\r\n"); var nextText = system.htmlEncode(page.attribute("header_next_text")) || "weiter"; var prevText = system.htmlEncode(page.attribute("header_prev_text")) || "zurück"; var inlineEditingInitDelay = 50; var useSmoothHeight = "true" === "false" ? "false" : "true"; if ( useSmoothHeight === "true" ){ inlineEditingInitDelay = 1000; } context.write("\r\n\r\n"); if ( numHeaders > 0 ) { context.write("\r\n\t\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleheader\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809802855().executeScript(); 2020-07-14 20:58:00,982 [19] INFO - --------- 2020-07-14 20:58:00,982 [19] INFO - Information: 0 : 2020-07-14 20:58:00,982 [19] INFO - --------- 2020-07-14 20:58:00,983 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:00,984 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,985 [19] INFO - Information: 0 : 2020-07-14 20:58:00,985 [19] INFO - About to execute the following script: 2020-07-14 20:58:00,985 [19] INFO - --------- 2020-07-14 20:58:00,985 [19] INFO - Information: 0 : 2020-07-14 20:58:00,985 [19] INFO - --------- 2020-07-14 20:58:00,985 [19] INFO - function SE637303570809842857() {} SE637303570809842857.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-header.html'. context.write(" \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-header.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809842857().executeScript(); 2020-07-14 20:58:00,985 [19] INFO - Information: 0 : 2020-07-14 20:58:00,986 [19] INFO - function SE637303570809842857() {} SE637303570809842857.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-header.html'. context.write(" \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-header.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809842857().executeScript(); 2020-07-14 20:58:00,986 [19] INFO - --------- 2020-07-14 20:58:00,986 [19] INFO - Information: 0 : 2020-07-14 20:58:00,986 [19] INFO - --------- 2020-07-14 20:58:00,989 [19] INFO - Information: 0 : 2020-07-14 20:58:00,989 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:00,991 [19] INFO - Information: 0 : 2020-07-14 20:58:00,991 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:00,991 [19] INFO - Information: 0 : 2020-07-14 20:58:00,991 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:00,993 [19] INFO - Information: 0 : 2020-07-14 20:58:00,993 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:00,995 [19] INFO - Information: 0 : 2020-07-14 20:58:00,995 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:00,995 [19] INFO - Information: 0 : 2020-07-14 20:58:00,995 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:00,995 [19] INFO - Information: 0 : 2020-07-14 20:58:00,995 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:00,996 [19] INFO - Information: 0 : 2020-07-14 20:58:00,997 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:00,997 [19] INFO - Information: 0 : 2020-07-14 20:58:00,997 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:00,997 [19] INFO - Information: 0 : 2020-07-14 20:58:00,997 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:00,998 [19] INFO - Information: 0 : 2020-07-14 20:58:00,998 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:00,998 [19] INFO - Information: 0 : 2020-07-14 20:58:00,998 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:00,999 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,999 [19] INFO - Information: 0 : 2020-07-14 20:58:00,999 [19] INFO - Finished executing the following script: 2020-07-14 20:58:00,999 [19] INFO - --------- 2020-07-14 20:58:00,999 [19] INFO - Information: 0 : 2020-07-14 20:58:01,000 [19] INFO - --------- 2020-07-14 20:58:01,000 [19] INFO - function SE637303570809842857() {} SE637303570809842857.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-header.html'. context.write(" \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-header.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809842857().executeScript(); 2020-07-14 20:58:01,000 [19] INFO - Information: 0 : 2020-07-14 20:58:01,000 [19] INFO - function SE637303570809842857() {} SE637303570809842857.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-header.html'. context.write(" \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-header.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809842857().executeScript(); 2020-07-14 20:58:01,000 [19] INFO - --------- 2020-07-14 20:58:01,000 [19] INFO - Information: 0 : 2020-07-14 20:58:01,000 [19] INFO - --------- 2020-07-14 20:58:01,000 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1840. 2020-07-14 20:58:01,000 [19] INFO - Information: 0 : 2020-07-14 20:58:01,001 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1840. 2020-07-14 20:58:01,001 [19] INFO - --------- 2020-07-14 20:58:01,001 [19] INFO - Information: 0 : 2020-07-14 20:58:01,001 [19] INFO - --------- 2020-07-14 20:58:01,001 [19] INFO - [system.partial] „inline-editing-header.html“ 17 ms „“ 2020-07-14 20:58:01,001 [19] INFO - Information: 0 : 2020-07-14 20:58:01,001 [19] INFO - [system.partial] „inline-editing-header.html“ 17 ms „“ 2020-07-14 20:58:01,001 [19] INFO - Information: 0 : 2020-07-14 20:58:01,002 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:01,004 [19] INFO - Information: 0 : 2020-07-14 20:58:01,004 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:01,004 [19] INFO - Information: 0 : 2020-07-14 20:58:01,004 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:01,004 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:01,004 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 531. 2020-07-14 20:58:01,004 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 531. 2020-07-14 20:58:01,005 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:01,005 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 531. 2020-07-14 20:58:01,006 [19] INFO - Information: 0 : 2020-07-14 20:58:01,007 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:01,009 [19] INFO - Information: 0 : 2020-07-14 20:58:01,009 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:01,009 [19] INFO - Information: 0 : 2020-07-14 20:58:01,009 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:01,009 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:01,009 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 503. 2020-07-14 20:58:01,009 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 503. 2020-07-14 20:58:01,010 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:01,010 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 503. 2020-07-14 20:58:01,011 [19] INFO - Information: 0 : 2020-07-14 20:58:01,012 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:01,012 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,014 [19] INFO - Information: 0 : 2020-07-14 20:58:01,014 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:01,016 [19] INFO - Information: 0 : 2020-07-14 20:58:01,016 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:01,016 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:01,016 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 342. 2020-07-14 20:58:01,016 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 342. 2020-07-14 20:58:01,018 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:01,019 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 342. 2020-07-14 20:58:01,020 [19] INFO - Information: 0 : 2020-07-14 20:58:01,020 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:01,022 [19] INFO - Information: 0 : 2020-07-14 20:58:01,022 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:01,023 [19] INFO - Information: 0 : 2020-07-14 20:58:01,023 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:01,023 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:01,023 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 504. 2020-07-14 20:58:01,023 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 504. 2020-07-14 20:58:01,024 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:01,024 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 504. 2020-07-14 20:58:01,025 [19] INFO - Information: 0 : 2020-07-14 20:58:01,025 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:01,027 [19] INFO - Information: 0 : 2020-07-14 20:58:01,028 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:01,028 [19] INFO - Information: 0 : 2020-07-14 20:58:01,028 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:01,028 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:01,028 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 505. 2020-07-14 20:58:01,028 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 505. 2020-07-14 20:58:01,029 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:01,029 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 505. 2020-07-14 20:58:01,030 [19] INFO - Information: 0 : 2020-07-14 20:58:01,030 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:01,032 [19] INFO - Information: 0 : 2020-07-14 20:58:01,032 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:01,033 [19] INFO - Information: 0 : 2020-07-14 20:58:01,033 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:01,033 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:01,033 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 569. 2020-07-14 20:58:01,033 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 569. 2020-07-14 20:58:01,034 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:01,034 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 569. 2020-07-14 20:58:01,035 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,035 [19] INFO - Information: 0 : 2020-07-14 20:58:01,036 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,036 [19] INFO - --------- 2020-07-14 20:58:01,036 [19] INFO - Information: 0 : 2020-07-14 20:58:01,036 [19] INFO - --------- 2020-07-14 20:58:01,036 [19] INFO - function SE637303570809802855() {} SE637303570809802855.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleheader\standard.html'. var cssClass = article.cssClass || ""; if ( cssClass ){ cssClass = " " + cssClass; } var inlineCss = article.inlineCss || ""; if ( inlineCss ){ inlineCss = ' style="' + inlineCss + '"'; } if ( "950" !== "" && "250" !== "" ){ var ratio = (parseInt("250") / parseInt("950")) * 100; } else{ var ratio = 30; } var wrapperStyles = ' style="height: 0; padding-bottom: ' + ratio + '%;"'; context.write("\r\n\r\n
\r\n\t
\r\n\t\t
    \r\n\t\t"); var numHeaders = article.value("header-count"); for ( var i = 1; i <= numHeaders; ++i ) { var headerTitle = article.valueExpanded("header-title-" + i, ""); var headerDescription = article.valueExpanded("header-description-" + i, ""); var headerImage = article.value("header-image-" + i); var image = project.getImage(headerImage); if ( image ){ image.skipContentCopy(); } var clickHref = ""; if ( article.value("header-image-clickurl-" + i, "") ) { clickHref = system.partial("zplink-expanded.html", "header-image-clickurl-" + i); } var linkDataAttributes = ""; var clickUrl = article.value("header-image-clickurl-" + i, ""); var clickTarget = article.value("header-image-clickurl-" + i + "_target", ""); if ( clickUrl !== "" ){ linkDataAttributes += ' data-clickurl="' + clickUrl + '"'; } if ( clickTarget !== "" ){ linkDataAttributes += ' data-clicktarget="' + clickTarget + '"'; } context.write("\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t"); if ( image ) { context.write("\r\n\t\t\t\t\t"); if ( clickHref ){ context.write("\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\"");\r\n\t\t\t\t\t"); if ( clickHref ){ context.write("\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); if ( headerTitle || headerDescription ) { context.write("\r\n\t\t\t\t\t"); if ( !image ){ context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); if ( headerTitle ) { context.write("\r\n\t\t\t\t\t\t\t"); context.write( system.partial("header-headline.html", i) ); context.write("\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t"); context.write( headerDescription ); context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t"); if ( !image ){ context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\r\n\r\n\t\t"); } context.write("\r\n\r\n
\r\n
\r\n
\r\n\r\n"); var nextText = system.htmlEncode(page.attribute("header_next_text")) || "weiter"; var prevText = system.htmlEncode(page.attribute("header_prev_text")) || "zurück"; var inlineEditingInitDelay = 50; var useSmoothHeight = "true" === "false" ? "false" : "true"; if ( useSmoothHeight === "true" ){ inlineEditingInitDelay = 1000; } context.write("\r\n\r\n"); if ( numHeaders > 0 ) { context.write("\r\n\t\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleheader\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809802855().executeScript(); 2020-07-14 20:58:01,036 [19] INFO - Information: 0 : 2020-07-14 20:58:01,037 [19] INFO - function SE637303570809802855() {} SE637303570809802855.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleheader\standard.html'. var cssClass = article.cssClass || ""; if ( cssClass ){ cssClass = " " + cssClass; } var inlineCss = article.inlineCss || ""; if ( inlineCss ){ inlineCss = ' style="' + inlineCss + '"'; } if ( "950" !== "" && "250" !== "" ){ var ratio = (parseInt("250") / parseInt("950")) * 100; } else{ var ratio = 30; } var wrapperStyles = ' style="height: 0; padding-bottom: ' + ratio + '%;"'; context.write("\r\n\r\n
\r\n\t
\r\n\t\t
    \r\n\t\t"); var numHeaders = article.value("header-count"); for ( var i = 1; i <= numHeaders; ++i ) { var headerTitle = article.valueExpanded("header-title-" + i, ""); var headerDescription = article.valueExpanded("header-description-" + i, ""); var headerImage = article.value("header-image-" + i); var image = project.getImage(headerImage); if ( image ){ image.skipContentCopy(); } var clickHref = ""; if ( article.value("header-image-clickurl-" + i, "") ) { clickHref = system.partial("zplink-expanded.html", "header-image-clickurl-" + i); } var linkDataAttributes = ""; var clickUrl = article.value("header-image-clickurl-" + i, ""); var clickTarget = article.value("header-image-clickurl-" + i + "_target", ""); if ( clickUrl !== "" ){ linkDataAttributes += ' data-clickurl="' + clickUrl + '"'; } if ( clickTarget !== "" ){ linkDataAttributes += ' data-clicktarget="' + clickTarget + '"'; } context.write("\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t"); if ( image ) { context.write("\r\n\t\t\t\t\t"); if ( clickHref ){ context.write("\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\"");\r\n\t\t\t\t\t"); if ( clickHref ){ context.write("\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); if ( headerTitle || headerDescription ) { context.write("\r\n\t\t\t\t\t"); if ( !image ){ context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); if ( headerTitle ) { context.write("\r\n\t\t\t\t\t\t\t"); context.write( system.partial("header-headline.html", i) ); context.write("\r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t"); context.write( headerDescription ); context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t"); if ( !image ){ context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t"); } context.write("\r\n\t\t\t\r\n\r\n\t\t"); } context.write("\r\n\r\n
\r\n
\r\n
\r\n\r\n"); var nextText = system.htmlEncode(page.attribute("header_next_text")) || "weiter"; var prevText = system.htmlEncode(page.attribute("header_prev_text")) || "zurück"; var inlineEditingInitDelay = 50; var useSmoothHeight = "true" === "false" ? "false" : "true"; if ( useSmoothHeight === "true" ){ inlineEditingInitDelay = 1000; } context.write("\r\n\r\n"); if ( numHeaders > 0 ) { context.write("\r\n\t\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleheader\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809802855().executeScript(); 2020-07-14 20:58:01,038 [19] INFO - --------- 2020-07-14 20:58:01,038 [19] INFO - Information: 0 : 2020-07-14 20:58:01,038 [19] INFO - --------- 2020-07-14 20:58:01,038 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1841. 2020-07-14 20:58:01,038 [19] INFO - Information: 0 : 2020-07-14 20:58:01,038 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1841. 2020-07-14 20:58:01,038 [19] INFO - --------- 2020-07-14 20:58:01,038 [19] INFO - Information: 0 : 2020-07-14 20:58:01,039 [19] INFO - --------- 2020-07-14 20:58:01,050 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,051 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,051 [19] INFO - Information: 0 : 2020-07-14 20:58:01,051 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,051 [19] INFO - --------- 2020-07-14 20:58:01,051 [19] INFO - Information: 0 : 2020-07-14 20:58:01,051 [19] INFO - --------- 2020-07-14 20:58:01,051 [19] INFO - function SE637303570809722850() {} SE637303570809722850.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\header.html'. var areaName = "Header"; var headers = page.articlesInArea(areaName); var headerShown = false; for ( var ihead = 0; ihead < headers.count; ++ihead ){ // in a header-area, we only render the first active container/row/article if ( headerShown && ihead > 0 ){ break; } context.write(headers.item(ihead).render()); headerShown = true; } context.write("\r\n\r\n\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\header.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809722850().executeScript(); 2020-07-14 20:58:01,051 [19] INFO - Information: 0 : 2020-07-14 20:58:01,051 [19] INFO - function SE637303570809722850() {} SE637303570809722850.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\header.html'. var areaName = "Header"; var headers = page.articlesInArea(areaName); var headerShown = false; for ( var ihead = 0; ihead < headers.count; ++ihead ){ // in a header-area, we only render the first active container/row/article if ( headerShown && ihead > 0 ){ break; } context.write(headers.item(ihead).render()); headerShown = true; } context.write("\r\n\r\n\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\header.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570809722850().executeScript(); 2020-07-14 20:58:01,052 [19] INFO - --------- 2020-07-14 20:58:01,052 [19] INFO - Information: 0 : 2020-07-14 20:58:01,052 [19] INFO - --------- 2020-07-14 20:58:01,052 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1842. 2020-07-14 20:58:01,052 [19] INFO - Information: 0 : 2020-07-14 20:58:01,052 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1842. 2020-07-14 20:58:01,052 [19] INFO - --------- 2020-07-14 20:58:01,052 [19] INFO - Information: 0 : 2020-07-14 20:58:01,052 [19] INFO - --------- 2020-07-14 20:58:01,052 [19] INFO - [system.partial] „header.html“ 80 ms „“ 2020-07-14 20:58:01,053 [19] INFO - Information: 0 : 2020-07-14 20:58:01,053 [19] INFO - [system.partial] „header.html“ 80 ms „“ 2020-07-14 20:58:01,053 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,053 [19] INFO - Information: 0 : 2020-07-14 20:58:01,053 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,053 [19] INFO - --------- 2020-07-14 20:58:01,054 [19] INFO - Information: 0 : 2020-07-14 20:58:01,054 [19] INFO - --------- 2020-07-14 20:58:01,054 [19] INFO - function SE637303570810532897() {} SE637303570810532897.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\hauptmenu.html'. var pageId = context.param(0, 0); var level = context.param(1, 1); var p = project.getPage(pageId); var childPages = isNull(p) ? page.projectFolder.pages : p.pages; if ( childPages.count<=0 || (!isNull(p) && !hasVisibleChildPages(p.id)) ) { return; } if ( !isNull(p) && p.level!=1 ) { return; } context.write("\r\n
    \r\n\r\n\r\n "); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n "); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n "); context.write( system.partial("item-hauptmenu-aktiv.html", p.id, 1) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-hauptmenu.html", p.id, 1) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n
\r\n\r\n "); function hasActiveChildPage(pageId) { var p = project.getPage(pageId); var childPages = p.pages; for ( var i = 0; i < childPages.count; ++i ) { var childPage = childPages.item(i); if ( childPage.id === page.id || hasActiveChildPage(childPage.id) ) { return true; } } return false; } function hasVisibleChildPages(pageId) { var p = project.getPage(pageId); if ( !isNull(p) ) { var cps = p.pages; for ( var i = 0; i < cps.count; ++i ) { var cp = cps.item(i); if ( cp.visible && cp.active ) { return true; } } } return false; } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810532897().executeScript(); 2020-07-14 20:58:01,054 [19] INFO - Information: 0 : 2020-07-14 20:58:01,054 [19] INFO - function SE637303570810532897() {} SE637303570810532897.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\hauptmenu.html'. var pageId = context.param(0, 0); var level = context.param(1, 1); var p = project.getPage(pageId); var childPages = isNull(p) ? page.projectFolder.pages : p.pages; if ( childPages.count<=0 || (!isNull(p) && !hasVisibleChildPages(p.id)) ) { return; } if ( !isNull(p) && p.level!=1 ) { return; } context.write("\r\n
    \r\n\r\n\r\n "); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n "); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n "); context.write( system.partial("item-hauptmenu-aktiv.html", p.id, 1) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-hauptmenu.html", p.id, 1) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n
\r\n\r\n "); function hasActiveChildPage(pageId) { var p = project.getPage(pageId); var childPages = p.pages; for ( var i = 0; i < childPages.count; ++i ) { var childPage = childPages.item(i); if ( childPage.id === page.id || hasActiveChildPage(childPage.id) ) { return true; } } return false; } function hasVisibleChildPages(pageId) { var p = project.getPage(pageId); if ( !isNull(p) ) { var cps = p.pages; for ( var i = 0; i < cps.count; ++i ) { var cp = cps.item(i); if ( cp.visible && cp.active ) { return true; } } } return false; } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810532897().executeScript(); 2020-07-14 20:58:01,054 [19] INFO - --------- 2020-07-14 20:58:01,054 [19] INFO - Information: 0 : 2020-07-14 20:58:01,054 [19] INFO - --------- 2020-07-14 20:58:01,060 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,060 [19] INFO - Information: 0 : 2020-07-14 20:58:01,060 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,060 [19] INFO - --------- 2020-07-14 20:58:01,061 [19] INFO - Information: 0 : 2020-07-14 20:58:01,061 [19] INFO - --------- 2020-07-14 20:58:01,061 [19] INFO - function SE637303570810602901() {} SE637303570810602901.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810602901().executeScript(); 2020-07-14 20:58:01,061 [19] INFO - Information: 0 : 2020-07-14 20:58:01,061 [19] INFO - function SE637303570810602901() {} SE637303570810602901.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810602901().executeScript(); 2020-07-14 20:58:01,061 [19] INFO - --------- 2020-07-14 20:58:01,061 [19] INFO - Information: 0 : 2020-07-14 20:58:01,061 [19] INFO - --------- 2020-07-14 20:58:01,063 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,063 [19] INFO - Information: 0 : 2020-07-14 20:58:01,063 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,063 [19] INFO - --------- 2020-07-14 20:58:01,063 [19] INFO - Information: 0 : 2020-07-14 20:58:01,063 [19] INFO - --------- 2020-07-14 20:58:01,063 [19] INFO - function SE637303570810602901() {} SE637303570810602901.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810602901().executeScript(); 2020-07-14 20:58:01,063 [19] INFO - Information: 0 : 2020-07-14 20:58:01,064 [19] INFO - function SE637303570810602901() {} SE637303570810602901.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810602901().executeScript(); 2020-07-14 20:58:01,064 [19] INFO - --------- 2020-07-14 20:58:01,064 [19] INFO - Information: 0 : 2020-07-14 20:58:01,064 [19] INFO - --------- 2020-07-14 20:58:01,064 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1843. 2020-07-14 20:58:01,064 [19] INFO - Information: 0 : 2020-07-14 20:58:01,064 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1843. 2020-07-14 20:58:01,064 [19] INFO - --------- 2020-07-14 20:58:01,064 [19] INFO - Information: 0 : 2020-07-14 20:58:01,064 [19] INFO - --------- 2020-07-14 20:58:01,065 [19] INFO - [system.partial] „item-hauptmenu.html“ 4 ms „[0, 399]','[1, 1]“ 2020-07-14 20:58:01,065 [19] INFO - Information: 0 : 2020-07-14 20:58:01,065 [19] INFO - [system.partial] „item-hauptmenu.html“ 4 ms „[0, 399]','[1, 1]“ 2020-07-14 20:58:01,070 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,070 [19] INFO - Information: 0 : 2020-07-14 20:58:01,070 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,070 [19] INFO - --------- 2020-07-14 20:58:01,070 [19] INFO - Information: 0 : 2020-07-14 20:58:01,070 [19] INFO - --------- 2020-07-14 20:58:01,071 [19] INFO - function SE637303570810702906() {} SE637303570810702906.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810702906().executeScript(); 2020-07-14 20:58:01,071 [19] INFO - Information: 0 : 2020-07-14 20:58:01,071 [19] INFO - function SE637303570810702906() {} SE637303570810702906.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810702906().executeScript(); 2020-07-14 20:58:01,071 [19] INFO - --------- 2020-07-14 20:58:01,071 [19] INFO - Information: 0 : 2020-07-14 20:58:01,071 [19] INFO - --------- 2020-07-14 20:58:01,073 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,073 [19] INFO - Information: 0 : 2020-07-14 20:58:01,073 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,073 [19] INFO - --------- 2020-07-14 20:58:01,073 [19] INFO - Information: 0 : 2020-07-14 20:58:01,073 [19] INFO - --------- 2020-07-14 20:58:01,073 [19] INFO - function SE637303570810702906() {} SE637303570810702906.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810702906().executeScript(); 2020-07-14 20:58:01,074 [19] INFO - Information: 0 : 2020-07-14 20:58:01,074 [19] INFO - function SE637303570810702906() {} SE637303570810702906.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810702906().executeScript(); 2020-07-14 20:58:01,074 [19] INFO - --------- 2020-07-14 20:58:01,074 [19] INFO - Information: 0 : 2020-07-14 20:58:01,074 [19] INFO - --------- 2020-07-14 20:58:01,074 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1844. 2020-07-14 20:58:01,074 [19] INFO - Information: 0 : 2020-07-14 20:58:01,074 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1844. 2020-07-14 20:58:01,074 [19] INFO - --------- 2020-07-14 20:58:01,074 [19] INFO - Information: 0 : 2020-07-14 20:58:01,076 [19] INFO - --------- 2020-07-14 20:58:01,076 [19] INFO - [system.partial] „item-hauptmenu.html“ 5 ms „[0, 478]','[1, 1]“ 2020-07-14 20:58:01,076 [19] INFO - Information: 0 : 2020-07-14 20:58:01,076 [19] INFO - [system.partial] „item-hauptmenu.html“ 5 ms „[0, 478]','[1, 1]“ 2020-07-14 20:58:01,079 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,080 [19] INFO - Information: 0 : 2020-07-14 20:58:01,080 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,080 [19] INFO - --------- 2020-07-14 20:58:01,080 [19] INFO - Information: 0 : 2020-07-14 20:58:01,080 [19] INFO - --------- 2020-07-14 20:58:01,080 [19] INFO - function SE637303570810792911() {} SE637303570810792911.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu-aktiv.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810792911().executeScript(); 2020-07-14 20:58:01,080 [19] INFO - Information: 0 : 2020-07-14 20:58:01,080 [19] INFO - function SE637303570810792911() {} SE637303570810792911.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu-aktiv.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810792911().executeScript(); 2020-07-14 20:58:01,081 [19] INFO - --------- 2020-07-14 20:58:01,081 [19] INFO - Information: 0 : 2020-07-14 20:58:01,081 [19] INFO - --------- 2020-07-14 20:58:01,082 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,083 [19] INFO - Information: 0 : 2020-07-14 20:58:01,083 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,083 [19] INFO - --------- 2020-07-14 20:58:01,083 [19] INFO - Information: 0 : 2020-07-14 20:58:01,083 [19] INFO - --------- 2020-07-14 20:58:01,083 [19] INFO - function SE637303570810792911() {} SE637303570810792911.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu-aktiv.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810792911().executeScript(); 2020-07-14 20:58:01,083 [19] INFO - Information: 0 : 2020-07-14 20:58:01,083 [19] INFO - function SE637303570810792911() {} SE637303570810792911.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu-aktiv.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810792911().executeScript(); 2020-07-14 20:58:01,083 [19] INFO - --------- 2020-07-14 20:58:01,083 [19] INFO - Information: 0 : 2020-07-14 20:58:01,084 [19] INFO - --------- 2020-07-14 20:58:01,084 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1845. 2020-07-14 20:58:01,084 [19] INFO - Information: 0 : 2020-07-14 20:58:01,084 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1845. 2020-07-14 20:58:01,084 [19] INFO - --------- 2020-07-14 20:58:01,084 [19] INFO - Information: 0 : 2020-07-14 20:58:01,084 [19] INFO - --------- 2020-07-14 20:58:01,084 [19] INFO - [system.partial] „item-hauptmenu-aktiv.html“ 4 ms „[0, 485]','[1, 1]“ 2020-07-14 20:58:01,084 [19] INFO - Information: 0 : 2020-07-14 20:58:01,085 [19] INFO - [system.partial] „item-hauptmenu-aktiv.html“ 4 ms „[0, 485]','[1, 1]“ 2020-07-14 20:58:01,086 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,086 [19] INFO - Information: 0 : 2020-07-14 20:58:01,086 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,086 [19] INFO - --------- 2020-07-14 20:58:01,086 [19] INFO - Information: 0 : 2020-07-14 20:58:01,086 [19] INFO - --------- 2020-07-14 20:58:01,087 [19] INFO - function SE637303570810862915() {} SE637303570810862915.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810862915().executeScript(); 2020-07-14 20:58:01,087 [19] INFO - Information: 0 : 2020-07-14 20:58:01,087 [19] INFO - function SE637303570810862915() {} SE637303570810862915.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810862915().executeScript(); 2020-07-14 20:58:01,087 [19] INFO - --------- 2020-07-14 20:58:01,088 [19] INFO - Information: 0 : 2020-07-14 20:58:01,088 [19] INFO - --------- 2020-07-14 20:58:01,090 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,090 [19] INFO - Information: 0 : 2020-07-14 20:58:01,090 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,090 [19] INFO - --------- 2020-07-14 20:58:01,090 [19] INFO - Information: 0 : 2020-07-14 20:58:01,090 [19] INFO - --------- 2020-07-14 20:58:01,090 [19] INFO - function SE637303570810862915() {} SE637303570810862915.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810862915().executeScript(); 2020-07-14 20:58:01,090 [19] INFO - Information: 0 : 2020-07-14 20:58:01,090 [19] INFO - function SE637303570810862915() {} SE637303570810862915.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810862915().executeScript(); 2020-07-14 20:58:01,090 [19] INFO - --------- 2020-07-14 20:58:01,091 [19] INFO - Information: 0 : 2020-07-14 20:58:01,091 [19] INFO - --------- 2020-07-14 20:58:01,091 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1846. 2020-07-14 20:58:01,091 [19] INFO - Information: 0 : 2020-07-14 20:58:01,091 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1846. 2020-07-14 20:58:01,091 [19] INFO - --------- 2020-07-14 20:58:01,091 [19] INFO - Information: 0 : 2020-07-14 20:58:01,091 [19] INFO - --------- 2020-07-14 20:58:01,091 [19] INFO - [system.partial] „item-hauptmenu.html“ 5 ms „[0, 489]','[1, 1]“ 2020-07-14 20:58:01,092 [19] INFO - Information: 0 : 2020-07-14 20:58:01,092 [19] INFO - [system.partial] „item-hauptmenu.html“ 5 ms „[0, 489]','[1, 1]“ 2020-07-14 20:58:01,094 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,094 [19] INFO - Information: 0 : 2020-07-14 20:58:01,094 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,094 [19] INFO - --------- 2020-07-14 20:58:01,094 [19] INFO - Information: 0 : 2020-07-14 20:58:01,094 [19] INFO - --------- 2020-07-14 20:58:01,094 [19] INFO - function SE637303570810942920() {} SE637303570810942920.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810942920().executeScript(); 2020-07-14 20:58:01,095 [19] INFO - Information: 0 : 2020-07-14 20:58:01,095 [19] INFO - function SE637303570810942920() {} SE637303570810942920.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810942920().executeScript(); 2020-07-14 20:58:01,095 [19] INFO - --------- 2020-07-14 20:58:01,095 [19] INFO - Information: 0 : 2020-07-14 20:58:01,095 [19] INFO - --------- 2020-07-14 20:58:01,097 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,097 [19] INFO - Information: 0 : 2020-07-14 20:58:01,097 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,097 [19] INFO - --------- 2020-07-14 20:58:01,097 [19] INFO - Information: 0 : 2020-07-14 20:58:01,097 [19] INFO - --------- 2020-07-14 20:58:01,097 [19] INFO - function SE637303570810942920() {} SE637303570810942920.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810942920().executeScript(); 2020-07-14 20:58:01,097 [19] INFO - Information: 0 : 2020-07-14 20:58:01,097 [19] INFO - function SE637303570810942920() {} SE637303570810942920.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810942920().executeScript(); 2020-07-14 20:58:01,098 [19] INFO - --------- 2020-07-14 20:58:01,098 [19] INFO - Information: 0 : 2020-07-14 20:58:01,098 [19] INFO - --------- 2020-07-14 20:58:01,098 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1847. 2020-07-14 20:58:01,098 [19] INFO - Information: 0 : 2020-07-14 20:58:01,098 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1847. 2020-07-14 20:58:01,098 [19] INFO - --------- 2020-07-14 20:58:01,098 [19] INFO - Information: 0 : 2020-07-14 20:58:01,098 [19] INFO - --------- 2020-07-14 20:58:01,098 [19] INFO - [system.partial] „item-hauptmenu.html“ 4 ms „[0, 494]','[1, 1]“ 2020-07-14 20:58:01,099 [19] INFO - Information: 0 : 2020-07-14 20:58:01,099 [19] INFO - [system.partial] „item-hauptmenu.html“ 4 ms „[0, 494]','[1, 1]“ 2020-07-14 20:58:01,100 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,100 [19] INFO - Information: 0 : 2020-07-14 20:58:01,100 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,100 [19] INFO - --------- 2020-07-14 20:58:01,101 [19] INFO - Information: 0 : 2020-07-14 20:58:01,101 [19] INFO - --------- 2020-07-14 20:58:01,101 [19] INFO - function SE637303570811002923() {} SE637303570811002923.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570811002923().executeScript(); 2020-07-14 20:58:01,101 [19] INFO - Information: 0 : 2020-07-14 20:58:01,101 [19] INFO - function SE637303570811002923() {} SE637303570811002923.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570811002923().executeScript(); 2020-07-14 20:58:01,101 [19] INFO - --------- 2020-07-14 20:58:01,101 [19] INFO - Information: 0 : 2020-07-14 20:58:01,101 [19] INFO - --------- 2020-07-14 20:58:01,103 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,103 [19] INFO - Information: 0 : 2020-07-14 20:58:01,103 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,103 [19] INFO - --------- 2020-07-14 20:58:01,103 [19] INFO - Information: 0 : 2020-07-14 20:58:01,104 [19] INFO - --------- 2020-07-14 20:58:01,104 [19] INFO - function SE637303570811002923() {} SE637303570811002923.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570811002923().executeScript(); 2020-07-14 20:58:01,104 [19] INFO - Information: 0 : 2020-07-14 20:58:01,104 [19] INFO - function SE637303570811002923() {} SE637303570811002923.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570811002923().executeScript(); 2020-07-14 20:58:01,104 [19] INFO - --------- 2020-07-14 20:58:01,104 [19] INFO - Information: 0 : 2020-07-14 20:58:01,104 [19] INFO - --------- 2020-07-14 20:58:01,104 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1848. 2020-07-14 20:58:01,104 [19] INFO - Information: 0 : 2020-07-14 20:58:01,105 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1848. 2020-07-14 20:58:01,105 [19] INFO - --------- 2020-07-14 20:58:01,105 [19] INFO - Information: 0 : 2020-07-14 20:58:01,105 [19] INFO - --------- 2020-07-14 20:58:01,105 [19] INFO - [system.partial] „item-hauptmenu.html“ 4 ms „[0, 495]','[1, 1]“ 2020-07-14 20:58:01,105 [19] INFO - Information: 0 : 2020-07-14 20:58:01,105 [19] INFO - [system.partial] „item-hauptmenu.html“ 4 ms „[0, 495]','[1, 1]“ 2020-07-14 20:58:01,106 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,107 [19] INFO - Information: 0 : 2020-07-14 20:58:01,107 [19] INFO - About to execute the following script: 2020-07-14 20:58:01,107 [19] INFO - --------- 2020-07-14 20:58:01,107 [19] INFO - Information: 0 : 2020-07-14 20:58:01,107 [19] INFO - --------- 2020-07-14 20:58:01,107 [19] INFO - function SE637303570811062927() {} SE637303570811062927.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570811062927().executeScript(); 2020-07-14 20:58:01,107 [19] INFO - Information: 0 : 2020-07-14 20:58:01,107 [19] INFO - function SE637303570811062927() {} SE637303570811062927.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570811062927().executeScript(); 2020-07-14 20:58:01,107 [19] INFO - --------- 2020-07-14 20:58:01,107 [19] INFO - Information: 0 : 2020-07-14 20:58:01,108 [19] INFO - --------- 2020-07-14 20:58:01,109 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,109 [19] INFO - Information: 0 : 2020-07-14 20:58:01,109 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,109 [19] INFO - --------- 2020-07-14 20:58:01,109 [19] INFO - Information: 0 : 2020-07-14 20:58:01,110 [19] INFO - --------- 2020-07-14 20:58:01,110 [19] INFO - function SE637303570811062927() {} SE637303570811062927.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570811062927().executeScript(); 2020-07-14 20:58:01,110 [19] INFO - Information: 0 : 2020-07-14 20:58:01,110 [19] INFO - function SE637303570811062927() {} SE637303570811062927.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n
  • "); context.write( p.name ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570811062927().executeScript(); 2020-07-14 20:58:01,110 [19] INFO - --------- 2020-07-14 20:58:01,110 [19] INFO - Information: 0 : 2020-07-14 20:58:01,110 [19] INFO - --------- 2020-07-14 20:58:01,110 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1849. 2020-07-14 20:58:01,110 [19] INFO - Information: 0 : 2020-07-14 20:58:01,111 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1849. 2020-07-14 20:58:01,111 [19] INFO - --------- 2020-07-14 20:58:01,111 [19] INFO - Information: 0 : 2020-07-14 20:58:01,111 [19] INFO - --------- 2020-07-14 20:58:01,111 [19] INFO - [system.partial] „item-hauptmenu.html“ 4 ms „[0, 491]','[1, 1]“ 2020-07-14 20:58:01,111 [19] INFO - Information: 0 : 2020-07-14 20:58:01,111 [19] INFO - [system.partial] „item-hauptmenu.html“ 4 ms „[0, 491]','[1, 1]“ 2020-07-14 20:58:01,111 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,111 [19] INFO - Information: 0 : 2020-07-14 20:58:01,112 [19] INFO - Finished executing the following script: 2020-07-14 20:58:01,112 [19] INFO - --------- 2020-07-14 20:58:01,112 [19] INFO - Information: 0 : 2020-07-14 20:58:01,112 [19] INFO - --------- 2020-07-14 20:58:01,112 [19] INFO - function SE637303570810532897() {} SE637303570810532897.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\hauptmenu.html'. var pageId = context.param(0, 0); var level = context.param(1, 1); var p = project.getPage(pageId); var childPages = isNull(p) ? page.projectFolder.pages : p.pages; if ( childPages.count<=0 || (!isNull(p) && !hasVisibleChildPages(p.id)) ) { return; } if ( !isNull(p) && p.level!=1 ) { return; } context.write("\r\n
      \r\n\r\n\r\n "); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n "); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n "); context.write( system.partial("item-hauptmenu-aktiv.html", p.id, 1) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-hauptmenu.html", p.id, 1) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n
    \r\n\r\n "); function hasActiveChildPage(pageId) { var p = project.getPage(pageId); var childPages = p.pages; for ( var i = 0; i < childPages.count; ++i ) { var childPage = childPages.item(i); if ( childPage.id === page.id || hasActiveChildPage(childPage.id) ) { return true; } } return false; } function hasVisibleChildPages(pageId) { var p = project.getPage(pageId); if ( !isNull(p) ) { var cps = p.pages; for ( var i = 0; i < cps.count; ++i ) { var cp = cps.item(i); if ( cp.visible && cp.active ) { return true; } } } return false; } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810532897().executeScript(); 2020-07-14 20:58:01,112 [19] INFO - Information: 0 : 2020-07-14 20:58:01,112 [19] INFO - function SE637303570810532897() {} SE637303570810532897.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\hauptmenu.html'. var pageId = context.param(0, 0); var level = context.param(1, 1); var p = project.getPage(pageId); var childPages = isNull(p) ? page.projectFolder.pages : p.pages; if ( childPages.count<=0 || (!isNull(p) && !hasVisibleChildPages(p.id)) ) { return; } if ( !isNull(p) && p.level!=1 ) { return; } context.write("\r\n
      \r\n\r\n\r\n "); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n "); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n "); context.write( system.partial("item-hauptmenu-aktiv.html", p.id, 1) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-hauptmenu.html", p.id, 1) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n
    \r\n\r\n "); function hasActiveChildPage(pageId) { var p = project.getPage(pageId); var childPages = p.pages; for ( var i = 0; i < childPages.count; ++i ) { var childPage = childPages.item(i); if ( childPage.id === page.id || hasActiveChildPage(childPage.id) ) { return true; } } return false; } function hasVisibleChildPages(pageId) { var p = project.getPage(pageId); if ( !isNull(p) ) { var cps = p.pages; for ( var i = 0; i < cps.count; ++i ) { var cp = cps.item(i); if ( cp.visible && cp.active ) { return true; } } } return false; } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\hauptmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570810532897().executeScript(); 2020-07-14 20:58:01,115 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,143 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,171 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,200 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,230 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,270 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,300 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,328 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,357 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,386 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,426 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,454 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,482 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,514 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,544 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,574 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,606 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,636 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,674 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,703 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,735 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,763 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,792 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,824 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,854 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,890 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,919 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,951 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,980 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,015 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,044 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,073 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,107 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,136 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,174 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,204 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,232 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,264 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,294 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,328 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:01,113 [19] INFO - --------- 2020-07-14 20:58:02,354 [19] INFO - Information: 0 : 2020-07-14 20:58:02,354 [19] INFO - --------- 2020-07-14 20:58:02,354 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1850. 2020-07-14 20:58:02,354 [19] INFO - Information: 0 : 2020-07-14 20:58:02,354 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1850. 2020-07-14 20:58:02,354 [19] INFO - --------- 2020-07-14 20:58:02,354 [19] INFO - Information: 0 : 2020-07-14 20:58:02,354 [19] INFO - --------- 2020-07-14 20:58:02,355 [19] INFO - [system.partial] „hauptmenu.html“ 1301 ms „“ 2020-07-14 20:58:02,355 [19] INFO - Information: 0 : 2020-07-14 20:58:02,355 [19] INFO - [system.partial] „hauptmenu.html“ 1301 ms „“ 2020-07-14 20:58:02,357 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,357 [19] INFO - Information: 0 : 2020-07-14 20:58:02,357 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,357 [19] INFO - --------- 2020-07-14 20:58:02,357 [19] INFO - Information: 0 : 2020-07-14 20:58:02,357 [19] INFO - --------- 2020-07-14 20:58:02,357 [19] INFO - function SE637303570823573642() {} SE637303570823573642.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-breadcrumb.html'. context.write(" \r\n\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-breadcrumb.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570823573642().executeScript(); 2020-07-14 20:58:02,358 [19] INFO - Information: 0 : 2020-07-14 20:58:02,358 [19] INFO - function SE637303570823573642() {} SE637303570823573642.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-breadcrumb.html'. context.write(" \r\n\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-breadcrumb.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570823573642().executeScript(); 2020-07-14 20:58:02,358 [19] INFO - --------- 2020-07-14 20:58:02,358 [19] INFO - Information: 0 : 2020-07-14 20:58:02,358 [19] INFO - --------- 2020-07-14 20:58:02,359 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,359 [19] INFO - Information: 0 : 2020-07-14 20:58:02,359 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,360 [19] INFO - --------- 2020-07-14 20:58:02,360 [19] INFO - Information: 0 : 2020-07-14 20:58:02,360 [19] INFO - --------- 2020-07-14 20:58:02,360 [19] INFO - function SE637303570823573642() {} SE637303570823573642.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-breadcrumb.html'. context.write(" \r\n\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-breadcrumb.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570823573642().executeScript(); 2020-07-14 20:58:02,360 [19] INFO - Information: 0 : 2020-07-14 20:58:02,360 [19] INFO - function SE637303570823573642() {} SE637303570823573642.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-breadcrumb.html'. context.write(" \r\n\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-breadcrumb.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570823573642().executeScript(); 2020-07-14 20:58:02,360 [19] INFO - --------- 2020-07-14 20:58:02,360 [19] INFO - Information: 0 : 2020-07-14 20:58:02,360 [19] INFO - --------- 2020-07-14 20:58:02,360 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1851. 2020-07-14 20:58:02,361 [19] INFO - Information: 0 : 2020-07-14 20:58:02,361 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1851. 2020-07-14 20:58:02,361 [19] INFO - --------- 2020-07-14 20:58:02,361 [19] INFO - Information: 0 : 2020-07-14 20:58:02,361 [19] INFO - --------- 2020-07-14 20:58:02,361 [19] INFO - [system.partial] „inline-editing-breadcrumb.html“ 5 ms „“ 2020-07-14 20:58:02,361 [19] INFO - Information: 0 : 2020-07-14 20:58:02,361 [19] INFO - [system.partial] „inline-editing-breadcrumb.html“ 5 ms „“ 2020-07-14 20:58:02,362 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,362 [19] INFO - Information: 0 : 2020-07-14 20:58:02,362 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,362 [19] INFO - --------- 2020-07-14 20:58:02,362 [19] INFO - Information: 0 : 2020-07-14 20:58:02,362 [19] INFO - --------- 2020-07-14 20:58:02,363 [19] INFO - function SE637303570823623645() {} SE637303570823623645.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\breadcrumbs.html'. var breadcrumb = context.param(0, ""); var breadcrumb_separator = context.param(1, ""); var pageId = page.id; var parentPage = page; var pagesArray = []; var startpage = projectFolder.startPage; // walk the page-tree upwards and store ids of pages which are visible in navigation while ( pageId !== 0 ){ if ( parentPage.type=="projectFolder" ){ break; // A project folder is currently always the top element in the page hierarchy chain, so it is safe to break here since no further pages can exist } else if ( parentPage.visible || parentPage.id == page.id ){ // add the current page (ignoring visibility) and all visible paren pages to the pagesArray pagesArray.unshift(parentPage.id); } var p = project.getPage(pageId); pageId = p.parentPageId; parentPage = project.getPage(pageId); } if ( pagesArray.length > 0 ){ context.write("\r\n\t"); context.write( breadcrumb ); context.write("\r\n\t
      \r\n\t"); } // if startPage isn't the displayed page already and is visible, // prefix the breadcrumbs with a link to it if ( startpage && startpage.visible && page.id !== startpage.id ){ context.write("\r\n\t
    1. \r\n\t\t"); context.write( startpage.name ); context.write("\r\n\t\t"); context.write( breadcrumb_separator ); context.write("\r\n\t
    2. \r\n\t"); } for ( var i = 0; i < pagesArray.length; ++i){ parentPage = project.getPage(pagesArray[i]); if ( i < pagesArray.length - 1 || (i == pagesArray.length-1 && page.id !== pagesArray[i]) ){ if ( parentPage.visible && !(startpage && parentPage.id == startpage.id) ){ context.write("\r\n\t\t
    3. \r\n\t\t\t"); context.write( parentPage.name ); context.write("\r\n\t\t\t"); if ( i < pagesArray.length - 1 ){ context.write("\r\n\t\t\t\t"); context.write( breadcrumb_separator ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t
    4. \r\n\t\t"); } } else{ context.write("\r\n\t\t
    5. \r\n\t\t\t"); context.write( parentPage.name ); context.write("\r\n\t\t
    6. \r\n\t\t"); } } if ( pagesArray.length > 0 ){ context.write("
    "); } context.write("\r\n\t\t\t\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\breadcrumbs.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570823623645().executeScript(); 2020-07-14 20:58:02,363 [19] INFO - Information: 0 : 2020-07-14 20:58:02,363 [19] INFO - function SE637303570823623645() {} SE637303570823623645.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\breadcrumbs.html'. var breadcrumb = context.param(0, ""); var breadcrumb_separator = context.param(1, ""); var pageId = page.id; var parentPage = page; var pagesArray = []; var startpage = projectFolder.startPage; // walk the page-tree upwards and store ids of pages which are visible in navigation while ( pageId !== 0 ){ if ( parentPage.type=="projectFolder" ){ break; // A project folder is currently always the top element in the page hierarchy chain, so it is safe to break here since no further pages can exist } else if ( parentPage.visible || parentPage.id == page.id ){ // add the current page (ignoring visibility) and all visible paren pages to the pagesArray pagesArray.unshift(parentPage.id); } var p = project.getPage(pageId); pageId = p.parentPageId; parentPage = project.getPage(pageId); } if ( pagesArray.length > 0 ){ context.write("\r\n\t"); context.write( breadcrumb ); context.write("\r\n\t
      \r\n\t"); } // if startPage isn't the displayed page already and is visible, // prefix the breadcrumbs with a link to it if ( startpage && startpage.visible && page.id !== startpage.id ){ context.write("\r\n\t
    1. \r\n\t\t"); context.write( startpage.name ); context.write("\r\n\t\t"); context.write( breadcrumb_separator ); context.write("\r\n\t
    2. \r\n\t"); } for ( var i = 0; i < pagesArray.length; ++i){ parentPage = project.getPage(pagesArray[i]); if ( i < pagesArray.length - 1 || (i == pagesArray.length-1 && page.id !== pagesArray[i]) ){ if ( parentPage.visible && !(startpage && parentPage.id == startpage.id) ){ context.write("\r\n\t\t
    3. \r\n\t\t\t"); context.write( parentPage.name ); context.write("\r\n\t\t\t"); if ( i < pagesArray.length - 1 ){ context.write("\r\n\t\t\t\t"); context.write( breadcrumb_separator ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t
    4. \r\n\t\t"); } } else{ context.write("\r\n\t\t
    5. \r\n\t\t\t"); context.write( parentPage.name ); context.write("\r\n\t\t
    6. \r\n\t\t"); } } if ( pagesArray.length > 0 ){ context.write("
    "); } context.write("\r\n\t\t\t\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\breadcrumbs.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570823623645().executeScript(); 2020-07-14 20:58:02,363 [19] INFO - --------- 2020-07-14 20:58:02,363 [19] INFO - Information: 0 : 2020-07-14 20:58:02,363 [19] INFO - --------- 2020-07-14 20:58:02,369 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,369 [19] INFO - Information: 0 : 2020-07-14 20:58:02,369 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,369 [19] INFO - --------- 2020-07-14 20:58:02,369 [19] INFO - Information: 0 : 2020-07-14 20:58:02,369 [19] INFO - --------- 2020-07-14 20:58:02,369 [19] INFO - function SE637303570823623645() {} SE637303570823623645.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\breadcrumbs.html'. var breadcrumb = context.param(0, ""); var breadcrumb_separator = context.param(1, ""); var pageId = page.id; var parentPage = page; var pagesArray = []; var startpage = projectFolder.startPage; // walk the page-tree upwards and store ids of pages which are visible in navigation while ( pageId !== 0 ){ if ( parentPage.type=="projectFolder" ){ break; // A project folder is currently always the top element in the page hierarchy chain, so it is safe to break here since no further pages can exist } else if ( parentPage.visible || parentPage.id == page.id ){ // add the current page (ignoring visibility) and all visible paren pages to the pagesArray pagesArray.unshift(parentPage.id); } var p = project.getPage(pageId); pageId = p.parentPageId; parentPage = project.getPage(pageId); } if ( pagesArray.length > 0 ){ context.write("\r\n\t"); context.write( breadcrumb ); context.write("\r\n\t
      \r\n\t"); } // if startPage isn't the displayed page already and is visible, // prefix the breadcrumbs with a link to it if ( startpage && startpage.visible && page.id !== startpage.id ){ context.write("\r\n\t
    1. \r\n\t\t"); context.write( startpage.name ); context.write("\r\n\t\t"); context.write( breadcrumb_separator ); context.write("\r\n\t
    2. \r\n\t"); } for ( var i = 0; i < pagesArray.length; ++i){ parentPage = project.getPage(pagesArray[i]); if ( i < pagesArray.length - 1 || (i == pagesArray.length-1 && page.id !== pagesArray[i]) ){ if ( parentPage.visible && !(startpage && parentPage.id == startpage.id) ){ context.write("\r\n\t\t
    3. \r\n\t\t\t"); context.write( parentPage.name ); context.write("\r\n\t\t\t"); if ( i < pagesArray.length - 1 ){ context.write("\r\n\t\t\t\t"); context.write( breadcrumb_separator ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t
    4. \r\n\t\t"); } } else{ context.write("\r\n\t\t
    5. \r\n\t\t\t"); context.write( parentPage.name ); context.write("\r\n\t\t
    6. \r\n\t\t"); } } if ( pagesArray.length > 0 ){ context.write("
    "); } context.write("\r\n\t\t\t\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\breadcrumbs.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570823623645().executeScript(); 2020-07-14 20:58:02,370 [19] INFO - Information: 0 : 2020-07-14 20:58:02,370 [19] INFO - function SE637303570823623645() {} SE637303570823623645.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\breadcrumbs.html'. var breadcrumb = context.param(0, ""); var breadcrumb_separator = context.param(1, ""); var pageId = page.id; var parentPage = page; var pagesArray = []; var startpage = projectFolder.startPage; // walk the page-tree upwards and store ids of pages which are visible in navigation while ( pageId !== 0 ){ if ( parentPage.type=="projectFolder" ){ break; // A project folder is currently always the top element in the page hierarchy chain, so it is safe to break here since no further pages can exist } else if ( parentPage.visible || parentPage.id == page.id ){ // add the current page (ignoring visibility) and all visible paren pages to the pagesArray pagesArray.unshift(parentPage.id); } var p = project.getPage(pageId); pageId = p.parentPageId; parentPage = project.getPage(pageId); } if ( pagesArray.length > 0 ){ context.write("\r\n\t"); context.write( breadcrumb ); context.write("\r\n\t
      \r\n\t"); } // if startPage isn't the displayed page already and is visible, // prefix the breadcrumbs with a link to it if ( startpage && startpage.visible && page.id !== startpage.id ){ context.write("\r\n\t
    1. \r\n\t\t"); context.write( startpage.name ); context.write("\r\n\t\t"); context.write( breadcrumb_separator ); context.write("\r\n\t
    2. \r\n\t"); } for ( var i = 0; i < pagesArray.length; ++i){ parentPage = project.getPage(pagesArray[i]); if ( i < pagesArray.length - 1 || (i == pagesArray.length-1 && page.id !== pagesArray[i]) ){ if ( parentPage.visible && !(startpage && parentPage.id == startpage.id) ){ context.write("\r\n\t\t
    3. \r\n\t\t\t"); context.write( parentPage.name ); context.write("\r\n\t\t\t"); if ( i < pagesArray.length - 1 ){ context.write("\r\n\t\t\t\t"); context.write( breadcrumb_separator ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t
    4. \r\n\t\t"); } } else{ context.write("\r\n\t\t
    5. \r\n\t\t\t"); context.write( parentPage.name ); context.write("\r\n\t\t
    6. \r\n\t\t"); } } if ( pagesArray.length > 0 ){ context.write("
    "); } context.write("\r\n\t\t\t\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\breadcrumbs.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570823623645().executeScript(); 2020-07-14 20:58:02,370 [19] INFO - --------- 2020-07-14 20:58:02,370 [19] INFO - Information: 0 : 2020-07-14 20:58:02,370 [19] INFO - --------- 2020-07-14 20:58:02,370 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1852. 2020-07-14 20:58:02,370 [19] INFO - Information: 0 : 2020-07-14 20:58:02,370 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1852. 2020-07-14 20:58:02,371 [19] INFO - --------- 2020-07-14 20:58:02,371 [19] INFO - Information: 0 : 2020-07-14 20:58:02,371 [19] INFO - --------- 2020-07-14 20:58:02,371 [19] INFO - [system.partial] „breadcrumbs.html“ 9 ms „[0, Ihr seid hier: ]','[1, /]“ 2020-07-14 20:58:02,371 [19] INFO - Information: 0 : 2020-07-14 20:58:02,371 [19] INFO - [system.partial] „breadcrumbs.html“ 9 ms „[0, Ihr seid hier: ]','[1, /]“ 2020-07-14 20:58:02,372 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,372 [19] INFO - Information: 0 : 2020-07-14 20:58:02,372 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,373 [19] INFO - --------- 2020-07-14 20:58:02,373 [19] INFO - Information: 0 : 2020-07-14 20:58:02,373 [19] INFO - --------- 2020-07-14 20:58:02,373 [19] INFO - function SE637303570823723651() {} SE637303570823723651.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\area.html'. var areaName = context.param(0, "Standard"); var areaNameLc = areaName.toLowerCase(); var maxColumns = context.param(1, "0"); var cssRowClass = context.param(2, ""); var displayNumColumns = context.param(3, "12"); // number of columns to display. We always calculate with 12, but can display less var cssAreaClass = context.param(4, ""); var noBreakoutWithNews = context.param(5, true); var hideIeForArea = context.param(6, false); var canContainer = project.canContainer; var showEmptyArticleAreas = (system.preview && system.showEmptyPreviewAreas); var hasNews = page.hasArea("News") && (page.anyAreaArticles("News") || showEmptyArticleAreas); var hasNonSymlinkContainer = false; var lastContainerIsSymlink = false; if ( maxColumns == "1" ){ if ( cssRowClass == "" || cssRowClass == "noresize" ){ cssRowClass = "noresize"; } else{ cssRowClass += " noresize"; } } var intPreviewData = ''; if ( system.preview ){ // if internal preview, we add some additional data-attributes to the area // for access in JS (non internal scripting) intPreviewData += ' data-showemptyarticleareas="' + showEmptyArticleAreas + '"'; } context.write("\n\n
    \n\t"); var containers = page.containers(areaName); var firstC = 0; var lastC = containers.count-1; //system.log("last: " + lastC + " of " + containers.count); if ( lastC > firstC && !containers.item(lastC).hasArticles ){ // last container has no articles and is not rendered, so find last visible one for ( var ilcon = lastC; ilcon > 1; --ilcon ){ var lastContainer = containers.item(ilcon); if ( lastContainer.hasArticles ){ lastC = ilcon; break; } } } for ( var icon = 0; icon < containers.count; ++icon ){ var container = containers.item(icon); // if current container doesn't contain any articles, we skip this loop // we do not skip when on impressum page and the container ist the last one, as we need to insert freeware content if ( !container.hasArticles && !(icon == containers.count-1 && page.isSpecialPage("legal")) ){ firstC++; continue; } // append container styles to head via css var cid = container.id; var output = ""; var isSection = container.value("issection") == "1"; var isStyled = false; if ( container.value("fontcolor", "") !== "" && container.value("fontcolor") !== "transparent" ){ var cssSelector = "#container_" + cid; output = cssSelector; output += ", " + cssSelector + " p"; output += ", " + cssSelector + " h1"; output += ", " + cssSelector + " h2"; output += ", " + cssSelector + " h3{"; output += "color: " + container.value("fontcolor") + ";"; output += "}\n"; } if ( container.value("linkcolor", "") !== "" && container.value("linkcolor") !== "transparent" ){ var cssSelector = "#container_" + cid; output += "\n\n" + cssSelector + " a:not(.button):not(.fancybox):not(.zpSO-Uplink-Flat):not(.zpnolayoutlinkstyles)"; output += ", " + cssSelector + " a:not(.button):not(.fancybox):not(.zpSO-Uplink-Flat):not(.zpnolayoutlinkstyles):hover{"; output += "color: " + container.value("linkcolor") + ";"; output += "}\n"; } if ( container.value("margin", "") !== "" ){ var cssSelector = "#container_" + cid; output += cssSelector + "{"; if ( container.value("margin-top") ){ output += "margin-top: " + container.value("margin-top") + " !important;"; } if ( container.value("margin-bottom") ){ output += "margin-bottom: " + container.value("margin-bottom") + " !important;" ; } output += "}\n"; } if ( container.value("padding", "") !== "" ){ var cssSelector = "#container_" + cid; output += cssSelector + "{"; if ( container.value("padding-top") ){ output += "padding-top: " + container.value("padding-top") + " !important;"; } if ( container.value("padding-bottom") ){ output += "padding-bottom: " + container.value("padding-bottom") + " !important;"; } if ( container.value("padding-left") ){ output += "padding-left: " + container.value("padding-left") + " !important;"; } if ( container.value("padding-right") ){ output += "padding-right: " + container.value("padding-right") + " !important;"; } output += "}\n"; } if ( container.value("bgcolor", "") !== "" && container.value("bgcolor", "") !== "transparent" ){ isStyled = true; var cssSelector = "#container_" + cid; output += cssSelector + "{"; output += "background-color: " + container.value("bgcolor") + " !important;"; output += "}\n"; } var image = container.cssBackgroundImage("bgimage"); if ( image.imageUrl ){ isStyled = true; var cssSelector = "#container_" + cid; output += cssSelector + "{"; output += "background-image: url(" + image.imageUrl + ") !important;"; output += "background-repeat: " + image.repeat + " !important;"; output += "background-size: " + image.size + " !important;"; output += "background-position: " + (image.position !== "" ? image.position : "center center") + " !important;"; output += "background-attachment: " + (image.attachment !== "" ? image.attachment : "scroll") + ";"; output += "}\n"; } if ( output !== "" ){ system.addHtmlHeadElement("\n" + output.replace(/^\s+|\s+$/gm,'') + "\n"); } var containerstyle = container.inlineCss || ""; containerstyle = containerstyle.toString().replace(/^\s+|\s+$/gm,''); // trim() // make sure the users inlineCss properly ends with a semicolon as we attach more styles later below if ( containerstyle && containerstyle.slice(-1) !== ";" ){ containerstyle += ";"; } var initialContainerstyle = containerstyle; containerstyle = containerstyle.replace(/^\s+|\s+$/gm,''); // trim() if ( containerstyle ){ containerstyle = ' style="' + containerstyle + '"'; } if ( noBreakoutWithNews && system.preview && container.value("breakout") == "1" && hasNews ){ system.warn("Die 'Randlos-Option' für einen Container kann nicht berücksichtigt werden, weil der 'Einfügen-Schalter' auf an steht oder die Seite auch Artikel im News-Bereich enthält."); } var containerTag = "div"; if ( isSection ){ containerTag = "section"; } var containerIsSymlink = container.symlink ? true : false; if ( !containerIsSymlink ){ hasNonSymlinkContainer = true; } else if ( icon == containers.count-1 ){ lastContainerIsSymlink = true; } context.write("\n\t\t\t<"); context.write( containerTag ); context.write(" id=\"container_"); context.write( container.id ); context.write("\" class=\"zpContainer"); if (icon==firstC){ context.write(" first"); } if (icon==lastC){ context.write(" last"); } if( container.value("animate", "") !== "" && container.value("animate") !== "off" ){ context.write(" zpanimate "); context.write( container.value("animate")); } if( isStyled ){ context.write(" styled"); } context.write(" "); if ( container.value("breakout") == "1" ){ context.write("zpBreakout "); } if( noBreakoutWithNews && hasNews ) { context.write(" hasNews"); } context.write(" "); context.write( container.cssClass ); context.write("\""); context.write( containerstyle ); context.write(" \n\t\t\t\t data-zpeleel=\"container\" data-zpleid=\""); context.write( container.id ); context.write("\">\n\t\t\t"); var paragraphs = container.paragraphs; for ( var ipar = 0; ipar < paragraphs.count; ++ipar ){ var additionalRowClass = ""; var paragraph = paragraphs.item(ipar); var columns = paragraph.columns; // if current paragraph doesn't contain articles, we skip the loop, so we don't print empty paragraphs // we do not skip when on impressum page and the container ist the last one, as we need to insert freeware content var articleCount = paragraph.articles.count; if ( articleCount < 1 && !(icon == containers.count-1 && page.isSpecialPage("legal")) ){ continue; } else if ( articleCount > 0 ){ // set special rowClass for Articles which are not visible, so we can remove any margins which might not be desired var firstWidgetName = paragraph.articles.item(0).widgetName; switch(firstWidgetName) { case "Info-Banner": additionalRowClass = " alertbanner"; break; case "Quelltext": additionalRowClass = " quelltext"; break; case "Slider": additionalRowClass = " zpwSlider"; break; case "Carousel": additionalRowClass = " zpwCarousel"; break; case "Navigationsmenü": if ( paragraph.articles.item(0).value("menufixed") ){ additionalRowClass = " zpwNavmenu zpwNavmenuFixed"; } else{ additionalRowClass = " zpwNavmenu"; } break; case "Navigationsmenü manuell": if ( paragraph.articles.item(0).value("menufixed") ){ additionalRowClass = " zpwNavmenu zpwNavmenuFixed"; } else{ additionalRowClass = " zpwNavmenu"; } break; case "Video-Hintergrund": additionalRowClass = " zpvideobg"; break; } // append row styles to head via css var rid = paragraph.id; var output = ""; if ( paragraph.value("margin", "") !== "" ){ var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]"; output += cssSelector + "{"; if ( paragraph.value("margin-top") ){ output += "margin-top: " + paragraph.value("margin-top", "initial") + " !important;"; } if ( paragraph.value("margin-bottom") ){ output += "margin-bottom: " + paragraph.value("margin-bottom", "initial") + " !important;" ; } output += "}\n"; } if ( paragraph.value("padding", "") !== "" ){ var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]"; output += cssSelector + "{"; if ( paragraph.value("padding-top") ){ output += "padding-top: " + paragraph.value("padding-top") + " !important;"; } if ( paragraph.value("padding-bottom") ){ output += "padding-bottom: " + paragraph.value("padding-bottom") + " !important;"; } if ( paragraph.value("padding-left") ){ output += "padding-left: " + paragraph.value("padding-left") + " !important;"; } if ( paragraph.value("padding-right") ){ output += "padding-right: " + paragraph.value("padding-right") + " !important;"; } output += "}\n"; } if ( paragraph.value("bgcolor", "") !== "" && paragraph.value("bgcolor", "") !== "transparent" ){ var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]"; output += cssSelector + "{"; output += "background-color: " + paragraph.value("bgcolor") + " !important;"; output += "}\n"; } var pimage = paragraph.cssBackgroundImage("bgimage"); if ( pimage.imageUrl ){ var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]"; output += cssSelector + "{"; output += "background-image: url(" + pimage.imageUrl + ") !important;"; output += "background-repeat: " + pimage.repeat + " !important;"; output += "background-size: " + pimage.size + " !important;"; output += "background-position: " + (pimage.position !== "" ? pimage.position : "center center") + " !important;"; output += "background-attachment: " + (pimage.attachment !== "" ? pimage.attachment : "scroll") + ";"; output += "}\n"; } if ( paragraph.value("justifycontent", "") !== "" ){ var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]"; output += cssSelector + "{"; output += "justify-content: " + paragraph.value("justifycontent") + ";"; output += "}\n"; } if ( output !== "" ){ system.addHtmlHeadElement("\n" + output.replace(/^\s+|\s+$/gm,'') + "\n"); } // paragraph styles var rowstyle = paragraph.inlineCss || ""; rowstyle = rowstyle.toString().replace(/^\s+|\s+$/gm,''); // trim(); // make sure the users inlineCss properly ends with a semicolon as we attach more styles later below if ( rowstyle && rowstyle.slice(-1) !== ";" ){ rowstyle += ";"; } context.write("\n\t\t\n\t\t\t\t\t"); if ( paragraph.value("breakout") == "1" ){ context.write("\n\t\t\t\t\t\t
    \n\t\t\t\t\t"); rowstyle = " width: 100%; margin: 0 auto; float: none;"; } rowstyle.replace(/^\s+|\s+$/gm,''); // trim() if ( rowstyle ){ rowstyle = ' style="' + rowstyle + '"'; } } context.write("\n\t\t\t\t\t
    \n\t\t\t\t\t>\n\t\t\n\t\t\t\t\t"); var evenodd = "even"; for ( var icol = 0; icol < columns.count; ++icol ){ var column = columns.item(icol); var articles = column.articles; var coid = column.id; var output = ""; var isStyled = false; var selectorPrefix = "#container_" + cid + " "; if ( column.value("bgcolor", "") !== "" && column.value("bgcolor", "") !== "transparent" ){ var cssSelector = "div.zpRow .zpColumn[data-column-id='" + coid + "']"; output += cssSelector + "{"; output += "background-color: " + column.value("bgcolor") + ";"; output += "padding-top: 15px;"; output += "padding-bottom: 15px;"; output += "}\n"; isStyled = true; } if ( column.value("fontcolor", "") !== "" && column.value("fontcolor") !== "transparent" ){ var cssSelector = selectorPrefix + "div.zpRow .zpColumn[data-column-id='" + coid + "']"; output += cssSelector; output += ", " + cssSelector + " p"; output += ", " + cssSelector + " h1"; output += ", " + cssSelector + " h2"; output += ", " + cssSelector + " h3{"; output += "color: " + column.value("fontcolor") + ";"; output += "}\n"; } if ( column.value("linkcolor", "") !== "" && column.value("linkcolor") !== "transparent" ){ var cssSelector = selectorPrefix + "div.zpRow .zpColumn[data-column-id='" + coid + "']"; output += "\n\n" + cssSelector + " a:not(.button)"; output += ", " + cssSelector + " a:not(.button):hover{"; output += "color: " + column.value("linkcolor") + ";"; output += "}\n"; } if ( column.value("align-self", "") !== "" ){ var cssSelector = "div.zpRow .zpColumn[data-column-id='" + coid + "']"; output += cssSelector + "{"; output += "align-self: " + column.value("align-self") + ";"; output += "}\n"; } if ( output !== "" ){ system.addHtmlHeadElement("\n" + output.replace(/^\s+|\s+$/gm,'') + "\n"); } var clearCss = column.value("clearLeft") ? "clear: left;" : ""; if ( column.articles.count > 0 ){ var firstWidgetName = articles.item(0).widgetName; } else{ var firstWidgetName = ""; } // used in a className, alternate between even and odd, not taking into account zpSpacer-Columns if( firstWidgetName !== "Spacer" ){ if( evenodd === "even" ){ evenodd = "odd"; } else{ evenodd = "even"; } var additionalColumnClass = " " + evenodd; } else{ var additionalColumnClass = ""; } // if a spacer-widget is alone in a column, we set a class .zpSpacer, so we can set the width of spacer-widgets responsively in zpgrid.less accordingly if ( firstWidgetName == "Spacer" && column.articles.count < 2 ){ additionalColumnClass += " zpSpacer"; } else if ( firstWidgetName == "Navigationsmenü" ){ additionalColumnClass += " zpnavmenu"; } // TODO move adding of missing classes to converter and remove next 4 lines var columnCssClass = column.cssClass; if ( !column.cssClass || !column.cssClass.match(/\bc[1-9][0-2]?\b/) ){ columnCssClass = "c" + String(Math.round(12 / columns.count - 0.1)) ; } if ( column.value("clearLeft") ){ context.write("\n\t\t\t\t\t\t
    \n\t\t\t\t\t\t"); } context.write("\n\t\t\t\t\t\t
    \n\t\t\t\t\t\t>\n\t\t\t\n\t\t\t\t\t\t\t"); for ( var iart = 0; iart < articles.count; ++iart ){ var a = articles.item(iart); context.write(a.render()); } context.write("\n\t\t\t\n\t\t\t\t\t\t
    \n\t\t\t\n\t\t\t\t\t\t"); } // insert zp-ad-box in last row of last container on impressum pages if ( system.isFreeware && areaName.toLowerCase() == "standard" && page.isSpecialPage("legal") && icon == containers.count-1 && ipar == paragraphs.count-1 ){ context.write("\n\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t"); context.write( system.partial("zpinfolegal.html") ); context.write("\n\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t"); } context.write("\n\n\t\t\t\t\t
    \n\t\t\t\t"); if ( articleCount > 0 && paragraph.value("breakout") == "1" ){ context.write("\n\t\t\t\t
    \n\t\t\t\t"); } context.write("\n\t\t\n\t\t\t\t"); } context.write(""); } context.write("\n\t"); if ( !hideIeForArea ) { context.write("\n\t\t\n\t"); } context.write("\n
    \n\n"); // insert overlay on startpage if ( !system.preview && system.isFreeware && areaName.toLowerCase() == "standard" && projectFolder.startPage && projectFolder.startPage.id == page.id ){ context.write("\n\t\t"); context.write( system.partial("zpinfooverlay.html") ); context.write("\n\t\t"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\area.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570823723651().executeScript(); 2020-07-14 20:58:02,374 [19] INFO - Information: 0 : 2020-07-14 20:58:02,374 [19] INFO - function SE637303570823723651() {} SE637303570823723651.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\area.html'. var areaName = context.param(0, "Standard"); var areaNameLc = areaName.toLowerCase(); var maxColumns = context.param(1, "0"); var cssRowClass = context.param(2, ""); var displayNumColumns = context.param(3, "12"); // number of columns to display. We always calculate with 12, but can display less var cssAreaClass = context.param(4, ""); var noBreakoutWithNews = context.param(5, true); var hideIeForArea = context.param(6, false); var canContainer = project.canContainer; var showEmptyArticleAreas = (system.preview && system.showEmptyPreviewAreas); var hasNews = page.hasArea("News") && (page.anyAreaArticles("News") || showEmptyArticleAreas); var hasNonSymlinkContainer = false; var lastContainerIsSymlink = false; if ( maxColumns == "1" ){ if ( cssRowClass == "" || cssRowClass == "noresize" ){ cssRowClass = "noresize"; } else{ cssRowClass += " noresize"; } } var intPreviewData = ''; if ( system.preview ){ // if internal preview, we add some additional data-attributes to the area // for access in JS (non internal scripting) intPreviewData += ' data-showemptyarticleareas="' + showEmptyArticleAreas + '"'; } context.write("\n\n
    \n\t"); var containers = page.containers(areaName); var firstC = 0; var lastC = containers.count-1; //system.log("last: " + lastC + " of " + containers.count); if ( lastC > firstC && !containers.item(lastC).hasArticles ){ // last container has no articles and is not rendered, so find last visible one for ( var ilcon = lastC; ilcon > 1; --ilcon ){ var lastContainer = containers.item(ilcon); if ( lastContainer.hasArticles ){ lastC = ilcon; break; } } } for ( var icon = 0; icon < containers.count; ++icon ){ var container = containers.item(icon); // if current container doesn't contain any articles, we skip this loop // we do not skip when on impressum page and the container ist the last one, as we need to insert freeware content if ( !container.hasArticles && !(icon == containers.count-1 && page.isSpecialPage("legal")) ){ firstC++; continue; } // append container styles to head via css var cid = container.id; var output = ""; var isSection = container.value("issection") == "1"; var isStyled = false; if ( container.value("fontcolor", "") !== "" && container.value("fontcolor") !== "transparent" ){ var cssSelector = "#container_" + cid; output = cssSelector; output += ", " + cssSelector + " p"; output += ", " + cssSelector + " h1"; output += ", " + cssSelector + " h2"; output += ", " + cssSelector + " h3{"; output += "color: " + container.value("fontcolor") + ";"; output += "}\n"; } if ( container.value("linkcolor", "") !== "" && container.value("linkcolor") !== "transparent" ){ var cssSelector = "#container_" + cid; output += "\n\n" + cssSelector + " a:not(.button):not(.fancybox):not(.zpSO-Uplink-Flat):not(.zpnolayoutlinkstyles)"; output += ", " + cssSelector + " a:not(.button):not(.fancybox):not(.zpSO-Uplink-Flat):not(.zpnolayoutlinkstyles):hover{"; output += "color: " + container.value("linkcolor") + ";"; output += "}\n"; } if ( container.value("margin", "") !== "" ){ var cssSelector = "#container_" + cid; output += cssSelector + "{"; if ( container.value("margin-top") ){ output += "margin-top: " + container.value("margin-top") + " !important;"; } if ( container.value("margin-bottom") ){ output += "margin-bottom: " + container.value("margin-bottom") + " !important;" ; } output += "}\n"; } if ( container.value("padding", "") !== "" ){ var cssSelector = "#container_" + cid; output += cssSelector + "{"; if ( container.value("padding-top") ){ output += "padding-top: " + container.value("padding-top") + " !important;"; } if ( container.value("padding-bottom") ){ output += "padding-bottom: " + container.value("padding-bottom") + " !important;"; } if ( container.value("padding-left") ){ output += "padding-left: " + container.value("padding-left") + " !important;"; } if ( container.value("padding-right") ){ output += "padding-right: " + container.value("padding-right") + " !important;"; } output += "}\n"; } if ( container.value("bgcolor", "") !== "" && container.value("bgcolor", "") !== "transparent" ){ isStyled = true; var cssSelector = "#container_" + cid; output += cssSelector + "{"; output += "background-color: " + container.value("bgcolor") + " !important;"; output += "}\n"; } var image = container.cssBackgroundImage("bgimage"); if ( image.imageUrl ){ isStyled = true; var cssSelector = "#container_" + cid; output += cssSelector + "{"; output += "background-image: url(" + image.imageUrl + ") !important;"; output += "background-repeat: " + image.repeat + " !important;"; output += "background-size: " + image.size + " !important;"; output += "background-position: " + (image.position !== "" ? image.position : "center center") + " !important;"; output += "background-attachment: " + (image.attachment !== "" ? image.attachment : "scroll") + ";"; output += "}\n"; } if ( output !== "" ){ system.addHtmlHeadElement("\n" + output.replace(/^\s+|\s+$/gm,'') + "\n"); } var containerstyle = container.inlineCss || ""; containerstyle = containerstyle.toString().replace(/^\s+|\s+$/gm,''); // trim() // make sure the users inlineCss properly ends with a semicolon as we attach more styles later below if ( containerstyle && containerstyle.slice(-1) !== ";" ){ containerstyle += ";"; } var initialContainerstyle = containerstyle; containerstyle = containerstyle.replace(/^\s+|\s+$/gm,''); // trim() if ( containerstyle ){ containerstyle = ' style="' + containerstyle + '"'; } if ( noBreakoutWithNews && system.preview && container.value("breakout") == "1" && hasNews ){ system.warn("Die 'Randlos-Option' für einen Container kann nicht berücksichtigt werden, weil der 'Einfügen-Schalter' auf an steht oder die Seite auch Artikel im News-Bereich enthält."); } var containerTag = "div"; if ( isSection ){ containerTag = "section"; } var containerIsSymlink = container.symlink ? true : false; if ( !containerIsSymlink ){ hasNonSymlinkContainer = true; } else if ( icon == containers.count-1 ){ lastContainerIsSymlink = true; } context.write("\n\t\t\t<"); context.write( containerTag ); context.write(" id=\"container_"); context.write( container.id ); context.write("\" class=\"zpContainer"); if (icon==firstC){ context.write(" first"); } if (icon==lastC){ context.write(" last"); } if( container.value("animate", "") !== "" && container.value("animate") !== "off" ){ context.write(" zpanimate "); context.write( container.value("animate")); } if( isStyled ){ context.write(" styled"); } context.write(" "); if ( container.value("breakout") == "1" ){ context.write("zpBreakout "); } if( noBreakoutWithNews && hasNews ) { context.write(" hasNews"); } context.write(" "); context.write( container.cssClass ); context.write("\""); context.write( containerstyle ); context.write(" \n\t\t\t\t data-zpeleel=\"container\" data-zpleid=\""); context.write( container.id ); context.write("\">\n\t\t\t"); var paragraphs = container.paragraphs; for ( var ipar = 0; ipar < paragraphs.count; ++ipar ){ var additionalRowClass = ""; var paragraph = paragraphs.item(ipar); var columns = paragraph.columns; // if current paragraph doesn't contain articles, we skip the loop, so we don't print empty paragraphs // we do not skip when on impressum page and the container ist the last one, as we need to insert freeware content var articleCount = paragraph.articles.count; if ( articleCount < 1 && !(icon == containers.count-1 && page.isSpecialPage("legal")) ){ continue; } else if ( articleCount > 0 ){ // set special rowClass for Articles which are not visible, so we can remove any margins which might not be desired var firstWidgetName = paragraph.articles.item(0).widgetName; switch(firstWidgetName) { case "Info-Banner": additionalRowClass = " alertbanner"; break; case "Quelltext": additionalRowClass = " quelltext"; break; case "Slider": additionalRowClass = " zpwSlider"; break; case "Carousel": additionalRowClass = " zpwCarousel"; break; case "Navigationsmenü": if ( paragraph.articles.item(0).value("menufixed") ){ additionalRowClass = " zpwNavmenu zpwNavmenuFixed"; } else{ additionalRowClass = " zpwNavmenu"; } break; case "Navigationsmenü manuell": if ( paragraph.articles.item(0).value("menufixed") ){ additionalRowClass = " zpwNavmenu zpwNavmenuFixed"; } else{ additionalRowClass = " zpwNavmenu"; } break; case "Video-Hintergrund": additionalRowClass = " zpvideobg"; break; } // append row styles to head via css var rid = paragraph.id; var output = ""; if ( paragraph.value("margin", "") !== "" ){ var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]"; output += cssSelector + "{"; if ( paragraph.value("margin-top") ){ output += "margin-top: " + paragraph.value("margin-top", "initial") + " !important;"; } if ( paragraph.value("margin-bottom") ){ output += "margin-bottom: " + paragraph.value("margin-bottom", "initial") + " !important;" ; } output += "}\n"; } if ( paragraph.value("padding", "") !== "" ){ var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]"; output += cssSelector + "{"; if ( paragraph.value("padding-top") ){ output += "padding-top: " + paragraph.value("padding-top") + " !important;"; } if ( paragraph.value("padding-bottom") ){ output += "padding-bottom: " + paragraph.value("padding-bottom") + " !important;"; } if ( paragraph.value("padding-left") ){ output += "padding-left: " + paragraph.value("padding-left") + " !important;"; } if ( paragraph.value("padding-right") ){ output += "padding-right: " + paragraph.value("padding-right") + " !important;"; } output += "}\n"; } if ( paragraph.value("bgcolor", "") !== "" && paragraph.value("bgcolor", "") !== "transparent" ){ var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]"; output += cssSelector + "{"; output += "background-color: " + paragraph.value("bgcolor") + " !important;"; output += "}\n"; } var pimage = paragraph.cssBackgroundImage("bgimage"); if ( pimage.imageUrl ){ var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]"; output += cssSelector + "{"; output += "background-image: url(" + pimage.imageUrl + ") !important;"; output += "background-repeat: " + pimage.repeat + " !important;"; output += "background-size: " + pimage.size + " !important;"; output += "background-position: " + (pimage.position !== "" ? pimage.position : "center center") + " !important;"; output += "background-attachment: " + (pimage.attachment !== "" ? pimage.attachment : "scroll") + ";"; output += "}\n"; } if ( paragraph.value("justifycontent", "") !== "" ){ var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]"; output += cssSelector + "{"; output += "justify-content: " + paragraph.value("justifycontent") + ";"; output += "}\n"; } if ( output !== "" ){ system.addHtmlHeadElement("\n" + output.replace(/^\s+|\s+$/gm,'') + "\n"); } // paragraph styles var rowstyle = paragraph.inlineCss || ""; rowstyle = rowstyle.toString().replace(/^\s+|\s+$/gm,''); // trim(); // make sure the users inlineCss properly ends with a semicolon as we attach more styles later below if ( rowstyle && rowstyle.slice(-1) !== ";" ){ rowstyle += ";"; } context.write("\n\t\t\n\t\t\t\t\t"); if ( paragraph.value("breakout") == "1" ){ context.write("\n\t\t\t\t\t\t
    \n\t\t\t\t\t"); rowstyle = " width: 100%; margin: 0 auto; float: none;"; } rowstyle.replace(/^\s+|\s+$/gm,''); // trim() if ( rowstyle ){ rowstyle = ' style="' + rowstyle + '"'; } } context.write("\n\t\t\t\t\t
    \n\t\t\t\t\t>\n\t\t\n\t\t\t\t\t"); var evenodd = "even"; for ( var icol = 0; icol < columns.count; ++icol ){ var column = columns.item(icol); var articles = column.articles; var coid = column.id; var output = ""; var isStyled = false; var selectorPrefix = "#container_" + cid + " "; if ( column.value("bgcolor", "") !== "" && column.value("bgcolor", "") !== "transparent" ){ var cssSelector = "div.zpRow .zpColumn[data-column-id='" + coid + "']"; output += cssSelector + "{"; output += "background-color: " + column.value("bgcolor") + ";"; output += "padding-top: 15px;"; output += "padding-bottom: 15px;"; output += "}\n"; isStyled = true; } if ( column.value("fontcolor", "") !== "" && column.value("fontcolor") !== "transparent" ){ var cssSelector = selectorPrefix + "div.zpRow .zpColumn[data-column-id='" + coid + "']"; output += cssSelector; output += ", " + cssSelector + " p"; output += ", " + cssSelector + " h1"; output += ", " + cssSelector + " h2"; output += ", " + cssSelector + " h3{"; output += "color: " + column.value("fontcolor") + ";"; output += "}\n"; } if ( column.value("linkcolor", "") !== "" && column.value("linkcolor") !== "transparent" ){ var cssSelector = selectorPrefix + "div.zpRow .zpColumn[data-column-id='" + coid + "']"; output += "\n\n" + cssSelector + " a:not(.button)"; output += ", " + cssSelector + " a:not(.button):hover{"; output += "color: " + column.value("linkcolor") + ";"; output += "}\n"; } if ( column.value("align-self", "") !== "" ){ var cssSelector = "div.zpRow .zpColumn[data-column-id='" + coid + "']"; output += cssSelector + "{"; output += "align-self: " + column.value("align-self") + ";"; output += "}\n"; } if ( output !== "" ){ system.addHtmlHeadElement("\n" + output.replace(/^\s+|\s+$/gm,'') + "\n"); } var clearCss = column.value("clearLeft") ? "clear: left;" : ""; if ( column.articles.count > 0 ){ var firstWidgetName = articles.item(0).widgetName; } else{ var firstWidgetName = ""; } // used in a className, alternate between even and odd, not taking into account zpSpacer-Columns if( firstWidgetName !== "Spacer" ){ if( evenodd === "even" ){ evenodd = "odd"; } else{ evenodd = "even"; } var additionalColumnClass = " " + evenodd; } else{ var additionalColumnClass = ""; } // if a spacer-widget is alone in a column, we set a class .zpSpacer, so we can set the width of spacer-widgets responsively in zpgrid.less accordingly if ( firstWidgetName == "Spacer" && column.articles.count < 2 ){ additionalColumnClass += " zpSpacer"; } else if ( firstWidgetName == "Navigationsmenü" ){ additionalColumnClass += " zpnavmenu"; } // TODO move adding of missing classes to converter and remove next 4 lines var columnCssClass = column.cssClass; if ( !column.cssClass || !column.cssClass.match(/\bc[1-9][0-2]?\b/) ){ columnCssClass = "c" + String(Math.round(12 / columns.count - 0.1)) ; } if ( column.value("clearLeft") ){ context.write("\n\t\t\t\t\t\t
    \n\t\t\t\t\t\t"); } context.write("\n\t\t\t\t\t\t
    \n\t\t\t\t\t\t>\n\t\t\t\n\t\t\t\t\t\t\t"); for ( var iart = 0; iart < articles.count; ++iart ){ var a = articles.item(iart); context.write(a.render()); } context.write("\n\t\t\t\n\t\t\t\t\t\t
    \n\t\t\t\n\t\t\t\t\t\t"); } // insert zp-ad-box in last row of last container on impressum pages if ( system.isFreeware && areaName.toLowerCase() == "standard" && page.isSpecialPage("legal") && icon == containers.count-1 && ipar == paragraphs.count-1 ){ context.write("\n\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t"); context.write( system.partial("zpinfolegal.html") ); context.write("\n\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t"); } context.write("\n\n\t\t\t\t\t
    \n\t\t\t\t"); if ( articleCount > 0 && paragraph.value("breakout") == "1" ){ context.write("\n\t\t\t\t
    \n\t\t\t\t"); } context.write("\n\t\t\n\t\t\t\t"); } context.write(""); } context.write("\n\t"); if ( !hideIeForArea ) { context.write("\n\t\t\n\t"); } context.write("\n
    \n\n"); // insert overlay on startpage if ( !system.preview && system.isFreeware && areaName.toLowerCase() == "standard" && projectFolder.startPage && projectFolder.startPage.id == page.id ){ context.write("\n\t\t"); context.write( system.partial("zpinfooverlay.html") ); context.write("\n\t\t"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\area.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570823723651().executeScript(); 2020-07-14 20:58:02,375 [19] INFO - --------- 2020-07-14 20:58:02,375 [19] INFO - Information: 0 : 2020-07-14 20:58:02,375 [19] INFO - --------- 2020-07-14 20:58:02,388 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,417 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,455 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,459 [19] INFO - Information: 0 : 2020-07-14 20:58:02,459 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,461 [19] INFO - Information: 0 : 2020-07-14 20:58:02,461 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,461 [19] INFO - Information: 0 : 2020-07-14 20:58:02,461 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,462 [19] INFO - Information: 0 : 2020-07-14 20:58:02,462 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,472 [19] INFO - Information: 0 : 2020-07-14 20:58:02,472 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,472 [19] INFO - Information: 0 : 2020-07-14 20:58:02,472 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,479 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,487 [19] INFO - Information: 0 : 2020-07-14 20:58:02,487 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,489 [19] INFO - Information: 0 : 2020-07-14 20:58:02,489 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,489 [19] INFO - Information: 0 : 2020-07-14 20:58:02,489 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,490 [19] INFO - Information: 0 : 2020-07-14 20:58:02,490 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,494 [19] INFO - Information: 0 : 2020-07-14 20:58:02,494 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,494 [19] INFO - Information: 0 : 2020-07-14 20:58:02,494 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,498 [19] INFO - Information: 0 : 2020-07-14 20:58:02,499 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,501 [19] INFO - Information: 0 : 2020-07-14 20:58:02,501 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,501 [19] INFO - Information: 0 : 2020-07-14 20:58:02,502 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,502 [19] INFO - Information: 0 : 2020-07-14 20:58:02,502 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,504 [19] INFO - Information: 0 : 2020-07-14 20:58:02,504 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,504 [19] INFO - Information: 0 : 2020-07-14 20:58:02,505 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,505 [19] INFO - Information: 0 : 2020-07-14 20:58:02,506 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,507 [19] INFO - Information: 0 : 2020-07-14 20:58:02,507 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,507 [19] INFO - Information: 0 : 2020-07-14 20:58:02,507 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,511 [19] INFO - Information: 0 : 2020-07-14 20:58:02,511 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,514 [19] INFO - Information: 0 : 2020-07-14 20:58:02,514 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,514 [19] INFO - Information: 0 : 2020-07-14 20:58:02,514 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,515 [19] INFO - Information: 0 : 2020-07-14 20:58:02,515 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,516 [19] INFO - Information: 0 : 2020-07-14 20:58:02,516 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,516 [19] INFO - Information: 0 : 2020-07-14 20:58:02,516 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,517 [19] INFO - Information: 0 : 2020-07-14 20:58:02,517 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,519 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,520 [19] INFO - Information: 0 : 2020-07-14 20:58:02,520 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,521 [19] INFO - Information: 0 : 2020-07-14 20:58:02,521 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,521 [19] INFO - Information: 0 : 2020-07-14 20:58:02,521 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,523 [19] INFO - Information: 0 : 2020-07-14 20:58:02,523 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,523 [19] INFO - Information: 0 : 2020-07-14 20:58:02,523 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,526 [19] INFO - Information: 0 : 2020-07-14 20:58:02,526 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,528 [19] INFO - Information: 0 : 2020-07-14 20:58:02,528 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,528 [19] INFO - Information: 0 : 2020-07-14 20:58:02,528 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,529 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,529 [19] INFO - Information: 0 : 2020-07-14 20:58:02,529 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,529 [19] INFO - --------- 2020-07-14 20:58:02,529 [19] INFO - Information: 0 : 2020-07-14 20:58:02,529 [19] INFO - --------- 2020-07-14 20:58:02,530 [19] INFO - function SE637303570825293741() {} SE637303570825293741.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825293741().executeScript(); 2020-07-14 20:58:02,530 [19] INFO - Information: 0 : 2020-07-14 20:58:02,530 [19] INFO - function SE637303570825293741() {} SE637303570825293741.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825293741().executeScript(); 2020-07-14 20:58:02,530 [19] INFO - --------- 2020-07-14 20:58:02,530 [19] INFO - Information: 0 : 2020-07-14 20:58:02,530 [19] INFO - --------- 2020-07-14 20:58:02,531 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,531 [19] INFO - Information: 0 : 2020-07-14 20:58:02,532 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,532 [19] INFO - --------- 2020-07-14 20:58:02,532 [19] INFO - Information: 0 : 2020-07-14 20:58:02,532 [19] INFO - --------- 2020-07-14 20:58:02,532 [19] INFO - function SE637303570825313742() {} SE637303570825313742.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825313742().executeScript(); 2020-07-14 20:58:02,532 [19] INFO - Information: 0 : 2020-07-14 20:58:02,532 [19] INFO - function SE637303570825313742() {} SE637303570825313742.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825313742().executeScript(); 2020-07-14 20:58:02,532 [19] INFO - --------- 2020-07-14 20:58:02,533 [19] INFO - Information: 0 : 2020-07-14 20:58:02,533 [19] INFO - --------- 2020-07-14 20:58:02,538 [19] INFO - Information: 0 : 2020-07-14 20:58:02,538 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,540 [19] INFO - Information: 0 : 2020-07-14 20:58:02,540 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,541 [19] INFO - Information: 0 : 2020-07-14 20:58:02,541 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,541 [19] INFO - Information: 0 : 2020-07-14 20:58:02,541 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,543 [19] INFO - Information: 0 : 2020-07-14 20:58:02,543 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,543 [19] INFO - Information: 0 : 2020-07-14 20:58:02,543 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,544 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,544 [19] INFO - Information: 0 : 2020-07-14 20:58:02,544 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,544 [19] INFO - --------- 2020-07-14 20:58:02,544 [19] INFO - Information: 0 : 2020-07-14 20:58:02,544 [19] INFO - --------- 2020-07-14 20:58:02,544 [19] INFO - function SE637303570825313742() {} SE637303570825313742.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825313742().executeScript(); 2020-07-14 20:58:02,545 [19] INFO - Information: 0 : 2020-07-14 20:58:02,545 [19] INFO - function SE637303570825313742() {} SE637303570825313742.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825313742().executeScript(); 2020-07-14 20:58:02,545 [19] INFO - --------- 2020-07-14 20:58:02,545 [19] INFO - Information: 0 : 2020-07-14 20:58:02,545 [19] INFO - --------- 2020-07-14 20:58:02,545 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1853. 2020-07-14 20:58:02,545 [19] INFO - Information: 0 : 2020-07-14 20:58:02,545 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1853. 2020-07-14 20:58:02,545 [19] INFO - --------- 2020-07-14 20:58:02,545 [19] INFO - Information: 0 : 2020-07-14 20:58:02,546 [19] INFO - --------- 2020-07-14 20:58:02,546 [19] INFO - [system.partial] „article-begin.html“ 14 ms „“ 2020-07-14 20:58:02,546 [19] INFO - Information: 0 : 2020-07-14 20:58:02,546 [19] INFO - [system.partial] „article-begin.html“ 14 ms „“ 2020-07-14 20:58:02,546 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,546 [19] INFO - Information: 0 : 2020-07-14 20:58:02,546 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,547 [19] INFO - --------- 2020-07-14 20:58:02,547 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,547 [19] INFO - function SE637303570825463751() {} SE637303570825463751.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825463751().executeScript(); 2020-07-14 20:58:02,547 [19] INFO - Information: 0 : 2020-07-14 20:58:02,548 [19] INFO - function SE637303570825463751() {} SE637303570825463751.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825463751().executeScript(); 2020-07-14 20:58:02,548 [19] INFO - --------- 2020-07-14 20:58:02,548 [19] INFO - Information: 0 : 2020-07-14 20:58:02,548 [19] INFO - --------- 2020-07-14 20:58:02,551 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,551 [19] INFO - Information: 0 : 2020-07-14 20:58:02,551 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,551 [19] INFO - --------- 2020-07-14 20:58:02,552 [19] INFO - Information: 0 : 2020-07-14 20:58:02,552 [19] INFO - --------- 2020-07-14 20:58:02,552 [19] INFO - function SE637303570825463751() {} SE637303570825463751.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825463751().executeScript(); 2020-07-14 20:58:02,552 [19] INFO - Information: 0 : 2020-07-14 20:58:02,552 [19] INFO - function SE637303570825463751() {} SE637303570825463751.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825463751().executeScript(); 2020-07-14 20:58:02,552 [19] INFO - --------- 2020-07-14 20:58:02,552 [19] INFO - Information: 0 : 2020-07-14 20:58:02,552 [19] INFO - --------- 2020-07-14 20:58:02,553 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1854. 2020-07-14 20:58:02,553 [19] INFO - Information: 0 : 2020-07-14 20:58:02,553 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1854. 2020-07-14 20:58:02,553 [19] INFO - --------- 2020-07-14 20:58:02,553 [19] INFO - Information: 0 : 2020-07-14 20:58:02,553 [19] INFO - --------- 2020-07-14 20:58:02,553 [19] INFO - [system.partial] „article-headline.html“ 7 ms „“ 2020-07-14 20:58:02,553 [19] INFO - Information: 0 : 2020-07-14 20:58:02,553 [19] INFO - [system.partial] „article-headline.html“ 7 ms „“ 2020-07-14 20:58:02,554 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,554 [19] INFO - Information: 0 : 2020-07-14 20:58:02,554 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,554 [19] INFO - --------- 2020-07-14 20:58:02,554 [19] INFO - Information: 0 : 2020-07-14 20:58:02,554 [19] INFO - --------- 2020-07-14 20:58:02,554 [19] INFO - function SE637303570825543755() {} SE637303570825543755.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825543755().executeScript(); 2020-07-14 20:58:02,554 [19] INFO - Information: 0 : 2020-07-14 20:58:02,555 [19] INFO - function SE637303570825543755() {} SE637303570825543755.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825543755().executeScript(); 2020-07-14 20:58:02,555 [19] INFO - --------- 2020-07-14 20:58:02,555 [19] INFO - Information: 0 : 2020-07-14 20:58:02,555 [19] INFO - --------- 2020-07-14 20:58:02,557 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,557 [19] INFO - Information: 0 : 2020-07-14 20:58:02,557 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,557 [19] INFO - --------- 2020-07-14 20:58:02,558 [19] INFO - Information: 0 : 2020-07-14 20:58:02,558 [19] INFO - --------- 2020-07-14 20:58:02,558 [19] INFO - function SE637303570825543755() {} SE637303570825543755.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825543755().executeScript(); 2020-07-14 20:58:02,558 [19] INFO - Information: 0 : 2020-07-14 20:58:02,558 [19] INFO - function SE637303570825543755() {} SE637303570825543755.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825543755().executeScript(); 2020-07-14 20:58:02,558 [19] INFO - --------- 2020-07-14 20:58:02,558 [19] INFO - Information: 0 : 2020-07-14 20:58:02,558 [19] INFO - --------- 2020-07-14 20:58:02,558 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1855. 2020-07-14 20:58:02,558 [19] INFO - Information: 0 : 2020-07-14 20:58:02,559 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1855. 2020-07-14 20:58:02,559 [19] INFO - --------- 2020-07-14 20:58:02,559 [19] INFO - Information: 0 : 2020-07-14 20:58:02,559 [19] INFO - --------- 2020-07-14 20:58:02,559 [19] INFO - [system.partial] „inline-editor-start.html“ 5 ms „“ 2020-07-14 20:58:02,559 [19] INFO - Information: 0 : 2020-07-14 20:58:02,559 [19] INFO - [system.partial] „inline-editor-start.html“ 5 ms „“ 2020-07-14 20:58:02,559 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,560 [19] INFO - Information: 0 : 2020-07-14 20:58:02,560 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,560 [19] INFO - --------- 2020-07-14 20:58:02,560 [19] INFO - Information: 0 : 2020-07-14 20:58:02,560 [19] INFO - --------- 2020-07-14 20:58:02,560 [19] INFO - function SE637303570825593758() {} SE637303570825593758.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825593758().executeScript(); 2020-07-14 20:58:02,560 [19] INFO - Information: 0 : 2020-07-14 20:58:02,560 [19] INFO - function SE637303570825593758() {} SE637303570825593758.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825593758().executeScript(); 2020-07-14 20:58:02,560 [19] INFO - --------- 2020-07-14 20:58:02,561 [19] INFO - Information: 0 : 2020-07-14 20:58:02,561 [19] INFO - --------- 2020-07-14 20:58:02,562 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,562 [19] INFO - Information: 0 : 2020-07-14 20:58:02,562 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,562 [19] INFO - --------- 2020-07-14 20:58:02,562 [19] INFO - Information: 0 : 2020-07-14 20:58:02,562 [19] INFO - --------- 2020-07-14 20:58:02,563 [19] INFO - function SE637303570825593758() {} SE637303570825593758.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825593758().executeScript(); 2020-07-14 20:58:02,563 [19] INFO - Information: 0 : 2020-07-14 20:58:02,563 [19] INFO - function SE637303570825593758() {} SE637303570825593758.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825593758().executeScript(); 2020-07-14 20:58:02,563 [19] INFO - --------- 2020-07-14 20:58:02,563 [19] INFO - Information: 0 : 2020-07-14 20:58:02,563 [19] INFO - --------- 2020-07-14 20:58:02,563 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1856. 2020-07-14 20:58:02,564 [19] INFO - Information: 0 : 2020-07-14 20:58:02,564 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1856. 2020-07-14 20:58:02,564 [19] INFO - --------- 2020-07-14 20:58:02,564 [19] INFO - Information: 0 : 2020-07-14 20:58:02,564 [19] INFO - --------- 2020-07-14 20:58:02,564 [19] INFO - [system.partial] „inline-editor-end.html“ 4 ms „“ 2020-07-14 20:58:02,564 [19] INFO - Information: 0 : 2020-07-14 20:58:02,564 [19] INFO - [system.partial] „inline-editor-end.html“ 4 ms „“ 2020-07-14 20:58:02,565 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:02,565 [19] INFO - Information: 0 : 2020-07-14 20:58:02,565 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:02,565 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,565 [19] INFO - Information: 0 : 2020-07-14 20:58:02,565 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,565 [19] INFO - --------- 2020-07-14 20:58:02,565 [19] INFO - Information: 0 : 2020-07-14 20:58:02,565 [19] INFO - --------- 2020-07-14 20:58:02,565 [19] INFO - function SE637303570825293741() {} SE637303570825293741.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825293741().executeScript(); 2020-07-14 20:58:02,566 [19] INFO - Information: 0 : 2020-07-14 20:58:02,566 [19] INFO - function SE637303570825293741() {} SE637303570825293741.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825293741().executeScript(); 2020-07-14 20:58:02,566 [19] INFO - --------- 2020-07-14 20:58:02,566 [19] INFO - Information: 0 : 2020-07-14 20:58:02,566 [19] INFO - --------- 2020-07-14 20:58:02,566 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1857. 2020-07-14 20:58:02,566 [19] INFO - Information: 0 : 2020-07-14 20:58:02,566 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1857. 2020-07-14 20:58:02,566 [19] INFO - --------- 2020-07-14 20:58:02,566 [19] INFO - Information: 0 : 2020-07-14 20:58:02,567 [19] INFO - --------- 2020-07-14 20:58:02,567 [19] INFO - Information: 0 : 2020-07-14 20:58:02,567 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,570 [19] INFO - Information: 0 : 2020-07-14 20:58:02,570 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,570 [19] INFO - Information: 0 : 2020-07-14 20:58:02,570 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,571 [19] INFO - Information: 0 : 2020-07-14 20:58:02,571 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,573 [19] INFO - Information: 0 : 2020-07-14 20:58:02,573 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,574 [19] INFO - Information: 0 : 2020-07-14 20:58:02,574 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,575 [19] INFO - Information: 0 : 2020-07-14 20:58:02,575 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,575 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,576 [19] INFO - Information: 0 : 2020-07-14 20:58:02,577 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,577 [19] INFO - Information: 0 : 2020-07-14 20:58:02,577 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,579 [19] INFO - Information: 0 : 2020-07-14 20:58:02,579 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,581 [19] INFO - Information: 0 : 2020-07-14 20:58:02,581 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,581 [19] INFO - Information: 0 : 2020-07-14 20:58:02,581 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,582 [19] INFO - Information: 0 : 2020-07-14 20:58:02,582 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,584 [19] INFO - Information: 0 : 2020-07-14 20:58:02,584 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,584 [19] INFO - Information: 0 : 2020-07-14 20:58:02,585 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,587 [19] INFO - Information: 0 : 2020-07-14 20:58:02,587 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,589 [19] INFO - Information: 0 : 2020-07-14 20:58:02,589 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,589 [19] INFO - Information: 0 : 2020-07-14 20:58:02,589 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,592 [19] INFO - Information: 0 : 2020-07-14 20:58:02,592 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,594 [19] INFO - Information: 0 : 2020-07-14 20:58:02,594 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,594 [19] INFO - Information: 0 : 2020-07-14 20:58:02,594 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,595 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,595 [19] INFO - Information: 0 : 2020-07-14 20:58:02,596 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,596 [19] INFO - --------- 2020-07-14 20:58:02,596 [19] INFO - Information: 0 : 2020-07-14 20:58:02,596 [19] INFO - --------- 2020-07-14 20:58:02,596 [19] INFO - function SE637303570825953779() {} SE637303570825953779.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825953779().executeScript(); 2020-07-14 20:58:02,596 [19] INFO - Information: 0 : 2020-07-14 20:58:02,596 [19] INFO - function SE637303570825953779() {} SE637303570825953779.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825953779().executeScript(); 2020-07-14 20:58:02,596 [19] INFO - --------- 2020-07-14 20:58:02,596 [19] INFO - Information: 0 : 2020-07-14 20:58:02,597 [19] INFO - --------- 2020-07-14 20:58:02,598 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,598 [19] INFO - Information: 0 : 2020-07-14 20:58:02,598 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,598 [19] INFO - --------- 2020-07-14 20:58:02,598 [19] INFO - Information: 0 : 2020-07-14 20:58:02,598 [19] INFO - --------- 2020-07-14 20:58:02,598 [19] INFO - function SE637303570825983780() {} SE637303570825983780.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825983780().executeScript(); 2020-07-14 20:58:02,599 [19] INFO - Information: 0 : 2020-07-14 20:58:02,599 [19] INFO - function SE637303570825983780() {} SE637303570825983780.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825983780().executeScript(); 2020-07-14 20:58:02,599 [19] INFO - --------- 2020-07-14 20:58:02,599 [19] INFO - Information: 0 : 2020-07-14 20:58:02,599 [19] INFO - --------- 2020-07-14 20:58:02,604 [19] INFO - Information: 0 : 2020-07-14 20:58:02,604 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,606 [19] INFO - Information: 0 : 2020-07-14 20:58:02,606 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,606 [19] INFO - Information: 0 : 2020-07-14 20:58:02,606 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,607 [19] INFO - Information: 0 : 2020-07-14 20:58:02,607 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,607 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,608 [19] INFO - Information: 0 : 2020-07-14 20:58:02,608 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,608 [19] INFO - Information: 0 : 2020-07-14 20:58:02,608 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,609 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,609 [19] INFO - Information: 0 : 2020-07-14 20:58:02,609 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,610 [19] INFO - --------- 2020-07-14 20:58:02,610 [19] INFO - Information: 0 : 2020-07-14 20:58:02,610 [19] INFO - --------- 2020-07-14 20:58:02,610 [19] INFO - function SE637303570825983780() {} SE637303570825983780.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825983780().executeScript(); 2020-07-14 20:58:02,610 [19] INFO - Information: 0 : 2020-07-14 20:58:02,610 [19] INFO - function SE637303570825983780() {} SE637303570825983780.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825983780().executeScript(); 2020-07-14 20:58:02,610 [19] INFO - --------- 2020-07-14 20:58:02,611 [19] INFO - Information: 0 : 2020-07-14 20:58:02,611 [19] INFO - --------- 2020-07-14 20:58:02,611 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1858. 2020-07-14 20:58:02,611 [19] INFO - Information: 0 : 2020-07-14 20:58:02,611 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1858. 2020-07-14 20:58:02,611 [19] INFO - --------- 2020-07-14 20:58:02,611 [19] INFO - Information: 0 : 2020-07-14 20:58:02,611 [19] INFO - --------- 2020-07-14 20:58:02,611 [19] INFO - [system.partial] „article-begin.html“ 13 ms „“ 2020-07-14 20:58:02,611 [19] INFO - Information: 0 : 2020-07-14 20:58:02,612 [19] INFO - [system.partial] „article-begin.html“ 13 ms „“ 2020-07-14 20:58:02,612 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,612 [19] INFO - Information: 0 : 2020-07-14 20:58:02,613 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,613 [19] INFO - --------- 2020-07-14 20:58:02,613 [19] INFO - Information: 0 : 2020-07-14 20:58:02,613 [19] INFO - --------- 2020-07-14 20:58:02,613 [19] INFO - function SE637303570826123788() {} SE637303570826123788.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826123788().executeScript(); 2020-07-14 20:58:02,613 [19] INFO - Information: 0 : 2020-07-14 20:58:02,613 [19] INFO - function SE637303570826123788() {} SE637303570826123788.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826123788().executeScript(); 2020-07-14 20:58:02,614 [19] INFO - --------- 2020-07-14 20:58:02,614 [19] INFO - Information: 0 : 2020-07-14 20:58:02,614 [19] INFO - --------- 2020-07-14 20:58:02,617 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,617 [19] INFO - Information: 0 : 2020-07-14 20:58:02,617 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,617 [19] INFO - --------- 2020-07-14 20:58:02,617 [19] INFO - Information: 0 : 2020-07-14 20:58:02,618 [19] INFO - --------- 2020-07-14 20:58:02,618 [19] INFO - function SE637303570826123788() {} SE637303570826123788.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826123788().executeScript(); 2020-07-14 20:58:02,618 [19] INFO - Information: 0 : 2020-07-14 20:58:02,618 [19] INFO - function SE637303570826123788() {} SE637303570826123788.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826123788().executeScript(); 2020-07-14 20:58:02,618 [19] INFO - --------- 2020-07-14 20:58:02,618 [19] INFO - Information: 0 : 2020-07-14 20:58:02,618 [19] INFO - --------- 2020-07-14 20:58:02,618 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1859. 2020-07-14 20:58:02,619 [19] INFO - Information: 0 : 2020-07-14 20:58:02,619 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1859. 2020-07-14 20:58:02,619 [19] INFO - --------- 2020-07-14 20:58:02,619 [19] INFO - Information: 0 : 2020-07-14 20:58:02,619 [19] INFO - --------- 2020-07-14 20:58:02,619 [19] INFO - [system.partial] „article-headline.html“ 7 ms „“ 2020-07-14 20:58:02,619 [19] INFO - Information: 0 : 2020-07-14 20:58:02,619 [19] INFO - [system.partial] „article-headline.html“ 7 ms „“ 2020-07-14 20:58:02,620 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,620 [19] INFO - Information: 0 : 2020-07-14 20:58:02,620 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,620 [19] INFO - --------- 2020-07-14 20:58:02,620 [19] INFO - Information: 0 : 2020-07-14 20:58:02,620 [19] INFO - --------- 2020-07-14 20:58:02,620 [19] INFO - function SE637303570826203793() {} SE637303570826203793.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826203793().executeScript(); 2020-07-14 20:58:02,620 [19] INFO - Information: 0 : 2020-07-14 20:58:02,620 [19] INFO - function SE637303570826203793() {} SE637303570826203793.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826203793().executeScript(); 2020-07-14 20:58:02,621 [19] INFO - --------- 2020-07-14 20:58:02,621 [19] INFO - Information: 0 : 2020-07-14 20:58:02,621 [19] INFO - --------- 2020-07-14 20:58:02,623 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,623 [19] INFO - Information: 0 : 2020-07-14 20:58:02,623 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,623 [19] INFO - --------- 2020-07-14 20:58:02,623 [19] INFO - Information: 0 : 2020-07-14 20:58:02,623 [19] INFO - --------- 2020-07-14 20:58:02,624 [19] INFO - function SE637303570826203793() {} SE637303570826203793.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826203793().executeScript(); 2020-07-14 20:58:02,624 [19] INFO - Information: 0 : 2020-07-14 20:58:02,624 [19] INFO - function SE637303570826203793() {} SE637303570826203793.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826203793().executeScript(); 2020-07-14 20:58:02,624 [19] INFO - --------- 2020-07-14 20:58:02,624 [19] INFO - Information: 0 : 2020-07-14 20:58:02,624 [19] INFO - --------- 2020-07-14 20:58:02,624 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1860. 2020-07-14 20:58:02,624 [19] INFO - Information: 0 : 2020-07-14 20:58:02,625 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1860. 2020-07-14 20:58:02,625 [19] INFO - --------- 2020-07-14 20:58:02,625 [19] INFO - Information: 0 : 2020-07-14 20:58:02,625 [19] INFO - --------- 2020-07-14 20:58:02,625 [19] INFO - [system.partial] „inline-editor-start.html“ 5 ms „“ 2020-07-14 20:58:02,625 [19] INFO - Information: 0 : 2020-07-14 20:58:02,625 [19] INFO - [system.partial] „inline-editor-start.html“ 5 ms „“ 2020-07-14 20:58:02,625 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,626 [19] INFO - Information: 0 : 2020-07-14 20:58:02,626 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,626 [19] INFO - --------- 2020-07-14 20:58:02,626 [19] INFO - Information: 0 : 2020-07-14 20:58:02,626 [19] INFO - --------- 2020-07-14 20:58:02,626 [19] INFO - function SE637303570826253796() {} SE637303570826253796.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826253796().executeScript(); 2020-07-14 20:58:02,626 [19] INFO - Information: 0 : 2020-07-14 20:58:02,626 [19] INFO - function SE637303570826253796() {} SE637303570826253796.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826253796().executeScript(); 2020-07-14 20:58:02,626 [19] INFO - --------- 2020-07-14 20:58:02,626 [19] INFO - Information: 0 : 2020-07-14 20:58:02,627 [19] INFO - --------- 2020-07-14 20:58:02,627 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,628 [19] INFO - Information: 0 : 2020-07-14 20:58:02,628 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,628 [19] INFO - --------- 2020-07-14 20:58:02,628 [19] INFO - Information: 0 : 2020-07-14 20:58:02,628 [19] INFO - --------- 2020-07-14 20:58:02,628 [19] INFO - function SE637303570826253796() {} SE637303570826253796.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826253796().executeScript(); 2020-07-14 20:58:02,628 [19] INFO - Information: 0 : 2020-07-14 20:58:02,628 [19] INFO - function SE637303570826253796() {} SE637303570826253796.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826253796().executeScript(); 2020-07-14 20:58:02,628 [19] INFO - --------- 2020-07-14 20:58:02,629 [19] INFO - Information: 0 : 2020-07-14 20:58:02,629 [19] INFO - --------- 2020-07-14 20:58:02,629 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1861. 2020-07-14 20:58:02,629 [19] INFO - Information: 0 : 2020-07-14 20:58:02,629 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1861. 2020-07-14 20:58:02,629 [19] INFO - --------- 2020-07-14 20:58:02,629 [19] INFO - Information: 0 : 2020-07-14 20:58:02,629 [19] INFO - --------- 2020-07-14 20:58:02,629 [19] INFO - [system.partial] „inline-editor-end.html“ 4 ms „“ 2020-07-14 20:58:02,629 [19] INFO - Information: 0 : 2020-07-14 20:58:02,630 [19] INFO - [system.partial] „inline-editor-end.html“ 4 ms „“ 2020-07-14 20:58:02,630 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:02,630 [19] INFO - Information: 0 : 2020-07-14 20:58:02,630 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:02,630 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,630 [19] INFO - Information: 0 : 2020-07-14 20:58:02,631 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,631 [19] INFO - --------- 2020-07-14 20:58:02,631 [19] INFO - Information: 0 : 2020-07-14 20:58:02,631 [19] INFO - --------- 2020-07-14 20:58:02,631 [19] INFO - function SE637303570825953779() {} SE637303570825953779.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825953779().executeScript(); 2020-07-14 20:58:02,631 [19] INFO - Information: 0 : 2020-07-14 20:58:02,631 [19] INFO - function SE637303570825953779() {} SE637303570825953779.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570825953779().executeScript(); 2020-07-14 20:58:02,631 [19] INFO - --------- 2020-07-14 20:58:02,631 [19] INFO - Information: 0 : 2020-07-14 20:58:02,631 [19] INFO - --------- 2020-07-14 20:58:02,632 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1862. 2020-07-14 20:58:02,632 [19] INFO - Information: 0 : 2020-07-14 20:58:02,632 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1862. 2020-07-14 20:58:02,632 [19] INFO - --------- 2020-07-14 20:58:02,632 [19] INFO - Information: 0 : 2020-07-14 20:58:02,632 [19] INFO - --------- 2020-07-14 20:58:02,633 [19] INFO - Information: 0 : 2020-07-14 20:58:02,633 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,636 [19] INFO - Information: 0 : 2020-07-14 20:58:02,636 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,636 [19] INFO - Information: 0 : 2020-07-14 20:58:02,636 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,636 [19] INFO - Information: 0 : 2020-07-14 20:58:02,637 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,639 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,640 [19] INFO - Information: 0 : 2020-07-14 20:58:02,640 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,640 [19] INFO - Information: 0 : 2020-07-14 20:58:02,640 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,641 [19] INFO - Information: 0 : 2020-07-14 20:58:02,641 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,643 [19] INFO - Information: 0 : 2020-07-14 20:58:02,643 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,643 [19] INFO - Information: 0 : 2020-07-14 20:58:02,643 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,645 [19] INFO - Information: 0 : 2020-07-14 20:58:02,645 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,647 [19] INFO - Information: 0 : 2020-07-14 20:58:02,647 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,647 [19] INFO - Information: 0 : 2020-07-14 20:58:02,647 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,648 [19] INFO - Information: 0 : 2020-07-14 20:58:02,648 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,650 [19] INFO - Information: 0 : 2020-07-14 20:58:02,650 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,651 [19] INFO - Information: 0 : 2020-07-14 20:58:02,651 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,651 [19] INFO - Information: 0 : 2020-07-14 20:58:02,651 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,652 [19] INFO - Information: 0 : 2020-07-14 20:58:02,653 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,653 [19] INFO - Information: 0 : 2020-07-14 20:58:02,653 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,656 [19] INFO - Information: 0 : 2020-07-14 20:58:02,656 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,657 [19] INFO - Information: 0 : 2020-07-14 20:58:02,658 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,658 [19] INFO - Information: 0 : 2020-07-14 20:58:02,658 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,670 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,672 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,673 [19] INFO - Information: 0 : 2020-07-14 20:58:02,673 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,673 [19] INFO - --------- 2020-07-14 20:58:02,673 [19] INFO - Information: 0 : 2020-07-14 20:58:02,673 [19] INFO - --------- 2020-07-14 20:58:02,673 [19] INFO - function SE637303570826723823() {} SE637303570826723823.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. var imagesPerPage = parseInt(article.value("imagesperpage", 0)); var isPaging = false; var contentImageWidth = "890"; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl hohlen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || 960; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } // if page contains a news area, we only approximate a 2/3 1/3 size layout in order to calculate thumbnails if ( article.area.toLowerCase() == "news" ){ gridCols = 4; } else if ( page.anyAreaArticles("News") ){ gridCols = 8; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } var showSlideshow = article.value("slideshow"); var albumId = article.value("album"); var images = project.getAlbumImages(albumId); var thumbnailWidth = article.value("width"); var thumbnailHeight = article.value("height"); var titlePosition = article.value("titleposition"); var thumbTitlePosition = article.value("thumbtitleposition", "off"); var imageMargin = parseInt(article.value("margin", "0")); // figure out if images have a border set in layout-settings and compensate for it, if the article doesn't have a custom class "noborder" set var imageBorder = 0; var tmpArticleCssClass = " " + article.cssClass; if ( tmpArticleCssClass.indexOf("noborder") == -1 && "" != "0" && "" != "" ) { imageBorder = parseInt(""); } var generateThumbs = true; if ( titlePosition !== "off" ) { var titleShow = "1"; } else { var titleShow = "0"; } if ( "de" == "en" ) { var lang = "en"; } else { var lang = "de"; } var backgroundImage = backgroundWidth = backgroundHeight = backgroundLeft = backgroundTop = ""; if ( showSlideshow && article.valueRaw("slideshowtemplate") !== "none" ) { backgroundImage = article.value("slideshowtemplate", ""); if ( backgroundImage.indexOf("/laptop.png") > -1 ) { backgroundImage = "assets/js/img/laptop.png"; var backgroundWidth = "801"; var backgroundHeight = "469"; var backgroundLeft= "104"; var backgroundTop = "31"; thumbnailWidth = "590"; thumbnailHeight = "369"; } else if ( backgroundImage.indexOf("/laptop_klein.png") > -1 ) { backgroundImage = "assets/js/img/laptop_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "268"; var backgroundLeft= "59"; var backgroundTop = "18"; thumbnailWidth = "338"; thumbnailHeight = "211"; } else if ( backgroundImage.indexOf("/rahmen.png") > -1 ) { backgroundImage = "assets/js/img/rahmen.png"; var backgroundWidth = "758"; var backgroundHeight = "469"; var backgroundLeft= "55"; var backgroundTop = "57"; thumbnailWidth = "648"; thumbnailHeight = "356"; } else if ( backgroundImage.indexOf("/rahmen_klein.png") > -1 ) { backgroundImage = "assets/js/img/rahmen_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "283"; var backgroundLeft= "33"; var backgroundTop = "34"; thumbnailWidth = "392"; thumbnailHeight = "214"; } } else if ( showSlideshow && article.valueRaw("slideshowtemplate") == "none" ) { thumbnailWidth = columnWidth; //generateThumbs = false; } if ( system.preview ){ //system.log(images.count == 1 ? (" 1 Bild...") : (" " + images.count + " Bilder...")); } var gridFactor = 12 / gridCols; var maxcols = Math.ceil((contentImageWidth / (thumbnailWidth+imageMargin)) / gridFactor); var onecolumnbreakpoint = 479; var maxmobilecols = Math.ceil(onecolumnbreakpoint / thumbnailWidth); var mobilecontainerwidth = 100 / maxmobilecols; var headstyle = "/* test */"; headstyle += "\ #igal" + article.id + ":not(.zpSlideshow){\n\ margin-left: -" + imageMargin/2 + "px !important;\n\ margin-right: -" + imageMargin/2 + "px !important;\n\ }\n\ /* below is to accomodates for IE rounding errors which caused the cols not to fit into the row */\n\ .ie #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc((100% / "+ maxcols +") - " + parseInt(imageMargin/2)*2 + ".1px) !important;\n\ margin: " + parseInt(imageMargin/2) + "px !important;\n\ }\n\ \n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item,\n\ #igal" + article.id + ":not(.zpSlideshow) > a,\n\ #igal" + article.id + ":not(.zpSlideshow) .slide > a{\n\ display: block;\n\ float: left;\n\ width: calc((100% / "+ maxcols +") - " + imageMargin + "px);\n\ max-width: "+ thumbnailWidth +"px;\n\ height: auto;\n\ margin: " + imageMargin / 2 + "px;\n\ }\n\ #igal" + article.id +" > a > img{\n\ max-width: 100%;\n\ display: block;\n\ }\n\ "; for ( var i = 1; i < maxcols - 1; i++){ var breakpoint = contentImageWidth - (i * thumbnailWidth); if ( breakpoint <= onecolumnbreakpoint ){ // if we reach the point, where the ZP Grid will display rows in 1-column, we break and need to use a different logic (see next for-loop) break; } var containerwidth = 100 / ( maxcols - i); headstyle += "\n\ @media screen and (max-width: " + breakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + containerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; } // mobile display 2+-column-rows. for ( var i = 1; i < maxmobilecols; i++){ headstyle += "\n\ @media screen and (max-width: " + onecolumnbreakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + mobilecontainerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; onecolumnbreakpoint = ( maxmobilecols -i ) * thumbnailWidth; mobilecontainerwidth = 100 / ( maxmobilecols -i ); } // mobile display 1-column-row. headstyle += "\n\ @media screen and (max-width: " + (thumbnailWidth+imageMargin) +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(100% - " + imageMargin + "px);\n\ }\n\ }\n\ "; headstyle += ""; system.addHtmlHeadElement(headstyle); // polyfill for JSON.stringify() // https://gist.github.com/uupaa/5562297 function _toJSONEscapedString(str) { // @arg String: // @ret String: // @inner: to JSON escaped string if (typeof(str)==='undefined') str = ""; if ( str == ""){ return ""; } else{ var JSON_ESCAPE = { '\b': '\\b', // backspace U+0008 '\t': '\\t', // tab U+0009 '\n': '\\n', // line feed U+000A '\f': '\\f', // form feed U+000C '\r': '\\r', // carriage return U+000D '"': '\\"', // quotation mark U+0022 '\\': '\\\\' // reverse solidus U+005C }; return str.replace(/(?:[\b\t\n\f\r\"]|\\)/g, function(_) { return JSON_ESCAPE[_]; }).replace(/(?:[\x00-\x1f])/g, function(_) { return "\\u00" + ("0" + _.charCodeAt(0).toString(16)).slice(-2); }); } } context.write("\r\n\r\n"); // normales Bilderalbum mit thumbnails, ohne ContentCopy if ( !showSlideshow ) { // only activate paging via json-data when more than one page of images to show exists if ( imagesPerPage > 0 && images.count > imagesPerPage ){ isPaging = true; } context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\r\n\t\t
    999999 ){ context.write("style=\"margin-right: -"); context.write( imageMargin ); context.write("px;\" "); } context.write("\r\n\t\t\tdata-article-id=\""); context.write(article.id); context.write("\" \r\n\t\t\tdata-prevtext=\"Zurück\" \r\n\t\t\tdata-nexttext=\"Weiter\" \r\n\t\t\tdata-pagetext=\"Seite {0} von {1}\" \r\n\t\t\tdata-ispaging=\""); context.write(isPaging); context.write("\" \r\n\t\t\tdata-imageeffect=\""); context.write(effectClass); context.write("\" \r\n\t\t\tdata-imagesperpage=\""); context.write(imagesPerPage); context.write("\" \r\n\t\t\tdata-kind=\"gallery\" \r\n\t\t\tdata-width=\""); context.write( thumbnailWidth ); context.write("\"\r\n\t\t\tdata-height=\""); context.write( thumbnailHeight ); context.write("\"\r\n\t\t\tdata-margin=\""); context.write( article.value("margin", "") ); context.write("\"\r\n\t\t\tdata-maxcols=\""); context.write( maxcols ); context.write("\"\r\n\t\t\tdata-bordercolor=\"default\"\r\n\t\t\tdata-borderwidth=\"0\"\r\n\t\t\tdata-numbershow=\"0\" \r\n\t\t\tdata-template=\"\" \r\n\t\t\tdata-titleshow=\""); context.write( titleShow ); context.write("\"\r\n\t\t\tdata-titleposition=\""); context.write( article.value("titleposition", "") ); context.write("\"\r\n\t\t\tdata-transition=\""); context.write( article.value("zoom", "") ); context.write("\"\r\n\t\t\tdata-inner-transition=\""); context.write( article.value("transition", "") ); context.write("\"\r\n\t\t\tdata-slideshow=\"0\"\r\n\t\t\tdata-slideshowinterval=\"0\"\r\n\t\t\tdata-lang=\""); context.write( lang ); context.write("\">\r\n\t\r\n\t\t\t"); if ( isPaging ) { context.write("\r\n\t\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\t\t
    \r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } else { context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\r\n\t\t\r\n\t\t"); // Slideshow mit Hintergrundbild aus Template (Laptop etc.), ohne Contentcopy if ( backgroundImage !== "" && backgroundImage !== "Keine" ) { context.write("\r\n\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t\"\"\r\n\t\t\r\n\t\t\t\t\t"); var descriptionSlide1, altText1, encodedDescription1, imageSlide1; for ( var indexSlide1=0; indexSlide1 < images.count; ++indexSlide1 ) { imageSlide1 = images.item(indexSlide1); imageSlide1.skipContentCopy(); // keine contentCopy erzeugen, da überflüssig weil gleich groß wie workingCopy descriptionSlide1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.description)); encodedDescription1 = system.htmlEncode(imageSlide1.description); altText1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.altText)); if ( imageSlide1.createThumb(thumbnailWidth, thumbnailHeight) ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide1.thumbPath(thumbnailWidth, thumbnailHeight).split("/").pop()); } } context.write("\r\n\t\t\t\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide1.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t\t"); context.write( imageSlide1.description ); context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\r\n\t\t"); } // Slideshow ohne Hintergrundbild (Nur Bild), ohne Contentcopy else { context.write("\r\n\r\n\t\t\t"); var maxThumbnailHeight = 0; var maxThumbnailWidth = 0; for (var indexThumbnailHeight=0; indexThumbnailHeight < images.count; ++indexThumbnailHeight ) { var imageThumbnailHeight = images.item(indexThumbnailHeight); imageThumbnailHeight.skipContentCopy(); var currentThumbnailHeight = imageThumbnailHeight.createThumbWithInfo(columnWidth); if ( currentThumbnailHeight.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageThumbnailHeight.thumbPath(columnWidth).split("/").pop()); } } if ( currentThumbnailHeight.height > maxThumbnailHeight ) { maxThumbnailHeight = currentThumbnailHeight.height; } if ( currentThumbnailHeight.width > maxThumbnailWidth ) { maxThumbnailWidth = currentThumbnailHeight.width; } } context.write("\r\n\t\t\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\t"); var descriptionSlide2, encodedDescription2, imageSlide2; for ( var indexSlide2=0; indexSlide2 < images.count; ++indexSlide2 ) { imageSlide2 = images.item(indexSlide2); imageSlide2.skipContentCopy(); descriptionSlide2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.description)); encodedDescription2 = system.htmlEncode(imageSlide2.description); altText2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.altText)); var tni = imageSlide2.createThumbWithInfo(columnWidth); if ( tni.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide2.thumbPath(columnWidth).split("/").pop()); } } var tmpWidth = parseInt(tni.ThumbnailWidth); var tmpHeight = parseInt(tni.ThumbnailHeight); var tmpSrc = imageSlide2.thumbPath(columnWidth); context.write("\r\n\t\t\t\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide2.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t"); context.write( imageSlide2.description ); context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\r\n\t\t"); } context.write("\r\n\r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826723823().executeScript(); 2020-07-14 20:58:02,674 [19] INFO - Information: 0 : 2020-07-14 20:58:02,674 [19] INFO - function SE637303570826723823() {} SE637303570826723823.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. var imagesPerPage = parseInt(article.value("imagesperpage", 0)); var isPaging = false; var contentImageWidth = "890"; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl hohlen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || 960; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } // if page contains a news area, we only approximate a 2/3 1/3 size layout in order to calculate thumbnails if ( article.area.toLowerCase() == "news" ){ gridCols = 4; } else if ( page.anyAreaArticles("News") ){ gridCols = 8; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } var showSlideshow = article.value("slideshow"); var albumId = article.value("album"); var images = project.getAlbumImages(albumId); var thumbnailWidth = article.value("width"); var thumbnailHeight = article.value("height"); var titlePosition = article.value("titleposition"); var thumbTitlePosition = article.value("thumbtitleposition", "off"); var imageMargin = parseInt(article.value("margin", "0")); // figure out if images have a border set in layout-settings and compensate for it, if the article doesn't have a custom class "noborder" set var imageBorder = 0; var tmpArticleCssClass = " " + article.cssClass; if ( tmpArticleCssClass.indexOf("noborder") == -1 && "" != "0" && "" != "" ) { imageBorder = parseInt(""); } var generateThumbs = true; if ( titlePosition !== "off" ) { var titleShow = "1"; } else { var titleShow = "0"; } if ( "de" == "en" ) { var lang = "en"; } else { var lang = "de"; } var backgroundImage = backgroundWidth = backgroundHeight = backgroundLeft = backgroundTop = ""; if ( showSlideshow && article.valueRaw("slideshowtemplate") !== "none" ) { backgroundImage = article.value("slideshowtemplate", ""); if ( backgroundImage.indexOf("/laptop.png") > -1 ) { backgroundImage = "assets/js/img/laptop.png"; var backgroundWidth = "801"; var backgroundHeight = "469"; var backgroundLeft= "104"; var backgroundTop = "31"; thumbnailWidth = "590"; thumbnailHeight = "369"; } else if ( backgroundImage.indexOf("/laptop_klein.png") > -1 ) { backgroundImage = "assets/js/img/laptop_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "268"; var backgroundLeft= "59"; var backgroundTop = "18"; thumbnailWidth = "338"; thumbnailHeight = "211"; } else if ( backgroundImage.indexOf("/rahmen.png") > -1 ) { backgroundImage = "assets/js/img/rahmen.png"; var backgroundWidth = "758"; var backgroundHeight = "469"; var backgroundLeft= "55"; var backgroundTop = "57"; thumbnailWidth = "648"; thumbnailHeight = "356"; } else if ( backgroundImage.indexOf("/rahmen_klein.png") > -1 ) { backgroundImage = "assets/js/img/rahmen_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "283"; var backgroundLeft= "33"; var backgroundTop = "34"; thumbnailWidth = "392"; thumbnailHeight = "214"; } } else if ( showSlideshow && article.valueRaw("slideshowtemplate") == "none" ) { thumbnailWidth = columnWidth; //generateThumbs = false; } if ( system.preview ){ //system.log(images.count == 1 ? (" 1 Bild...") : (" " + images.count + " Bilder...")); } var gridFactor = 12 / gridCols; var maxcols = Math.ceil((contentImageWidth / (thumbnailWidth+imageMargin)) / gridFactor); var onecolumnbreakpoint = 479; var maxmobilecols = Math.ceil(onecolumnbreakpoint / thumbnailWidth); var mobilecontainerwidth = 100 / maxmobilecols; var headstyle = "/* test */"; headstyle += "\ #igal" + article.id + ":not(.zpSlideshow){\n\ margin-left: -" + imageMargin/2 + "px !important;\n\ margin-right: -" + imageMargin/2 + "px !important;\n\ }\n\ /* below is to accomodates for IE rounding errors which caused the cols not to fit into the row */\n\ .ie #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc((100% / "+ maxcols +") - " + parseInt(imageMargin/2)*2 + ".1px) !important;\n\ margin: " + parseInt(imageMargin/2) + "px !important;\n\ }\n\ \n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item,\n\ #igal" + article.id + ":not(.zpSlideshow) > a,\n\ #igal" + article.id + ":not(.zpSlideshow) .slide > a{\n\ display: block;\n\ float: left;\n\ width: calc((100% / "+ maxcols +") - " + imageMargin + "px);\n\ max-width: "+ thumbnailWidth +"px;\n\ height: auto;\n\ margin: " + imageMargin / 2 + "px;\n\ }\n\ #igal" + article.id +" > a > img{\n\ max-width: 100%;\n\ display: block;\n\ }\n\ "; for ( var i = 1; i < maxcols - 1; i++){ var breakpoint = contentImageWidth - (i * thumbnailWidth); if ( breakpoint <= onecolumnbreakpoint ){ // if we reach the point, where the ZP Grid will display rows in 1-column, we break and need to use a different logic (see next for-loop) break; } var containerwidth = 100 / ( maxcols - i); headstyle += "\n\ @media screen and (max-width: " + breakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + containerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; } // mobile display 2+-column-rows. for ( var i = 1; i < maxmobilecols; i++){ headstyle += "\n\ @media screen and (max-width: " + onecolumnbreakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + mobilecontainerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; onecolumnbreakpoint = ( maxmobilecols -i ) * thumbnailWidth; mobilecontainerwidth = 100 / ( maxmobilecols -i ); } // mobile display 1-column-row. headstyle += "\n\ @media screen and (max-width: " + (thumbnailWidth+imageMargin) +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(100% - " + imageMargin + "px);\n\ }\n\ }\n\ "; headstyle += ""; system.addHtmlHeadElement(headstyle); // polyfill for JSON.stringify() // https://gist.github.com/uupaa/5562297 function _toJSONEscapedString(str) { // @arg String: // @ret String: // @inner: to JSON escaped string if (typeof(str)==='undefined') str = ""; if ( str == ""){ return ""; } else{ var JSON_ESCAPE = { '\b': '\\b', // backspace U+0008 '\t': '\\t', // tab U+0009 '\n': '\\n', // line feed U+000A '\f': '\\f', // form feed U+000C '\r': '\\r', // carriage return U+000D '"': '\\"', // quotation mark U+0022 '\\': '\\\\' // reverse solidus U+005C }; return str.replace(/(?:[\b\t\n\f\r\"]|\\)/g, function(_) { return JSON_ESCAPE[_]; }).replace(/(?:[\x00-\x1f])/g, function(_) { return "\\u00" + ("0" + _.charCodeAt(0).toString(16)).slice(-2); }); } } context.write("\r\n\r\n"); // normales Bilderalbum mit thumbnails, ohne ContentCopy if ( !showSlideshow ) { // only activate paging via json-data when more than one page of images to show exists if ( imagesPerPage > 0 && images.count > imagesPerPage ){ isPaging = true; } context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\r\n\t\t
    999999 ){ context.write("style=\"margin-right: -"); context.write( imageMargin ); context.write("px;\" "); } context.write("\r\n\t\t\tdata-article-id=\""); context.write(article.id); context.write("\" \r\n\t\t\tdata-prevtext=\"Zurück\" \r\n\t\t\tdata-nexttext=\"Weiter\" \r\n\t\t\tdata-pagetext=\"Seite {0} von {1}\" \r\n\t\t\tdata-ispaging=\""); context.write(isPaging); context.write("\" \r\n\t\t\tdata-imageeffect=\""); context.write(effectClass); context.write("\" \r\n\t\t\tdata-imagesperpage=\""); context.write(imagesPerPage); context.write("\" \r\n\t\t\tdata-kind=\"gallery\" \r\n\t\t\tdata-width=\""); context.write( thumbnailWidth ); context.write("\"\r\n\t\t\tdata-height=\""); context.write( thumbnailHeight ); context.write("\"\r\n\t\t\tdata-margin=\""); context.write( article.value("margin", "") ); context.write("\"\r\n\t\t\tdata-maxcols=\""); context.write( maxcols ); context.write("\"\r\n\t\t\tdata-bordercolor=\"default\"\r\n\t\t\tdata-borderwidth=\"0\"\r\n\t\t\tdata-numbershow=\"0\" \r\n\t\t\tdata-template=\"\" \r\n\t\t\tdata-titleshow=\""); context.write( titleShow ); context.write("\"\r\n\t\t\tdata-titleposition=\""); context.write( article.value("titleposition", "") ); context.write("\"\r\n\t\t\tdata-transition=\""); context.write( article.value("zoom", "") ); context.write("\"\r\n\t\t\tdata-inner-transition=\""); context.write( article.value("transition", "") ); context.write("\"\r\n\t\t\tdata-slideshow=\"0\"\r\n\t\t\tdata-slideshowinterval=\"0\"\r\n\t\t\tdata-lang=\""); context.write( lang ); context.write("\">\r\n\t\r\n\t\t\t"); if ( isPaging ) { context.write("\r\n\t\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\t\t
    \r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } else { context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\r\n\t\t\r\n\t\t"); // Slideshow mit Hintergrundbild aus Template (Laptop etc.), ohne Contentcopy if ( backgroundImage !== "" && backgroundImage !== "Keine" ) { context.write("\r\n\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t\"\"\r\n\t\t\r\n\t\t\t\t\t"); var descriptionSlide1, altText1, encodedDescription1, imageSlide1; for ( var indexSlide1=0; indexSlide1 < images.count; ++indexSlide1 ) { imageSlide1 = images.item(indexSlide1); imageSlide1.skipContentCopy(); // keine contentCopy erzeugen, da überflüssig weil gleich groß wie workingCopy descriptionSlide1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.description)); encodedDescription1 = system.htmlEncode(imageSlide1.description); altText1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.altText)); if ( imageSlide1.createThumb(thumbnailWidth, thumbnailHeight) ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide1.thumbPath(thumbnailWidth, thumbnailHeight).split("/").pop()); } } context.write("\r\n\t\t\t\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide1.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t\t"); context.write( imageSlide1.description ); context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\r\n\t\t"); } // Slideshow ohne Hintergrundbild (Nur Bild), ohne Contentcopy else { context.write("\r\n\r\n\t\t\t"); var maxThumbnailHeight = 0; var maxThumbnailWidth = 0; for (var indexThumbnailHeight=0; indexThumbnailHeight < images.count; ++indexThumbnailHeight ) { var imageThumbnailHeight = images.item(indexThumbnailHeight); imageThumbnailHeight.skipContentCopy(); var currentThumbnailHeight = imageThumbnailHeight.createThumbWithInfo(columnWidth); if ( currentThumbnailHeight.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageThumbnailHeight.thumbPath(columnWidth).split("/").pop()); } } if ( currentThumbnailHeight.height > maxThumbnailHeight ) { maxThumbnailHeight = currentThumbnailHeight.height; } if ( currentThumbnailHeight.width > maxThumbnailWidth ) { maxThumbnailWidth = currentThumbnailHeight.width; } } context.write("\r\n\t\t\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\t"); var descriptionSlide2, encodedDescription2, imageSlide2; for ( var indexSlide2=0; indexSlide2 < images.count; ++indexSlide2 ) { imageSlide2 = images.item(indexSlide2); imageSlide2.skipContentCopy(); descriptionSlide2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.description)); encodedDescription2 = system.htmlEncode(imageSlide2.description); altText2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.altText)); var tni = imageSlide2.createThumbWithInfo(columnWidth); if ( tni.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide2.thumbPath(columnWidth).split("/").pop()); } } var tmpWidth = parseInt(tni.ThumbnailWidth); var tmpHeight = parseInt(tni.ThumbnailHeight); var tmpSrc = imageSlide2.thumbPath(columnWidth); context.write("\r\n\t\t\t\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide2.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t"); context.write( imageSlide2.description ); context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\r\n\t\t"); } context.write("\r\n\r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826723823().executeScript(); 2020-07-14 20:58:02,675 [19] INFO - --------- 2020-07-14 20:58:02,675 [19] INFO - Information: 0 : 2020-07-14 20:58:02,675 [19] INFO - --------- 2020-07-14 20:58:02,677 [19] INFO - Information: 0 : 2020-07-14 20:58:02,678 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,679 [19] INFO - Information: 0 : 2020-07-14 20:58:02,679 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,679 [19] INFO - Information: 0 : 2020-07-14 20:58:02,679 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,693 [19] INFO - Information: 0 : 2020-07-14 20:58:02,693 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,694 [19] INFO - Information: 0 : 2020-07-14 20:58:02,694 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,694 [19] INFO - Information: 0 : 2020-07-14 20:58:02,695 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,695 [19] INFO - Information: 0 : 2020-07-14 20:58:02,695 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,698 [19] INFO - Information: 0 : 2020-07-14 20:58:02,698 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,699 [19] INFO - Information: 0 : 2020-07-14 20:58:02,699 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,699 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:02,699 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:02,699 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:02,699 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:02,699 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:02,699 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:02,701 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,703 [19] INFO - --------- 2020-07-14 20:58:02,703 [19] INFO - function SE637303570827013839() {} SE637303570827013839.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570827013839().executeScript(); 2020-07-14 20:58:02,703 [19] INFO - --------- 2020-07-14 20:58:02,710 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,710 [19] INFO - --------- 2020-07-14 20:58:02,711 [19] INFO - function SE637303570827013839() {} SE637303570827013839.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570827013839().executeScript(); 2020-07-14 20:58:02,711 [19] INFO - --------- 2020-07-14 20:58:02,711 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1863. 2020-07-14 20:58:02,711 [19] INFO - --------- 2020-07-14 20:58:02,711 [19] INFO - [system.partial] „article-begin.html“ 9 ms „“ 2020-07-14 20:58:02,712 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,712 [19] INFO - --------- 2020-07-14 20:58:02,712 [19] INFO - function SE637303570827113845() {} SE637303570827113845.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570827113845().executeScript(); 2020-07-14 20:58:02,712 [19] INFO - --------- 2020-07-14 20:58:02,715 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,715 [19] INFO - --------- 2020-07-14 20:58:02,716 [19] INFO - function SE637303570827113845() {} SE637303570827113845.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570827113845().executeScript(); 2020-07-14 20:58:02,716 [19] INFO - --------- 2020-07-14 20:58:02,716 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1864. 2020-07-14 20:58:02,716 [19] INFO - --------- 2020-07-14 20:58:02,716 [19] INFO - [system.partial] „article-headline.html“ 4 ms „“ 2020-07-14 20:58:02,702 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,726 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,727 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 394. 2020-07-14 20:58:02,727 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 394. 2020-07-14 20:58:02,728 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,728 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,728 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 394. 2020-07-14 20:58:02,729 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,730 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\8702e4a483fa4bb2838ef70072da89c8.jpg“ (22.01.2019 19:23:20) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6576-920.jpg“ (15.05.2019 20:34:31). Delta last write time is -9767471 seconds. Is source file newer: False. 2020-07-14 20:58:02,730 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,738 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,739 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 395. 2020-07-14 20:58:02,739 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 395. 2020-07-14 20:58:02,739 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,740 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,740 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 395. 2020-07-14 20:58:02,741 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,741 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\886d0445243a450095552838ea957884.jpg“ (22.01.2019 19:23:24) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6577-920.jpg“ (15.05.2019 20:34:33). Delta last write time is -9767469 seconds. Is source file newer: False. 2020-07-14 20:58:02,750 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,750 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 396. 2020-07-14 20:58:02,751 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 396. 2020-07-14 20:58:02,751 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,752 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,752 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 396. 2020-07-14 20:58:02,752 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,753 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\c9c76b9cc038494780f9e5544cb57543.jpg“ (22.01.2019 19:23:30) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6578-920.jpg“ (15.05.2019 20:34:35). Delta last write time is -9767465 seconds. Is source file newer: False. 2020-07-14 20:58:02,759 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,762 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,763 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 397. 2020-07-14 20:58:02,763 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 397. 2020-07-14 20:58:02,764 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,764 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,764 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 397. 2020-07-14 20:58:02,765 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,766 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\e4ad4274901f4edc814b83faa64f2224.jpg“ (22.01.2019 19:23:26) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6579-920.jpg“ (15.05.2019 20:34:38). Delta last write time is -9767472 seconds. Is source file newer: False. 2020-07-14 20:58:02,774 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,774 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 398. 2020-07-14 20:58:02,774 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 398. 2020-07-14 20:58:02,775 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,775 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,776 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 398. 2020-07-14 20:58:02,776 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,777 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\b307ae2db8dc478486a51f0d821db519.jpg“ (22.01.2019 19:23:20) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6580-920.jpg“ (15.05.2019 20:34:40). Delta last write time is -9767480 seconds. Is source file newer: False. 2020-07-14 20:58:02,785 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,786 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 393. 2020-07-14 20:58:02,786 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 393. 2020-07-14 20:58:02,787 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,787 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 393. 2020-07-14 20:58:02,788 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,788 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\af727add8c294e4393ea125173b632ae.jpg“ (22.01.2019 19:23:30) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6574-920.jpg“ (15.05.2019 20:34:29). Delta last write time is -9767459 seconds. Is source file newer: False. 2020-07-14 20:58:02,790 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,790 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 394. 2020-07-14 20:58:02,791 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 394. 2020-07-14 20:58:02,791 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,791 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 394. 2020-07-14 20:58:02,792 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,793 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\8702e4a483fa4bb2838ef70072da89c8.jpg“ (22.01.2019 19:23:20) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6576-920.jpg“ (15.05.2019 20:34:31). Delta last write time is -9767471 seconds. Is source file newer: False. 2020-07-14 20:58:02,794 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,795 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 395. 2020-07-14 20:58:02,795 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 395. 2020-07-14 20:58:02,796 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,796 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 395. 2020-07-14 20:58:02,797 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,798 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\886d0445243a450095552838ea957884.jpg“ (22.01.2019 19:23:24) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6577-920.jpg“ (15.05.2019 20:34:33). Delta last write time is -9767469 seconds. Is source file newer: False. 2020-07-14 20:58:02,799 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,799 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,800 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 396. 2020-07-14 20:58:02,800 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 396. 2020-07-14 20:58:02,801 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,801 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 396. 2020-07-14 20:58:02,802 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,802 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\c9c76b9cc038494780f9e5544cb57543.jpg“ (22.01.2019 19:23:30) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6578-920.jpg“ (15.05.2019 20:34:35). Delta last write time is -9767465 seconds. Is source file newer: False. 2020-07-14 20:58:02,803 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,804 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 397. 2020-07-14 20:58:02,804 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 397. 2020-07-14 20:58:02,805 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,805 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 397. 2020-07-14 20:58:02,806 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,806 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\e4ad4274901f4edc814b83faa64f2224.jpg“ (22.01.2019 19:23:26) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6579-920.jpg“ (15.05.2019 20:34:38). Delta last write time is -9767472 seconds. Is source file newer: False. 2020-07-14 20:58:02,807 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,808 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 398. 2020-07-14 20:58:02,808 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 398. 2020-07-14 20:58:02,809 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,809 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 398. 2020-07-14 20:58:02,810 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,810 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\b307ae2db8dc478486a51f0d821db519.jpg“ (22.01.2019 19:23:20) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6580-920.jpg“ (15.05.2019 20:34:40). Delta last write time is -9767480 seconds. Is source file newer: False. 2020-07-14 20:58:02,812 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,813 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:02,813 [19] INFO - Information: 0 : 2020-07-14 20:58:02,813 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:02,813 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,813 [19] INFO - Information: 0 : 2020-07-14 20:58:02,813 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,813 [19] INFO - --------- 2020-07-14 20:58:02,814 [19] INFO - Information: 0 : 2020-07-14 20:58:02,814 [19] INFO - --------- 2020-07-14 20:58:02,814 [19] INFO - function SE637303570826723823() {} SE637303570826723823.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. var imagesPerPage = parseInt(article.value("imagesperpage", 0)); var isPaging = false; var contentImageWidth = "890"; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl hohlen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || 960; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } // if page contains a news area, we only approximate a 2/3 1/3 size layout in order to calculate thumbnails if ( article.area.toLowerCase() == "news" ){ gridCols = 4; } else if ( page.anyAreaArticles("News") ){ gridCols = 8; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } var showSlideshow = article.value("slideshow"); var albumId = article.value("album"); var images = project.getAlbumImages(albumId); var thumbnailWidth = article.value("width"); var thumbnailHeight = article.value("height"); var titlePosition = article.value("titleposition"); var thumbTitlePosition = article.value("thumbtitleposition", "off"); var imageMargin = parseInt(article.value("margin", "0")); // figure out if images have a border set in layout-settings and compensate for it, if the article doesn't have a custom class "noborder" set var imageBorder = 0; var tmpArticleCssClass = " " + article.cssClass; if ( tmpArticleCssClass.indexOf("noborder") == -1 && "" != "0" && "" != "" ) { imageBorder = parseInt(""); } var generateThumbs = true; if ( titlePosition !== "off" ) { var titleShow = "1"; } else { var titleShow = "0"; } if ( "de" == "en" ) { var lang = "en"; } else { var lang = "de"; } var backgroundImage = backgroundWidth = backgroundHeight = backgroundLeft = backgroundTop = ""; if ( showSlideshow && article.valueRaw("slideshowtemplate") !== "none" ) { backgroundImage = article.value("slideshowtemplate", ""); if ( backgroundImage.indexOf("/laptop.png") > -1 ) { backgroundImage = "assets/js/img/laptop.png"; var backgroundWidth = "801"; var backgroundHeight = "469"; var backgroundLeft= "104"; var backgroundTop = "31"; thumbnailWidth = "590"; thumbnailHeight = "369"; } else if ( backgroundImage.indexOf("/laptop_klein.png") > -1 ) { backgroundImage = "assets/js/img/laptop_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "268"; var backgroundLeft= "59"; var backgroundTop = "18"; thumbnailWidth = "338"; thumbnailHeight = "211"; } else if ( backgroundImage.indexOf("/rahmen.png") > -1 ) { backgroundImage = "assets/js/img/rahmen.png"; var backgroundWidth = "758"; var backgroundHeight = "469"; var backgroundLeft= "55"; var backgroundTop = "57"; thumbnailWidth = "648"; thumbnailHeight = "356"; } else if ( backgroundImage.indexOf("/rahmen_klein.png") > -1 ) { backgroundImage = "assets/js/img/rahmen_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "283"; var backgroundLeft= "33"; var backgroundTop = "34"; thumbnailWidth = "392"; thumbnailHeight = "214"; } } else if ( showSlideshow && article.valueRaw("slideshowtemplate") == "none" ) { thumbnailWidth = columnWidth; //generateThumbs = false; } if ( system.preview ){ //system.log(images.count == 1 ? (" 1 Bild...") : (" " + images.count + " Bilder...")); } var gridFactor = 12 / gridCols; var maxcols = Math.ceil((contentImageWidth / (thumbnailWidth+imageMargin)) / gridFactor); var onecolumnbreakpoint = 479; var maxmobilecols = Math.ceil(onecolumnbreakpoint / thumbnailWidth); var mobilecontainerwidth = 100 / maxmobilecols; var headstyle = "/* test */"; headstyle += "\ #igal" + article.id + ":not(.zpSlideshow){\n\ margin-left: -" + imageMargin/2 + "px !important;\n\ margin-right: -" + imageMargin/2 + "px !important;\n\ }\n\ /* below is to accomodates for IE rounding errors which caused the cols not to fit into the row */\n\ .ie #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc((100% / "+ maxcols +") - " + parseInt(imageMargin/2)*2 + ".1px) !important;\n\ margin: " + parseInt(imageMargin/2) + "px !important;\n\ }\n\ \n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item,\n\ #igal" + article.id + ":not(.zpSlideshow) > a,\n\ #igal" + article.id + ":not(.zpSlideshow) .slide > a{\n\ display: block;\n\ float: left;\n\ width: calc((100% / "+ maxcols +") - " + imageMargin + "px);\n\ max-width: "+ thumbnailWidth +"px;\n\ height: auto;\n\ margin: " + imageMargin / 2 + "px;\n\ }\n\ #igal" + article.id +" > a > img{\n\ max-width: 100%;\n\ display: block;\n\ }\n\ "; for ( var i = 1; i < maxcols - 1; i++){ var breakpoint = contentImageWidth - (i * thumbnailWidth); if ( breakpoint <= onecolumnbreakpoint ){ // if we reach the point, where the ZP Grid will display rows in 1-column, we break and need to use a different logic (see next for-loop) break; } var containerwidth = 100 / ( maxcols - i); headstyle += "\n\ @media screen and (max-width: " + breakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + containerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; } // mobile display 2+-column-rows. for ( var i = 1; i < maxmobilecols; i++){ headstyle += "\n\ @media screen and (max-width: " + onecolumnbreakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + mobilecontainerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; onecolumnbreakpoint = ( maxmobilecols -i ) * thumbnailWidth; mobilecontainerwidth = 100 / ( maxmobilecols -i ); } // mobile display 1-column-row. headstyle += "\n\ @media screen and (max-width: " + (thumbnailWidth+imageMargin) +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(100% - " + imageMargin + "px);\n\ }\n\ }\n\ "; headstyle += ""; system.addHtmlHeadElement(headstyle); // polyfill for JSON.stringify() // https://gist.github.com/uupaa/5562297 function _toJSONEscapedString(str) { // @arg String: // @ret String: // @inner: to JSON escaped string if (typeof(str)==='undefined') str = ""; if ( str == ""){ return ""; } else{ var JSON_ESCAPE = { '\b': '\\b', // backspace U+0008 '\t': '\\t', // tab U+0009 '\n': '\\n', // line feed U+000A '\f': '\\f', // form feed U+000C '\r': '\\r', // carriage return U+000D '"': '\\"', // quotation mark U+0022 '\\': '\\\\' // reverse solidus U+005C }; return str.replace(/(?:[\b\t\n\f\r\"]|\\)/g, function(_) { return JSON_ESCAPE[_]; }).replace(/(?:[\x00-\x1f])/g, function(_) { return "\\u00" + ("0" + _.charCodeAt(0).toString(16)).slice(-2); }); } } context.write("\r\n\r\n"); // normales Bilderalbum mit thumbnails, ohne ContentCopy if ( !showSlideshow ) { // only activate paging via json-data when more than one page of images to show exists if ( imagesPerPage > 0 && images.count > imagesPerPage ){ isPaging = true; } context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\r\n\t\t
    999999 ){ context.write("style=\"margin-right: -"); context.write( imageMargin ); context.write("px;\" "); } context.write("\r\n\t\t\tdata-article-id=\""); context.write(article.id); context.write("\" \r\n\t\t\tdata-prevtext=\"Zurück\" \r\n\t\t\tdata-nexttext=\"Weiter\" \r\n\t\t\tdata-pagetext=\"Seite {0} von {1}\" \r\n\t\t\tdata-ispaging=\""); context.write(isPaging); context.write("\" \r\n\t\t\tdata-imageeffect=\""); context.write(effectClass); context.write("\" \r\n\t\t\tdata-imagesperpage=\""); context.write(imagesPerPage); context.write("\" \r\n\t\t\tdata-kind=\"gallery\" \r\n\t\t\tdata-width=\""); context.write( thumbnailWidth ); context.write("\"\r\n\t\t\tdata-height=\""); context.write( thumbnailHeight ); context.write("\"\r\n\t\t\tdata-margin=\""); context.write( article.value("margin", "") ); context.write("\"\r\n\t\t\tdata-maxcols=\""); context.write( maxcols ); context.write("\"\r\n\t\t\tdata-bordercolor=\"default\"\r\n\t\t\tdata-borderwidth=\"0\"\r\n\t\t\tdata-numbershow=\"0\" \r\n\t\t\tdata-template=\"\" \r\n\t\t\tdata-titleshow=\""); context.write( titleShow ); context.write("\"\r\n\t\t\tdata-titleposition=\""); context.write( article.value("titleposition", "") ); context.write("\"\r\n\t\t\tdata-transition=\""); context.write( article.value("zoom", "") ); context.write("\"\r\n\t\t\tdata-inner-transition=\""); context.write( article.value("transition", "") ); context.write("\"\r\n\t\t\tdata-slideshow=\"0\"\r\n\t\t\tdata-slideshowinterval=\"0\"\r\n\t\t\tdata-lang=\""); context.write( lang ); context.write("\">\r\n\t\r\n\t\t\t"); if ( isPaging ) { context.write("\r\n\t\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\t\t
    \r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } else { context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\r\n\t\t\r\n\t\t"); // Slideshow mit Hintergrundbild aus Template (Laptop etc.), ohne Contentcopy if ( backgroundImage !== "" && backgroundImage !== "Keine" ) { context.write("\r\n\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t\"\"\r\n\t\t\r\n\t\t\t\t\t"); var descriptionSlide1, altText1, encodedDescription1, imageSlide1; for ( var indexSlide1=0; indexSlide1 < images.count; ++indexSlide1 ) { imageSlide1 = images.item(indexSlide1); imageSlide1.skipContentCopy(); // keine contentCopy erzeugen, da überflüssig weil gleich groß wie workingCopy descriptionSlide1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.description)); encodedDescription1 = system.htmlEncode(imageSlide1.description); altText1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.altText)); if ( imageSlide1.createThumb(thumbnailWidth, thumbnailHeight) ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide1.thumbPath(thumbnailWidth, thumbnailHeight).split("/").pop()); } } context.write("\r\n\t\t\t\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide1.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t\t"); context.write( imageSlide1.description ); context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\r\n\t\t"); } // Slideshow ohne Hintergrundbild (Nur Bild), ohne Contentcopy else { context.write("\r\n\r\n\t\t\t"); var maxThumbnailHeight = 0; var maxThumbnailWidth = 0; for (var indexThumbnailHeight=0; indexThumbnailHeight < images.count; ++indexThumbnailHeight ) { var imageThumbnailHeight = images.item(indexThumbnailHeight); imageThumbnailHeight.skipContentCopy(); var currentThumbnailHeight = imageThumbnailHeight.createThumbWithInfo(columnWidth); if ( currentThumbnailHeight.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageThumbnailHeight.thumbPath(columnWidth).split("/").pop()); } } if ( currentThumbnailHeight.height > maxThumbnailHeight ) { maxThumbnailHeight = currentThumbnailHeight.height; } if ( currentThumbnailHeight.width > maxThumbnailWidth ) { maxThumbnailWidth = currentThumbnailHeight.width; } } context.write("\r\n\t\t\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\t"); var descriptionSlide2, encodedDescription2, imageSlide2; for ( var indexSlide2=0; indexSlide2 < images.count; ++indexSlide2 ) { imageSlide2 = images.item(indexSlide2); imageSlide2.skipContentCopy(); descriptionSlide2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.description)); encodedDescription2 = system.htmlEncode(imageSlide2.description); altText2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.altText)); var tni = imageSlide2.createThumbWithInfo(columnWidth); if ( tni.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide2.thumbPath(columnWidth).split("/").pop()); } } var tmpWidth = parseInt(tni.ThumbnailWidth); var tmpHeight = parseInt(tni.ThumbnailHeight); var tmpSrc = imageSlide2.thumbPath(columnWidth); context.write("\r\n\t\t\t\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide2.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t"); context.write( imageSlide2.description ); context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\r\n\t\t"); } context.write("\r\n\r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826723823().executeScript(); 2020-07-14 20:58:02,815 [19] INFO - Information: 0 : 2020-07-14 20:58:02,815 [19] INFO - function SE637303570826723823() {} SE637303570826723823.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. var imagesPerPage = parseInt(article.value("imagesperpage", 0)); var isPaging = false; var contentImageWidth = "890"; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl hohlen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || 960; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } // if page contains a news area, we only approximate a 2/3 1/3 size layout in order to calculate thumbnails if ( article.area.toLowerCase() == "news" ){ gridCols = 4; } else if ( page.anyAreaArticles("News") ){ gridCols = 8; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } var showSlideshow = article.value("slideshow"); var albumId = article.value("album"); var images = project.getAlbumImages(albumId); var thumbnailWidth = article.value("width"); var thumbnailHeight = article.value("height"); var titlePosition = article.value("titleposition"); var thumbTitlePosition = article.value("thumbtitleposition", "off"); var imageMargin = parseInt(article.value("margin", "0")); // figure out if images have a border set in layout-settings and compensate for it, if the article doesn't have a custom class "noborder" set var imageBorder = 0; var tmpArticleCssClass = " " + article.cssClass; if ( tmpArticleCssClass.indexOf("noborder") == -1 && "" != "0" && "" != "" ) { imageBorder = parseInt(""); } var generateThumbs = true; if ( titlePosition !== "off" ) { var titleShow = "1"; } else { var titleShow = "0"; } if ( "de" == "en" ) { var lang = "en"; } else { var lang = "de"; } var backgroundImage = backgroundWidth = backgroundHeight = backgroundLeft = backgroundTop = ""; if ( showSlideshow && article.valueRaw("slideshowtemplate") !== "none" ) { backgroundImage = article.value("slideshowtemplate", ""); if ( backgroundImage.indexOf("/laptop.png") > -1 ) { backgroundImage = "assets/js/img/laptop.png"; var backgroundWidth = "801"; var backgroundHeight = "469"; var backgroundLeft= "104"; var backgroundTop = "31"; thumbnailWidth = "590"; thumbnailHeight = "369"; } else if ( backgroundImage.indexOf("/laptop_klein.png") > -1 ) { backgroundImage = "assets/js/img/laptop_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "268"; var backgroundLeft= "59"; var backgroundTop = "18"; thumbnailWidth = "338"; thumbnailHeight = "211"; } else if ( backgroundImage.indexOf("/rahmen.png") > -1 ) { backgroundImage = "assets/js/img/rahmen.png"; var backgroundWidth = "758"; var backgroundHeight = "469"; var backgroundLeft= "55"; var backgroundTop = "57"; thumbnailWidth = "648"; thumbnailHeight = "356"; } else if ( backgroundImage.indexOf("/rahmen_klein.png") > -1 ) { backgroundImage = "assets/js/img/rahmen_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "283"; var backgroundLeft= "33"; var backgroundTop = "34"; thumbnailWidth = "392"; thumbnailHeight = "214"; } } else if ( showSlideshow && article.valueRaw("slideshowtemplate") == "none" ) { thumbnailWidth = columnWidth; //generateThumbs = false; } if ( system.preview ){ //system.log(images.count == 1 ? (" 1 Bild...") : (" " + images.count + " Bilder...")); } var gridFactor = 12 / gridCols; var maxcols = Math.ceil((contentImageWidth / (thumbnailWidth+imageMargin)) / gridFactor); var onecolumnbreakpoint = 479; var maxmobilecols = Math.ceil(onecolumnbreakpoint / thumbnailWidth); var mobilecontainerwidth = 100 / maxmobilecols; var headstyle = "/* test */"; headstyle += "\ #igal" + article.id + ":not(.zpSlideshow){\n\ margin-left: -" + imageMargin/2 + "px !important;\n\ margin-right: -" + imageMargin/2 + "px !important;\n\ }\n\ /* below is to accomodates for IE rounding errors which caused the cols not to fit into the row */\n\ .ie #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc((100% / "+ maxcols +") - " + parseInt(imageMargin/2)*2 + ".1px) !important;\n\ margin: " + parseInt(imageMargin/2) + "px !important;\n\ }\n\ \n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item,\n\ #igal" + article.id + ":not(.zpSlideshow) > a,\n\ #igal" + article.id + ":not(.zpSlideshow) .slide > a{\n\ display: block;\n\ float: left;\n\ width: calc((100% / "+ maxcols +") - " + imageMargin + "px);\n\ max-width: "+ thumbnailWidth +"px;\n\ height: auto;\n\ margin: " + imageMargin / 2 + "px;\n\ }\n\ #igal" + article.id +" > a > img{\n\ max-width: 100%;\n\ display: block;\n\ }\n\ "; for ( var i = 1; i < maxcols - 1; i++){ var breakpoint = contentImageWidth - (i * thumbnailWidth); if ( breakpoint <= onecolumnbreakpoint ){ // if we reach the point, where the ZP Grid will display rows in 1-column, we break and need to use a different logic (see next for-loop) break; } var containerwidth = 100 / ( maxcols - i); headstyle += "\n\ @media screen and (max-width: " + breakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + containerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; } // mobile display 2+-column-rows. for ( var i = 1; i < maxmobilecols; i++){ headstyle += "\n\ @media screen and (max-width: " + onecolumnbreakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + mobilecontainerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; onecolumnbreakpoint = ( maxmobilecols -i ) * thumbnailWidth; mobilecontainerwidth = 100 / ( maxmobilecols -i ); } // mobile display 1-column-row. headstyle += "\n\ @media screen and (max-width: " + (thumbnailWidth+imageMargin) +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(100% - " + imageMargin + "px);\n\ }\n\ }\n\ "; headstyle += ""; system.addHtmlHeadElement(headstyle); // polyfill for JSON.stringify() // https://gist.github.com/uupaa/5562297 function _toJSONEscapedString(str) { // @arg String: // @ret String: // @inner: to JSON escaped string if (typeof(str)==='undefined') str = ""; if ( str == ""){ return ""; } else{ var JSON_ESCAPE = { '\b': '\\b', // backspace U+0008 '\t': '\\t', // tab U+0009 '\n': '\\n', // line feed U+000A '\f': '\\f', // form feed U+000C '\r': '\\r', // carriage return U+000D '"': '\\"', // quotation mark U+0022 '\\': '\\\\' // reverse solidus U+005C }; return str.replace(/(?:[\b\t\n\f\r\"]|\\)/g, function(_) { return JSON_ESCAPE[_]; }).replace(/(?:[\x00-\x1f])/g, function(_) { return "\\u00" + ("0" + _.charCodeAt(0).toString(16)).slice(-2); }); } } context.write("\r\n\r\n"); // normales Bilderalbum mit thumbnails, ohne ContentCopy if ( !showSlideshow ) { // only activate paging via json-data when more than one page of images to show exists if ( imagesPerPage > 0 && images.count > imagesPerPage ){ isPaging = true; } context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\r\n\t\t
    999999 ){ context.write("style=\"margin-right: -"); context.write( imageMargin ); context.write("px;\" "); } context.write("\r\n\t\t\tdata-article-id=\""); context.write(article.id); context.write("\" \r\n\t\t\tdata-prevtext=\"Zurück\" \r\n\t\t\tdata-nexttext=\"Weiter\" \r\n\t\t\tdata-pagetext=\"Seite {0} von {1}\" \r\n\t\t\tdata-ispaging=\""); context.write(isPaging); context.write("\" \r\n\t\t\tdata-imageeffect=\""); context.write(effectClass); context.write("\" \r\n\t\t\tdata-imagesperpage=\""); context.write(imagesPerPage); context.write("\" \r\n\t\t\tdata-kind=\"gallery\" \r\n\t\t\tdata-width=\""); context.write( thumbnailWidth ); context.write("\"\r\n\t\t\tdata-height=\""); context.write( thumbnailHeight ); context.write("\"\r\n\t\t\tdata-margin=\""); context.write( article.value("margin", "") ); context.write("\"\r\n\t\t\tdata-maxcols=\""); context.write( maxcols ); context.write("\"\r\n\t\t\tdata-bordercolor=\"default\"\r\n\t\t\tdata-borderwidth=\"0\"\r\n\t\t\tdata-numbershow=\"0\" \r\n\t\t\tdata-template=\"\" \r\n\t\t\tdata-titleshow=\""); context.write( titleShow ); context.write("\"\r\n\t\t\tdata-titleposition=\""); context.write( article.value("titleposition", "") ); context.write("\"\r\n\t\t\tdata-transition=\""); context.write( article.value("zoom", "") ); context.write("\"\r\n\t\t\tdata-inner-transition=\""); context.write( article.value("transition", "") ); context.write("\"\r\n\t\t\tdata-slideshow=\"0\"\r\n\t\t\tdata-slideshowinterval=\"0\"\r\n\t\t\tdata-lang=\""); context.write( lang ); context.write("\">\r\n\t\r\n\t\t\t"); if ( isPaging ) { context.write("\r\n\t\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\t\t
    \r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } else { context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\r\n\t\t\r\n\t\t"); // Slideshow mit Hintergrundbild aus Template (Laptop etc.), ohne Contentcopy if ( backgroundImage !== "" && backgroundImage !== "Keine" ) { context.write("\r\n\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t\"\"\r\n\t\t\r\n\t\t\t\t\t"); var descriptionSlide1, altText1, encodedDescription1, imageSlide1; for ( var indexSlide1=0; indexSlide1 < images.count; ++indexSlide1 ) { imageSlide1 = images.item(indexSlide1); imageSlide1.skipContentCopy(); // keine contentCopy erzeugen, da überflüssig weil gleich groß wie workingCopy descriptionSlide1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.description)); encodedDescription1 = system.htmlEncode(imageSlide1.description); altText1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.altText)); if ( imageSlide1.createThumb(thumbnailWidth, thumbnailHeight) ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide1.thumbPath(thumbnailWidth, thumbnailHeight).split("/").pop()); } } context.write("\r\n\t\t\t\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide1.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t\t"); context.write( imageSlide1.description ); context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\r\n\t\t"); } // Slideshow ohne Hintergrundbild (Nur Bild), ohne Contentcopy else { context.write("\r\n\r\n\t\t\t"); var maxThumbnailHeight = 0; var maxThumbnailWidth = 0; for (var indexThumbnailHeight=0; indexThumbnailHeight < images.count; ++indexThumbnailHeight ) { var imageThumbnailHeight = images.item(indexThumbnailHeight); imageThumbnailHeight.skipContentCopy(); var currentThumbnailHeight = imageThumbnailHeight.createThumbWithInfo(columnWidth); if ( currentThumbnailHeight.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageThumbnailHeight.thumbPath(columnWidth).split("/").pop()); } } if ( currentThumbnailHeight.height > maxThumbnailHeight ) { maxThumbnailHeight = currentThumbnailHeight.height; } if ( currentThumbnailHeight.width > maxThumbnailWidth ) { maxThumbnailWidth = currentThumbnailHeight.width; } } context.write("\r\n\t\t\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\t"); var descriptionSlide2, encodedDescription2, imageSlide2; for ( var indexSlide2=0; indexSlide2 < images.count; ++indexSlide2 ) { imageSlide2 = images.item(indexSlide2); imageSlide2.skipContentCopy(); descriptionSlide2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.description)); encodedDescription2 = system.htmlEncode(imageSlide2.description); altText2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.altText)); var tni = imageSlide2.createThumbWithInfo(columnWidth); if ( tni.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide2.thumbPath(columnWidth).split("/").pop()); } } var tmpWidth = parseInt(tni.ThumbnailWidth); var tmpHeight = parseInt(tni.ThumbnailHeight); var tmpSrc = imageSlide2.thumbPath(columnWidth); context.write("\r\n\t\t\t\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide2.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t"); context.write( imageSlide2.description ); context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\r\n\t\t"); } context.write("\r\n\r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570826723823().executeScript(); 2020-07-14 20:58:02,816 [19] INFO - --------- 2020-07-14 20:58:02,816 [19] INFO - Information: 0 : 2020-07-14 20:58:02,816 [19] INFO - --------- 2020-07-14 20:58:02,816 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1865. 2020-07-14 20:58:02,816 [19] INFO - Information: 0 : 2020-07-14 20:58:02,816 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1865. 2020-07-14 20:58:02,816 [19] INFO - --------- 2020-07-14 20:58:02,816 [19] INFO - Information: 0 : 2020-07-14 20:58:02,816 [19] INFO - --------- 2020-07-14 20:58:02,817 [19] INFO - Information: 0 : 2020-07-14 20:58:02,817 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,820 [19] INFO - Information: 0 : 2020-07-14 20:58:02,820 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,820 [19] INFO - Information: 0 : 2020-07-14 20:58:02,820 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,821 [19] INFO - Information: 0 : 2020-07-14 20:58:02,821 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,823 [19] INFO - Information: 0 : 2020-07-14 20:58:02,823 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,823 [19] INFO - Information: 0 : 2020-07-14 20:58:02,823 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,824 [19] INFO - Information: 0 : 2020-07-14 20:58:02,824 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,826 [19] INFO - Information: 0 : 2020-07-14 20:58:02,826 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,826 [19] INFO - Information: 0 : 2020-07-14 20:58:02,826 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,828 [19] INFO - Information: 0 : 2020-07-14 20:58:02,828 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,829 [19] INFO - Information: 0 : 2020-07-14 20:58:02,829 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,830 [19] INFO - Information: 0 : 2020-07-14 20:58:02,830 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,831 [19] INFO - Information: 0 : 2020-07-14 20:58:02,831 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,831 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,833 [19] INFO - Information: 0 : 2020-07-14 20:58:02,833 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,833 [19] INFO - Information: 0 : 2020-07-14 20:58:02,833 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,834 [19] INFO - Information: 0 : 2020-07-14 20:58:02,834 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,835 [19] INFO - Information: 0 : 2020-07-14 20:58:02,835 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,835 [19] INFO - Information: 0 : 2020-07-14 20:58:02,835 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,838 [19] INFO - Information: 0 : 2020-07-14 20:58:02,838 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,840 [19] INFO - Information: 0 : 2020-07-14 20:58:02,840 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,840 [19] INFO - Information: 0 : 2020-07-14 20:58:02,840 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,841 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,841 [19] INFO - Information: 0 : 2020-07-14 20:58:02,841 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,841 [19] INFO - --------- 2020-07-14 20:58:02,842 [19] INFO - Information: 0 : 2020-07-14 20:58:02,842 [19] INFO - --------- 2020-07-14 20:58:02,842 [19] INFO - function SE637303570828413919() {} SE637303570828413919.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828413919().executeScript(); 2020-07-14 20:58:02,842 [19] INFO - Information: 0 : 2020-07-14 20:58:02,842 [19] INFO - function SE637303570828413919() {} SE637303570828413919.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828413919().executeScript(); 2020-07-14 20:58:02,842 [19] INFO - --------- 2020-07-14 20:58:02,842 [19] INFO - Information: 0 : 2020-07-14 20:58:02,842 [19] INFO - --------- 2020-07-14 20:58:02,844 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,844 [19] INFO - Information: 0 : 2020-07-14 20:58:02,844 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,844 [19] INFO - --------- 2020-07-14 20:58:02,844 [19] INFO - Information: 0 : 2020-07-14 20:58:02,844 [19] INFO - --------- 2020-07-14 20:58:02,844 [19] INFO - function SE637303570828443921() {} SE637303570828443921.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828443921().executeScript(); 2020-07-14 20:58:02,845 [19] INFO - Information: 0 : 2020-07-14 20:58:02,845 [19] INFO - function SE637303570828443921() {} SE637303570828443921.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828443921().executeScript(); 2020-07-14 20:58:02,845 [19] INFO - --------- 2020-07-14 20:58:02,845 [19] INFO - Information: 0 : 2020-07-14 20:58:02,845 [19] INFO - --------- 2020-07-14 20:58:02,850 [19] INFO - Information: 0 : 2020-07-14 20:58:02,850 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,852 [19] INFO - Information: 0 : 2020-07-14 20:58:02,852 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,852 [19] INFO - Information: 0 : 2020-07-14 20:58:02,852 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,853 [19] INFO - Information: 0 : 2020-07-14 20:58:02,853 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,854 [19] INFO - Information: 0 : 2020-07-14 20:58:02,854 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,854 [19] INFO - Information: 0 : 2020-07-14 20:58:02,854 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,855 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,855 [19] INFO - Information: 0 : 2020-07-14 20:58:02,855 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,855 [19] INFO - --------- 2020-07-14 20:58:02,855 [19] INFO - Information: 0 : 2020-07-14 20:58:02,855 [19] INFO - --------- 2020-07-14 20:58:02,855 [19] INFO - function SE637303570828443921() {} SE637303570828443921.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828443921().executeScript(); 2020-07-14 20:58:02,856 [19] INFO - Information: 0 : 2020-07-14 20:58:02,856 [19] INFO - function SE637303570828443921() {} SE637303570828443921.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828443921().executeScript(); 2020-07-14 20:58:02,856 [19] INFO - --------- 2020-07-14 20:58:02,856 [19] INFO - Information: 0 : 2020-07-14 20:58:02,856 [19] INFO - --------- 2020-07-14 20:58:02,856 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1866. 2020-07-14 20:58:02,856 [19] INFO - Information: 0 : 2020-07-14 20:58:02,856 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1866. 2020-07-14 20:58:02,856 [19] INFO - --------- 2020-07-14 20:58:02,857 [19] INFO - Information: 0 : 2020-07-14 20:58:02,857 [19] INFO - --------- 2020-07-14 20:58:02,857 [19] INFO - [system.partial] „article-begin.html“ 13 ms „“ 2020-07-14 20:58:02,857 [19] INFO - Information: 0 : 2020-07-14 20:58:02,857 [19] INFO - [system.partial] „article-begin.html“ 13 ms „“ 2020-07-14 20:58:02,857 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,857 [19] INFO - Information: 0 : 2020-07-14 20:58:02,857 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,858 [19] INFO - --------- 2020-07-14 20:58:02,858 [19] INFO - Information: 0 : 2020-07-14 20:58:02,858 [19] INFO - --------- 2020-07-14 20:58:02,858 [19] INFO - function SE637303570828573928() {} SE637303570828573928.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828573928().executeScript(); 2020-07-14 20:58:02,858 [19] INFO - Information: 0 : 2020-07-14 20:58:02,858 [19] INFO - function SE637303570828573928() {} SE637303570828573928.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828573928().executeScript(); 2020-07-14 20:58:02,858 [19] INFO - --------- 2020-07-14 20:58:02,858 [19] INFO - Information: 0 : 2020-07-14 20:58:02,858 [19] INFO - --------- 2020-07-14 20:58:02,859 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,862 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,862 [19] INFO - Information: 0 : 2020-07-14 20:58:02,862 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,862 [19] INFO - --------- 2020-07-14 20:58:02,862 [19] INFO - Information: 0 : 2020-07-14 20:58:02,862 [19] INFO - --------- 2020-07-14 20:58:02,862 [19] INFO - function SE637303570828573928() {} SE637303570828573928.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828573928().executeScript(); 2020-07-14 20:58:02,862 [19] INFO - Information: 0 : 2020-07-14 20:58:02,863 [19] INFO - function SE637303570828573928() {} SE637303570828573928.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828573928().executeScript(); 2020-07-14 20:58:02,863 [19] INFO - --------- 2020-07-14 20:58:02,863 [19] INFO - Information: 0 : 2020-07-14 20:58:02,863 [19] INFO - --------- 2020-07-14 20:58:02,863 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1867. 2020-07-14 20:58:02,863 [19] INFO - Information: 0 : 2020-07-14 20:58:02,863 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1867. 2020-07-14 20:58:02,863 [19] INFO - --------- 2020-07-14 20:58:02,863 [19] INFO - Information: 0 : 2020-07-14 20:58:02,864 [19] INFO - --------- 2020-07-14 20:58:02,864 [19] INFO - [system.partial] „article-headline.html“ 6 ms „“ 2020-07-14 20:58:02,864 [19] INFO - Information: 0 : 2020-07-14 20:58:02,864 [19] INFO - [system.partial] „article-headline.html“ 6 ms „“ 2020-07-14 20:58:02,864 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,864 [19] INFO - Information: 0 : 2020-07-14 20:58:02,864 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,864 [19] INFO - --------- 2020-07-14 20:58:02,865 [19] INFO - Information: 0 : 2020-07-14 20:58:02,865 [19] INFO - --------- 2020-07-14 20:58:02,865 [19] INFO - function SE637303570828643932() {} SE637303570828643932.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828643932().executeScript(); 2020-07-14 20:58:02,865 [19] INFO - Information: 0 : 2020-07-14 20:58:02,865 [19] INFO - function SE637303570828643932() {} SE637303570828643932.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828643932().executeScript(); 2020-07-14 20:58:02,865 [19] INFO - --------- 2020-07-14 20:58:02,865 [19] INFO - Information: 0 : 2020-07-14 20:58:02,865 [19] INFO - --------- 2020-07-14 20:58:02,868 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,868 [19] INFO - Information: 0 : 2020-07-14 20:58:02,868 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,868 [19] INFO - --------- 2020-07-14 20:58:02,868 [19] INFO - Information: 0 : 2020-07-14 20:58:02,868 [19] INFO - --------- 2020-07-14 20:58:02,868 [19] INFO - function SE637303570828643932() {} SE637303570828643932.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828643932().executeScript(); 2020-07-14 20:58:02,868 [19] INFO - Information: 0 : 2020-07-14 20:58:02,869 [19] INFO - function SE637303570828643932() {} SE637303570828643932.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828643932().executeScript(); 2020-07-14 20:58:02,869 [19] INFO - --------- 2020-07-14 20:58:02,869 [19] INFO - Information: 0 : 2020-07-14 20:58:02,869 [19] INFO - --------- 2020-07-14 20:58:02,869 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1868. 2020-07-14 20:58:02,869 [19] INFO - Information: 0 : 2020-07-14 20:58:02,869 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1868. 2020-07-14 20:58:02,869 [19] INFO - --------- 2020-07-14 20:58:02,869 [19] INFO - Information: 0 : 2020-07-14 20:58:02,869 [19] INFO - --------- 2020-07-14 20:58:02,870 [19] INFO - [system.partial] „inline-editor-start.html“ 5 ms „“ 2020-07-14 20:58:02,870 [19] INFO - Information: 0 : 2020-07-14 20:58:02,870 [19] INFO - [system.partial] „inline-editor-start.html“ 5 ms „“ 2020-07-14 20:58:02,870 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,870 [19] INFO - Information: 0 : 2020-07-14 20:58:02,870 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,870 [19] INFO - --------- 2020-07-14 20:58:02,870 [19] INFO - Information: 0 : 2020-07-14 20:58:02,871 [19] INFO - --------- 2020-07-14 20:58:02,871 [19] INFO - function SE637303570828703936() {} SE637303570828703936.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828703936().executeScript(); 2020-07-14 20:58:02,871 [19] INFO - Information: 0 : 2020-07-14 20:58:02,871 [19] INFO - function SE637303570828703936() {} SE637303570828703936.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828703936().executeScript(); 2020-07-14 20:58:02,871 [19] INFO - --------- 2020-07-14 20:58:02,871 [19] INFO - Information: 0 : 2020-07-14 20:58:02,871 [19] INFO - --------- 2020-07-14 20:58:02,872 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,872 [19] INFO - Information: 0 : 2020-07-14 20:58:02,872 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,872 [19] INFO - --------- 2020-07-14 20:58:02,873 [19] INFO - Information: 0 : 2020-07-14 20:58:02,873 [19] INFO - --------- 2020-07-14 20:58:02,873 [19] INFO - function SE637303570828703936() {} SE637303570828703936.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828703936().executeScript(); 2020-07-14 20:58:02,873 [19] INFO - Information: 0 : 2020-07-14 20:58:02,873 [19] INFO - function SE637303570828703936() {} SE637303570828703936.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828703936().executeScript(); 2020-07-14 20:58:02,873 [19] INFO - --------- 2020-07-14 20:58:02,873 [19] INFO - Information: 0 : 2020-07-14 20:58:02,873 [19] INFO - --------- 2020-07-14 20:58:02,873 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1869. 2020-07-14 20:58:02,873 [19] INFO - Information: 0 : 2020-07-14 20:58:02,874 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1869. 2020-07-14 20:58:02,874 [19] INFO - --------- 2020-07-14 20:58:02,874 [19] INFO - Information: 0 : 2020-07-14 20:58:02,874 [19] INFO - --------- 2020-07-14 20:58:02,874 [19] INFO - [system.partial] „inline-editor-end.html“ 3 ms „“ 2020-07-14 20:58:02,874 [19] INFO - Information: 0 : 2020-07-14 20:58:02,874 [19] INFO - [system.partial] „inline-editor-end.html“ 3 ms „“ 2020-07-14 20:58:02,874 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:02,875 [19] INFO - Information: 0 : 2020-07-14 20:58:02,875 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:02,875 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,875 [19] INFO - Information: 0 : 2020-07-14 20:58:02,875 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,875 [19] INFO - --------- 2020-07-14 20:58:02,875 [19] INFO - Information: 0 : 2020-07-14 20:58:02,875 [19] INFO - --------- 2020-07-14 20:58:02,875 [19] INFO - function SE637303570828413919() {} SE637303570828413919.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828413919().executeScript(); 2020-07-14 20:58:02,875 [19] INFO - Information: 0 : 2020-07-14 20:58:02,876 [19] INFO - function SE637303570828413919() {} SE637303570828413919.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570828413919().executeScript(); 2020-07-14 20:58:02,876 [19] INFO - --------- 2020-07-14 20:58:02,876 [19] INFO - Information: 0 : 2020-07-14 20:58:02,876 [19] INFO - --------- 2020-07-14 20:58:02,876 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1870. 2020-07-14 20:58:02,876 [19] INFO - Information: 0 : 2020-07-14 20:58:02,876 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1870. 2020-07-14 20:58:02,876 [19] INFO - --------- 2020-07-14 20:58:02,876 [19] INFO - Information: 0 : 2020-07-14 20:58:02,876 [19] INFO - --------- 2020-07-14 20:58:02,877 [19] INFO - Information: 0 : 2020-07-14 20:58:02,877 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,880 [19] INFO - Information: 0 : 2020-07-14 20:58:02,880 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,880 [19] INFO - Information: 0 : 2020-07-14 20:58:02,880 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,881 [19] INFO - Information: 0 : 2020-07-14 20:58:02,881 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,883 [19] INFO - Information: 0 : 2020-07-14 20:58:02,883 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,883 [19] INFO - Information: 0 : 2020-07-14 20:58:02,883 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,884 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,884 [19] INFO - Information: 0 : 2020-07-14 20:58:02,884 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,886 [19] INFO - Information: 0 : 2020-07-14 20:58:02,886 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,886 [19] INFO - Information: 0 : 2020-07-14 20:58:02,886 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,889 [19] INFO - Information: 0 : 2020-07-14 20:58:02,889 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,890 [19] INFO - Information: 0 : 2020-07-14 20:58:02,891 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,891 [19] INFO - Information: 0 : 2020-07-14 20:58:02,891 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,892 [19] INFO - Information: 0 : 2020-07-14 20:58:02,892 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,894 [19] INFO - Information: 0 : 2020-07-14 20:58:02,894 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,894 [19] INFO - Information: 0 : 2020-07-14 20:58:02,894 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,895 [19] INFO - Information: 0 : 2020-07-14 20:58:02,895 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,896 [19] INFO - Information: 0 : 2020-07-14 20:58:02,896 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,897 [19] INFO - Information: 0 : 2020-07-14 20:58:02,897 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,899 [19] INFO - Information: 0 : 2020-07-14 20:58:02,899 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,901 [19] INFO - Information: 0 : 2020-07-14 20:58:02,901 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,901 [19] INFO - Information: 0 : 2020-07-14 20:58:02,902 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,906 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,906 [19] INFO - Information: 0 : 2020-07-14 20:58:02,907 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,907 [19] INFO - --------- 2020-07-14 20:58:02,907 [19] INFO - Information: 0 : 2020-07-14 20:58:02,907 [19] INFO - --------- 2020-07-14 20:58:02,907 [19] INFO - function SE637303570829063956() {} SE637303570829063956.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. var imagesPerPage = parseInt(article.value("imagesperpage", 0)); var isPaging = false; var contentImageWidth = "890"; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl hohlen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || 960; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } // if page contains a news area, we only approximate a 2/3 1/3 size layout in order to calculate thumbnails if ( article.area.toLowerCase() == "news" ){ gridCols = 4; } else if ( page.anyAreaArticles("News") ){ gridCols = 8; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } var showSlideshow = article.value("slideshow"); var albumId = article.value("album"); var images = project.getAlbumImages(albumId); var thumbnailWidth = article.value("width"); var thumbnailHeight = article.value("height"); var titlePosition = article.value("titleposition"); var thumbTitlePosition = article.value("thumbtitleposition", "off"); var imageMargin = parseInt(article.value("margin", "0")); // figure out if images have a border set in layout-settings and compensate for it, if the article doesn't have a custom class "noborder" set var imageBorder = 0; var tmpArticleCssClass = " " + article.cssClass; if ( tmpArticleCssClass.indexOf("noborder") == -1 && "" != "0" && "" != "" ) { imageBorder = parseInt(""); } var generateThumbs = true; if ( titlePosition !== "off" ) { var titleShow = "1"; } else { var titleShow = "0"; } if ( "de" == "en" ) { var lang = "en"; } else { var lang = "de"; } var backgroundImage = backgroundWidth = backgroundHeight = backgroundLeft = backgroundTop = ""; if ( showSlideshow && article.valueRaw("slideshowtemplate") !== "none" ) { backgroundImage = article.value("slideshowtemplate", ""); if ( backgroundImage.indexOf("/laptop.png") > -1 ) { backgroundImage = "assets/js/img/laptop.png"; var backgroundWidth = "801"; var backgroundHeight = "469"; var backgroundLeft= "104"; var backgroundTop = "31"; thumbnailWidth = "590"; thumbnailHeight = "369"; } else if ( backgroundImage.indexOf("/laptop_klein.png") > -1 ) { backgroundImage = "assets/js/img/laptop_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "268"; var backgroundLeft= "59"; var backgroundTop = "18"; thumbnailWidth = "338"; thumbnailHeight = "211"; } else if ( backgroundImage.indexOf("/rahmen.png") > -1 ) { backgroundImage = "assets/js/img/rahmen.png"; var backgroundWidth = "758"; var backgroundHeight = "469"; var backgroundLeft= "55"; var backgroundTop = "57"; thumbnailWidth = "648"; thumbnailHeight = "356"; } else if ( backgroundImage.indexOf("/rahmen_klein.png") > -1 ) { backgroundImage = "assets/js/img/rahmen_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "283"; var backgroundLeft= "33"; var backgroundTop = "34"; thumbnailWidth = "392"; thumbnailHeight = "214"; } } else if ( showSlideshow && article.valueRaw("slideshowtemplate") == "none" ) { thumbnailWidth = columnWidth; //generateThumbs = false; } if ( system.preview ){ //system.log(images.count == 1 ? (" 1 Bild...") : (" " + images.count + " Bilder...")); } var gridFactor = 12 / gridCols; var maxcols = Math.ceil((contentImageWidth / (thumbnailWidth+imageMargin)) / gridFactor); var onecolumnbreakpoint = 479; var maxmobilecols = Math.ceil(onecolumnbreakpoint / thumbnailWidth); var mobilecontainerwidth = 100 / maxmobilecols; var headstyle = "/* test */"; headstyle += "\ #igal" + article.id + ":not(.zpSlideshow){\n\ margin-left: -" + imageMargin/2 + "px !important;\n\ margin-right: -" + imageMargin/2 + "px !important;\n\ }\n\ /* below is to accomodates for IE rounding errors which caused the cols not to fit into the row */\n\ .ie #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc((100% / "+ maxcols +") - " + parseInt(imageMargin/2)*2 + ".1px) !important;\n\ margin: " + parseInt(imageMargin/2) + "px !important;\n\ }\n\ \n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item,\n\ #igal" + article.id + ":not(.zpSlideshow) > a,\n\ #igal" + article.id + ":not(.zpSlideshow) .slide > a{\n\ display: block;\n\ float: left;\n\ width: calc((100% / "+ maxcols +") - " + imageMargin + "px);\n\ max-width: "+ thumbnailWidth +"px;\n\ height: auto;\n\ margin: " + imageMargin / 2 + "px;\n\ }\n\ #igal" + article.id +" > a > img{\n\ max-width: 100%;\n\ display: block;\n\ }\n\ "; for ( var i = 1; i < maxcols - 1; i++){ var breakpoint = contentImageWidth - (i * thumbnailWidth); if ( breakpoint <= onecolumnbreakpoint ){ // if we reach the point, where the ZP Grid will display rows in 1-column, we break and need to use a different logic (see next for-loop) break; } var containerwidth = 100 / ( maxcols - i); headstyle += "\n\ @media screen and (max-width: " + breakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + containerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; } // mobile display 2+-column-rows. for ( var i = 1; i < maxmobilecols; i++){ headstyle += "\n\ @media screen and (max-width: " + onecolumnbreakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + mobilecontainerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; onecolumnbreakpoint = ( maxmobilecols -i ) * thumbnailWidth; mobilecontainerwidth = 100 / ( maxmobilecols -i ); } // mobile display 1-column-row. headstyle += "\n\ @media screen and (max-width: " + (thumbnailWidth+imageMargin) +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(100% - " + imageMargin + "px);\n\ }\n\ }\n\ "; headstyle += ""; system.addHtmlHeadElement(headstyle); // polyfill for JSON.stringify() // https://gist.github.com/uupaa/5562297 function _toJSONEscapedString(str) { // @arg String: // @ret String: // @inner: to JSON escaped string if (typeof(str)==='undefined') str = ""; if ( str == ""){ return ""; } else{ var JSON_ESCAPE = { '\b': '\\b', // backspace U+0008 '\t': '\\t', // tab U+0009 '\n': '\\n', // line feed U+000A '\f': '\\f', // form feed U+000C '\r': '\\r', // carriage return U+000D '"': '\\"', // quotation mark U+0022 '\\': '\\\\' // reverse solidus U+005C }; return str.replace(/(?:[\b\t\n\f\r\"]|\\)/g, function(_) { return JSON_ESCAPE[_]; }).replace(/(?:[\x00-\x1f])/g, function(_) { return "\\u00" + ("0" + _.charCodeAt(0).toString(16)).slice(-2); }); } } context.write("\r\n\r\n"); // normales Bilderalbum mit thumbnails, ohne ContentCopy if ( !showSlideshow ) { // only activate paging via json-data when more than one page of images to show exists if ( imagesPerPage > 0 && images.count > imagesPerPage ){ isPaging = true; } context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\r\n\t\t
    999999 ){ context.write("style=\"margin-right: -"); context.write( imageMargin ); context.write("px;\" "); } context.write("\r\n\t\t\tdata-article-id=\""); context.write(article.id); context.write("\" \r\n\t\t\tdata-prevtext=\"Zurück\" \r\n\t\t\tdata-nexttext=\"Weiter\" \r\n\t\t\tdata-pagetext=\"Seite {0} von {1}\" \r\n\t\t\tdata-ispaging=\""); context.write(isPaging); context.write("\" \r\n\t\t\tdata-imageeffect=\""); context.write(effectClass); context.write("\" \r\n\t\t\tdata-imagesperpage=\""); context.write(imagesPerPage); context.write("\" \r\n\t\t\tdata-kind=\"gallery\" \r\n\t\t\tdata-width=\""); context.write( thumbnailWidth ); context.write("\"\r\n\t\t\tdata-height=\""); context.write( thumbnailHeight ); context.write("\"\r\n\t\t\tdata-margin=\""); context.write( article.value("margin", "") ); context.write("\"\r\n\t\t\tdata-maxcols=\""); context.write( maxcols ); context.write("\"\r\n\t\t\tdata-bordercolor=\"default\"\r\n\t\t\tdata-borderwidth=\"0\"\r\n\t\t\tdata-numbershow=\"0\" \r\n\t\t\tdata-template=\"\" \r\n\t\t\tdata-titleshow=\""); context.write( titleShow ); context.write("\"\r\n\t\t\tdata-titleposition=\""); context.write( article.value("titleposition", "") ); context.write("\"\r\n\t\t\tdata-transition=\""); context.write( article.value("zoom", "") ); context.write("\"\r\n\t\t\tdata-inner-transition=\""); context.write( article.value("transition", "") ); context.write("\"\r\n\t\t\tdata-slideshow=\"0\"\r\n\t\t\tdata-slideshowinterval=\"0\"\r\n\t\t\tdata-lang=\""); context.write( lang ); context.write("\">\r\n\t\r\n\t\t\t"); if ( isPaging ) { context.write("\r\n\t\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\t\t
    \r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } else { context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\r\n\t\t\r\n\t\t"); // Slideshow mit Hintergrundbild aus Template (Laptop etc.), ohne Contentcopy if ( backgroundImage !== "" && backgroundImage !== "Keine" ) { context.write("\r\n\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t\"\"\r\n\t\t\r\n\t\t\t\t\t"); var descriptionSlide1, altText1, encodedDescription1, imageSlide1; for ( var indexSlide1=0; indexSlide1 < images.count; ++indexSlide1 ) { imageSlide1 = images.item(indexSlide1); imageSlide1.skipContentCopy(); // keine contentCopy erzeugen, da überflüssig weil gleich groß wie workingCopy descriptionSlide1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.description)); encodedDescription1 = system.htmlEncode(imageSlide1.description); altText1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.altText)); if ( imageSlide1.createThumb(thumbnailWidth, thumbnailHeight) ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide1.thumbPath(thumbnailWidth, thumbnailHeight).split("/").pop()); } } context.write("\r\n\t\t\t\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide1.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t\t"); context.write( imageSlide1.description ); context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\r\n\t\t"); } // Slideshow ohne Hintergrundbild (Nur Bild), ohne Contentcopy else { context.write("\r\n\r\n\t\t\t"); var maxThumbnailHeight = 0; var maxThumbnailWidth = 0; for (var indexThumbnailHeight=0; indexThumbnailHeight < images.count; ++indexThumbnailHeight ) { var imageThumbnailHeight = images.item(indexThumbnailHeight); imageThumbnailHeight.skipContentCopy(); var currentThumbnailHeight = imageThumbnailHeight.createThumbWithInfo(columnWidth); if ( currentThumbnailHeight.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageThumbnailHeight.thumbPath(columnWidth).split("/").pop()); } } if ( currentThumbnailHeight.height > maxThumbnailHeight ) { maxThumbnailHeight = currentThumbnailHeight.height; } if ( currentThumbnailHeight.width > maxThumbnailWidth ) { maxThumbnailWidth = currentThumbnailHeight.width; } } context.write("\r\n\t\t\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\t"); var descriptionSlide2, encodedDescription2, imageSlide2; for ( var indexSlide2=0; indexSlide2 < images.count; ++indexSlide2 ) { imageSlide2 = images.item(indexSlide2); imageSlide2.skipContentCopy(); descriptionSlide2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.description)); encodedDescription2 = system.htmlEncode(imageSlide2.description); altText2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.altText)); var tni = imageSlide2.createThumbWithInfo(columnWidth); if ( tni.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide2.thumbPath(columnWidth).split("/").pop()); } } var tmpWidth = parseInt(tni.ThumbnailWidth); var tmpHeight = parseInt(tni.ThumbnailHeight); var tmpSrc = imageSlide2.thumbPath(columnWidth); context.write("\r\n\t\t\t\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide2.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t"); context.write( imageSlide2.description ); context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\r\n\t\t"); } context.write("\r\n\r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570829063956().executeScript(); 2020-07-14 20:58:02,908 [19] INFO - Information: 0 : 2020-07-14 20:58:02,908 [19] INFO - function SE637303570829063956() {} SE637303570829063956.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. var imagesPerPage = parseInt(article.value("imagesperpage", 0)); var isPaging = false; var contentImageWidth = "890"; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl hohlen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || 960; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } // if page contains a news area, we only approximate a 2/3 1/3 size layout in order to calculate thumbnails if ( article.area.toLowerCase() == "news" ){ gridCols = 4; } else if ( page.anyAreaArticles("News") ){ gridCols = 8; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } var showSlideshow = article.value("slideshow"); var albumId = article.value("album"); var images = project.getAlbumImages(albumId); var thumbnailWidth = article.value("width"); var thumbnailHeight = article.value("height"); var titlePosition = article.value("titleposition"); var thumbTitlePosition = article.value("thumbtitleposition", "off"); var imageMargin = parseInt(article.value("margin", "0")); // figure out if images have a border set in layout-settings and compensate for it, if the article doesn't have a custom class "noborder" set var imageBorder = 0; var tmpArticleCssClass = " " + article.cssClass; if ( tmpArticleCssClass.indexOf("noborder") == -1 && "" != "0" && "" != "" ) { imageBorder = parseInt(""); } var generateThumbs = true; if ( titlePosition !== "off" ) { var titleShow = "1"; } else { var titleShow = "0"; } if ( "de" == "en" ) { var lang = "en"; } else { var lang = "de"; } var backgroundImage = backgroundWidth = backgroundHeight = backgroundLeft = backgroundTop = ""; if ( showSlideshow && article.valueRaw("slideshowtemplate") !== "none" ) { backgroundImage = article.value("slideshowtemplate", ""); if ( backgroundImage.indexOf("/laptop.png") > -1 ) { backgroundImage = "assets/js/img/laptop.png"; var backgroundWidth = "801"; var backgroundHeight = "469"; var backgroundLeft= "104"; var backgroundTop = "31"; thumbnailWidth = "590"; thumbnailHeight = "369"; } else if ( backgroundImage.indexOf("/laptop_klein.png") > -1 ) { backgroundImage = "assets/js/img/laptop_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "268"; var backgroundLeft= "59"; var backgroundTop = "18"; thumbnailWidth = "338"; thumbnailHeight = "211"; } else if ( backgroundImage.indexOf("/rahmen.png") > -1 ) { backgroundImage = "assets/js/img/rahmen.png"; var backgroundWidth = "758"; var backgroundHeight = "469"; var backgroundLeft= "55"; var backgroundTop = "57"; thumbnailWidth = "648"; thumbnailHeight = "356"; } else if ( backgroundImage.indexOf("/rahmen_klein.png") > -1 ) { backgroundImage = "assets/js/img/rahmen_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "283"; var backgroundLeft= "33"; var backgroundTop = "34"; thumbnailWidth = "392"; thumbnailHeight = "214"; } } else if ( showSlideshow && article.valueRaw("slideshowtemplate") == "none" ) { thumbnailWidth = columnWidth; //generateThumbs = false; } if ( system.preview ){ //system.log(images.count == 1 ? (" 1 Bild...") : (" " + images.count + " Bilder...")); } var gridFactor = 12 / gridCols; var maxcols = Math.ceil((contentImageWidth / (thumbnailWidth+imageMargin)) / gridFactor); var onecolumnbreakpoint = 479; var maxmobilecols = Math.ceil(onecolumnbreakpoint / thumbnailWidth); var mobilecontainerwidth = 100 / maxmobilecols; var headstyle = "/* test */"; headstyle += "\ #igal" + article.id + ":not(.zpSlideshow){\n\ margin-left: -" + imageMargin/2 + "px !important;\n\ margin-right: -" + imageMargin/2 + "px !important;\n\ }\n\ /* below is to accomodates for IE rounding errors which caused the cols not to fit into the row */\n\ .ie #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc((100% / "+ maxcols +") - " + parseInt(imageMargin/2)*2 + ".1px) !important;\n\ margin: " + parseInt(imageMargin/2) + "px !important;\n\ }\n\ \n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item,\n\ #igal" + article.id + ":not(.zpSlideshow) > a,\n\ #igal" + article.id + ":not(.zpSlideshow) .slide > a{\n\ display: block;\n\ float: left;\n\ width: calc((100% / "+ maxcols +") - " + imageMargin + "px);\n\ max-width: "+ thumbnailWidth +"px;\n\ height: auto;\n\ margin: " + imageMargin / 2 + "px;\n\ }\n\ #igal" + article.id +" > a > img{\n\ max-width: 100%;\n\ display: block;\n\ }\n\ "; for ( var i = 1; i < maxcols - 1; i++){ var breakpoint = contentImageWidth - (i * thumbnailWidth); if ( breakpoint <= onecolumnbreakpoint ){ // if we reach the point, where the ZP Grid will display rows in 1-column, we break and need to use a different logic (see next for-loop) break; } var containerwidth = 100 / ( maxcols - i); headstyle += "\n\ @media screen and (max-width: " + breakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + containerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; } // mobile display 2+-column-rows. for ( var i = 1; i < maxmobilecols; i++){ headstyle += "\n\ @media screen and (max-width: " + onecolumnbreakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + mobilecontainerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; onecolumnbreakpoint = ( maxmobilecols -i ) * thumbnailWidth; mobilecontainerwidth = 100 / ( maxmobilecols -i ); } // mobile display 1-column-row. headstyle += "\n\ @media screen and (max-width: " + (thumbnailWidth+imageMargin) +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(100% - " + imageMargin + "px);\n\ }\n\ }\n\ "; headstyle += ""; system.addHtmlHeadElement(headstyle); // polyfill for JSON.stringify() // https://gist.github.com/uupaa/5562297 function _toJSONEscapedString(str) { // @arg String: // @ret String: // @inner: to JSON escaped string if (typeof(str)==='undefined') str = ""; if ( str == ""){ return ""; } else{ var JSON_ESCAPE = { '\b': '\\b', // backspace U+0008 '\t': '\\t', // tab U+0009 '\n': '\\n', // line feed U+000A '\f': '\\f', // form feed U+000C '\r': '\\r', // carriage return U+000D '"': '\\"', // quotation mark U+0022 '\\': '\\\\' // reverse solidus U+005C }; return str.replace(/(?:[\b\t\n\f\r\"]|\\)/g, function(_) { return JSON_ESCAPE[_]; }).replace(/(?:[\x00-\x1f])/g, function(_) { return "\\u00" + ("0" + _.charCodeAt(0).toString(16)).slice(-2); }); } } context.write("\r\n\r\n"); // normales Bilderalbum mit thumbnails, ohne ContentCopy if ( !showSlideshow ) { // only activate paging via json-data when more than one page of images to show exists if ( imagesPerPage > 0 && images.count > imagesPerPage ){ isPaging = true; } context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\r\n\t\t
    999999 ){ context.write("style=\"margin-right: -"); context.write( imageMargin ); context.write("px;\" "); } context.write("\r\n\t\t\tdata-article-id=\""); context.write(article.id); context.write("\" \r\n\t\t\tdata-prevtext=\"Zurück\" \r\n\t\t\tdata-nexttext=\"Weiter\" \r\n\t\t\tdata-pagetext=\"Seite {0} von {1}\" \r\n\t\t\tdata-ispaging=\""); context.write(isPaging); context.write("\" \r\n\t\t\tdata-imageeffect=\""); context.write(effectClass); context.write("\" \r\n\t\t\tdata-imagesperpage=\""); context.write(imagesPerPage); context.write("\" \r\n\t\t\tdata-kind=\"gallery\" \r\n\t\t\tdata-width=\""); context.write( thumbnailWidth ); context.write("\"\r\n\t\t\tdata-height=\""); context.write( thumbnailHeight ); context.write("\"\r\n\t\t\tdata-margin=\""); context.write( article.value("margin", "") ); context.write("\"\r\n\t\t\tdata-maxcols=\""); context.write( maxcols ); context.write("\"\r\n\t\t\tdata-bordercolor=\"default\"\r\n\t\t\tdata-borderwidth=\"0\"\r\n\t\t\tdata-numbershow=\"0\" \r\n\t\t\tdata-template=\"\" \r\n\t\t\tdata-titleshow=\""); context.write( titleShow ); context.write("\"\r\n\t\t\tdata-titleposition=\""); context.write( article.value("titleposition", "") ); context.write("\"\r\n\t\t\tdata-transition=\""); context.write( article.value("zoom", "") ); context.write("\"\r\n\t\t\tdata-inner-transition=\""); context.write( article.value("transition", "") ); context.write("\"\r\n\t\t\tdata-slideshow=\"0\"\r\n\t\t\tdata-slideshowinterval=\"0\"\r\n\t\t\tdata-lang=\""); context.write( lang ); context.write("\">\r\n\t\r\n\t\t\t"); if ( isPaging ) { context.write("\r\n\t\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\t\t
    \r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } else { context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\r\n\t\t\r\n\t\t"); // Slideshow mit Hintergrundbild aus Template (Laptop etc.), ohne Contentcopy if ( backgroundImage !== "" && backgroundImage !== "Keine" ) { context.write("\r\n\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t\"\"\r\n\t\t\r\n\t\t\t\t\t"); var descriptionSlide1, altText1, encodedDescription1, imageSlide1; for ( var indexSlide1=0; indexSlide1 < images.count; ++indexSlide1 ) { imageSlide1 = images.item(indexSlide1); imageSlide1.skipContentCopy(); // keine contentCopy erzeugen, da überflüssig weil gleich groß wie workingCopy descriptionSlide1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.description)); encodedDescription1 = system.htmlEncode(imageSlide1.description); altText1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.altText)); if ( imageSlide1.createThumb(thumbnailWidth, thumbnailHeight) ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide1.thumbPath(thumbnailWidth, thumbnailHeight).split("/").pop()); } } context.write("\r\n\t\t\t\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide1.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t\t"); context.write( imageSlide1.description ); context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\r\n\t\t"); } // Slideshow ohne Hintergrundbild (Nur Bild), ohne Contentcopy else { context.write("\r\n\r\n\t\t\t"); var maxThumbnailHeight = 0; var maxThumbnailWidth = 0; for (var indexThumbnailHeight=0; indexThumbnailHeight < images.count; ++indexThumbnailHeight ) { var imageThumbnailHeight = images.item(indexThumbnailHeight); imageThumbnailHeight.skipContentCopy(); var currentThumbnailHeight = imageThumbnailHeight.createThumbWithInfo(columnWidth); if ( currentThumbnailHeight.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageThumbnailHeight.thumbPath(columnWidth).split("/").pop()); } } if ( currentThumbnailHeight.height > maxThumbnailHeight ) { maxThumbnailHeight = currentThumbnailHeight.height; } if ( currentThumbnailHeight.width > maxThumbnailWidth ) { maxThumbnailWidth = currentThumbnailHeight.width; } } context.write("\r\n\t\t\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\t"); var descriptionSlide2, encodedDescription2, imageSlide2; for ( var indexSlide2=0; indexSlide2 < images.count; ++indexSlide2 ) { imageSlide2 = images.item(indexSlide2); imageSlide2.skipContentCopy(); descriptionSlide2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.description)); encodedDescription2 = system.htmlEncode(imageSlide2.description); altText2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.altText)); var tni = imageSlide2.createThumbWithInfo(columnWidth); if ( tni.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide2.thumbPath(columnWidth).split("/").pop()); } } var tmpWidth = parseInt(tni.ThumbnailWidth); var tmpHeight = parseInt(tni.ThumbnailHeight); var tmpSrc = imageSlide2.thumbPath(columnWidth); context.write("\r\n\t\t\t\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide2.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t"); context.write( imageSlide2.description ); context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\r\n\t\t"); } context.write("\r\n\r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570829063956().executeScript(); 2020-07-14 20:58:02,909 [19] INFO - --------- 2020-07-14 20:58:02,909 [19] INFO - Information: 0 : 2020-07-14 20:58:02,909 [19] INFO - --------- 2020-07-14 20:58:02,911 [19] INFO - Information: 0 : 2020-07-14 20:58:02,911 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,914 [19] INFO - Information: 0 : 2020-07-14 20:58:02,914 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,914 [19] INFO - Information: 0 : 2020-07-14 20:58:02,914 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,916 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,926 [19] INFO - Information: 0 : 2020-07-14 20:58:02,927 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,928 [19] INFO - Information: 0 : 2020-07-14 20:58:02,928 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,928 [19] INFO - Information: 0 : 2020-07-14 20:58:02,928 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,929 [19] INFO - Information: 0 : 2020-07-14 20:58:02,929 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,932 [19] INFO - Information: 0 : 2020-07-14 20:58:02,932 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,932 [19] INFO - Information: 0 : 2020-07-14 20:58:02,933 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,933 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:02,933 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:02,933 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:02,933 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:02,933 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:02,933 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:02,933 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:02,935 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,936 [19] INFO - Information: 0 : 2020-07-14 20:58:02,936 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,936 [19] INFO - --------- 2020-07-14 20:58:02,936 [19] INFO - Information: 0 : 2020-07-14 20:58:02,936 [19] INFO - --------- 2020-07-14 20:58:02,936 [19] INFO - function SE637303570829353973() {} SE637303570829353973.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570829353973().executeScript(); 2020-07-14 20:58:02,936 [19] INFO - Information: 0 : 2020-07-14 20:58:02,936 [19] INFO - function SE637303570829353973() {} SE637303570829353973.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570829353973().executeScript(); 2020-07-14 20:58:02,937 [19] INFO - --------- 2020-07-14 20:58:02,937 [19] INFO - Information: 0 : 2020-07-14 20:58:02,937 [19] INFO - --------- 2020-07-14 20:58:02,942 [19] INFO - Information: 0 : 2020-07-14 20:58:02,942 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:02,944 [19] INFO - Information: 0 : 2020-07-14 20:58:02,944 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,945 [19] INFO - Information: 0 : 2020-07-14 20:58:02,945 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:02,946 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,946 [19] INFO - Information: 0 : 2020-07-14 20:58:02,946 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,946 [19] INFO - --------- 2020-07-14 20:58:02,946 [19] INFO - Information: 0 : 2020-07-14 20:58:02,946 [19] INFO - --------- 2020-07-14 20:58:02,946 [19] INFO - function SE637303570829353973() {} SE637303570829353973.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570829353973().executeScript(); 2020-07-14 20:58:02,947 [19] INFO - Information: 0 : 2020-07-14 20:58:02,947 [19] INFO - function SE637303570829353973() {} SE637303570829353973.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570829353973().executeScript(); 2020-07-14 20:58:02,947 [19] INFO - --------- 2020-07-14 20:58:02,947 [19] INFO - Information: 0 : 2020-07-14 20:58:02,947 [19] INFO - --------- 2020-07-14 20:58:02,947 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1871. 2020-07-14 20:58:02,947 [19] INFO - Information: 0 : 2020-07-14 20:58:02,948 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1871. 2020-07-14 20:58:02,948 [19] INFO - --------- 2020-07-14 20:58:02,948 [19] INFO - Information: 0 : 2020-07-14 20:58:02,948 [19] INFO - --------- 2020-07-14 20:58:02,948 [19] INFO - [system.partial] „article-begin.html“ 12 ms „“ 2020-07-14 20:58:02,948 [19] INFO - Information: 0 : 2020-07-14 20:58:02,948 [19] INFO - [system.partial] „article-begin.html“ 12 ms „“ 2020-07-14 20:58:02,949 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,949 [19] INFO - Information: 0 : 2020-07-14 20:58:02,949 [19] INFO - About to execute the following script: 2020-07-14 20:58:02,949 [19] INFO - --------- 2020-07-14 20:58:02,949 [19] INFO - Information: 0 : 2020-07-14 20:58:02,949 [19] INFO - --------- 2020-07-14 20:58:02,949 [19] INFO - function SE637303570829483980() {} SE637303570829483980.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570829483980().executeScript(); 2020-07-14 20:58:02,949 [19] INFO - Information: 0 : 2020-07-14 20:58:02,949 [19] INFO - function SE637303570829483980() {} SE637303570829483980.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570829483980().executeScript(); 2020-07-14 20:58:02,950 [19] INFO - --------- 2020-07-14 20:58:02,950 [19] INFO - Information: 0 : 2020-07-14 20:58:02,950 [19] INFO - --------- 2020-07-14 20:58:02,951 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,952 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,952 [19] INFO - Information: 0 : 2020-07-14 20:58:02,952 [19] INFO - Finished executing the following script: 2020-07-14 20:58:02,952 [19] INFO - --------- 2020-07-14 20:58:02,952 [19] INFO - Information: 0 : 2020-07-14 20:58:02,952 [19] INFO - --------- 2020-07-14 20:58:02,952 [19] INFO - function SE637303570829483980() {} SE637303570829483980.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570829483980().executeScript(); 2020-07-14 20:58:02,953 [19] INFO - Information: 0 : 2020-07-14 20:58:02,953 [19] INFO - function SE637303570829483980() {} SE637303570829483980.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570829483980().executeScript(); 2020-07-14 20:58:02,953 [19] INFO - --------- 2020-07-14 20:58:02,953 [19] INFO - Information: 0 : 2020-07-14 20:58:02,953 [19] INFO - --------- 2020-07-14 20:58:02,953 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1872. 2020-07-14 20:58:02,953 [19] INFO - Information: 0 : 2020-07-14 20:58:02,953 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1872. 2020-07-14 20:58:02,953 [19] INFO - --------- 2020-07-14 20:58:02,954 [19] INFO - Information: 0 : 2020-07-14 20:58:02,954 [19] INFO - --------- 2020-07-14 20:58:02,954 [19] INFO - [system.partial] „article-headline.html“ 5 ms „“ 2020-07-14 20:58:02,954 [19] INFO - Information: 0 : 2020-07-14 20:58:02,954 [19] INFO - [system.partial] „article-headline.html“ 5 ms „“ 2020-07-14 20:58:02,954 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 401. 2020-07-14 20:58:02,954 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 401. 2020-07-14 20:58:02,955 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,955 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,955 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 401. 2020-07-14 20:58:02,956 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,956 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\841040bb42834543aa1cf0597d523157.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6545-920.jpg“ (15.05.2019 20:34:42). Delta last write time is -9767480 seconds. Is source file newer: False. 2020-07-14 20:58:02,965 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,966 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 402. 2020-07-14 20:58:02,966 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 402. 2020-07-14 20:58:02,966 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,968 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,968 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 402. 2020-07-14 20:58:02,969 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,970 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\b27525fe4efc478dbe4ddecac69430db.jpg“ (22.01.2019 19:23:26) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6546-920.jpg“ (15.05.2019 20:34:44). Delta last write time is -9767478 seconds. Is source file newer: False. 2020-07-14 20:58:02,977 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,978 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 403. 2020-07-14 20:58:02,978 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 403. 2020-07-14 20:58:02,978 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,979 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,979 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 403. 2020-07-14 20:58:02,980 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,980 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\95e0ba7a2cb64a9185502c381c685954.jpg“ (22.01.2019 19:23:24) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6547-920.jpg“ (15.05.2019 20:34:43). Delta last write time is -9767479 seconds. Is source file newer: False. 2020-07-14 20:58:02,981 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:02,988 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:02,989 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 404. 2020-07-14 20:58:02,989 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 404. 2020-07-14 20:58:02,990 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,990 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:02,990 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 404. 2020-07-14 20:58:02,991 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:02,991 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\01874cf5c59d4145932a25537892f361.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6548-920.jpg“ (15.05.2019 20:34:45). Delta last write time is -9767483 seconds. Is source file newer: False. 2020-07-14 20:58:02,999 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,000 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 406. 2020-07-14 20:58:03,000 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 406. 2020-07-14 20:58:03,000 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,001 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,001 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 406. 2020-07-14 20:58:03,001 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,002 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\eda36855c46b4dd580aa2156fa1f886d.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6550-920.jpg“ (15.05.2019 20:34:47). Delta last write time is -9767485 seconds. Is source file newer: False. 2020-07-14 20:58:03,010 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,010 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,011 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 407. 2020-07-14 20:58:03,011 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 407. 2020-07-14 20:58:03,011 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,012 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,012 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 407. 2020-07-14 20:58:03,013 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,013 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\f466f49feeee46228532d477c908042d.jpg“ (22.01.2019 19:23:26) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6556-920.jpg“ (15.05.2019 20:34:50). Delta last write time is -9767484 seconds. Is source file newer: False. 2020-07-14 20:58:03,022 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,022 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 400. 2020-07-14 20:58:03,022 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 400. 2020-07-14 20:58:03,023 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,023 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,023 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 400. 2020-07-14 20:58:03,024 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,025 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\f27470cc7c0348f7a1bdf55076095d53.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6557-920.jpg“ (15.05.2019 20:34:52). Delta last write time is -9767490 seconds. Is source file newer: False. 2020-07-14 20:58:03,032 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,034 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 401. 2020-07-14 20:58:03,034 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 401. 2020-07-14 20:58:03,034 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,034 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 401. 2020-07-14 20:58:03,035 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,036 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\841040bb42834543aa1cf0597d523157.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6545-920.jpg“ (15.05.2019 20:34:42). Delta last write time is -9767480 seconds. Is source file newer: False. 2020-07-14 20:58:03,037 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,038 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 402. 2020-07-14 20:58:03,038 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 402. 2020-07-14 20:58:03,039 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,039 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 402. 2020-07-14 20:58:03,040 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,041 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\b27525fe4efc478dbe4ddecac69430db.jpg“ (22.01.2019 19:23:26) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6546-920.jpg“ (15.05.2019 20:34:44). Delta last write time is -9767478 seconds. Is source file newer: False. 2020-07-14 20:58:03,042 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,043 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,044 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 403. 2020-07-14 20:58:03,044 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 403. 2020-07-14 20:58:03,045 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,045 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 403. 2020-07-14 20:58:03,046 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,046 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\95e0ba7a2cb64a9185502c381c685954.jpg“ (22.01.2019 19:23:24) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6547-920.jpg“ (15.05.2019 20:34:43). Delta last write time is -9767479 seconds. Is source file newer: False. 2020-07-14 20:58:03,048 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,049 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 404. 2020-07-14 20:58:03,049 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 404. 2020-07-14 20:58:03,049 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,050 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 404. 2020-07-14 20:58:03,051 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,052 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\01874cf5c59d4145932a25537892f361.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6548-920.jpg“ (15.05.2019 20:34:45). Delta last write time is -9767483 seconds. Is source file newer: False. 2020-07-14 20:58:03,053 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,054 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 406. 2020-07-14 20:58:03,055 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 406. 2020-07-14 20:58:03,056 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,056 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 406. 2020-07-14 20:58:03,057 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,057 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\eda36855c46b4dd580aa2156fa1f886d.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6550-920.jpg“ (15.05.2019 20:34:47). Delta last write time is -9767485 seconds. Is source file newer: False. 2020-07-14 20:58:03,058 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,059 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 407. 2020-07-14 20:58:03,059 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 407. 2020-07-14 20:58:03,060 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,060 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 407. 2020-07-14 20:58:03,061 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,062 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\f466f49feeee46228532d477c908042d.jpg“ (22.01.2019 19:23:26) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6556-920.jpg“ (15.05.2019 20:34:50). Delta last write time is -9767484 seconds. Is source file newer: False. 2020-07-14 20:58:03,063 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,064 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 400. 2020-07-14 20:58:03,064 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 400. 2020-07-14 20:58:03,065 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,065 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 400. 2020-07-14 20:58:03,066 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,066 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\f27470cc7c0348f7a1bdf55076095d53.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6557-920.jpg“ (15.05.2019 20:34:52). Delta last write time is -9767490 seconds. Is source file newer: False. 2020-07-14 20:58:03,067 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,068 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,069 [19] INFO - Information: 0 : 2020-07-14 20:58:03,069 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,069 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,069 [19] INFO - Information: 0 : 2020-07-14 20:58:03,069 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,069 [19] INFO - --------- 2020-07-14 20:58:03,069 [19] INFO - Information: 0 : 2020-07-14 20:58:03,069 [19] INFO - --------- 2020-07-14 20:58:03,070 [19] INFO - function SE637303570829063956() {} SE637303570829063956.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. var imagesPerPage = parseInt(article.value("imagesperpage", 0)); var isPaging = false; var contentImageWidth = "890"; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl hohlen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || 960; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } // if page contains a news area, we only approximate a 2/3 1/3 size layout in order to calculate thumbnails if ( article.area.toLowerCase() == "news" ){ gridCols = 4; } else if ( page.anyAreaArticles("News") ){ gridCols = 8; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } var showSlideshow = article.value("slideshow"); var albumId = article.value("album"); var images = project.getAlbumImages(albumId); var thumbnailWidth = article.value("width"); var thumbnailHeight = article.value("height"); var titlePosition = article.value("titleposition"); var thumbTitlePosition = article.value("thumbtitleposition", "off"); var imageMargin = parseInt(article.value("margin", "0")); // figure out if images have a border set in layout-settings and compensate for it, if the article doesn't have a custom class "noborder" set var imageBorder = 0; var tmpArticleCssClass = " " + article.cssClass; if ( tmpArticleCssClass.indexOf("noborder") == -1 && "" != "0" && "" != "" ) { imageBorder = parseInt(""); } var generateThumbs = true; if ( titlePosition !== "off" ) { var titleShow = "1"; } else { var titleShow = "0"; } if ( "de" == "en" ) { var lang = "en"; } else { var lang = "de"; } var backgroundImage = backgroundWidth = backgroundHeight = backgroundLeft = backgroundTop = ""; if ( showSlideshow && article.valueRaw("slideshowtemplate") !== "none" ) { backgroundImage = article.value("slideshowtemplate", ""); if ( backgroundImage.indexOf("/laptop.png") > -1 ) { backgroundImage = "assets/js/img/laptop.png"; var backgroundWidth = "801"; var backgroundHeight = "469"; var backgroundLeft= "104"; var backgroundTop = "31"; thumbnailWidth = "590"; thumbnailHeight = "369"; } else if ( backgroundImage.indexOf("/laptop_klein.png") > -1 ) { backgroundImage = "assets/js/img/laptop_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "268"; var backgroundLeft= "59"; var backgroundTop = "18"; thumbnailWidth = "338"; thumbnailHeight = "211"; } else if ( backgroundImage.indexOf("/rahmen.png") > -1 ) { backgroundImage = "assets/js/img/rahmen.png"; var backgroundWidth = "758"; var backgroundHeight = "469"; var backgroundLeft= "55"; var backgroundTop = "57"; thumbnailWidth = "648"; thumbnailHeight = "356"; } else if ( backgroundImage.indexOf("/rahmen_klein.png") > -1 ) { backgroundImage = "assets/js/img/rahmen_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "283"; var backgroundLeft= "33"; var backgroundTop = "34"; thumbnailWidth = "392"; thumbnailHeight = "214"; } } else if ( showSlideshow && article.valueRaw("slideshowtemplate") == "none" ) { thumbnailWidth = columnWidth; //generateThumbs = false; } if ( system.preview ){ //system.log(images.count == 1 ? (" 1 Bild...") : (" " + images.count + " Bilder...")); } var gridFactor = 12 / gridCols; var maxcols = Math.ceil((contentImageWidth / (thumbnailWidth+imageMargin)) / gridFactor); var onecolumnbreakpoint = 479; var maxmobilecols = Math.ceil(onecolumnbreakpoint / thumbnailWidth); var mobilecontainerwidth = 100 / maxmobilecols; var headstyle = "/* test */"; headstyle += "\ #igal" + article.id + ":not(.zpSlideshow){\n\ margin-left: -" + imageMargin/2 + "px !important;\n\ margin-right: -" + imageMargin/2 + "px !important;\n\ }\n\ /* below is to accomodates for IE rounding errors which caused the cols not to fit into the row */\n\ .ie #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc((100% / "+ maxcols +") - " + parseInt(imageMargin/2)*2 + ".1px) !important;\n\ margin: " + parseInt(imageMargin/2) + "px !important;\n\ }\n\ \n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item,\n\ #igal" + article.id + ":not(.zpSlideshow) > a,\n\ #igal" + article.id + ":not(.zpSlideshow) .slide > a{\n\ display: block;\n\ float: left;\n\ width: calc((100% / "+ maxcols +") - " + imageMargin + "px);\n\ max-width: "+ thumbnailWidth +"px;\n\ height: auto;\n\ margin: " + imageMargin / 2 + "px;\n\ }\n\ #igal" + article.id +" > a > img{\n\ max-width: 100%;\n\ display: block;\n\ }\n\ "; for ( var i = 1; i < maxcols - 1; i++){ var breakpoint = contentImageWidth - (i * thumbnailWidth); if ( breakpoint <= onecolumnbreakpoint ){ // if we reach the point, where the ZP Grid will display rows in 1-column, we break and need to use a different logic (see next for-loop) break; } var containerwidth = 100 / ( maxcols - i); headstyle += "\n\ @media screen and (max-width: " + breakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + containerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; } // mobile display 2+-column-rows. for ( var i = 1; i < maxmobilecols; i++){ headstyle += "\n\ @media screen and (max-width: " + onecolumnbreakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + mobilecontainerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; onecolumnbreakpoint = ( maxmobilecols -i ) * thumbnailWidth; mobilecontainerwidth = 100 / ( maxmobilecols -i ); } // mobile display 1-column-row. headstyle += "\n\ @media screen and (max-width: " + (thumbnailWidth+imageMargin) +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(100% - " + imageMargin + "px);\n\ }\n\ }\n\ "; headstyle += ""; system.addHtmlHeadElement(headstyle); // polyfill for JSON.stringify() // https://gist.github.com/uupaa/5562297 function _toJSONEscapedString(str) { // @arg String: // @ret String: // @inner: to JSON escaped string if (typeof(str)==='undefined') str = ""; if ( str == ""){ return ""; } else{ var JSON_ESCAPE = { '\b': '\\b', // backspace U+0008 '\t': '\\t', // tab U+0009 '\n': '\\n', // line feed U+000A '\f': '\\f', // form feed U+000C '\r': '\\r', // carriage return U+000D '"': '\\"', // quotation mark U+0022 '\\': '\\\\' // reverse solidus U+005C }; return str.replace(/(?:[\b\t\n\f\r\"]|\\)/g, function(_) { return JSON_ESCAPE[_]; }).replace(/(?:[\x00-\x1f])/g, function(_) { return "\\u00" + ("0" + _.charCodeAt(0).toString(16)).slice(-2); }); } } context.write("\r\n\r\n"); // normales Bilderalbum mit thumbnails, ohne ContentCopy if ( !showSlideshow ) { // only activate paging via json-data when more than one page of images to show exists if ( imagesPerPage > 0 && images.count > imagesPerPage ){ isPaging = true; } context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\r\n\t\t
    999999 ){ context.write("style=\"margin-right: -"); context.write( imageMargin ); context.write("px;\" "); } context.write("\r\n\t\t\tdata-article-id=\""); context.write(article.id); context.write("\" \r\n\t\t\tdata-prevtext=\"Zurück\" \r\n\t\t\tdata-nexttext=\"Weiter\" \r\n\t\t\tdata-pagetext=\"Seite {0} von {1}\" \r\n\t\t\tdata-ispaging=\""); context.write(isPaging); context.write("\" \r\n\t\t\tdata-imageeffect=\""); context.write(effectClass); context.write("\" \r\n\t\t\tdata-imagesperpage=\""); context.write(imagesPerPage); context.write("\" \r\n\t\t\tdata-kind=\"gallery\" \r\n\t\t\tdata-width=\""); context.write( thumbnailWidth ); context.write("\"\r\n\t\t\tdata-height=\""); context.write( thumbnailHeight ); context.write("\"\r\n\t\t\tdata-margin=\""); context.write( article.value("margin", "") ); context.write("\"\r\n\t\t\tdata-maxcols=\""); context.write( maxcols ); context.write("\"\r\n\t\t\tdata-bordercolor=\"default\"\r\n\t\t\tdata-borderwidth=\"0\"\r\n\t\t\tdata-numbershow=\"0\" \r\n\t\t\tdata-template=\"\" \r\n\t\t\tdata-titleshow=\""); context.write( titleShow ); context.write("\"\r\n\t\t\tdata-titleposition=\""); context.write( article.value("titleposition", "") ); context.write("\"\r\n\t\t\tdata-transition=\""); context.write( article.value("zoom", "") ); context.write("\"\r\n\t\t\tdata-inner-transition=\""); context.write( article.value("transition", "") ); context.write("\"\r\n\t\t\tdata-slideshow=\"0\"\r\n\t\t\tdata-slideshowinterval=\"0\"\r\n\t\t\tdata-lang=\""); context.write( lang ); context.write("\">\r\n\t\r\n\t\t\t"); if ( isPaging ) { context.write("\r\n\t\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\t\t
    \r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } else { context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\r\n\t\t\r\n\t\t"); // Slideshow mit Hintergrundbild aus Template (Laptop etc.), ohne Contentcopy if ( backgroundImage !== "" && backgroundImage !== "Keine" ) { context.write("\r\n\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t\"\"\r\n\t\t\r\n\t\t\t\t\t"); var descriptionSlide1, altText1, encodedDescription1, imageSlide1; for ( var indexSlide1=0; indexSlide1 < images.count; ++indexSlide1 ) { imageSlide1 = images.item(indexSlide1); imageSlide1.skipContentCopy(); // keine contentCopy erzeugen, da überflüssig weil gleich groß wie workingCopy descriptionSlide1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.description)); encodedDescription1 = system.htmlEncode(imageSlide1.description); altText1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.altText)); if ( imageSlide1.createThumb(thumbnailWidth, thumbnailHeight) ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide1.thumbPath(thumbnailWidth, thumbnailHeight).split("/").pop()); } } context.write("\r\n\t\t\t\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide1.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t\t"); context.write( imageSlide1.description ); context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\r\n\t\t"); } // Slideshow ohne Hintergrundbild (Nur Bild), ohne Contentcopy else { context.write("\r\n\r\n\t\t\t"); var maxThumbnailHeight = 0; var maxThumbnailWidth = 0; for (var indexThumbnailHeight=0; indexThumbnailHeight < images.count; ++indexThumbnailHeight ) { var imageThumbnailHeight = images.item(indexThumbnailHeight); imageThumbnailHeight.skipContentCopy(); var currentThumbnailHeight = imageThumbnailHeight.createThumbWithInfo(columnWidth); if ( currentThumbnailHeight.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageThumbnailHeight.thumbPath(columnWidth).split("/").pop()); } } if ( currentThumbnailHeight.height > maxThumbnailHeight ) { maxThumbnailHeight = currentThumbnailHeight.height; } if ( currentThumbnailHeight.width > maxThumbnailWidth ) { maxThumbnailWidth = currentThumbnailHeight.width; } } context.write("\r\n\t\t\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\t"); var descriptionSlide2, encodedDescription2, imageSlide2; for ( var indexSlide2=0; indexSlide2 < images.count; ++indexSlide2 ) { imageSlide2 = images.item(indexSlide2); imageSlide2.skipContentCopy(); descriptionSlide2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.description)); encodedDescription2 = system.htmlEncode(imageSlide2.description); altText2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.altText)); var tni = imageSlide2.createThumbWithInfo(columnWidth); if ( tni.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide2.thumbPath(columnWidth).split("/").pop()); } } var tmpWidth = parseInt(tni.ThumbnailWidth); var tmpHeight = parseInt(tni.ThumbnailHeight); var tmpSrc = imageSlide2.thumbPath(columnWidth); context.write("\r\n\t\t\t\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide2.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t"); context.write( imageSlide2.description ); context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\r\n\t\t"); } context.write("\r\n\r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570829063956().executeScript(); 2020-07-14 20:58:03,070 [19] INFO - Information: 0 : 2020-07-14 20:58:03,071 [19] INFO - function SE637303570829063956() {} SE637303570829063956.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. var imagesPerPage = parseInt(article.value("imagesperpage", 0)); var isPaging = false; var contentImageWidth = "890"; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl hohlen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || 960; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } // if page contains a news area, we only approximate a 2/3 1/3 size layout in order to calculate thumbnails if ( article.area.toLowerCase() == "news" ){ gridCols = 4; } else if ( page.anyAreaArticles("News") ){ gridCols = 8; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } var showSlideshow = article.value("slideshow"); var albumId = article.value("album"); var images = project.getAlbumImages(albumId); var thumbnailWidth = article.value("width"); var thumbnailHeight = article.value("height"); var titlePosition = article.value("titleposition"); var thumbTitlePosition = article.value("thumbtitleposition", "off"); var imageMargin = parseInt(article.value("margin", "0")); // figure out if images have a border set in layout-settings and compensate for it, if the article doesn't have a custom class "noborder" set var imageBorder = 0; var tmpArticleCssClass = " " + article.cssClass; if ( tmpArticleCssClass.indexOf("noborder") == -1 && "" != "0" && "" != "" ) { imageBorder = parseInt(""); } var generateThumbs = true; if ( titlePosition !== "off" ) { var titleShow = "1"; } else { var titleShow = "0"; } if ( "de" == "en" ) { var lang = "en"; } else { var lang = "de"; } var backgroundImage = backgroundWidth = backgroundHeight = backgroundLeft = backgroundTop = ""; if ( showSlideshow && article.valueRaw("slideshowtemplate") !== "none" ) { backgroundImage = article.value("slideshowtemplate", ""); if ( backgroundImage.indexOf("/laptop.png") > -1 ) { backgroundImage = "assets/js/img/laptop.png"; var backgroundWidth = "801"; var backgroundHeight = "469"; var backgroundLeft= "104"; var backgroundTop = "31"; thumbnailWidth = "590"; thumbnailHeight = "369"; } else if ( backgroundImage.indexOf("/laptop_klein.png") > -1 ) { backgroundImage = "assets/js/img/laptop_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "268"; var backgroundLeft= "59"; var backgroundTop = "18"; thumbnailWidth = "338"; thumbnailHeight = "211"; } else if ( backgroundImage.indexOf("/rahmen.png") > -1 ) { backgroundImage = "assets/js/img/rahmen.png"; var backgroundWidth = "758"; var backgroundHeight = "469"; var backgroundLeft= "55"; var backgroundTop = "57"; thumbnailWidth = "648"; thumbnailHeight = "356"; } else if ( backgroundImage.indexOf("/rahmen_klein.png") > -1 ) { backgroundImage = "assets/js/img/rahmen_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "283"; var backgroundLeft= "33"; var backgroundTop = "34"; thumbnailWidth = "392"; thumbnailHeight = "214"; } } else if ( showSlideshow && article.valueRaw("slideshowtemplate") == "none" ) { thumbnailWidth = columnWidth; //generateThumbs = false; } if ( system.preview ){ //system.log(images.count == 1 ? (" 1 Bild...") : (" " + images.count + " Bilder...")); } var gridFactor = 12 / gridCols; var maxcols = Math.ceil((contentImageWidth / (thumbnailWidth+imageMargin)) / gridFactor); var onecolumnbreakpoint = 479; var maxmobilecols = Math.ceil(onecolumnbreakpoint / thumbnailWidth); var mobilecontainerwidth = 100 / maxmobilecols; var headstyle = "/* test */"; headstyle += "\ #igal" + article.id + ":not(.zpSlideshow){\n\ margin-left: -" + imageMargin/2 + "px !important;\n\ margin-right: -" + imageMargin/2 + "px !important;\n\ }\n\ /* below is to accomodates for IE rounding errors which caused the cols not to fit into the row */\n\ .ie #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc((100% / "+ maxcols +") - " + parseInt(imageMargin/2)*2 + ".1px) !important;\n\ margin: " + parseInt(imageMargin/2) + "px !important;\n\ }\n\ \n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item,\n\ #igal" + article.id + ":not(.zpSlideshow) > a,\n\ #igal" + article.id + ":not(.zpSlideshow) .slide > a{\n\ display: block;\n\ float: left;\n\ width: calc((100% / "+ maxcols +") - " + imageMargin + "px);\n\ max-width: "+ thumbnailWidth +"px;\n\ height: auto;\n\ margin: " + imageMargin / 2 + "px;\n\ }\n\ #igal" + article.id +" > a > img{\n\ max-width: 100%;\n\ display: block;\n\ }\n\ "; for ( var i = 1; i < maxcols - 1; i++){ var breakpoint = contentImageWidth - (i * thumbnailWidth); if ( breakpoint <= onecolumnbreakpoint ){ // if we reach the point, where the ZP Grid will display rows in 1-column, we break and need to use a different logic (see next for-loop) break; } var containerwidth = 100 / ( maxcols - i); headstyle += "\n\ @media screen and (max-width: " + breakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + containerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; } // mobile display 2+-column-rows. for ( var i = 1; i < maxmobilecols; i++){ headstyle += "\n\ @media screen and (max-width: " + onecolumnbreakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + mobilecontainerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; onecolumnbreakpoint = ( maxmobilecols -i ) * thumbnailWidth; mobilecontainerwidth = 100 / ( maxmobilecols -i ); } // mobile display 1-column-row. headstyle += "\n\ @media screen and (max-width: " + (thumbnailWidth+imageMargin) +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(100% - " + imageMargin + "px);\n\ }\n\ }\n\ "; headstyle += ""; system.addHtmlHeadElement(headstyle); // polyfill for JSON.stringify() // https://gist.github.com/uupaa/5562297 function _toJSONEscapedString(str) { // @arg String: // @ret String: // @inner: to JSON escaped string if (typeof(str)==='undefined') str = ""; if ( str == ""){ return ""; } else{ var JSON_ESCAPE = { '\b': '\\b', // backspace U+0008 '\t': '\\t', // tab U+0009 '\n': '\\n', // line feed U+000A '\f': '\\f', // form feed U+000C '\r': '\\r', // carriage return U+000D '"': '\\"', // quotation mark U+0022 '\\': '\\\\' // reverse solidus U+005C }; return str.replace(/(?:[\b\t\n\f\r\"]|\\)/g, function(_) { return JSON_ESCAPE[_]; }).replace(/(?:[\x00-\x1f])/g, function(_) { return "\\u00" + ("0" + _.charCodeAt(0).toString(16)).slice(-2); }); } } context.write("\r\n\r\n"); // normales Bilderalbum mit thumbnails, ohne ContentCopy if ( !showSlideshow ) { // only activate paging via json-data when more than one page of images to show exists if ( imagesPerPage > 0 && images.count > imagesPerPage ){ isPaging = true; } context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\r\n\t\t
    999999 ){ context.write("style=\"margin-right: -"); context.write( imageMargin ); context.write("px;\" "); } context.write("\r\n\t\t\tdata-article-id=\""); context.write(article.id); context.write("\" \r\n\t\t\tdata-prevtext=\"Zurück\" \r\n\t\t\tdata-nexttext=\"Weiter\" \r\n\t\t\tdata-pagetext=\"Seite {0} von {1}\" \r\n\t\t\tdata-ispaging=\""); context.write(isPaging); context.write("\" \r\n\t\t\tdata-imageeffect=\""); context.write(effectClass); context.write("\" \r\n\t\t\tdata-imagesperpage=\""); context.write(imagesPerPage); context.write("\" \r\n\t\t\tdata-kind=\"gallery\" \r\n\t\t\tdata-width=\""); context.write( thumbnailWidth ); context.write("\"\r\n\t\t\tdata-height=\""); context.write( thumbnailHeight ); context.write("\"\r\n\t\t\tdata-margin=\""); context.write( article.value("margin", "") ); context.write("\"\r\n\t\t\tdata-maxcols=\""); context.write( maxcols ); context.write("\"\r\n\t\t\tdata-bordercolor=\"default\"\r\n\t\t\tdata-borderwidth=\"0\"\r\n\t\t\tdata-numbershow=\"0\" \r\n\t\t\tdata-template=\"\" \r\n\t\t\tdata-titleshow=\""); context.write( titleShow ); context.write("\"\r\n\t\t\tdata-titleposition=\""); context.write( article.value("titleposition", "") ); context.write("\"\r\n\t\t\tdata-transition=\""); context.write( article.value("zoom", "") ); context.write("\"\r\n\t\t\tdata-inner-transition=\""); context.write( article.value("transition", "") ); context.write("\"\r\n\t\t\tdata-slideshow=\"0\"\r\n\t\t\tdata-slideshowinterval=\"0\"\r\n\t\t\tdata-lang=\""); context.write( lang ); context.write("\">\r\n\t\r\n\t\t\t"); if ( isPaging ) { context.write("\r\n\t\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\t\t
    \r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } else { context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\r\n\t\t\r\n\t\t"); // Slideshow mit Hintergrundbild aus Template (Laptop etc.), ohne Contentcopy if ( backgroundImage !== "" && backgroundImage !== "Keine" ) { context.write("\r\n\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t\"\"\r\n\t\t\r\n\t\t\t\t\t"); var descriptionSlide1, altText1, encodedDescription1, imageSlide1; for ( var indexSlide1=0; indexSlide1 < images.count; ++indexSlide1 ) { imageSlide1 = images.item(indexSlide1); imageSlide1.skipContentCopy(); // keine contentCopy erzeugen, da überflüssig weil gleich groß wie workingCopy descriptionSlide1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.description)); encodedDescription1 = system.htmlEncode(imageSlide1.description); altText1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.altText)); if ( imageSlide1.createThumb(thumbnailWidth, thumbnailHeight) ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide1.thumbPath(thumbnailWidth, thumbnailHeight).split("/").pop()); } } context.write("\r\n\t\t\t\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide1.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t\t"); context.write( imageSlide1.description ); context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\r\n\t\t"); } // Slideshow ohne Hintergrundbild (Nur Bild), ohne Contentcopy else { context.write("\r\n\r\n\t\t\t"); var maxThumbnailHeight = 0; var maxThumbnailWidth = 0; for (var indexThumbnailHeight=0; indexThumbnailHeight < images.count; ++indexThumbnailHeight ) { var imageThumbnailHeight = images.item(indexThumbnailHeight); imageThumbnailHeight.skipContentCopy(); var currentThumbnailHeight = imageThumbnailHeight.createThumbWithInfo(columnWidth); if ( currentThumbnailHeight.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageThumbnailHeight.thumbPath(columnWidth).split("/").pop()); } } if ( currentThumbnailHeight.height > maxThumbnailHeight ) { maxThumbnailHeight = currentThumbnailHeight.height; } if ( currentThumbnailHeight.width > maxThumbnailWidth ) { maxThumbnailWidth = currentThumbnailHeight.width; } } context.write("\r\n\t\t\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\t"); var descriptionSlide2, encodedDescription2, imageSlide2; for ( var indexSlide2=0; indexSlide2 < images.count; ++indexSlide2 ) { imageSlide2 = images.item(indexSlide2); imageSlide2.skipContentCopy(); descriptionSlide2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.description)); encodedDescription2 = system.htmlEncode(imageSlide2.description); altText2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.altText)); var tni = imageSlide2.createThumbWithInfo(columnWidth); if ( tni.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide2.thumbPath(columnWidth).split("/").pop()); } } var tmpWidth = parseInt(tni.ThumbnailWidth); var tmpHeight = parseInt(tni.ThumbnailHeight); var tmpSrc = imageSlide2.thumbPath(columnWidth); context.write("\r\n\t\t\t\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide2.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t"); context.write( imageSlide2.description ); context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\r\n\t\t"); } context.write("\r\n\r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570829063956().executeScript(); 2020-07-14 20:58:03,072 [19] INFO - --------- 2020-07-14 20:58:03,072 [19] INFO - Information: 0 : 2020-07-14 20:58:03,072 [19] INFO - --------- 2020-07-14 20:58:03,072 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1873. 2020-07-14 20:58:03,072 [19] INFO - Information: 0 : 2020-07-14 20:58:03,072 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1873. 2020-07-14 20:58:03,072 [19] INFO - --------- 2020-07-14 20:58:03,073 [19] INFO - Information: 0 : 2020-07-14 20:58:03,073 [19] INFO - --------- 2020-07-14 20:58:03,074 [19] INFO - Information: 0 : 2020-07-14 20:58:03,074 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,076 [19] INFO - Information: 0 : 2020-07-14 20:58:03,076 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,076 [19] INFO - Information: 0 : 2020-07-14 20:58:03,077 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,077 [19] INFO - Information: 0 : 2020-07-14 20:58:03,077 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,080 [19] INFO - Information: 0 : 2020-07-14 20:58:03,080 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,080 [19] INFO - Information: 0 : 2020-07-14 20:58:03,080 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,081 [19] INFO - Information: 0 : 2020-07-14 20:58:03,081 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,083 [19] INFO - Information: 0 : 2020-07-14 20:58:03,083 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,083 [19] INFO - Information: 0 : 2020-07-14 20:58:03,083 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,085 [19] INFO - Information: 0 : 2020-07-14 20:58:03,086 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,087 [19] INFO - Information: 0 : 2020-07-14 20:58:03,087 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,087 [19] INFO - Information: 0 : 2020-07-14 20:58:03,087 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,088 [19] INFO - Information: 0 : 2020-07-14 20:58:03,088 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,090 [19] INFO - Information: 0 : 2020-07-14 20:58:03,091 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,091 [19] INFO - Information: 0 : 2020-07-14 20:58:03,091 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,091 [19] INFO - Information: 0 : 2020-07-14 20:58:03,092 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,093 [19] INFO - Information: 0 : 2020-07-14 20:58:03,093 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,093 [19] INFO - Information: 0 : 2020-07-14 20:58:03,093 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,096 [19] INFO - Information: 0 : 2020-07-14 20:58:03,096 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,098 [19] INFO - Information: 0 : 2020-07-14 20:58:03,098 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,098 [19] INFO - Information: 0 : 2020-07-14 20:58:03,098 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,099 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,100 [19] INFO - Information: 0 : 2020-07-14 20:58:03,100 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,100 [19] INFO - --------- 2020-07-14 20:58:03,100 [19] INFO - Information: 0 : 2020-07-14 20:58:03,100 [19] INFO - --------- 2020-07-14 20:58:03,100 [19] INFO - function SE637303570830994067() {} SE637303570830994067.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570830994067().executeScript(); 2020-07-14 20:58:03,101 [19] INFO - Information: 0 : 2020-07-14 20:58:03,101 [19] INFO - function SE637303570830994067() {} SE637303570830994067.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570830994067().executeScript(); 2020-07-14 20:58:03,101 [19] INFO - --------- 2020-07-14 20:58:03,101 [19] INFO - Information: 0 : 2020-07-14 20:58:03,101 [19] INFO - --------- 2020-07-14 20:58:03,103 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,104 [19] INFO - Information: 0 : 2020-07-14 20:58:03,104 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,106 [19] INFO - Information: 0 : 2020-07-14 20:58:03,106 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,106 [19] INFO - Information: 0 : 2020-07-14 20:58:03,106 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,107 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 668 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:03,107 [19] INFO - Information: 0 : 2020-07-14 20:58:03,107 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,108 [19] INFO - Information: 0 : 2020-07-14 20:58:03,109 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,109 [19] INFO - Information: 0 : 2020-07-14 20:58:03,109 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,109 [19] INFO - Entering 'ensureContentCopy' for image 412, article 1423, size 890. 2020-07-14 20:58:03,110 [19] INFO - Called 'createContentCopy' scripting function with article ID = 1423, image ID = 412, maxWidthInPixel = 890. 2020-07-14 20:58:03,110 [19] INFO - 'createContentCopy': NO content copy created (Never create content copy for preview.). 2020-07-14 20:58:03,110 [19] INFO - Leaving 'ensureContentCopy' for image 412, article 1423, size „890“, reason = not created (Never create content copy for preview.) 2020-07-14 20:58:03,120 [19] INFO - [GetImageSizeInPixel - B2] getting image size 2048x1536 for working copy image „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\830d3caf3178454799b0390728f98dd8.jpg“ live from file. 2020-07-14 20:58:03,120 [19] INFO - Returning live-calculated image size for image with ID 412, file version „ContentCopy“ of 2048×1536 pixels. 2020-07-14 20:58:03,120 [19] INFO - Returning cached image size for image with ID 412, file version „ContentCopy“ of 2048×1536 pixels. 2020-07-14 20:58:03,122 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,122 [19] INFO - Information: 0 : 2020-07-14 20:58:03,122 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,122 [19] INFO - --------- 2020-07-14 20:58:03,122 [19] INFO - Information: 0 : 2020-07-14 20:58:03,122 [19] INFO - --------- 2020-07-14 20:58:03,122 [19] INFO - function SE637303570831224080() {} SE637303570831224080.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831224080().executeScript(); 2020-07-14 20:58:03,123 [19] INFO - Information: 0 : 2020-07-14 20:58:03,123 [19] INFO - function SE637303570831224080() {} SE637303570831224080.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831224080().executeScript(); 2020-07-14 20:58:03,123 [19] INFO - --------- 2020-07-14 20:58:03,123 [19] INFO - Information: 0 : 2020-07-14 20:58:03,123 [19] INFO - --------- 2020-07-14 20:58:03,128 [19] INFO - Information: 0 : 2020-07-14 20:58:03,128 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,130 [19] INFO - Information: 0 : 2020-07-14 20:58:03,130 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,130 [19] INFO - Information: 0 : 2020-07-14 20:58:03,130 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,133 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,133 [19] INFO - Information: 0 : 2020-07-14 20:58:03,133 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,133 [19] INFO - --------- 2020-07-14 20:58:03,133 [19] INFO - Information: 0 : 2020-07-14 20:58:03,133 [19] INFO - --------- 2020-07-14 20:58:03,133 [19] INFO - function SE637303570831224080() {} SE637303570831224080.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831224080().executeScript(); 2020-07-14 20:58:03,134 [19] INFO - Information: 0 : 2020-07-14 20:58:03,134 [19] INFO - function SE637303570831224080() {} SE637303570831224080.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831224080().executeScript(); 2020-07-14 20:58:03,134 [19] INFO - --------- 2020-07-14 20:58:03,134 [19] INFO - Information: 0 : 2020-07-14 20:58:03,134 [19] INFO - --------- 2020-07-14 20:58:03,134 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1874. 2020-07-14 20:58:03,134 [19] INFO - Information: 0 : 2020-07-14 20:58:03,135 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1874. 2020-07-14 20:58:03,135 [19] INFO - --------- 2020-07-14 20:58:03,135 [19] INFO - Information: 0 : 2020-07-14 20:58:03,135 [19] INFO - --------- 2020-07-14 20:58:03,135 [19] INFO - [system.partial] „article-begin.html“ 13 ms „[0, popupimage]“ 2020-07-14 20:58:03,135 [19] INFO - Information: 0 : 2020-07-14 20:58:03,135 [19] INFO - [system.partial] „article-begin.html“ 13 ms „[0, popupimage]“ 2020-07-14 20:58:03,137 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,137 [19] INFO - Information: 0 : 2020-07-14 20:58:03,137 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,137 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,137 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,137 [19] INFO - Information: 0 : 2020-07-14 20:58:03,137 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,138 [19] INFO - --------- 2020-07-14 20:58:03,138 [19] INFO - Information: 0 : 2020-07-14 20:58:03,138 [19] INFO - --------- 2020-07-14 20:58:03,138 [19] INFO - function SE637303570830994067() {} SE637303570830994067.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570830994067().executeScript(); 2020-07-14 20:58:03,138 [19] INFO - Information: 0 : 2020-07-14 20:58:03,139 [19] INFO - function SE637303570830994067() {} SE637303570830994067.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570830994067().executeScript(); 2020-07-14 20:58:03,139 [19] INFO - --------- 2020-07-14 20:58:03,139 [19] INFO - Information: 0 : 2020-07-14 20:58:03,139 [19] INFO - --------- 2020-07-14 20:58:03,139 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1875. 2020-07-14 20:58:03,139 [19] INFO - Information: 0 : 2020-07-14 20:58:03,139 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1875. 2020-07-14 20:58:03,140 [19] INFO - --------- 2020-07-14 20:58:03,140 [19] INFO - Information: 0 : 2020-07-14 20:58:03,140 [19] INFO - --------- 2020-07-14 20:58:03,141 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,141 [19] INFO - Information: 0 : 2020-07-14 20:58:03,141 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,141 [19] INFO - --------- 2020-07-14 20:58:03,141 [19] INFO - Information: 0 : 2020-07-14 20:58:03,141 [19] INFO - --------- 2020-07-14 20:58:03,141 [19] INFO - function SE637303570831414091() {} SE637303570831414091.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831414091().executeScript(); 2020-07-14 20:58:03,142 [19] INFO - Information: 0 : 2020-07-14 20:58:03,142 [19] INFO - function SE637303570831414091() {} SE637303570831414091.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831414091().executeScript(); 2020-07-14 20:58:03,142 [19] INFO - --------- 2020-07-14 20:58:03,142 [19] INFO - Information: 0 : 2020-07-14 20:58:03,143 [19] INFO - --------- 2020-07-14 20:58:03,145 [19] INFO - Information: 0 : 2020-07-14 20:58:03,145 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,148 [19] INFO - Information: 0 : 2020-07-14 20:58:03,148 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,148 [19] INFO - Information: 0 : 2020-07-14 20:58:03,148 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,149 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 501 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:03,150 [19] INFO - Entering 'ensureContentCopy' for image 416, article 1426, size 890. 2020-07-14 20:58:03,150 [19] INFO - Called 'createContentCopy' scripting function with article ID = 1426, image ID = 416, maxWidthInPixel = 890. 2020-07-14 20:58:03,150 [19] INFO - 'createContentCopy': NO content copy created (Never create content copy for preview.). 2020-07-14 20:58:03,150 [19] INFO - Leaving 'ensureContentCopy' for image 416, article 1426, size „890“, reason = not created (Never create content copy for preview.) 2020-07-14 20:58:03,158 [19] INFO - [GetImageSizeInPixel - B2] getting image size 2048x1152 for working copy image „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\e107311c561e4a32914633c1e308018d.jpg“ live from file. 2020-07-14 20:58:03,158 [19] INFO - Returning live-calculated image size for image with ID 416, file version „ContentCopy“ of 2048×1152 pixels. 2020-07-14 20:58:03,158 [19] INFO - Returning cached image size for image with ID 416, file version „ContentCopy“ of 2048×1152 pixels. 2020-07-14 20:58:03,160 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,160 [19] INFO - Information: 0 : 2020-07-14 20:58:03,160 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,160 [19] INFO - --------- 2020-07-14 20:58:03,160 [19] INFO - Information: 0 : 2020-07-14 20:58:03,160 [19] INFO - --------- 2020-07-14 20:58:03,160 [19] INFO - function SE637303570831604102() {} SE637303570831604102.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831604102().executeScript(); 2020-07-14 20:58:03,160 [19] INFO - Information: 0 : 2020-07-14 20:58:03,161 [19] INFO - function SE637303570831604102() {} SE637303570831604102.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831604102().executeScript(); 2020-07-14 20:58:03,161 [19] INFO - --------- 2020-07-14 20:58:03,161 [19] INFO - Information: 0 : 2020-07-14 20:58:03,161 [19] INFO - --------- 2020-07-14 20:58:03,165 [19] INFO - Information: 0 : 2020-07-14 20:58:03,165 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,166 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,167 [19] INFO - Information: 0 : 2020-07-14 20:58:03,168 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,168 [19] INFO - Information: 0 : 2020-07-14 20:58:03,168 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,169 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,169 [19] INFO - Information: 0 : 2020-07-14 20:58:03,170 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,170 [19] INFO - --------- 2020-07-14 20:58:03,170 [19] INFO - Information: 0 : 2020-07-14 20:58:03,170 [19] INFO - --------- 2020-07-14 20:58:03,170 [19] INFO - function SE637303570831604102() {} SE637303570831604102.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831604102().executeScript(); 2020-07-14 20:58:03,170 [19] INFO - Information: 0 : 2020-07-14 20:58:03,170 [19] INFO - function SE637303570831604102() {} SE637303570831604102.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831604102().executeScript(); 2020-07-14 20:58:03,171 [19] INFO - --------- 2020-07-14 20:58:03,171 [19] INFO - Information: 0 : 2020-07-14 20:58:03,171 [19] INFO - --------- 2020-07-14 20:58:03,171 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1876. 2020-07-14 20:58:03,171 [19] INFO - Information: 0 : 2020-07-14 20:58:03,171 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1876. 2020-07-14 20:58:03,171 [19] INFO - --------- 2020-07-14 20:58:03,171 [19] INFO - Information: 0 : 2020-07-14 20:58:03,171 [19] INFO - --------- 2020-07-14 20:58:03,171 [19] INFO - [system.partial] „article-begin.html“ 11 ms „[0, popupimage]“ 2020-07-14 20:58:03,172 [19] INFO - Information: 0 : 2020-07-14 20:58:03,172 [19] INFO - [system.partial] „article-begin.html“ 11 ms „[0, popupimage]“ 2020-07-14 20:58:03,173 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,173 [19] INFO - Information: 0 : 2020-07-14 20:58:03,173 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,174 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,174 [19] INFO - Information: 0 : 2020-07-14 20:58:03,174 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,174 [19] INFO - --------- 2020-07-14 20:58:03,174 [19] INFO - Information: 0 : 2020-07-14 20:58:03,174 [19] INFO - --------- 2020-07-14 20:58:03,174 [19] INFO - function SE637303570831414091() {} SE637303570831414091.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831414091().executeScript(); 2020-07-14 20:58:03,175 [19] INFO - Information: 0 : 2020-07-14 20:58:03,175 [19] INFO - function SE637303570831414091() {} SE637303570831414091.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831414091().executeScript(); 2020-07-14 20:58:03,175 [19] INFO - --------- 2020-07-14 20:58:03,175 [19] INFO - Information: 0 : 2020-07-14 20:58:03,175 [19] INFO - --------- 2020-07-14 20:58:03,176 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1877. 2020-07-14 20:58:03,176 [19] INFO - Information: 0 : 2020-07-14 20:58:03,176 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1877. 2020-07-14 20:58:03,176 [19] INFO - --------- 2020-07-14 20:58:03,176 [19] INFO - Information: 0 : 2020-07-14 20:58:03,176 [19] INFO - --------- 2020-07-14 20:58:03,177 [19] INFO - Information: 0 : 2020-07-14 20:58:03,177 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,179 [19] INFO - Information: 0 : 2020-07-14 20:58:03,179 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,179 [19] INFO - Information: 0 : 2020-07-14 20:58:03,179 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,182 [19] INFO - Information: 0 : 2020-07-14 20:58:03,183 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,184 [19] INFO - Information: 0 : 2020-07-14 20:58:03,184 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,185 [19] INFO - Information: 0 : 2020-07-14 20:58:03,185 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,186 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,186 [19] INFO - Information: 0 : 2020-07-14 20:58:03,186 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,186 [19] INFO - --------- 2020-07-14 20:58:03,186 [19] INFO - Information: 0 : 2020-07-14 20:58:03,187 [19] INFO - --------- 2020-07-14 20:58:03,187 [19] INFO - function SE637303570831864117() {} SE637303570831864117.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831864117().executeScript(); 2020-07-14 20:58:03,187 [19] INFO - Information: 0 : 2020-07-14 20:58:03,187 [19] INFO - function SE637303570831864117() {} SE637303570831864117.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831864117().executeScript(); 2020-07-14 20:58:03,188 [19] INFO - --------- 2020-07-14 20:58:03,188 [19] INFO - Information: 0 : 2020-07-14 20:58:03,188 [19] INFO - --------- 2020-07-14 20:58:03,190 [19] INFO - Information: 0 : 2020-07-14 20:58:03,190 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,192 [19] INFO - Information: 0 : 2020-07-14 20:58:03,192 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,192 [19] INFO - Information: 0 : 2020-07-14 20:58:03,192 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,192 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 668 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:03,193 [19] INFO - Information: 0 : 2020-07-14 20:58:03,193 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,194 [19] INFO - Information: 0 : 2020-07-14 20:58:03,194 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,195 [19] INFO - Information: 0 : 2020-07-14 20:58:03,195 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,195 [19] INFO - Entering 'ensureContentCopy' for image 414, article 1425, size 890. 2020-07-14 20:58:03,195 [19] INFO - Called 'createContentCopy' scripting function with article ID = 1425, image ID = 414, maxWidthInPixel = 890. 2020-07-14 20:58:03,195 [19] INFO - 'createContentCopy': NO content copy created (Never create content copy for preview.). 2020-07-14 20:58:03,196 [19] INFO - Leaving 'ensureContentCopy' for image 414, article 1425, size „890“, reason = not created (Never create content copy for preview.) 2020-07-14 20:58:03,204 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,206 [19] INFO - [GetImageSizeInPixel - B2] getting image size 2048x1536 for working copy image „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\92c41d522b244fbfabfefebe13f02ce3.jpg“ live from file. 2020-07-14 20:58:03,206 [19] INFO - Returning live-calculated image size for image with ID 414, file version „ContentCopy“ of 2048×1536 pixels. 2020-07-14 20:58:03,206 [19] INFO - Returning cached image size for image with ID 414, file version „ContentCopy“ of 2048×1536 pixels. 2020-07-14 20:58:03,208 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,208 [19] INFO - Information: 0 : 2020-07-14 20:58:03,208 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,208 [19] INFO - --------- 2020-07-14 20:58:03,208 [19] INFO - Information: 0 : 2020-07-14 20:58:03,208 [19] INFO - --------- 2020-07-14 20:58:03,208 [19] INFO - function SE637303570832084129() {} SE637303570832084129.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832084129().executeScript(); 2020-07-14 20:58:03,209 [19] INFO - Information: 0 : 2020-07-14 20:58:03,209 [19] INFO - function SE637303570832084129() {} SE637303570832084129.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832084129().executeScript(); 2020-07-14 20:58:03,209 [19] INFO - --------- 2020-07-14 20:58:03,209 [19] INFO - Information: 0 : 2020-07-14 20:58:03,209 [19] INFO - --------- 2020-07-14 20:58:03,213 [19] INFO - Information: 0 : 2020-07-14 20:58:03,213 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,216 [19] INFO - Information: 0 : 2020-07-14 20:58:03,216 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,216 [19] INFO - Information: 0 : 2020-07-14 20:58:03,216 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,217 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,217 [19] INFO - Information: 0 : 2020-07-14 20:58:03,217 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,217 [19] INFO - --------- 2020-07-14 20:58:03,217 [19] INFO - Information: 0 : 2020-07-14 20:58:03,217 [19] INFO - --------- 2020-07-14 20:58:03,217 [19] INFO - function SE637303570832084129() {} SE637303570832084129.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832084129().executeScript(); 2020-07-14 20:58:03,218 [19] INFO - Information: 0 : 2020-07-14 20:58:03,218 [19] INFO - function SE637303570832084129() {} SE637303570832084129.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832084129().executeScript(); 2020-07-14 20:58:03,219 [19] INFO - --------- 2020-07-14 20:58:03,219 [19] INFO - Information: 0 : 2020-07-14 20:58:03,219 [19] INFO - --------- 2020-07-14 20:58:03,219 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1878. 2020-07-14 20:58:03,219 [19] INFO - Information: 0 : 2020-07-14 20:58:03,219 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1878. 2020-07-14 20:58:03,219 [19] INFO - --------- 2020-07-14 20:58:03,219 [19] INFO - Information: 0 : 2020-07-14 20:58:03,219 [19] INFO - --------- 2020-07-14 20:58:03,220 [19] INFO - [system.partial] „article-begin.html“ 12 ms „[0, popupimage]“ 2020-07-14 20:58:03,220 [19] INFO - Information: 0 : 2020-07-14 20:58:03,220 [19] INFO - [system.partial] „article-begin.html“ 12 ms „[0, popupimage]“ 2020-07-14 20:58:03,221 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,222 [19] INFO - Information: 0 : 2020-07-14 20:58:03,222 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,222 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,222 [19] INFO - Information: 0 : 2020-07-14 20:58:03,222 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,222 [19] INFO - --------- 2020-07-14 20:58:03,222 [19] INFO - Information: 0 : 2020-07-14 20:58:03,222 [19] INFO - --------- 2020-07-14 20:58:03,222 [19] INFO - function SE637303570831864117() {} SE637303570831864117.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831864117().executeScript(); 2020-07-14 20:58:03,223 [19] INFO - Information: 0 : 2020-07-14 20:58:03,223 [19] INFO - function SE637303570831864117() {} SE637303570831864117.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570831864117().executeScript(); 2020-07-14 20:58:03,223 [19] INFO - --------- 2020-07-14 20:58:03,224 [19] INFO - Information: 0 : 2020-07-14 20:58:03,224 [19] INFO - --------- 2020-07-14 20:58:03,224 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1879. 2020-07-14 20:58:03,224 [19] INFO - Information: 0 : 2020-07-14 20:58:03,224 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1879. 2020-07-14 20:58:03,224 [19] INFO - --------- 2020-07-14 20:58:03,224 [19] INFO - Information: 0 : 2020-07-14 20:58:03,224 [19] INFO - --------- 2020-07-14 20:58:03,225 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,225 [19] INFO - Information: 0 : 2020-07-14 20:58:03,225 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,225 [19] INFO - --------- 2020-07-14 20:58:03,225 [19] INFO - Information: 0 : 2020-07-14 20:58:03,225 [19] INFO - --------- 2020-07-14 20:58:03,225 [19] INFO - function SE637303570832244138() {} SE637303570832244138.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832244138().executeScript(); 2020-07-14 20:58:03,225 [19] INFO - Information: 0 : 2020-07-14 20:58:03,225 [19] INFO - function SE637303570832244138() {} SE637303570832244138.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832244138().executeScript(); 2020-07-14 20:58:03,225 [19] INFO - --------- 2020-07-14 20:58:03,226 [19] INFO - Information: 0 : 2020-07-14 20:58:03,226 [19] INFO - --------- 2020-07-14 20:58:03,227 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,227 [19] INFO - Information: 0 : 2020-07-14 20:58:03,227 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,227 [19] INFO - --------- 2020-07-14 20:58:03,227 [19] INFO - Information: 0 : 2020-07-14 20:58:03,227 [19] INFO - --------- 2020-07-14 20:58:03,227 [19] INFO - function SE637303570832274140() {} SE637303570832274140.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832274140().executeScript(); 2020-07-14 20:58:03,228 [19] INFO - Information: 0 : 2020-07-14 20:58:03,228 [19] INFO - function SE637303570832274140() {} SE637303570832274140.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832274140().executeScript(); 2020-07-14 20:58:03,228 [19] INFO - --------- 2020-07-14 20:58:03,228 [19] INFO - Information: 0 : 2020-07-14 20:58:03,228 [19] INFO - --------- 2020-07-14 20:58:03,232 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,233 [19] INFO - Information: 0 : 2020-07-14 20:58:03,233 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,235 [19] INFO - Information: 0 : 2020-07-14 20:58:03,235 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,235 [19] INFO - Information: 0 : 2020-07-14 20:58:03,235 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,236 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,236 [19] INFO - Information: 0 : 2020-07-14 20:58:03,236 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,236 [19] INFO - --------- 2020-07-14 20:58:03,237 [19] INFO - Information: 0 : 2020-07-14 20:58:03,237 [19] INFO - --------- 2020-07-14 20:58:03,237 [19] INFO - function SE637303570832274140() {} SE637303570832274140.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832274140().executeScript(); 2020-07-14 20:58:03,237 [19] INFO - Information: 0 : 2020-07-14 20:58:03,237 [19] INFO - function SE637303570832274140() {} SE637303570832274140.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832274140().executeScript(); 2020-07-14 20:58:03,237 [19] INFO - --------- 2020-07-14 20:58:03,237 [19] INFO - Information: 0 : 2020-07-14 20:58:03,237 [19] INFO - --------- 2020-07-14 20:58:03,238 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1880. 2020-07-14 20:58:03,239 [19] INFO - Information: 0 : 2020-07-14 20:58:03,239 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1880. 2020-07-14 20:58:03,239 [19] INFO - --------- 2020-07-14 20:58:03,239 [19] INFO - Information: 0 : 2020-07-14 20:58:03,239 [19] INFO - --------- 2020-07-14 20:58:03,239 [19] INFO - [system.partial] „article-begin.html“ 12 ms „“ 2020-07-14 20:58:03,239 [19] INFO - Information: 0 : 2020-07-14 20:58:03,239 [19] INFO - [system.partial] „article-begin.html“ 12 ms „“ 2020-07-14 20:58:03,240 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,240 [19] INFO - Information: 0 : 2020-07-14 20:58:03,240 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,240 [19] INFO - --------- 2020-07-14 20:58:03,240 [19] INFO - Information: 0 : 2020-07-14 20:58:03,241 [19] INFO - --------- 2020-07-14 20:58:03,241 [19] INFO - function SE637303570832404148() {} SE637303570832404148.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832404148().executeScript(); 2020-07-14 20:58:03,241 [19] INFO - Information: 0 : 2020-07-14 20:58:03,241 [19] INFO - function SE637303570832404148() {} SE637303570832404148.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832404148().executeScript(); 2020-07-14 20:58:03,241 [19] INFO - --------- 2020-07-14 20:58:03,241 [19] INFO - Information: 0 : 2020-07-14 20:58:03,241 [19] INFO - --------- 2020-07-14 20:58:03,243 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,243 [19] INFO - Information: 0 : 2020-07-14 20:58:03,244 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,244 [19] INFO - --------- 2020-07-14 20:58:03,244 [19] INFO - Information: 0 : 2020-07-14 20:58:03,244 [19] INFO - --------- 2020-07-14 20:58:03,244 [19] INFO - function SE637303570832404148() {} SE637303570832404148.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832404148().executeScript(); 2020-07-14 20:58:03,244 [19] INFO - Information: 0 : 2020-07-14 20:58:03,244 [19] INFO - function SE637303570832404148() {} SE637303570832404148.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832404148().executeScript(); 2020-07-14 20:58:03,244 [19] INFO - --------- 2020-07-14 20:58:03,245 [19] INFO - Information: 0 : 2020-07-14 20:58:03,245 [19] INFO - --------- 2020-07-14 20:58:03,245 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1881. 2020-07-14 20:58:03,245 [19] INFO - Information: 0 : 2020-07-14 20:58:03,245 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1881. 2020-07-14 20:58:03,245 [19] INFO - --------- 2020-07-14 20:58:03,245 [19] INFO - Information: 0 : 2020-07-14 20:58:03,245 [19] INFO - --------- 2020-07-14 20:58:03,245 [19] INFO - [system.partial] „article-headline.html“ 5 ms „“ 2020-07-14 20:58:03,245 [19] INFO - Information: 0 : 2020-07-14 20:58:03,246 [19] INFO - [system.partial] „article-headline.html“ 5 ms „“ 2020-07-14 20:58:03,246 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,246 [19] INFO - Information: 0 : 2020-07-14 20:58:03,246 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,246 [19] INFO - --------- 2020-07-14 20:58:03,246 [19] INFO - Information: 0 : 2020-07-14 20:58:03,246 [19] INFO - --------- 2020-07-14 20:58:03,246 [19] INFO - function SE637303570832464151() {} SE637303570832464151.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832464151().executeScript(); 2020-07-14 20:58:03,247 [19] INFO - Information: 0 : 2020-07-14 20:58:03,247 [19] INFO - function SE637303570832464151() {} SE637303570832464151.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832464151().executeScript(); 2020-07-14 20:58:03,247 [19] INFO - --------- 2020-07-14 20:58:03,247 [19] INFO - Information: 0 : 2020-07-14 20:58:03,247 [19] INFO - --------- 2020-07-14 20:58:03,249 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,249 [19] INFO - Information: 0 : 2020-07-14 20:58:03,249 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,249 [19] INFO - --------- 2020-07-14 20:58:03,250 [19] INFO - Information: 0 : 2020-07-14 20:58:03,250 [19] INFO - --------- 2020-07-14 20:58:03,250 [19] INFO - function SE637303570832464151() {} SE637303570832464151.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832464151().executeScript(); 2020-07-14 20:58:03,250 [19] INFO - Information: 0 : 2020-07-14 20:58:03,250 [19] INFO - function SE637303570832464151() {} SE637303570832464151.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832464151().executeScript(); 2020-07-14 20:58:03,250 [19] INFO - --------- 2020-07-14 20:58:03,250 [19] INFO - Information: 0 : 2020-07-14 20:58:03,250 [19] INFO - --------- 2020-07-14 20:58:03,250 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1882. 2020-07-14 20:58:03,251 [19] INFO - Information: 0 : 2020-07-14 20:58:03,251 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1882. 2020-07-14 20:58:03,251 [19] INFO - --------- 2020-07-14 20:58:03,251 [19] INFO - Information: 0 : 2020-07-14 20:58:03,251 [19] INFO - --------- 2020-07-14 20:58:03,251 [19] INFO - [system.partial] „inline-editor-start.html“ 5 ms „“ 2020-07-14 20:58:03,251 [19] INFO - Information: 0 : 2020-07-14 20:58:03,251 [19] INFO - [system.partial] „inline-editor-start.html“ 5 ms „“ 2020-07-14 20:58:03,252 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,252 [19] INFO - Information: 0 : 2020-07-14 20:58:03,252 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,252 [19] INFO - --------- 2020-07-14 20:58:03,252 [19] INFO - Information: 0 : 2020-07-14 20:58:03,252 [19] INFO - --------- 2020-07-14 20:58:03,252 [19] INFO - function SE637303570832524154() {} SE637303570832524154.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832524154().executeScript(); 2020-07-14 20:58:03,252 [19] INFO - Information: 0 : 2020-07-14 20:58:03,253 [19] INFO - function SE637303570832524154() {} SE637303570832524154.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832524154().executeScript(); 2020-07-14 20:58:03,253 [19] INFO - --------- 2020-07-14 20:58:03,253 [19] INFO - Information: 0 : 2020-07-14 20:58:03,253 [19] INFO - --------- 2020-07-14 20:58:03,254 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,254 [19] INFO - Information: 0 : 2020-07-14 20:58:03,254 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,254 [19] INFO - --------- 2020-07-14 20:58:03,254 [19] INFO - Information: 0 : 2020-07-14 20:58:03,254 [19] INFO - --------- 2020-07-14 20:58:03,254 [19] INFO - function SE637303570832524154() {} SE637303570832524154.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832524154().executeScript(); 2020-07-14 20:58:03,255 [19] INFO - Information: 0 : 2020-07-14 20:58:03,255 [19] INFO - function SE637303570832524154() {} SE637303570832524154.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832524154().executeScript(); 2020-07-14 20:58:03,255 [19] INFO - --------- 2020-07-14 20:58:03,255 [19] INFO - Information: 0 : 2020-07-14 20:58:03,255 [19] INFO - --------- 2020-07-14 20:58:03,255 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1883. 2020-07-14 20:58:03,255 [19] INFO - Information: 0 : 2020-07-14 20:58:03,255 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1883. 2020-07-14 20:58:03,255 [19] INFO - --------- 2020-07-14 20:58:03,255 [19] INFO - Information: 0 : 2020-07-14 20:58:03,256 [19] INFO - --------- 2020-07-14 20:58:03,256 [19] INFO - [system.partial] „inline-editor-end.html“ 4 ms „“ 2020-07-14 20:58:03,256 [19] INFO - Information: 0 : 2020-07-14 20:58:03,256 [19] INFO - [system.partial] „inline-editor-end.html“ 4 ms „“ 2020-07-14 20:58:03,256 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,256 [19] INFO - Information: 0 : 2020-07-14 20:58:03,256 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,256 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,256 [19] INFO - Information: 0 : 2020-07-14 20:58:03,257 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,257 [19] INFO - --------- 2020-07-14 20:58:03,257 [19] INFO - Information: 0 : 2020-07-14 20:58:03,257 [19] INFO - --------- 2020-07-14 20:58:03,257 [19] INFO - function SE637303570832244138() {} SE637303570832244138.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832244138().executeScript(); 2020-07-14 20:58:03,257 [19] INFO - Information: 0 : 2020-07-14 20:58:03,257 [19] INFO - function SE637303570832244138() {} SE637303570832244138.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832244138().executeScript(); 2020-07-14 20:58:03,257 [19] INFO - --------- 2020-07-14 20:58:03,257 [19] INFO - Information: 0 : 2020-07-14 20:58:03,258 [19] INFO - --------- 2020-07-14 20:58:03,258 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1884. 2020-07-14 20:58:03,258 [19] INFO - Information: 0 : 2020-07-14 20:58:03,258 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1884. 2020-07-14 20:58:03,258 [19] INFO - --------- 2020-07-14 20:58:03,258 [19] INFO - Information: 0 : 2020-07-14 20:58:03,258 [19] INFO - --------- 2020-07-14 20:58:03,259 [19] INFO - Information: 0 : 2020-07-14 20:58:03,259 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,261 [19] INFO - Information: 0 : 2020-07-14 20:58:03,261 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,261 [19] INFO - Information: 0 : 2020-07-14 20:58:03,261 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,264 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,265 [19] INFO - Information: 0 : 2020-07-14 20:58:03,265 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,267 [19] INFO - Information: 0 : 2020-07-14 20:58:03,267 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,267 [19] INFO - Information: 0 : 2020-07-14 20:58:03,267 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,271 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,271 [19] INFO - Information: 0 : 2020-07-14 20:58:03,271 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,271 [19] INFO - --------- 2020-07-14 20:58:03,271 [19] INFO - Information: 0 : 2020-07-14 20:58:03,271 [19] INFO - --------- 2020-07-14 20:58:03,273 [19] INFO - function SE637303570832704165() {} SE637303570832704165.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. var imagesPerPage = parseInt(article.value("imagesperpage", 0)); var isPaging = false; var contentImageWidth = "890"; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl hohlen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || 960; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } // if page contains a news area, we only approximate a 2/3 1/3 size layout in order to calculate thumbnails if ( article.area.toLowerCase() == "news" ){ gridCols = 4; } else if ( page.anyAreaArticles("News") ){ gridCols = 8; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } var showSlideshow = article.value("slideshow"); var albumId = article.value("album"); var images = project.getAlbumImages(albumId); var thumbnailWidth = article.value("width"); var thumbnailHeight = article.value("height"); var titlePosition = article.value("titleposition"); var thumbTitlePosition = article.value("thumbtitleposition", "off"); var imageMargin = parseInt(article.value("margin", "0")); // figure out if images have a border set in layout-settings and compensate for it, if the article doesn't have a custom class "noborder" set var imageBorder = 0; var tmpArticleCssClass = " " + article.cssClass; if ( tmpArticleCssClass.indexOf("noborder") == -1 && "" != "0" && "" != "" ) { imageBorder = parseInt(""); } var generateThumbs = true; if ( titlePosition !== "off" ) { var titleShow = "1"; } else { var titleShow = "0"; } if ( "de" == "en" ) { var lang = "en"; } else { var lang = "de"; } var backgroundImage = backgroundWidth = backgroundHeight = backgroundLeft = backgroundTop = ""; if ( showSlideshow && article.valueRaw("slideshowtemplate") !== "none" ) { backgroundImage = article.value("slideshowtemplate", ""); if ( backgroundImage.indexOf("/laptop.png") > -1 ) { backgroundImage = "assets/js/img/laptop.png"; var backgroundWidth = "801"; var backgroundHeight = "469"; var backgroundLeft= "104"; var backgroundTop = "31"; thumbnailWidth = "590"; thumbnailHeight = "369"; } else if ( backgroundImage.indexOf("/laptop_klein.png") > -1 ) { backgroundImage = "assets/js/img/laptop_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "268"; var backgroundLeft= "59"; var backgroundTop = "18"; thumbnailWidth = "338"; thumbnailHeight = "211"; } else if ( backgroundImage.indexOf("/rahmen.png") > -1 ) { backgroundImage = "assets/js/img/rahmen.png"; var backgroundWidth = "758"; var backgroundHeight = "469"; var backgroundLeft= "55"; var backgroundTop = "57"; thumbnailWidth = "648"; thumbnailHeight = "356"; } else if ( backgroundImage.indexOf("/rahmen_klein.png") > -1 ) { backgroundImage = "assets/js/img/rahmen_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "283"; var backgroundLeft= "33"; var backgroundTop = "34"; thumbnailWidth = "392"; thumbnailHeight = "214"; } } else if ( showSlideshow && article.valueRaw("slideshowtemplate") == "none" ) { thumbnailWidth = columnWidth; //generateThumbs = false; } if ( system.preview ){ //system.log(images.count == 1 ? (" 1 Bild...") : (" " + images.count + " Bilder...")); } var gridFactor = 12 / gridCols; var maxcols = Math.ceil((contentImageWidth / (thumbnailWidth+imageMargin)) / gridFactor); var onecolumnbreakpoint = 479; var maxmobilecols = Math.ceil(onecolumnbreakpoint / thumbnailWidth); var mobilecontainerwidth = 100 / maxmobilecols; var headstyle = "/* test */"; headstyle += "\ #igal" + article.id + ":not(.zpSlideshow){\n\ margin-left: -" + imageMargin/2 + "px !important;\n\ margin-right: -" + imageMargin/2 + "px !important;\n\ }\n\ /* below is to accomodates for IE rounding errors which caused the cols not to fit into the row */\n\ .ie #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc((100% / "+ maxcols +") - " + parseInt(imageMargin/2)*2 + ".1px) !important;\n\ margin: " + parseInt(imageMargin/2) + "px !important;\n\ }\n\ \n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item,\n\ #igal" + article.id + ":not(.zpSlideshow) > a,\n\ #igal" + article.id + ":not(.zpSlideshow) .slide > a{\n\ display: block;\n\ float: left;\n\ width: calc((100% / "+ maxcols +") - " + imageMargin + "px);\n\ max-width: "+ thumbnailWidth +"px;\n\ height: auto;\n\ margin: " + imageMargin / 2 + "px;\n\ }\n\ #igal" + article.id +" > a > img{\n\ max-width: 100%;\n\ display: block;\n\ }\n\ "; for ( var i = 1; i < maxcols - 1; i++){ var breakpoint = contentImageWidth - (i * thumbnailWidth); if ( breakpoint <= onecolumnbreakpoint ){ // if we reach the point, where the ZP Grid will display rows in 1-column, we break and need to use a different logic (see next for-loop) break; } var containerwidth = 100 / ( maxcols - i); headstyle += "\n\ @media screen and (max-width: " + breakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + containerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; } // mobile display 2+-column-rows. for ( var i = 1; i < maxmobilecols; i++){ headstyle += "\n\ @media screen and (max-width: " + onecolumnbreakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + mobilecontainerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; onecolumnbreakpoint = ( maxmobilecols -i ) * thumbnailWidth; mobilecontainerwidth = 100 / ( maxmobilecols -i ); } // mobile display 1-column-row. headstyle += "\n\ @media screen and (max-width: " + (thumbnailWidth+imageMargin) +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(100% - " + imageMargin + "px);\n\ }\n\ }\n\ "; headstyle += ""; system.addHtmlHeadElement(headstyle); // polyfill for JSON.stringify() // https://gist.github.com/uupaa/5562297 function _toJSONEscapedString(str) { // @arg String: // @ret String: // @inner: to JSON escaped string if (typeof(str)==='undefined') str = ""; if ( str == ""){ return ""; } else{ var JSON_ESCAPE = { '\b': '\\b', // backspace U+0008 '\t': '\\t', // tab U+0009 '\n': '\\n', // line feed U+000A '\f': '\\f', // form feed U+000C '\r': '\\r', // carriage return U+000D '"': '\\"', // quotation mark U+0022 '\\': '\\\\' // reverse solidus U+005C }; return str.replace(/(?:[\b\t\n\f\r\"]|\\)/g, function(_) { return JSON_ESCAPE[_]; }).replace(/(?:[\x00-\x1f])/g, function(_) { return "\\u00" + ("0" + _.charCodeAt(0).toString(16)).slice(-2); }); } } context.write("\r\n\r\n"); // normales Bilderalbum mit thumbnails, ohne ContentCopy if ( !showSlideshow ) { // only activate paging via json-data when more than one page of images to show exists if ( imagesPerPage > 0 && images.count > imagesPerPage ){ isPaging = true; } context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\r\n\t\t
    999999 ){ context.write("style=\"margin-right: -"); context.write( imageMargin ); context.write("px;\" "); } context.write("\r\n\t\t\tdata-article-id=\""); context.write(article.id); context.write("\" \r\n\t\t\tdata-prevtext=\"Zurück\" \r\n\t\t\tdata-nexttext=\"Weiter\" \r\n\t\t\tdata-pagetext=\"Seite {0} von {1}\" \r\n\t\t\tdata-ispaging=\""); context.write(isPaging); context.write("\" \r\n\t\t\tdata-imageeffect=\""); context.write(effectClass); context.write("\" \r\n\t\t\tdata-imagesperpage=\""); context.write(imagesPerPage); context.write("\" \r\n\t\t\tdata-kind=\"gallery\" \r\n\t\t\tdata-width=\""); context.write( thumbnailWidth ); context.write("\"\r\n\t\t\tdata-height=\""); context.write( thumbnailHeight ); context.write("\"\r\n\t\t\tdata-margin=\""); context.write( article.value("margin", "") ); context.write("\"\r\n\t\t\tdata-maxcols=\""); context.write( maxcols ); context.write("\"\r\n\t\t\tdata-bordercolor=\"default\"\r\n\t\t\tdata-borderwidth=\"0\"\r\n\t\t\tdata-numbershow=\"0\" \r\n\t\t\tdata-template=\"\" \r\n\t\t\tdata-titleshow=\""); context.write( titleShow ); context.write("\"\r\n\t\t\tdata-titleposition=\""); context.write( article.value("titleposition", "") ); context.write("\"\r\n\t\t\tdata-transition=\""); context.write( article.value("zoom", "") ); context.write("\"\r\n\t\t\tdata-inner-transition=\""); context.write( article.value("transition", "") ); context.write("\"\r\n\t\t\tdata-slideshow=\"0\"\r\n\t\t\tdata-slideshowinterval=\"0\"\r\n\t\t\tdata-lang=\""); context.write( lang ); context.write("\">\r\n\t\r\n\t\t\t"); if ( isPaging ) { context.write("\r\n\t\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\t\t
    \r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } else { context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\r\n\t\t\r\n\t\t"); // Slideshow mit Hintergrundbild aus Template (Laptop etc.), ohne Contentcopy if ( backgroundImage !== "" && backgroundImage !== "Keine" ) { context.write("\r\n\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t\"\"\r\n\t\t\r\n\t\t\t\t\t"); var descriptionSlide1, altText1, encodedDescription1, imageSlide1; for ( var indexSlide1=0; indexSlide1 < images.count; ++indexSlide1 ) { imageSlide1 = images.item(indexSlide1); imageSlide1.skipContentCopy(); // keine contentCopy erzeugen, da überflüssig weil gleich groß wie workingCopy descriptionSlide1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.description)); encodedDescription1 = system.htmlEncode(imageSlide1.description); altText1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.altText)); if ( imageSlide1.createThumb(thumbnailWidth, thumbnailHeight) ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide1.thumbPath(thumbnailWidth, thumbnailHeight).split("/").pop()); } } context.write("\r\n\t\t\t\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide1.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t\t"); context.write( imageSlide1.description ); context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\r\n\t\t"); } // Slideshow ohne Hintergrundbild (Nur Bild), ohne Contentcopy else { context.write("\r\n\r\n\t\t\t"); var maxThumbnailHeight = 0; var maxThumbnailWidth = 0; for (var indexThumbnailHeight=0; indexThumbnailHeight < images.count; ++indexThumbnailHeight ) { var imageThumbnailHeight = images.item(indexThumbnailHeight); imageThumbnailHeight.skipContentCopy(); var currentThumbnailHeight = imageThumbnailHeight.createThumbWithInfo(columnWidth); if ( currentThumbnailHeight.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageThumbnailHeight.thumbPath(columnWidth).split("/").pop()); } } if ( currentThumbnailHeight.height > maxThumbnailHeight ) { maxThumbnailHeight = currentThumbnailHeight.height; } if ( currentThumbnailHeight.width > maxThumbnailWidth ) { maxThumbnailWidth = currentThumbnailHeight.width; } } context.write("\r\n\t\t\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\t"); var descriptionSlide2, encodedDescription2, imageSlide2; for ( var indexSlide2=0; indexSlide2 < images.count; ++indexSlide2 ) { imageSlide2 = images.item(indexSlide2); imageSlide2.skipContentCopy(); descriptionSlide2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.description)); encodedDescription2 = system.htmlEncode(imageSlide2.description); altText2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.altText)); var tni = imageSlide2.createThumbWithInfo(columnWidth); if ( tni.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide2.thumbPath(columnWidth).split("/").pop()); } } var tmpWidth = parseInt(tni.ThumbnailWidth); var tmpHeight = parseInt(tni.ThumbnailHeight); var tmpSrc = imageSlide2.thumbPath(columnWidth); context.write("\r\n\t\t\t\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide2.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t"); context.write( imageSlide2.description ); context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\r\n\t\t"); } context.write("\r\n\r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832704165().executeScript(); 2020-07-14 20:58:03,274 [19] INFO - Information: 0 : 2020-07-14 20:58:03,274 [19] INFO - function SE637303570832704165() {} SE637303570832704165.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. var imagesPerPage = parseInt(article.value("imagesperpage", 0)); var isPaging = false; var contentImageWidth = "890"; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl hohlen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || 960; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } // if page contains a news area, we only approximate a 2/3 1/3 size layout in order to calculate thumbnails if ( article.area.toLowerCase() == "news" ){ gridCols = 4; } else if ( page.anyAreaArticles("News") ){ gridCols = 8; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } var showSlideshow = article.value("slideshow"); var albumId = article.value("album"); var images = project.getAlbumImages(albumId); var thumbnailWidth = article.value("width"); var thumbnailHeight = article.value("height"); var titlePosition = article.value("titleposition"); var thumbTitlePosition = article.value("thumbtitleposition", "off"); var imageMargin = parseInt(article.value("margin", "0")); // figure out if images have a border set in layout-settings and compensate for it, if the article doesn't have a custom class "noborder" set var imageBorder = 0; var tmpArticleCssClass = " " + article.cssClass; if ( tmpArticleCssClass.indexOf("noborder") == -1 && "" != "0" && "" != "" ) { imageBorder = parseInt(""); } var generateThumbs = true; if ( titlePosition !== "off" ) { var titleShow = "1"; } else { var titleShow = "0"; } if ( "de" == "en" ) { var lang = "en"; } else { var lang = "de"; } var backgroundImage = backgroundWidth = backgroundHeight = backgroundLeft = backgroundTop = ""; if ( showSlideshow && article.valueRaw("slideshowtemplate") !== "none" ) { backgroundImage = article.value("slideshowtemplate", ""); if ( backgroundImage.indexOf("/laptop.png") > -1 ) { backgroundImage = "assets/js/img/laptop.png"; var backgroundWidth = "801"; var backgroundHeight = "469"; var backgroundLeft= "104"; var backgroundTop = "31"; thumbnailWidth = "590"; thumbnailHeight = "369"; } else if ( backgroundImage.indexOf("/laptop_klein.png") > -1 ) { backgroundImage = "assets/js/img/laptop_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "268"; var backgroundLeft= "59"; var backgroundTop = "18"; thumbnailWidth = "338"; thumbnailHeight = "211"; } else if ( backgroundImage.indexOf("/rahmen.png") > -1 ) { backgroundImage = "assets/js/img/rahmen.png"; var backgroundWidth = "758"; var backgroundHeight = "469"; var backgroundLeft= "55"; var backgroundTop = "57"; thumbnailWidth = "648"; thumbnailHeight = "356"; } else if ( backgroundImage.indexOf("/rahmen_klein.png") > -1 ) { backgroundImage = "assets/js/img/rahmen_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "283"; var backgroundLeft= "33"; var backgroundTop = "34"; thumbnailWidth = "392"; thumbnailHeight = "214"; } } else if ( showSlideshow && article.valueRaw("slideshowtemplate") == "none" ) { thumbnailWidth = columnWidth; //generateThumbs = false; } if ( system.preview ){ //system.log(images.count == 1 ? (" 1 Bild...") : (" " + images.count + " Bilder...")); } var gridFactor = 12 / gridCols; var maxcols = Math.ceil((contentImageWidth / (thumbnailWidth+imageMargin)) / gridFactor); var onecolumnbreakpoint = 479; var maxmobilecols = Math.ceil(onecolumnbreakpoint / thumbnailWidth); var mobilecontainerwidth = 100 / maxmobilecols; var headstyle = "/* test */"; headstyle += "\ #igal" + article.id + ":not(.zpSlideshow){\n\ margin-left: -" + imageMargin/2 + "px !important;\n\ margin-right: -" + imageMargin/2 + "px !important;\n\ }\n\ /* below is to accomodates for IE rounding errors which caused the cols not to fit into the row */\n\ .ie #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc((100% / "+ maxcols +") - " + parseInt(imageMargin/2)*2 + ".1px) !important;\n\ margin: " + parseInt(imageMargin/2) + "px !important;\n\ }\n\ \n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item,\n\ #igal" + article.id + ":not(.zpSlideshow) > a,\n\ #igal" + article.id + ":not(.zpSlideshow) .slide > a{\n\ display: block;\n\ float: left;\n\ width: calc((100% / "+ maxcols +") - " + imageMargin + "px);\n\ max-width: "+ thumbnailWidth +"px;\n\ height: auto;\n\ margin: " + imageMargin / 2 + "px;\n\ }\n\ #igal" + article.id +" > a > img{\n\ max-width: 100%;\n\ display: block;\n\ }\n\ "; for ( var i = 1; i < maxcols - 1; i++){ var breakpoint = contentImageWidth - (i * thumbnailWidth); if ( breakpoint <= onecolumnbreakpoint ){ // if we reach the point, where the ZP Grid will display rows in 1-column, we break and need to use a different logic (see next for-loop) break; } var containerwidth = 100 / ( maxcols - i); headstyle += "\n\ @media screen and (max-width: " + breakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + containerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; } // mobile display 2+-column-rows. for ( var i = 1; i < maxmobilecols; i++){ headstyle += "\n\ @media screen and (max-width: " + onecolumnbreakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + mobilecontainerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; onecolumnbreakpoint = ( maxmobilecols -i ) * thumbnailWidth; mobilecontainerwidth = 100 / ( maxmobilecols -i ); } // mobile display 1-column-row. headstyle += "\n\ @media screen and (max-width: " + (thumbnailWidth+imageMargin) +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(100% - " + imageMargin + "px);\n\ }\n\ }\n\ "; headstyle += ""; system.addHtmlHeadElement(headstyle); // polyfill for JSON.stringify() // https://gist.github.com/uupaa/5562297 function _toJSONEscapedString(str) { // @arg String: // @ret String: // @inner: to JSON escaped string if (typeof(str)==='undefined') str = ""; if ( str == ""){ return ""; } else{ var JSON_ESCAPE = { '\b': '\\b', // backspace U+0008 '\t': '\\t', // tab U+0009 '\n': '\\n', // line feed U+000A '\f': '\\f', // form feed U+000C '\r': '\\r', // carriage return U+000D '"': '\\"', // quotation mark U+0022 '\\': '\\\\' // reverse solidus U+005C }; return str.replace(/(?:[\b\t\n\f\r\"]|\\)/g, function(_) { return JSON_ESCAPE[_]; }).replace(/(?:[\x00-\x1f])/g, function(_) { return "\\u00" + ("0" + _.charCodeAt(0).toString(16)).slice(-2); }); } } context.write("\r\n\r\n"); // normales Bilderalbum mit thumbnails, ohne ContentCopy if ( !showSlideshow ) { // only activate paging via json-data when more than one page of images to show exists if ( imagesPerPage > 0 && images.count > imagesPerPage ){ isPaging = true; } context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\r\n\t\t
    999999 ){ context.write("style=\"margin-right: -"); context.write( imageMargin ); context.write("px;\" "); } context.write("\r\n\t\t\tdata-article-id=\""); context.write(article.id); context.write("\" \r\n\t\t\tdata-prevtext=\"Zurück\" \r\n\t\t\tdata-nexttext=\"Weiter\" \r\n\t\t\tdata-pagetext=\"Seite {0} von {1}\" \r\n\t\t\tdata-ispaging=\""); context.write(isPaging); context.write("\" \r\n\t\t\tdata-imageeffect=\""); context.write(effectClass); context.write("\" \r\n\t\t\tdata-imagesperpage=\""); context.write(imagesPerPage); context.write("\" \r\n\t\t\tdata-kind=\"gallery\" \r\n\t\t\tdata-width=\""); context.write( thumbnailWidth ); context.write("\"\r\n\t\t\tdata-height=\""); context.write( thumbnailHeight ); context.write("\"\r\n\t\t\tdata-margin=\""); context.write( article.value("margin", "") ); context.write("\"\r\n\t\t\tdata-maxcols=\""); context.write( maxcols ); context.write("\"\r\n\t\t\tdata-bordercolor=\"default\"\r\n\t\t\tdata-borderwidth=\"0\"\r\n\t\t\tdata-numbershow=\"0\" \r\n\t\t\tdata-template=\"\" \r\n\t\t\tdata-titleshow=\""); context.write( titleShow ); context.write("\"\r\n\t\t\tdata-titleposition=\""); context.write( article.value("titleposition", "") ); context.write("\"\r\n\t\t\tdata-transition=\""); context.write( article.value("zoom", "") ); context.write("\"\r\n\t\t\tdata-inner-transition=\""); context.write( article.value("transition", "") ); context.write("\"\r\n\t\t\tdata-slideshow=\"0\"\r\n\t\t\tdata-slideshowinterval=\"0\"\r\n\t\t\tdata-lang=\""); context.write( lang ); context.write("\">\r\n\t\r\n\t\t\t"); if ( isPaging ) { context.write("\r\n\t\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\t\t
    \r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } else { context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\r\n\t\t\r\n\t\t"); // Slideshow mit Hintergrundbild aus Template (Laptop etc.), ohne Contentcopy if ( backgroundImage !== "" && backgroundImage !== "Keine" ) { context.write("\r\n\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t\"\"\r\n\t\t\r\n\t\t\t\t\t"); var descriptionSlide1, altText1, encodedDescription1, imageSlide1; for ( var indexSlide1=0; indexSlide1 < images.count; ++indexSlide1 ) { imageSlide1 = images.item(indexSlide1); imageSlide1.skipContentCopy(); // keine contentCopy erzeugen, da überflüssig weil gleich groß wie workingCopy descriptionSlide1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.description)); encodedDescription1 = system.htmlEncode(imageSlide1.description); altText1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.altText)); if ( imageSlide1.createThumb(thumbnailWidth, thumbnailHeight) ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide1.thumbPath(thumbnailWidth, thumbnailHeight).split("/").pop()); } } context.write("\r\n\t\t\t\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide1.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t\t"); context.write( imageSlide1.description ); context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\r\n\t\t"); } // Slideshow ohne Hintergrundbild (Nur Bild), ohne Contentcopy else { context.write("\r\n\r\n\t\t\t"); var maxThumbnailHeight = 0; var maxThumbnailWidth = 0; for (var indexThumbnailHeight=0; indexThumbnailHeight < images.count; ++indexThumbnailHeight ) { var imageThumbnailHeight = images.item(indexThumbnailHeight); imageThumbnailHeight.skipContentCopy(); var currentThumbnailHeight = imageThumbnailHeight.createThumbWithInfo(columnWidth); if ( currentThumbnailHeight.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageThumbnailHeight.thumbPath(columnWidth).split("/").pop()); } } if ( currentThumbnailHeight.height > maxThumbnailHeight ) { maxThumbnailHeight = currentThumbnailHeight.height; } if ( currentThumbnailHeight.width > maxThumbnailWidth ) { maxThumbnailWidth = currentThumbnailHeight.width; } } context.write("\r\n\t\t\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\t"); var descriptionSlide2, encodedDescription2, imageSlide2; for ( var indexSlide2=0; indexSlide2 < images.count; ++indexSlide2 ) { imageSlide2 = images.item(indexSlide2); imageSlide2.skipContentCopy(); descriptionSlide2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.description)); encodedDescription2 = system.htmlEncode(imageSlide2.description); altText2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.altText)); var tni = imageSlide2.createThumbWithInfo(columnWidth); if ( tni.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide2.thumbPath(columnWidth).split("/").pop()); } } var tmpWidth = parseInt(tni.ThumbnailWidth); var tmpHeight = parseInt(tni.ThumbnailHeight); var tmpSrc = imageSlide2.thumbPath(columnWidth); context.write("\r\n\t\t\t\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide2.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t"); context.write( imageSlide2.description ); context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\r\n\t\t"); } context.write("\r\n\r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832704165().executeScript(); 2020-07-14 20:58:03,275 [19] INFO - --------- 2020-07-14 20:58:03,275 [19] INFO - Information: 0 : 2020-07-14 20:58:03,275 [19] INFO - --------- 2020-07-14 20:58:03,277 [19] INFO - Information: 0 : 2020-07-14 20:58:03,277 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,279 [19] INFO - Information: 0 : 2020-07-14 20:58:03,279 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,279 [19] INFO - Information: 0 : 2020-07-14 20:58:03,279 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,293 [19] INFO - Information: 0 : 2020-07-14 20:58:03,293 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,294 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,296 [19] INFO - Information: 0 : 2020-07-14 20:58:03,296 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,296 [19] INFO - Information: 0 : 2020-07-14 20:58:03,296 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,296 [19] INFO - Information: 0 : 2020-07-14 20:58:03,296 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,300 [19] INFO - Information: 0 : 2020-07-14 20:58:03,300 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,300 [19] INFO - Information: 0 : 2020-07-14 20:58:03,300 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,300 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:03,300 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:03,300 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:03,301 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:03,303 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,303 [19] INFO - Information: 0 : 2020-07-14 20:58:03,303 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,303 [19] INFO - --------- 2020-07-14 20:58:03,303 [19] INFO - Information: 0 : 2020-07-14 20:58:03,303 [19] INFO - --------- 2020-07-14 20:58:03,303 [19] INFO - function SE637303570833024183() {} SE637303570833024183.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570833024183().executeScript(); 2020-07-14 20:58:03,303 [19] INFO - Information: 0 : 2020-07-14 20:58:03,304 [19] INFO - function SE637303570833024183() {} SE637303570833024183.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570833024183().executeScript(); 2020-07-14 20:58:03,304 [19] INFO - --------- 2020-07-14 20:58:03,304 [19] INFO - Information: 0 : 2020-07-14 20:58:03,304 [19] INFO - --------- 2020-07-14 20:58:03,308 [19] INFO - Information: 0 : 2020-07-14 20:58:03,308 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,311 [19] INFO - Information: 0 : 2020-07-14 20:58:03,311 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,311 [19] INFO - Information: 0 : 2020-07-14 20:58:03,311 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,312 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,312 [19] INFO - Information: 0 : 2020-07-14 20:58:03,312 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,312 [19] INFO - --------- 2020-07-14 20:58:03,312 [19] INFO - Information: 0 : 2020-07-14 20:58:03,312 [19] INFO - --------- 2020-07-14 20:58:03,313 [19] INFO - function SE637303570833024183() {} SE637303570833024183.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570833024183().executeScript(); 2020-07-14 20:58:03,313 [19] INFO - Information: 0 : 2020-07-14 20:58:03,313 [19] INFO - function SE637303570833024183() {} SE637303570833024183.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570833024183().executeScript(); 2020-07-14 20:58:03,313 [19] INFO - --------- 2020-07-14 20:58:03,313 [19] INFO - Information: 0 : 2020-07-14 20:58:03,313 [19] INFO - --------- 2020-07-14 20:58:03,313 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1885. 2020-07-14 20:58:03,313 [19] INFO - Information: 0 : 2020-07-14 20:58:03,314 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1885. 2020-07-14 20:58:03,314 [19] INFO - --------- 2020-07-14 20:58:03,314 [19] INFO - Information: 0 : 2020-07-14 20:58:03,314 [19] INFO - --------- 2020-07-14 20:58:03,314 [19] INFO - [system.partial] „article-begin.html“ 11 ms „“ 2020-07-14 20:58:03,314 [19] INFO - Information: 0 : 2020-07-14 20:58:03,314 [19] INFO - [system.partial] „article-begin.html“ 11 ms „“ 2020-07-14 20:58:03,314 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,315 [19] INFO - Information: 0 : 2020-07-14 20:58:03,315 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,315 [19] INFO - --------- 2020-07-14 20:58:03,315 [19] INFO - Information: 0 : 2020-07-14 20:58:03,315 [19] INFO - --------- 2020-07-14 20:58:03,315 [19] INFO - function SE637303570833144190() {} SE637303570833144190.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570833144190().executeScript(); 2020-07-14 20:58:03,315 [19] INFO - Information: 0 : 2020-07-14 20:58:03,315 [19] INFO - function SE637303570833144190() {} SE637303570833144190.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570833144190().executeScript(); 2020-07-14 20:58:03,315 [19] INFO - --------- 2020-07-14 20:58:03,316 [19] INFO - Information: 0 : 2020-07-14 20:58:03,316 [19] INFO - --------- 2020-07-14 20:58:03,317 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,318 [19] INFO - Information: 0 : 2020-07-14 20:58:03,318 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,318 [19] INFO - --------- 2020-07-14 20:58:03,318 [19] INFO - Information: 0 : 2020-07-14 20:58:03,318 [19] INFO - --------- 2020-07-14 20:58:03,318 [19] INFO - function SE637303570833144190() {} SE637303570833144190.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570833144190().executeScript(); 2020-07-14 20:58:03,318 [19] INFO - Information: 0 : 2020-07-14 20:58:03,318 [19] INFO - function SE637303570833144190() {} SE637303570833144190.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570833144190().executeScript(); 2020-07-14 20:58:03,319 [19] INFO - --------- 2020-07-14 20:58:03,319 [19] INFO - Information: 0 : 2020-07-14 20:58:03,319 [19] INFO - --------- 2020-07-14 20:58:03,319 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1886. 2020-07-14 20:58:03,319 [19] INFO - Information: 0 : 2020-07-14 20:58:03,319 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1886. 2020-07-14 20:58:03,319 [19] INFO - --------- 2020-07-14 20:58:03,319 [19] INFO - Information: 0 : 2020-07-14 20:58:03,319 [19] INFO - --------- 2020-07-14 20:58:03,319 [19] INFO - [system.partial] „article-headline.html“ 5 ms „“ 2020-07-14 20:58:03,320 [19] INFO - Information: 0 : 2020-07-14 20:58:03,320 [19] INFO - [system.partial] „article-headline.html“ 5 ms „“ 2020-07-14 20:58:03,320 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 409. 2020-07-14 20:58:03,320 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 409. 2020-07-14 20:58:03,320 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,321 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,321 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 409. 2020-07-14 20:58:03,322 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,322 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\1b29f5df76d143a6b40ab29da4a62c1e.jpg“ (22.01.2019 19:23:30) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6552-920.jpg“ (15.05.2019 20:34:54). Delta last write time is -9767484 seconds. Is source file newer: False. 2020-07-14 20:58:03,323 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,332 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,333 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 410. 2020-07-14 20:58:03,333 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 410. 2020-07-14 20:58:03,333 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,334 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,334 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 410. 2020-07-14 20:58:03,334 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,335 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\7909dd9dabac45968376a253d8cf390d.jpg“ (22.01.2019 19:23:20) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6553-920.jpg“ (15.05.2019 20:34:53). Delta last write time is -9767493 seconds. Is source file newer: False. 2020-07-14 20:58:03,348 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,349 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 411. 2020-07-14 20:58:03,349 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 411. 2020-07-14 20:58:03,350 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,351 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,351 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 411. 2020-07-14 20:58:03,352 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,353 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\5a60f76220394e539b661bae5c1abd67.jpg“ (22.01.2019 19:23:24) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6566-920.jpg“ (15.05.2019 20:34:56). Delta last write time is -9767492 seconds. Is source file newer: False. 2020-07-14 20:58:03,355 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,361 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,362 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 413. 2020-07-14 20:58:03,362 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 413. 2020-07-14 20:58:03,363 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,363 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,363 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 413. 2020-07-14 20:58:03,364 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,364 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\3edd5c25804c432f93d672e856db876b.jpg“ (22.01.2019 19:23:20) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6573-920.jpg“ (15.05.2019 20:34:58). Delta last write time is -9767498 seconds. Is source file newer: False. 2020-07-14 20:58:03,374 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,375 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 409. 2020-07-14 20:58:03,375 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 409. 2020-07-14 20:58:03,376 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,376 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 409. 2020-07-14 20:58:03,377 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,378 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\1b29f5df76d143a6b40ab29da4a62c1e.jpg“ (22.01.2019 19:23:30) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6552-920.jpg“ (15.05.2019 20:34:54). Delta last write time is -9767484 seconds. Is source file newer: False. 2020-07-14 20:58:03,379 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,380 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 410. 2020-07-14 20:58:03,380 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 410. 2020-07-14 20:58:03,381 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,381 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 410. 2020-07-14 20:58:03,382 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,383 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\7909dd9dabac45968376a253d8cf390d.jpg“ (22.01.2019 19:23:20) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6553-920.jpg“ (15.05.2019 20:34:53). Delta last write time is -9767493 seconds. Is source file newer: False. 2020-07-14 20:58:03,384 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,384 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,385 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 411. 2020-07-14 20:58:03,385 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 411. 2020-07-14 20:58:03,386 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,386 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 411. 2020-07-14 20:58:03,387 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,387 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\5a60f76220394e539b661bae5c1abd67.jpg“ (22.01.2019 19:23:24) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6566-920.jpg“ (15.05.2019 20:34:56). Delta last write time is -9767492 seconds. Is source file newer: False. 2020-07-14 20:58:03,389 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,389 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 413. 2020-07-14 20:58:03,390 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 413. 2020-07-14 20:58:03,390 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'. 2020-07-14 20:58:03,390 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 413. 2020-07-14 20:58:03,391 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Preview“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“). 2020-07-14 20:58:03,393 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\3edd5c25804c432f93d672e856db876b.jpg“ (22.01.2019 19:23:20) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\preview\media\images\thumbnails\dscn6573-920.jpg“ (15.05.2019 20:34:58). Delta last write time is -9767498 seconds. Is source file newer: False. 2020-07-14 20:58:03,395 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“). 2020-07-14 20:58:03,396 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,396 [19] INFO - Information: 0 : 2020-07-14 20:58:03,396 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,396 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,396 [19] INFO - Information: 0 : 2020-07-14 20:58:03,396 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,396 [19] INFO - --------- 2020-07-14 20:58:03,397 [19] INFO - Information: 0 : 2020-07-14 20:58:03,397 [19] INFO - --------- 2020-07-14 20:58:03,397 [19] INFO - function SE637303570832704165() {} SE637303570832704165.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. var imagesPerPage = parseInt(article.value("imagesperpage", 0)); var isPaging = false; var contentImageWidth = "890"; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl hohlen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || 960; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } // if page contains a news area, we only approximate a 2/3 1/3 size layout in order to calculate thumbnails if ( article.area.toLowerCase() == "news" ){ gridCols = 4; } else if ( page.anyAreaArticles("News") ){ gridCols = 8; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } var showSlideshow = article.value("slideshow"); var albumId = article.value("album"); var images = project.getAlbumImages(albumId); var thumbnailWidth = article.value("width"); var thumbnailHeight = article.value("height"); var titlePosition = article.value("titleposition"); var thumbTitlePosition = article.value("thumbtitleposition", "off"); var imageMargin = parseInt(article.value("margin", "0")); // figure out if images have a border set in layout-settings and compensate for it, if the article doesn't have a custom class "noborder" set var imageBorder = 0; var tmpArticleCssClass = " " + article.cssClass; if ( tmpArticleCssClass.indexOf("noborder") == -1 && "" != "0" && "" != "" ) { imageBorder = parseInt(""); } var generateThumbs = true; if ( titlePosition !== "off" ) { var titleShow = "1"; } else { var titleShow = "0"; } if ( "de" == "en" ) { var lang = "en"; } else { var lang = "de"; } var backgroundImage = backgroundWidth = backgroundHeight = backgroundLeft = backgroundTop = ""; if ( showSlideshow && article.valueRaw("slideshowtemplate") !== "none" ) { backgroundImage = article.value("slideshowtemplate", ""); if ( backgroundImage.indexOf("/laptop.png") > -1 ) { backgroundImage = "assets/js/img/laptop.png"; var backgroundWidth = "801"; var backgroundHeight = "469"; var backgroundLeft= "104"; var backgroundTop = "31"; thumbnailWidth = "590"; thumbnailHeight = "369"; } else if ( backgroundImage.indexOf("/laptop_klein.png") > -1 ) { backgroundImage = "assets/js/img/laptop_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "268"; var backgroundLeft= "59"; var backgroundTop = "18"; thumbnailWidth = "338"; thumbnailHeight = "211"; } else if ( backgroundImage.indexOf("/rahmen.png") > -1 ) { backgroundImage = "assets/js/img/rahmen.png"; var backgroundWidth = "758"; var backgroundHeight = "469"; var backgroundLeft= "55"; var backgroundTop = "57"; thumbnailWidth = "648"; thumbnailHeight = "356"; } else if ( backgroundImage.indexOf("/rahmen_klein.png") > -1 ) { backgroundImage = "assets/js/img/rahmen_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "283"; var backgroundLeft= "33"; var backgroundTop = "34"; thumbnailWidth = "392"; thumbnailHeight = "214"; } } else if ( showSlideshow && article.valueRaw("slideshowtemplate") == "none" ) { thumbnailWidth = columnWidth; //generateThumbs = false; } if ( system.preview ){ //system.log(images.count == 1 ? (" 1 Bild...") : (" " + images.count + " Bilder...")); } var gridFactor = 12 / gridCols; var maxcols = Math.ceil((contentImageWidth / (thumbnailWidth+imageMargin)) / gridFactor); var onecolumnbreakpoint = 479; var maxmobilecols = Math.ceil(onecolumnbreakpoint / thumbnailWidth); var mobilecontainerwidth = 100 / maxmobilecols; var headstyle = "/* test */"; headstyle += "\ #igal" + article.id + ":not(.zpSlideshow){\n\ margin-left: -" + imageMargin/2 + "px !important;\n\ margin-right: -" + imageMargin/2 + "px !important;\n\ }\n\ /* below is to accomodates for IE rounding errors which caused the cols not to fit into the row */\n\ .ie #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc((100% / "+ maxcols +") - " + parseInt(imageMargin/2)*2 + ".1px) !important;\n\ margin: " + parseInt(imageMargin/2) + "px !important;\n\ }\n\ \n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item,\n\ #igal" + article.id + ":not(.zpSlideshow) > a,\n\ #igal" + article.id + ":not(.zpSlideshow) .slide > a{\n\ display: block;\n\ float: left;\n\ width: calc((100% / "+ maxcols +") - " + imageMargin + "px);\n\ max-width: "+ thumbnailWidth +"px;\n\ height: auto;\n\ margin: " + imageMargin / 2 + "px;\n\ }\n\ #igal" + article.id +" > a > img{\n\ max-width: 100%;\n\ display: block;\n\ }\n\ "; for ( var i = 1; i < maxcols - 1; i++){ var breakpoint = contentImageWidth - (i * thumbnailWidth); if ( breakpoint <= onecolumnbreakpoint ){ // if we reach the point, where the ZP Grid will display rows in 1-column, we break and need to use a different logic (see next for-loop) break; } var containerwidth = 100 / ( maxcols - i); headstyle += "\n\ @media screen and (max-width: " + breakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + containerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; } // mobile display 2+-column-rows. for ( var i = 1; i < maxmobilecols; i++){ headstyle += "\n\ @media screen and (max-width: " + onecolumnbreakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + mobilecontainerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; onecolumnbreakpoint = ( maxmobilecols -i ) * thumbnailWidth; mobilecontainerwidth = 100 / ( maxmobilecols -i ); } // mobile display 1-column-row. headstyle += "\n\ @media screen and (max-width: " + (thumbnailWidth+imageMargin) +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(100% - " + imageMargin + "px);\n\ }\n\ }\n\ "; headstyle += ""; system.addHtmlHeadElement(headstyle); // polyfill for JSON.stringify() // https://gist.github.com/uupaa/5562297 function _toJSONEscapedString(str) { // @arg String: // @ret String: // @inner: to JSON escaped string if (typeof(str)==='undefined') str = ""; if ( str == ""){ return ""; } else{ var JSON_ESCAPE = { '\b': '\\b', // backspace U+0008 '\t': '\\t', // tab U+0009 '\n': '\\n', // line feed U+000A '\f': '\\f', // form feed U+000C '\r': '\\r', // carriage return U+000D '"': '\\"', // quotation mark U+0022 '\\': '\\\\' // reverse solidus U+005C }; return str.replace(/(?:[\b\t\n\f\r\"]|\\)/g, function(_) { return JSON_ESCAPE[_]; }).replace(/(?:[\x00-\x1f])/g, function(_) { return "\\u00" + ("0" + _.charCodeAt(0).toString(16)).slice(-2); }); } } context.write("\r\n\r\n"); // normales Bilderalbum mit thumbnails, ohne ContentCopy if ( !showSlideshow ) { // only activate paging via json-data when more than one page of images to show exists if ( imagesPerPage > 0 && images.count > imagesPerPage ){ isPaging = true; } context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\r\n\t\t
    999999 ){ context.write("style=\"margin-right: -"); context.write( imageMargin ); context.write("px;\" "); } context.write("\r\n\t\t\tdata-article-id=\""); context.write(article.id); context.write("\" \r\n\t\t\tdata-prevtext=\"Zurück\" \r\n\t\t\tdata-nexttext=\"Weiter\" \r\n\t\t\tdata-pagetext=\"Seite {0} von {1}\" \r\n\t\t\tdata-ispaging=\""); context.write(isPaging); context.write("\" \r\n\t\t\tdata-imageeffect=\""); context.write(effectClass); context.write("\" \r\n\t\t\tdata-imagesperpage=\""); context.write(imagesPerPage); context.write("\" \r\n\t\t\tdata-kind=\"gallery\" \r\n\t\t\tdata-width=\""); context.write( thumbnailWidth ); context.write("\"\r\n\t\t\tdata-height=\""); context.write( thumbnailHeight ); context.write("\"\r\n\t\t\tdata-margin=\""); context.write( article.value("margin", "") ); context.write("\"\r\n\t\t\tdata-maxcols=\""); context.write( maxcols ); context.write("\"\r\n\t\t\tdata-bordercolor=\"default\"\r\n\t\t\tdata-borderwidth=\"0\"\r\n\t\t\tdata-numbershow=\"0\" \r\n\t\t\tdata-template=\"\" \r\n\t\t\tdata-titleshow=\""); context.write( titleShow ); context.write("\"\r\n\t\t\tdata-titleposition=\""); context.write( article.value("titleposition", "") ); context.write("\"\r\n\t\t\tdata-transition=\""); context.write( article.value("zoom", "") ); context.write("\"\r\n\t\t\tdata-inner-transition=\""); context.write( article.value("transition", "") ); context.write("\"\r\n\t\t\tdata-slideshow=\"0\"\r\n\t\t\tdata-slideshowinterval=\"0\"\r\n\t\t\tdata-lang=\""); context.write( lang ); context.write("\">\r\n\t\r\n\t\t\t"); if ( isPaging ) { context.write("\r\n\t\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\t\t
    \r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } else { context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\r\n\t\t\r\n\t\t"); // Slideshow mit Hintergrundbild aus Template (Laptop etc.), ohne Contentcopy if ( backgroundImage !== "" && backgroundImage !== "Keine" ) { context.write("\r\n\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t\"\"\r\n\t\t\r\n\t\t\t\t\t"); var descriptionSlide1, altText1, encodedDescription1, imageSlide1; for ( var indexSlide1=0; indexSlide1 < images.count; ++indexSlide1 ) { imageSlide1 = images.item(indexSlide1); imageSlide1.skipContentCopy(); // keine contentCopy erzeugen, da überflüssig weil gleich groß wie workingCopy descriptionSlide1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.description)); encodedDescription1 = system.htmlEncode(imageSlide1.description); altText1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.altText)); if ( imageSlide1.createThumb(thumbnailWidth, thumbnailHeight) ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide1.thumbPath(thumbnailWidth, thumbnailHeight).split("/").pop()); } } context.write("\r\n\t\t\t\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide1.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t\t"); context.write( imageSlide1.description ); context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\r\n\t\t"); } // Slideshow ohne Hintergrundbild (Nur Bild), ohne Contentcopy else { context.write("\r\n\r\n\t\t\t"); var maxThumbnailHeight = 0; var maxThumbnailWidth = 0; for (var indexThumbnailHeight=0; indexThumbnailHeight < images.count; ++indexThumbnailHeight ) { var imageThumbnailHeight = images.item(indexThumbnailHeight); imageThumbnailHeight.skipContentCopy(); var currentThumbnailHeight = imageThumbnailHeight.createThumbWithInfo(columnWidth); if ( currentThumbnailHeight.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageThumbnailHeight.thumbPath(columnWidth).split("/").pop()); } } if ( currentThumbnailHeight.height > maxThumbnailHeight ) { maxThumbnailHeight = currentThumbnailHeight.height; } if ( currentThumbnailHeight.width > maxThumbnailWidth ) { maxThumbnailWidth = currentThumbnailHeight.width; } } context.write("\r\n\t\t\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\t"); var descriptionSlide2, encodedDescription2, imageSlide2; for ( var indexSlide2=0; indexSlide2 < images.count; ++indexSlide2 ) { imageSlide2 = images.item(indexSlide2); imageSlide2.skipContentCopy(); descriptionSlide2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.description)); encodedDescription2 = system.htmlEncode(imageSlide2.description); altText2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.altText)); var tni = imageSlide2.createThumbWithInfo(columnWidth); if ( tni.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide2.thumbPath(columnWidth).split("/").pop()); } } var tmpWidth = parseInt(tni.ThumbnailWidth); var tmpHeight = parseInt(tni.ThumbnailHeight); var tmpSrc = imageSlide2.thumbPath(columnWidth); context.write("\r\n\t\t\t\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide2.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t"); context.write( imageSlide2.description ); context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\r\n\t\t"); } context.write("\r\n\r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832704165().executeScript(); 2020-07-14 20:58:03,398 [19] INFO - Information: 0 : 2020-07-14 20:58:03,398 [19] INFO - function SE637303570832704165() {} SE637303570832704165.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. var imagesPerPage = parseInt(article.value("imagesperpage", 0)); var isPaging = false; var contentImageWidth = "890"; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl hohlen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || 960; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } // if page contains a news area, we only approximate a 2/3 1/3 size layout in order to calculate thumbnails if ( article.area.toLowerCase() == "news" ){ gridCols = 4; } else if ( page.anyAreaArticles("News") ){ gridCols = 8; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } var showSlideshow = article.value("slideshow"); var albumId = article.value("album"); var images = project.getAlbumImages(albumId); var thumbnailWidth = article.value("width"); var thumbnailHeight = article.value("height"); var titlePosition = article.value("titleposition"); var thumbTitlePosition = article.value("thumbtitleposition", "off"); var imageMargin = parseInt(article.value("margin", "0")); // figure out if images have a border set in layout-settings and compensate for it, if the article doesn't have a custom class "noborder" set var imageBorder = 0; var tmpArticleCssClass = " " + article.cssClass; if ( tmpArticleCssClass.indexOf("noborder") == -1 && "" != "0" && "" != "" ) { imageBorder = parseInt(""); } var generateThumbs = true; if ( titlePosition !== "off" ) { var titleShow = "1"; } else { var titleShow = "0"; } if ( "de" == "en" ) { var lang = "en"; } else { var lang = "de"; } var backgroundImage = backgroundWidth = backgroundHeight = backgroundLeft = backgroundTop = ""; if ( showSlideshow && article.valueRaw("slideshowtemplate") !== "none" ) { backgroundImage = article.value("slideshowtemplate", ""); if ( backgroundImage.indexOf("/laptop.png") > -1 ) { backgroundImage = "assets/js/img/laptop.png"; var backgroundWidth = "801"; var backgroundHeight = "469"; var backgroundLeft= "104"; var backgroundTop = "31"; thumbnailWidth = "590"; thumbnailHeight = "369"; } else if ( backgroundImage.indexOf("/laptop_klein.png") > -1 ) { backgroundImage = "assets/js/img/laptop_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "268"; var backgroundLeft= "59"; var backgroundTop = "18"; thumbnailWidth = "338"; thumbnailHeight = "211"; } else if ( backgroundImage.indexOf("/rahmen.png") > -1 ) { backgroundImage = "assets/js/img/rahmen.png"; var backgroundWidth = "758"; var backgroundHeight = "469"; var backgroundLeft= "55"; var backgroundTop = "57"; thumbnailWidth = "648"; thumbnailHeight = "356"; } else if ( backgroundImage.indexOf("/rahmen_klein.png") > -1 ) { backgroundImage = "assets/js/img/rahmen_klein.png"; var backgroundWidth = "458"; var backgroundHeight = "283"; var backgroundLeft= "33"; var backgroundTop = "34"; thumbnailWidth = "392"; thumbnailHeight = "214"; } } else if ( showSlideshow && article.valueRaw("slideshowtemplate") == "none" ) { thumbnailWidth = columnWidth; //generateThumbs = false; } if ( system.preview ){ //system.log(images.count == 1 ? (" 1 Bild...") : (" " + images.count + " Bilder...")); } var gridFactor = 12 / gridCols; var maxcols = Math.ceil((contentImageWidth / (thumbnailWidth+imageMargin)) / gridFactor); var onecolumnbreakpoint = 479; var maxmobilecols = Math.ceil(onecolumnbreakpoint / thumbnailWidth); var mobilecontainerwidth = 100 / maxmobilecols; var headstyle = "/* test */"; headstyle += "\ #igal" + article.id + ":not(.zpSlideshow){\n\ margin-left: -" + imageMargin/2 + "px !important;\n\ margin-right: -" + imageMargin/2 + "px !important;\n\ }\n\ /* below is to accomodates for IE rounding errors which caused the cols not to fit into the row */\n\ .ie #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc((100% / "+ maxcols +") - " + parseInt(imageMargin/2)*2 + ".1px) !important;\n\ margin: " + parseInt(imageMargin/2) + "px !important;\n\ }\n\ \n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item,\n\ #igal" + article.id + ":not(.zpSlideshow) > a,\n\ #igal" + article.id + ":not(.zpSlideshow) .slide > a{\n\ display: block;\n\ float: left;\n\ width: calc((100% / "+ maxcols +") - " + imageMargin + "px);\n\ max-width: "+ thumbnailWidth +"px;\n\ height: auto;\n\ margin: " + imageMargin / 2 + "px;\n\ }\n\ #igal" + article.id +" > a > img{\n\ max-width: 100%;\n\ display: block;\n\ }\n\ "; for ( var i = 1; i < maxcols - 1; i++){ var breakpoint = contentImageWidth - (i * thumbnailWidth); if ( breakpoint <= onecolumnbreakpoint ){ // if we reach the point, where the ZP Grid will display rows in 1-column, we break and need to use a different logic (see next for-loop) break; } var containerwidth = 100 / ( maxcols - i); headstyle += "\n\ @media screen and (max-width: " + breakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + containerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; } // mobile display 2+-column-rows. for ( var i = 1; i < maxmobilecols; i++){ headstyle += "\n\ @media screen and (max-width: " + onecolumnbreakpoint +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(" + mobilecontainerwidth + "% - " + imageMargin + "px);\n\ }\n\ }\n\ "; onecolumnbreakpoint = ( maxmobilecols -i ) * thumbnailWidth; mobilecontainerwidth = 100 / ( maxmobilecols -i ); } // mobile display 1-column-row. headstyle += "\n\ @media screen and (max-width: " + (thumbnailWidth+imageMargin) +"px) {\n\ #igal" + article.id + ":not(.zpSlideshow) div.gallery-item{\n\ width: calc(100% - " + imageMargin + "px);\n\ }\n\ }\n\ "; headstyle += ""; system.addHtmlHeadElement(headstyle); // polyfill for JSON.stringify() // https://gist.github.com/uupaa/5562297 function _toJSONEscapedString(str) { // @arg String: // @ret String: // @inner: to JSON escaped string if (typeof(str)==='undefined') str = ""; if ( str == ""){ return ""; } else{ var JSON_ESCAPE = { '\b': '\\b', // backspace U+0008 '\t': '\\t', // tab U+0009 '\n': '\\n', // line feed U+000A '\f': '\\f', // form feed U+000C '\r': '\\r', // carriage return U+000D '"': '\\"', // quotation mark U+0022 '\\': '\\\\' // reverse solidus U+005C }; return str.replace(/(?:[\b\t\n\f\r\"]|\\)/g, function(_) { return JSON_ESCAPE[_]; }).replace(/(?:[\x00-\x1f])/g, function(_) { return "\\u00" + ("0" + _.charCodeAt(0).toString(16)).slice(-2); }); } } context.write("\r\n\r\n"); // normales Bilderalbum mit thumbnails, ohne ContentCopy if ( !showSlideshow ) { // only activate paging via json-data when more than one page of images to show exists if ( imagesPerPage > 0 && images.count > imagesPerPage ){ isPaging = true; } context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\r\n\t\t
    999999 ){ context.write("style=\"margin-right: -"); context.write( imageMargin ); context.write("px;\" "); } context.write("\r\n\t\t\tdata-article-id=\""); context.write(article.id); context.write("\" \r\n\t\t\tdata-prevtext=\"Zurück\" \r\n\t\t\tdata-nexttext=\"Weiter\" \r\n\t\t\tdata-pagetext=\"Seite {0} von {1}\" \r\n\t\t\tdata-ispaging=\""); context.write(isPaging); context.write("\" \r\n\t\t\tdata-imageeffect=\""); context.write(effectClass); context.write("\" \r\n\t\t\tdata-imagesperpage=\""); context.write(imagesPerPage); context.write("\" \r\n\t\t\tdata-kind=\"gallery\" \r\n\t\t\tdata-width=\""); context.write( thumbnailWidth ); context.write("\"\r\n\t\t\tdata-height=\""); context.write( thumbnailHeight ); context.write("\"\r\n\t\t\tdata-margin=\""); context.write( article.value("margin", "") ); context.write("\"\r\n\t\t\tdata-maxcols=\""); context.write( maxcols ); context.write("\"\r\n\t\t\tdata-bordercolor=\"default\"\r\n\t\t\tdata-borderwidth=\"0\"\r\n\t\t\tdata-numbershow=\"0\" \r\n\t\t\tdata-template=\"\" \r\n\t\t\tdata-titleshow=\""); context.write( titleShow ); context.write("\"\r\n\t\t\tdata-titleposition=\""); context.write( article.value("titleposition", "") ); context.write("\"\r\n\t\t\tdata-transition=\""); context.write( article.value("zoom", "") ); context.write("\"\r\n\t\t\tdata-inner-transition=\""); context.write( article.value("transition", "") ); context.write("\"\r\n\t\t\tdata-slideshow=\"0\"\r\n\t\t\tdata-slideshowinterval=\"0\"\r\n\t\t\tdata-lang=\""); context.write( lang ); context.write("\">\r\n\t\r\n\t\t\t"); if ( isPaging ) { context.write("\r\n\t\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\t\t
    \r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } else { context.write("\r\n\r\n\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\r\n\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\r\n\t\t\r\n\t\t"); // Slideshow mit Hintergrundbild aus Template (Laptop etc.), ohne Contentcopy if ( backgroundImage !== "" && backgroundImage !== "Keine" ) { context.write("\r\n\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t\"\"\r\n\t\t\r\n\t\t\t\t\t"); var descriptionSlide1, altText1, encodedDescription1, imageSlide1; for ( var indexSlide1=0; indexSlide1 < images.count; ++indexSlide1 ) { imageSlide1 = images.item(indexSlide1); imageSlide1.skipContentCopy(); // keine contentCopy erzeugen, da überflüssig weil gleich groß wie workingCopy descriptionSlide1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.description)); encodedDescription1 = system.htmlEncode(imageSlide1.description); altText1 = system.htmlEncode(system.removeHtmlTags(imageSlide1.altText)); if ( imageSlide1.createThumb(thumbnailWidth, thumbnailHeight) ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide1.thumbPath(thumbnailWidth, thumbnailHeight).split("/").pop()); } } context.write("\r\n\t\t\t\r\n\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide1.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t\t"); context.write( imageSlide1.description ); context.write("\r\n\t\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\r\n\t\t"); } // Slideshow ohne Hintergrundbild (Nur Bild), ohne Contentcopy else { context.write("\r\n\r\n\t\t\t"); var maxThumbnailHeight = 0; var maxThumbnailWidth = 0; for (var indexThumbnailHeight=0; indexThumbnailHeight < images.count; ++indexThumbnailHeight ) { var imageThumbnailHeight = images.item(indexThumbnailHeight); imageThumbnailHeight.skipContentCopy(); var currentThumbnailHeight = imageThumbnailHeight.createThumbWithInfo(columnWidth); if ( currentThumbnailHeight.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageThumbnailHeight.thumbPath(columnWidth).split("/").pop()); } } if ( currentThumbnailHeight.height > maxThumbnailHeight ) { maxThumbnailHeight = currentThumbnailHeight.height; } if ( currentThumbnailHeight.width > maxThumbnailWidth ) { maxThumbnailWidth = currentThumbnailHeight.width; } } context.write("\r\n\t\t\t\r\n\t\t\t
    \r\n\t\t\t\t
    \r\n\t\t\t\t\t"); var descriptionSlide2, encodedDescription2, imageSlide2; for ( var indexSlide2=0; indexSlide2 < images.count; ++indexSlide2 ) { imageSlide2 = images.item(indexSlide2); imageSlide2.skipContentCopy(); descriptionSlide2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.description)); encodedDescription2 = system.htmlEncode(imageSlide2.description); altText2 = system.htmlEncode(system.removeHtmlTags(imageSlide2.altText)); var tni = imageSlide2.createThumbWithInfo(columnWidth); if ( tni.created ) { if ( system.preview ){ system.log(" Erstelle Vorschaubild " + imageSlide2.thumbPath(columnWidth).split("/").pop()); } } var tmpWidth = parseInt(tni.ThumbnailWidth); var tmpHeight = parseInt(tni.ThumbnailHeight); var tmpSrc = imageSlide2.thumbPath(columnWidth); context.write("\r\n\t\t\t\r\n\t\t\t\t\t
    \r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\"");\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\t"); if ( titleShow == "1" && imageSlide2.description !== "" ) { context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t\t\t"); context.write( imageSlide2.description ); context.write("\r\n\t\t\t\t\t\t\t
    \r\n\t\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\t
    \r\n\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\r\n\t\t"); } context.write("\r\n\r\n\t\t\t\t
    \r\n\t\t\t
    \r\n\r\n\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\r\n"); } context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\bilderalbumv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570832704165().executeScript(); 2020-07-14 20:58:03,398 [19] INFO - --------- 2020-07-14 20:58:03,399 [19] INFO - Information: 0 : 2020-07-14 20:58:03,399 [19] INFO - --------- 2020-07-14 20:58:03,399 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1887. 2020-07-14 20:58:03,399 [19] INFO - Information: 0 : 2020-07-14 20:58:03,399 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1887. 2020-07-14 20:58:03,399 [19] INFO - --------- 2020-07-14 20:58:03,399 [19] INFO - Information: 0 : 2020-07-14 20:58:03,399 [19] INFO - --------- 2020-07-14 20:58:03,400 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,400 [19] INFO - Information: 0 : 2020-07-14 20:58:03,400 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,400 [19] INFO - --------- 2020-07-14 20:58:03,400 [19] INFO - Information: 0 : 2020-07-14 20:58:03,400 [19] INFO - --------- 2020-07-14 20:58:03,400 [19] INFO - function SE637303570834004239() {} SE637303570834004239.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834004239().executeScript(); 2020-07-14 20:58:03,400 [19] INFO - Information: 0 : 2020-07-14 20:58:03,400 [19] INFO - function SE637303570834004239() {} SE637303570834004239.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834004239().executeScript(); 2020-07-14 20:58:03,401 [19] INFO - --------- 2020-07-14 20:58:03,401 [19] INFO - Information: 0 : 2020-07-14 20:58:03,401 [19] INFO - --------- 2020-07-14 20:58:03,402 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,402 [19] INFO - Information: 0 : 2020-07-14 20:58:03,402 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,402 [19] INFO - --------- 2020-07-14 20:58:03,402 [19] INFO - Information: 0 : 2020-07-14 20:58:03,402 [19] INFO - --------- 2020-07-14 20:58:03,403 [19] INFO - function SE637303570834024240() {} SE637303570834024240.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834024240().executeScript(); 2020-07-14 20:58:03,403 [19] INFO - Information: 0 : 2020-07-14 20:58:03,403 [19] INFO - function SE637303570834024240() {} SE637303570834024240.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834024240().executeScript(); 2020-07-14 20:58:03,403 [19] INFO - --------- 2020-07-14 20:58:03,403 [19] INFO - Information: 0 : 2020-07-14 20:58:03,403 [19] INFO - --------- 2020-07-14 20:58:03,408 [19] INFO - Information: 0 : 2020-07-14 20:58:03,408 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,410 [19] INFO - Information: 0 : 2020-07-14 20:58:03,410 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,410 [19] INFO - Information: 0 : 2020-07-14 20:58:03,410 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,411 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,411 [19] INFO - Information: 0 : 2020-07-14 20:58:03,411 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,412 [19] INFO - --------- 2020-07-14 20:58:03,412 [19] INFO - Information: 0 : 2020-07-14 20:58:03,412 [19] INFO - --------- 2020-07-14 20:58:03,412 [19] INFO - function SE637303570834024240() {} SE637303570834024240.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834024240().executeScript(); 2020-07-14 20:58:03,412 [19] INFO - Information: 0 : 2020-07-14 20:58:03,412 [19] INFO - function SE637303570834024240() {} SE637303570834024240.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834024240().executeScript(); 2020-07-14 20:58:03,412 [19] INFO - --------- 2020-07-14 20:58:03,413 [19] INFO - Information: 0 : 2020-07-14 20:58:03,413 [19] INFO - --------- 2020-07-14 20:58:03,413 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1888. 2020-07-14 20:58:03,413 [19] INFO - Information: 0 : 2020-07-14 20:58:03,413 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1888. 2020-07-14 20:58:03,413 [19] INFO - --------- 2020-07-14 20:58:03,413 [19] INFO - Information: 0 : 2020-07-14 20:58:03,413 [19] INFO - --------- 2020-07-14 20:58:03,413 [19] INFO - [system.partial] „article-begin.html“ 11 ms „“ 2020-07-14 20:58:03,413 [19] INFO - Information: 0 : 2020-07-14 20:58:03,414 [19] INFO - [system.partial] „article-begin.html“ 11 ms „“ 2020-07-14 20:58:03,414 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,414 [19] INFO - Information: 0 : 2020-07-14 20:58:03,414 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,414 [19] INFO - --------- 2020-07-14 20:58:03,414 [19] INFO - Information: 0 : 2020-07-14 20:58:03,414 [19] INFO - --------- 2020-07-14 20:58:03,415 [19] INFO - function SE637303570834144247() {} SE637303570834144247.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834144247().executeScript(); 2020-07-14 20:58:03,415 [19] INFO - Information: 0 : 2020-07-14 20:58:03,415 [19] INFO - function SE637303570834144247() {} SE637303570834144247.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834144247().executeScript(); 2020-07-14 20:58:03,415 [19] INFO - --------- 2020-07-14 20:58:03,415 [19] INFO - Information: 0 : 2020-07-14 20:58:03,415 [19] INFO - --------- 2020-07-14 20:58:03,417 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,417 [19] INFO - Information: 0 : 2020-07-14 20:58:03,417 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,417 [19] INFO - --------- 2020-07-14 20:58:03,417 [19] INFO - Information: 0 : 2020-07-14 20:58:03,417 [19] INFO - --------- 2020-07-14 20:58:03,417 [19] INFO - function SE637303570834144247() {} SE637303570834144247.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834144247().executeScript(); 2020-07-14 20:58:03,417 [19] INFO - Information: 0 : 2020-07-14 20:58:03,419 [19] INFO - function SE637303570834144247() {} SE637303570834144247.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834144247().executeScript(); 2020-07-14 20:58:03,419 [19] INFO - --------- 2020-07-14 20:58:03,419 [19] INFO - Information: 0 : 2020-07-14 20:58:03,419 [19] INFO - --------- 2020-07-14 20:58:03,419 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1889. 2020-07-14 20:58:03,420 [19] INFO - Information: 0 : 2020-07-14 20:58:03,420 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1889. 2020-07-14 20:58:03,420 [19] INFO - --------- 2020-07-14 20:58:03,420 [19] INFO - Information: 0 : 2020-07-14 20:58:03,420 [19] INFO - --------- 2020-07-14 20:58:03,420 [19] INFO - [system.partial] „article-headline.html“ 6 ms „“ 2020-07-14 20:58:03,420 [19] INFO - Information: 0 : 2020-07-14 20:58:03,420 [19] INFO - [system.partial] „article-headline.html“ 6 ms „“ 2020-07-14 20:58:03,421 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,421 [19] INFO - Information: 0 : 2020-07-14 20:58:03,421 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,421 [19] INFO - --------- 2020-07-14 20:58:03,421 [19] INFO - Information: 0 : 2020-07-14 20:58:03,421 [19] INFO - --------- 2020-07-14 20:58:03,421 [19] INFO - function SE637303570834214251() {} SE637303570834214251.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834214251().executeScript(); 2020-07-14 20:58:03,421 [19] INFO - Information: 0 : 2020-07-14 20:58:03,421 [19] INFO - function SE637303570834214251() {} SE637303570834214251.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834214251().executeScript(); 2020-07-14 20:58:03,422 [19] INFO - --------- 2020-07-14 20:58:03,422 [19] INFO - Information: 0 : 2020-07-14 20:58:03,422 [19] INFO - --------- 2020-07-14 20:58:03,424 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,424 [19] INFO - Information: 0 : 2020-07-14 20:58:03,424 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,424 [19] INFO - --------- 2020-07-14 20:58:03,424 [19] INFO - Information: 0 : 2020-07-14 20:58:03,424 [19] INFO - --------- 2020-07-14 20:58:03,425 [19] INFO - function SE637303570834214251() {} SE637303570834214251.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834214251().executeScript(); 2020-07-14 20:58:03,425 [19] INFO - Information: 0 : 2020-07-14 20:58:03,425 [19] INFO - function SE637303570834214251() {} SE637303570834214251.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834214251().executeScript(); 2020-07-14 20:58:03,425 [19] INFO - --------- 2020-07-14 20:58:03,425 [19] INFO - Information: 0 : 2020-07-14 20:58:03,425 [19] INFO - --------- 2020-07-14 20:58:03,425 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1890. 2020-07-14 20:58:03,425 [19] INFO - Information: 0 : 2020-07-14 20:58:03,425 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1890. 2020-07-14 20:58:03,425 [19] INFO - --------- 2020-07-14 20:58:03,426 [19] INFO - Information: 0 : 2020-07-14 20:58:03,426 [19] INFO - --------- 2020-07-14 20:58:03,426 [19] INFO - [system.partial] „inline-editor-start.html“ 5 ms „“ 2020-07-14 20:58:03,426 [19] INFO - Information: 0 : 2020-07-14 20:58:03,426 [19] INFO - [system.partial] „inline-editor-start.html“ 5 ms „“ 2020-07-14 20:58:03,426 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,426 [19] INFO - Information: 0 : 2020-07-14 20:58:03,426 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,427 [19] INFO - --------- 2020-07-14 20:58:03,427 [19] INFO - Information: 0 : 2020-07-14 20:58:03,427 [19] INFO - --------- 2020-07-14 20:58:03,427 [19] INFO - function SE637303570834264254() {} SE637303570834264254.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834264254().executeScript(); 2020-07-14 20:58:03,427 [19] INFO - Information: 0 : 2020-07-14 20:58:03,427 [19] INFO - function SE637303570834264254() {} SE637303570834264254.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834264254().executeScript(); 2020-07-14 20:58:03,427 [19] INFO - --------- 2020-07-14 20:58:03,427 [19] INFO - Information: 0 : 2020-07-14 20:58:03,427 [19] INFO - --------- 2020-07-14 20:58:03,428 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,428 [19] INFO - Information: 0 : 2020-07-14 20:58:03,428 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,429 [19] INFO - --------- 2020-07-14 20:58:03,429 [19] INFO - Information: 0 : 2020-07-14 20:58:03,429 [19] INFO - --------- 2020-07-14 20:58:03,429 [19] INFO - function SE637303570834264254() {} SE637303570834264254.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834264254().executeScript(); 2020-07-14 20:58:03,429 [19] INFO - Information: 0 : 2020-07-14 20:58:03,429 [19] INFO - function SE637303570834264254() {} SE637303570834264254.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834264254().executeScript(); 2020-07-14 20:58:03,429 [19] INFO - --------- 2020-07-14 20:58:03,429 [19] INFO - Information: 0 : 2020-07-14 20:58:03,429 [19] INFO - --------- 2020-07-14 20:58:03,429 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1891. 2020-07-14 20:58:03,430 [19] INFO - Information: 0 : 2020-07-14 20:58:03,430 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1891. 2020-07-14 20:58:03,430 [19] INFO - --------- 2020-07-14 20:58:03,430 [19] INFO - Information: 0 : 2020-07-14 20:58:03,430 [19] INFO - --------- 2020-07-14 20:58:03,430 [19] INFO - [system.partial] „inline-editor-end.html“ 3 ms „“ 2020-07-14 20:58:03,430 [19] INFO - Information: 0 : 2020-07-14 20:58:03,430 [19] INFO - [system.partial] „inline-editor-end.html“ 3 ms „“ 2020-07-14 20:58:03,430 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,431 [19] INFO - Information: 0 : 2020-07-14 20:58:03,431 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,431 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,431 [19] INFO - Information: 0 : 2020-07-14 20:58:03,431 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,431 [19] INFO - --------- 2020-07-14 20:58:03,431 [19] INFO - Information: 0 : 2020-07-14 20:58:03,431 [19] INFO - --------- 2020-07-14 20:58:03,431 [19] INFO - function SE637303570834004239() {} SE637303570834004239.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834004239().executeScript(); 2020-07-14 20:58:03,431 [19] INFO - Information: 0 : 2020-07-14 20:58:03,432 [19] INFO - function SE637303570834004239() {} SE637303570834004239.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834004239().executeScript(); 2020-07-14 20:58:03,432 [19] INFO - --------- 2020-07-14 20:58:03,432 [19] INFO - Information: 0 : 2020-07-14 20:58:03,432 [19] INFO - --------- 2020-07-14 20:58:03,432 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1892. 2020-07-14 20:58:03,432 [19] INFO - Information: 0 : 2020-07-14 20:58:03,432 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1892. 2020-07-14 20:58:03,432 [19] INFO - --------- 2020-07-14 20:58:03,432 [19] INFO - Information: 0 : 2020-07-14 20:58:03,432 [19] INFO - --------- 2020-07-14 20:58:03,433 [19] INFO - Information: 0 : 2020-07-14 20:58:03,433 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,436 [19] INFO - Information: 0 : 2020-07-14 20:58:03,436 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,436 [19] INFO - Information: 0 : 2020-07-14 20:58:03,436 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,437 [19] INFO - Information: 0 : 2020-07-14 20:58:03,437 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,439 [19] INFO - Information: 0 : 2020-07-14 20:58:03,439 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,439 [19] INFO - Information: 0 : 2020-07-14 20:58:03,439 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,440 [19] INFO - Information: 0 : 2020-07-14 20:58:03,440 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,442 [19] INFO - Information: 0 : 2020-07-14 20:58:03,442 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,442 [19] INFO - Information: 0 : 2020-07-14 20:58:03,442 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,444 [19] INFO - Information: 0 : 2020-07-14 20:58:03,444 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,445 [19] INFO - Information: 0 : 2020-07-14 20:58:03,446 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,446 [19] INFO - Information: 0 : 2020-07-14 20:58:03,446 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,447 [19] INFO - Information: 0 : 2020-07-14 20:58:03,447 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,449 [19] INFO - Information: 0 : 2020-07-14 20:58:03,449 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,449 [19] INFO - Information: 0 : 2020-07-14 20:58:03,449 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,450 [19] INFO - Information: 0 : 2020-07-14 20:58:03,450 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,451 [19] INFO - Information: 0 : 2020-07-14 20:58:03,451 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,451 [19] INFO - Information: 0 : 2020-07-14 20:58:03,451 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,454 [19] INFO - Information: 0 : 2020-07-14 20:58:03,454 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,454 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,456 [19] INFO - Information: 0 : 2020-07-14 20:58:03,456 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,456 [19] INFO - Information: 0 : 2020-07-14 20:58:03,456 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,457 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,457 [19] INFO - Information: 0 : 2020-07-14 20:58:03,457 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,457 [19] INFO - --------- 2020-07-14 20:58:03,457 [19] INFO - Information: 0 : 2020-07-14 20:58:03,457 [19] INFO - --------- 2020-07-14 20:58:03,457 [19] INFO - function SE637303570834574272() {} SE637303570834574272.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834574272().executeScript(); 2020-07-14 20:58:03,458 [19] INFO - Information: 0 : 2020-07-14 20:58:03,458 [19] INFO - function SE637303570834574272() {} SE637303570834574272.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834574272().executeScript(); 2020-07-14 20:58:03,458 [19] INFO - --------- 2020-07-14 20:58:03,458 [19] INFO - Information: 0 : 2020-07-14 20:58:03,458 [19] INFO - --------- 2020-07-14 20:58:03,459 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,459 [19] INFO - Information: 0 : 2020-07-14 20:58:03,460 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,460 [19] INFO - --------- 2020-07-14 20:58:03,460 [19] INFO - Information: 0 : 2020-07-14 20:58:03,460 [19] INFO - --------- 2020-07-14 20:58:03,460 [19] INFO - function SE637303570834594273() {} SE637303570834594273.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834594273().executeScript(); 2020-07-14 20:58:03,460 [19] INFO - Information: 0 : 2020-07-14 20:58:03,460 [19] INFO - function SE637303570834594273() {} SE637303570834594273.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834594273().executeScript(); 2020-07-14 20:58:03,460 [19] INFO - --------- 2020-07-14 20:58:03,461 [19] INFO - Information: 0 : 2020-07-14 20:58:03,461 [19] INFO - --------- 2020-07-14 20:58:03,465 [19] INFO - Information: 0 : 2020-07-14 20:58:03,465 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,467 [19] INFO - Information: 0 : 2020-07-14 20:58:03,467 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,467 [19] INFO - Information: 0 : 2020-07-14 20:58:03,468 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,469 [19] INFO - Information: 0 : 2020-07-14 20:58:03,469 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,470 [19] INFO - Information: 0 : 2020-07-14 20:58:03,470 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,470 [19] INFO - Information: 0 : 2020-07-14 20:58:03,470 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,471 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,471 [19] INFO - Information: 0 : 2020-07-14 20:58:03,471 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,471 [19] INFO - --------- 2020-07-14 20:58:03,471 [19] INFO - Information: 0 : 2020-07-14 20:58:03,471 [19] INFO - --------- 2020-07-14 20:58:03,472 [19] INFO - function SE637303570834594273() {} SE637303570834594273.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834594273().executeScript(); 2020-07-14 20:58:03,472 [19] INFO - Information: 0 : 2020-07-14 20:58:03,473 [19] INFO - function SE637303570834594273() {} SE637303570834594273.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834594273().executeScript(); 2020-07-14 20:58:03,473 [19] INFO - --------- 2020-07-14 20:58:03,473 [19] INFO - Information: 0 : 2020-07-14 20:58:03,474 [19] INFO - --------- 2020-07-14 20:58:03,474 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1893. 2020-07-14 20:58:03,474 [19] INFO - Information: 0 : 2020-07-14 20:58:03,474 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1893. 2020-07-14 20:58:03,474 [19] INFO - --------- 2020-07-14 20:58:03,474 [19] INFO - Information: 0 : 2020-07-14 20:58:03,474 [19] INFO - --------- 2020-07-14 20:58:03,474 [19] INFO - [system.partial] „article-begin.html“ 15 ms „“ 2020-07-14 20:58:03,474 [19] INFO - Information: 0 : 2020-07-14 20:58:03,474 [19] INFO - [system.partial] „article-begin.html“ 15 ms „“ 2020-07-14 20:58:03,480 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,480 [19] INFO - Information: 0 : 2020-07-14 20:58:03,480 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,480 [19] INFO - --------- 2020-07-14 20:58:03,480 [19] INFO - Information: 0 : 2020-07-14 20:58:03,480 [19] INFO - --------- 2020-07-14 20:58:03,481 [19] INFO - function SE637303570834804285() {} SE637303570834804285.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834804285().executeScript(); 2020-07-14 20:58:03,481 [19] INFO - Information: 0 : 2020-07-14 20:58:03,481 [19] INFO - function SE637303570834804285() {} SE637303570834804285.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834804285().executeScript(); 2020-07-14 20:58:03,481 [19] INFO - --------- 2020-07-14 20:58:03,481 [19] INFO - Information: 0 : 2020-07-14 20:58:03,481 [19] INFO - --------- 2020-07-14 20:58:03,483 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,483 [19] INFO - Information: 0 : 2020-07-14 20:58:03,483 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,483 [19] INFO - --------- 2020-07-14 20:58:03,483 [19] INFO - Information: 0 : 2020-07-14 20:58:03,483 [19] INFO - --------- 2020-07-14 20:58:03,483 [19] INFO - function SE637303570834804285() {} SE637303570834804285.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834804285().executeScript(); 2020-07-14 20:58:03,484 [19] INFO - Information: 0 : 2020-07-14 20:58:03,484 [19] INFO - function SE637303570834804285() {} SE637303570834804285.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834804285().executeScript(); 2020-07-14 20:58:03,484 [19] INFO - --------- 2020-07-14 20:58:03,484 [19] INFO - Information: 0 : 2020-07-14 20:58:03,484 [19] INFO - --------- 2020-07-14 20:58:03,484 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1894. 2020-07-14 20:58:03,484 [19] INFO - Information: 0 : 2020-07-14 20:58:03,484 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1894. 2020-07-14 20:58:03,484 [19] INFO - --------- 2020-07-14 20:58:03,485 [19] INFO - Information: 0 : 2020-07-14 20:58:03,485 [19] INFO - --------- 2020-07-14 20:58:03,485 [19] INFO - [system.partial] „article-headline.html“ 5 ms „“ 2020-07-14 20:58:03,485 [19] INFO - Information: 0 : 2020-07-14 20:58:03,485 [19] INFO - [system.partial] „article-headline.html“ 5 ms „“ 2020-07-14 20:58:03,485 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,485 [19] INFO - Information: 0 : 2020-07-14 20:58:03,485 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,486 [19] INFO - --------- 2020-07-14 20:58:03,486 [19] INFO - Information: 0 : 2020-07-14 20:58:03,486 [19] INFO - --------- 2020-07-14 20:58:03,486 [19] INFO - function SE637303570834854288() {} SE637303570834854288.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834854288().executeScript(); 2020-07-14 20:58:03,486 [19] INFO - Information: 0 : 2020-07-14 20:58:03,486 [19] INFO - function SE637303570834854288() {} SE637303570834854288.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834854288().executeScript(); 2020-07-14 20:58:03,486 [19] INFO - --------- 2020-07-14 20:58:03,486 [19] INFO - Information: 0 : 2020-07-14 20:58:03,486 [19] INFO - --------- 2020-07-14 20:58:03,489 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,489 [19] INFO - Information: 0 : 2020-07-14 20:58:03,489 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,489 [19] INFO - --------- 2020-07-14 20:58:03,489 [19] INFO - Information: 0 : 2020-07-14 20:58:03,489 [19] INFO - --------- 2020-07-14 20:58:03,489 [19] INFO - function SE637303570834854288() {} SE637303570834854288.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834854288().executeScript(); 2020-07-14 20:58:03,489 [19] INFO - Information: 0 : 2020-07-14 20:58:03,489 [19] INFO - function SE637303570834854288() {} SE637303570834854288.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834854288().executeScript(); 2020-07-14 20:58:03,490 [19] INFO - --------- 2020-07-14 20:58:03,490 [19] INFO - Information: 0 : 2020-07-14 20:58:03,490 [19] INFO - --------- 2020-07-14 20:58:03,490 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1895. 2020-07-14 20:58:03,490 [19] INFO - Information: 0 : 2020-07-14 20:58:03,490 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1895. 2020-07-14 20:58:03,490 [19] INFO - --------- 2020-07-14 20:58:03,490 [19] INFO - Information: 0 : 2020-07-14 20:58:03,490 [19] INFO - --------- 2020-07-14 20:58:03,491 [19] INFO - [system.partial] „inline-editor-start.html“ 5 ms „“ 2020-07-14 20:58:03,491 [19] INFO - Information: 0 : 2020-07-14 20:58:03,491 [19] INFO - [system.partial] „inline-editor-start.html“ 5 ms „“ 2020-07-14 20:58:03,491 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,491 [19] INFO - Information: 0 : 2020-07-14 20:58:03,491 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,491 [19] INFO - --------- 2020-07-14 20:58:03,491 [19] INFO - Information: 0 : 2020-07-14 20:58:03,492 [19] INFO - --------- 2020-07-14 20:58:03,492 [19] INFO - function SE637303570834914291() {} SE637303570834914291.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834914291().executeScript(); 2020-07-14 20:58:03,492 [19] INFO - Information: 0 : 2020-07-14 20:58:03,492 [19] INFO - function SE637303570834914291() {} SE637303570834914291.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834914291().executeScript(); 2020-07-14 20:58:03,492 [19] INFO - --------- 2020-07-14 20:58:03,492 [19] INFO - Information: 0 : 2020-07-14 20:58:03,492 [19] INFO - --------- 2020-07-14 20:58:03,495 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,495 [19] INFO - Information: 0 : 2020-07-14 20:58:03,495 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,495 [19] INFO - --------- 2020-07-14 20:58:03,495 [19] INFO - Information: 0 : 2020-07-14 20:58:03,495 [19] INFO - --------- 2020-07-14 20:58:03,495 [19] INFO - function SE637303570834914291() {} SE637303570834914291.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834914291().executeScript(); 2020-07-14 20:58:03,495 [19] INFO - Information: 0 : 2020-07-14 20:58:03,495 [19] INFO - function SE637303570834914291() {} SE637303570834914291.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834914291().executeScript(); 2020-07-14 20:58:03,496 [19] INFO - --------- 2020-07-14 20:58:03,496 [19] INFO - Information: 0 : 2020-07-14 20:58:03,496 [19] INFO - --------- 2020-07-14 20:58:03,496 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1896. 2020-07-14 20:58:03,496 [19] INFO - Information: 0 : 2020-07-14 20:58:03,496 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1896. 2020-07-14 20:58:03,496 [19] INFO - --------- 2020-07-14 20:58:03,496 [19] INFO - Information: 0 : 2020-07-14 20:58:03,496 [19] INFO - --------- 2020-07-14 20:58:03,496 [19] INFO - [system.partial] „inline-editor-end.html“ 5 ms „“ 2020-07-14 20:58:03,497 [19] INFO - Information: 0 : 2020-07-14 20:58:03,497 [19] INFO - [system.partial] „inline-editor-end.html“ 5 ms „“ 2020-07-14 20:58:03,497 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,497 [19] INFO - Information: 0 : 2020-07-14 20:58:03,497 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,497 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,497 [19] INFO - Information: 0 : 2020-07-14 20:58:03,497 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,497 [19] INFO - --------- 2020-07-14 20:58:03,498 [19] INFO - Information: 0 : 2020-07-14 20:58:03,498 [19] INFO - --------- 2020-07-14 20:58:03,498 [19] INFO - function SE637303570834574272() {} SE637303570834574272.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834574272().executeScript(); 2020-07-14 20:58:03,498 [19] INFO - Information: 0 : 2020-07-14 20:58:03,498 [19] INFO - function SE637303570834574272() {} SE637303570834574272.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570834574272().executeScript(); 2020-07-14 20:58:03,498 [19] INFO - --------- 2020-07-14 20:58:03,498 [19] INFO - Information: 0 : 2020-07-14 20:58:03,498 [19] INFO - --------- 2020-07-14 20:58:03,498 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1897. 2020-07-14 20:58:03,499 [19] INFO - Information: 0 : 2020-07-14 20:58:03,499 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1897. 2020-07-14 20:58:03,499 [19] INFO - --------- 2020-07-14 20:58:03,499 [19] INFO - Information: 0 : 2020-07-14 20:58:03,499 [19] INFO - --------- 2020-07-14 20:58:03,500 [19] INFO - Information: 0 : 2020-07-14 20:58:03,500 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,502 [19] INFO - Information: 0 : 2020-07-14 20:58:03,502 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,503 [19] INFO - Information: 0 : 2020-07-14 20:58:03,503 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,503 [19] INFO - Information: 0 : 2020-07-14 20:58:03,503 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,506 [19] INFO - Information: 0 : 2020-07-14 20:58:03,506 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,506 [19] INFO - Information: 0 : 2020-07-14 20:58:03,506 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,507 [19] INFO - Information: 0 : 2020-07-14 20:58:03,507 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,508 [19] INFO - Information: 0 : 2020-07-14 20:58:03,508 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,509 [19] INFO - Information: 0 : 2020-07-14 20:58:03,509 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,511 [19] INFO - Information: 0 : 2020-07-14 20:58:03,511 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,512 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,512 [19] INFO - Information: 0 : 2020-07-14 20:58:03,513 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,513 [19] INFO - Information: 0 : 2020-07-14 20:58:03,513 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,514 [19] INFO - Information: 0 : 2020-07-14 20:58:03,514 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,516 [19] INFO - Information: 0 : 2020-07-14 20:58:03,516 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,516 [19] INFO - Information: 0 : 2020-07-14 20:58:03,516 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,517 [19] INFO - Information: 0 : 2020-07-14 20:58:03,517 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,518 [19] INFO - Information: 0 : 2020-07-14 20:58:03,519 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,519 [19] INFO - Information: 0 : 2020-07-14 20:58:03,519 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,522 [19] INFO - Information: 0 : 2020-07-14 20:58:03,522 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,524 [19] INFO - Information: 0 : 2020-07-14 20:58:03,524 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,524 [19] INFO - Information: 0 : 2020-07-14 20:58:03,524 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,526 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,526 [19] INFO - Information: 0 : 2020-07-14 20:58:03,526 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,526 [19] INFO - --------- 2020-07-14 20:58:03,526 [19] INFO - Information: 0 : 2020-07-14 20:58:03,526 [19] INFO - --------- 2020-07-14 20:58:03,526 [19] INFO - function SE637303570835254311() {} SE637303570835254311.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570835254311().executeScript(); 2020-07-14 20:58:03,528 [19] INFO - Information: 0 : 2020-07-14 20:58:03,528 [19] INFO - function SE637303570835254311() {} SE637303570835254311.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570835254311().executeScript(); 2020-07-14 20:58:03,528 [19] INFO - --------- 2020-07-14 20:58:03,528 [19] INFO - Information: 0 : 2020-07-14 20:58:03,528 [19] INFO - --------- 2020-07-14 20:58:03,530 [19] INFO - Information: 0 : 2020-07-14 20:58:03,530 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,532 [19] INFO - Information: 0 : 2020-07-14 20:58:03,532 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,533 [19] INFO - Information: 0 : 2020-07-14 20:58:03,533 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,533 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 1582 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:03,533 [19] INFO - Information: 0 : 2020-07-14 20:58:03,533 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,535 [19] INFO - Information: 0 : 2020-07-14 20:58:03,535 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,535 [19] INFO - Information: 0 : 2020-07-14 20:58:03,535 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,535 [19] INFO - Entering 'ensureContentCopy' for image 417, article 1428, size 890. 2020-07-14 20:58:03,536 [19] INFO - Called 'createContentCopy' scripting function with article ID = 1428, image ID = 417, maxWidthInPixel = 890. 2020-07-14 20:58:03,536 [19] INFO - 'createContentCopy': NO content copy created (Never create content copy for preview.). 2020-07-14 20:58:03,536 [19] INFO - Leaving 'ensureContentCopy' for image 417, article 1428, size „890“, reason = not created (Never create content copy for preview.) 2020-07-14 20:58:03,541 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,549 [19] INFO - [GetImageSizeInPixel - B2] getting image size 1836x3264 for working copy image „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\c0e7b1d58c4548aa95df36ffb8743b87.jpg“ live from file. 2020-07-14 20:58:03,549 [19] INFO - Returning live-calculated image size for image with ID 417, file version „ContentCopy“ of 1836×3264 pixels. 2020-07-14 20:58:03,550 [19] INFO - Returning cached image size for image with ID 417, file version „ContentCopy“ of 1836×3264 pixels. 2020-07-14 20:58:03,551 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,551 [19] INFO - Information: 0 : 2020-07-14 20:58:03,551 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,551 [19] INFO - --------- 2020-07-14 20:58:03,552 [19] INFO - Information: 0 : 2020-07-14 20:58:03,552 [19] INFO - --------- 2020-07-14 20:58:03,552 [19] INFO - function SE637303570835514325() {} SE637303570835514325.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570835514325().executeScript(); 2020-07-14 20:58:03,552 [19] INFO - Information: 0 : 2020-07-14 20:58:03,552 [19] INFO - function SE637303570835514325() {} SE637303570835514325.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570835514325().executeScript(); 2020-07-14 20:58:03,552 [19] INFO - --------- 2020-07-14 20:58:03,552 [19] INFO - Information: 0 : 2020-07-14 20:58:03,553 [19] INFO - --------- 2020-07-14 20:58:03,557 [19] INFO - Information: 0 : 2020-07-14 20:58:03,557 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,559 [19] INFO - Information: 0 : 2020-07-14 20:58:03,559 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,559 [19] INFO - Information: 0 : 2020-07-14 20:58:03,559 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,560 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,560 [19] INFO - Information: 0 : 2020-07-14 20:58:03,560 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,561 [19] INFO - --------- 2020-07-14 20:58:03,561 [19] INFO - Information: 0 : 2020-07-14 20:58:03,561 [19] INFO - --------- 2020-07-14 20:58:03,561 [19] INFO - function SE637303570835514325() {} SE637303570835514325.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570835514325().executeScript(); 2020-07-14 20:58:03,561 [19] INFO - Information: 0 : 2020-07-14 20:58:03,561 [19] INFO - function SE637303570835514325() {} SE637303570835514325.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570835514325().executeScript(); 2020-07-14 20:58:03,562 [19] INFO - --------- 2020-07-14 20:58:03,562 [19] INFO - Information: 0 : 2020-07-14 20:58:03,562 [19] INFO - --------- 2020-07-14 20:58:03,562 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1898. 2020-07-14 20:58:03,562 [19] INFO - Information: 0 : 2020-07-14 20:58:03,562 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1898. 2020-07-14 20:58:03,562 [19] INFO - --------- 2020-07-14 20:58:03,562 [19] INFO - Information: 0 : 2020-07-14 20:58:03,562 [19] INFO - --------- 2020-07-14 20:58:03,562 [19] INFO - [system.partial] „article-begin.html“ 11 ms „[0, popupimage]“ 2020-07-14 20:58:03,563 [19] INFO - Information: 0 : 2020-07-14 20:58:03,563 [19] INFO - [system.partial] „article-begin.html“ 11 ms „[0, popupimage]“ 2020-07-14 20:58:03,564 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,564 [19] INFO - Information: 0 : 2020-07-14 20:58:03,564 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,565 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,565 [19] INFO - Information: 0 : 2020-07-14 20:58:03,565 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,565 [19] INFO - --------- 2020-07-14 20:58:03,565 [19] INFO - Information: 0 : 2020-07-14 20:58:03,565 [19] INFO - --------- 2020-07-14 20:58:03,565 [19] INFO - function SE637303570835254311() {} SE637303570835254311.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570835254311().executeScript(); 2020-07-14 20:58:03,566 [19] INFO - Information: 0 : 2020-07-14 20:58:03,566 [19] INFO - function SE637303570835254311() {} SE637303570835254311.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570835254311().executeScript(); 2020-07-14 20:58:03,566 [19] INFO - --------- 2020-07-14 20:58:03,566 [19] INFO - Information: 0 : 2020-07-14 20:58:03,566 [19] INFO - --------- 2020-07-14 20:58:03,567 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1899. 2020-07-14 20:58:03,567 [19] INFO - Information: 0 : 2020-07-14 20:58:03,567 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1899. 2020-07-14 20:58:03,567 [19] INFO - --------- 2020-07-14 20:58:03,567 [19] INFO - Information: 0 : 2020-07-14 20:58:03,567 [19] INFO - --------- 2020-07-14 20:58:03,568 [19] INFO - Information: 0 : 2020-07-14 20:58:03,568 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,570 [19] INFO - Information: 0 : 2020-07-14 20:58:03,570 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,570 [19] INFO - Information: 0 : 2020-07-14 20:58:03,571 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,574 [19] INFO - Information: 0 : 2020-07-14 20:58:03,574 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,576 [19] INFO - Information: 0 : 2020-07-14 20:58:03,576 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,576 [19] INFO - Information: 0 : 2020-07-14 20:58:03,576 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,578 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,578 [19] INFO - Information: 0 : 2020-07-14 20:58:03,578 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,578 [19] INFO - --------- 2020-07-14 20:58:03,578 [19] INFO - Information: 0 : 2020-07-14 20:58:03,578 [19] INFO - --------- 2020-07-14 20:58:03,578 [19] INFO - function SE637303570835784341() {} SE637303570835784341.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570835784341().executeScript(); 2020-07-14 20:58:03,579 [19] INFO - Information: 0 : 2020-07-14 20:58:03,579 [19] INFO - function SE637303570835784341() {} SE637303570835784341.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570835784341().executeScript(); 2020-07-14 20:58:03,580 [19] INFO - --------- 2020-07-14 20:58:03,580 [19] INFO - Information: 0 : 2020-07-14 20:58:03,580 [19] INFO - --------- 2020-07-14 20:58:03,582 [19] INFO - Information: 0 : 2020-07-14 20:58:03,582 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,584 [19] INFO - Information: 0 : 2020-07-14 20:58:03,584 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,584 [19] INFO - Information: 0 : 2020-07-14 20:58:03,584 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,584 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 1582 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:03,585 [19] INFO - Information: 0 : 2020-07-14 20:58:03,585 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,586 [19] INFO - Information: 0 : 2020-07-14 20:58:03,586 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,586 [19] INFO - Information: 0 : 2020-07-14 20:58:03,587 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,587 [19] INFO - Entering 'ensureContentCopy' for image 418, article 1429, size 890. 2020-07-14 20:58:03,587 [19] INFO - Called 'createContentCopy' scripting function with article ID = 1429, image ID = 418, maxWidthInPixel = 890. 2020-07-14 20:58:03,587 [19] INFO - 'createContentCopy': NO content copy created (Never create content copy for preview.). 2020-07-14 20:58:03,587 [19] INFO - Leaving 'ensureContentCopy' for image 418, article 1429, size „890“, reason = not created (Never create content copy for preview.) 2020-07-14 20:58:03,602 [19] INFO - [GetImageSizeInPixel - B2] getting image size 1836x3264 for working copy image „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\abc178948420480781e07d26a201bc5b.jpg“ live from file. 2020-07-14 20:58:03,602 [19] INFO - Returning live-calculated image size for image with ID 418, file version „ContentCopy“ of 1836×3264 pixels. 2020-07-14 20:58:03,602 [19] INFO - Returning cached image size for image with ID 418, file version „ContentCopy“ of 1836×3264 pixels. 2020-07-14 20:58:03,603 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,604 [19] INFO - Information: 0 : 2020-07-14 20:58:03,604 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,604 [19] INFO - --------- 2020-07-14 20:58:03,604 [19] INFO - Information: 0 : 2020-07-14 20:58:03,604 [19] INFO - --------- 2020-07-14 20:58:03,604 [19] INFO - function SE637303570836034355() {} SE637303570836034355.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570836034355().executeScript(); 2020-07-14 20:58:03,604 [19] INFO - Information: 0 : 2020-07-14 20:58:03,604 [19] INFO - function SE637303570836034355() {} SE637303570836034355.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570836034355().executeScript(); 2020-07-14 20:58:03,605 [19] INFO - --------- 2020-07-14 20:58:03,605 [19] INFO - Information: 0 : 2020-07-14 20:58:03,605 [19] INFO - --------- 2020-07-14 20:58:03,610 [19] INFO - Information: 0 : 2020-07-14 20:58:03,610 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,610 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,612 [19] INFO - Information: 0 : 2020-07-14 20:58:03,612 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,612 [19] INFO - Information: 0 : 2020-07-14 20:58:03,612 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,613 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,613 [19] INFO - Information: 0 : 2020-07-14 20:58:03,613 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,613 [19] INFO - --------- 2020-07-14 20:58:03,614 [19] INFO - Information: 0 : 2020-07-14 20:58:03,614 [19] INFO - --------- 2020-07-14 20:58:03,614 [19] INFO - function SE637303570836034355() {} SE637303570836034355.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570836034355().executeScript(); 2020-07-14 20:58:03,614 [19] INFO - Information: 0 : 2020-07-14 20:58:03,616 [19] INFO - function SE637303570836034355() {} SE637303570836034355.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570836034355().executeScript(); 2020-07-14 20:58:03,616 [19] INFO - --------- 2020-07-14 20:58:03,616 [19] INFO - Information: 0 : 2020-07-14 20:58:03,616 [19] INFO - --------- 2020-07-14 20:58:03,616 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1900. 2020-07-14 20:58:03,617 [19] INFO - Information: 0 : 2020-07-14 20:58:03,617 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1900. 2020-07-14 20:58:03,617 [19] INFO - --------- 2020-07-14 20:58:03,617 [19] INFO - Information: 0 : 2020-07-14 20:58:03,617 [19] INFO - --------- 2020-07-14 20:58:03,617 [19] INFO - [system.partial] „article-begin.html“ 13 ms „[0, popupimage]“ 2020-07-14 20:58:03,617 [19] INFO - Information: 0 : 2020-07-14 20:58:03,617 [19] INFO - [system.partial] „article-begin.html“ 13 ms „[0, popupimage]“ 2020-07-14 20:58:03,620 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,620 [19] INFO - Information: 0 : 2020-07-14 20:58:03,620 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,620 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,620 [19] INFO - Information: 0 : 2020-07-14 20:58:03,620 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,620 [19] INFO - --------- 2020-07-14 20:58:03,620 [19] INFO - Information: 0 : 2020-07-14 20:58:03,621 [19] INFO - --------- 2020-07-14 20:58:03,621 [19] INFO - function SE637303570835784341() {} SE637303570835784341.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570835784341().executeScript(); 2020-07-14 20:58:03,621 [19] INFO - Information: 0 : 2020-07-14 20:58:03,621 [19] INFO - function SE637303570835784341() {} SE637303570835784341.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570835784341().executeScript(); 2020-07-14 20:58:03,622 [19] INFO - --------- 2020-07-14 20:58:03,622 [19] INFO - Information: 0 : 2020-07-14 20:58:03,622 [19] INFO - --------- 2020-07-14 20:58:03,622 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1901. 2020-07-14 20:58:03,622 [19] INFO - Information: 0 : 2020-07-14 20:58:03,622 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1901. 2020-07-14 20:58:03,622 [19] INFO - --------- 2020-07-14 20:58:03,622 [19] INFO - Information: 0 : 2020-07-14 20:58:03,623 [19] INFO - --------- 2020-07-14 20:58:03,623 [19] INFO - Information: 0 : 2020-07-14 20:58:03,623 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,626 [19] INFO - Information: 0 : 2020-07-14 20:58:03,626 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,626 [19] INFO - Information: 0 : 2020-07-14 20:58:03,626 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,627 [19] INFO - Information: 0 : 2020-07-14 20:58:03,627 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,629 [19] INFO - Information: 0 : 2020-07-14 20:58:03,629 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,629 [19] INFO - Information: 0 : 2020-07-14 20:58:03,630 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,630 [19] INFO - Information: 0 : 2020-07-14 20:58:03,631 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,632 [19] INFO - Information: 0 : 2020-07-14 20:58:03,632 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,632 [19] INFO - Information: 0 : 2020-07-14 20:58:03,632 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,634 [19] INFO - Information: 0 : 2020-07-14 20:58:03,634 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,636 [19] INFO - Information: 0 : 2020-07-14 20:58:03,636 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,636 [19] INFO - Information: 0 : 2020-07-14 20:58:03,636 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,637 [19] INFO - Information: 0 : 2020-07-14 20:58:03,637 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,638 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,639 [19] INFO - Information: 0 : 2020-07-14 20:58:03,639 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,639 [19] INFO - Information: 0 : 2020-07-14 20:58:03,639 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,640 [19] INFO - Information: 0 : 2020-07-14 20:58:03,640 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,641 [19] INFO - Information: 0 : 2020-07-14 20:58:03,641 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,641 [19] INFO - Information: 0 : 2020-07-14 20:58:03,641 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,645 [19] INFO - Information: 0 : 2020-07-14 20:58:03,645 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,647 [19] INFO - Information: 0 : 2020-07-14 20:58:03,647 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,647 [19] INFO - Information: 0 : 2020-07-14 20:58:03,647 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,648 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,649 [19] INFO - Information: 0 : 2020-07-14 20:58:03,649 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,649 [19] INFO - --------- 2020-07-14 20:58:03,649 [19] INFO - Information: 0 : 2020-07-14 20:58:03,649 [19] INFO - --------- 2020-07-14 20:58:03,649 [19] INFO - function SE637303570836484381() {} SE637303570836484381.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570836484381().executeScript(); 2020-07-14 20:58:03,650 [19] INFO - Information: 0 : 2020-07-14 20:58:03,650 [19] INFO - function SE637303570836484381() {} SE637303570836484381.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570836484381().executeScript(); 2020-07-14 20:58:03,650 [19] INFO - --------- 2020-07-14 20:58:03,650 [19] INFO - Information: 0 : 2020-07-14 20:58:03,650 [19] INFO - --------- 2020-07-14 20:58:03,652 [19] INFO - Information: 0 : 2020-07-14 20:58:03,652 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,654 [19] INFO - Information: 0 : 2020-07-14 20:58:03,654 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,655 [19] INFO - Information: 0 : 2020-07-14 20:58:03,655 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,655 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 501 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:03,655 [19] INFO - Information: 0 : 2020-07-14 20:58:03,655 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,657 [19] INFO - Information: 0 : 2020-07-14 20:58:03,657 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,657 [19] INFO - Information: 0 : 2020-07-14 20:58:03,657 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,657 [19] INFO - Entering 'ensureContentCopy' for image 420, article 1431, size 890. 2020-07-14 20:58:03,658 [19] INFO - Called 'createContentCopy' scripting function with article ID = 1431, image ID = 420, maxWidthInPixel = 890. 2020-07-14 20:58:03,658 [19] INFO - 'createContentCopy': NO content copy created (Never create content copy for preview.). 2020-07-14 20:58:03,658 [19] INFO - Leaving 'ensureContentCopy' for image 420, article 1431, size „890“, reason = not created (Never create content copy for preview.) 2020-07-14 20:58:03,664 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,669 [19] INFO - [GetImageSizeInPixel - B2] getting image size 2048x1152 for working copy image „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\38ced06369134473bbc011b9d2999e67.jpg“ live from file. 2020-07-14 20:58:03,669 [19] INFO - Returning live-calculated image size for image with ID 420, file version „ContentCopy“ of 2048×1152 pixels. 2020-07-14 20:58:03,670 [19] INFO - Returning cached image size for image with ID 420, file version „ContentCopy“ of 2048×1152 pixels. 2020-07-14 20:58:03,671 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,671 [19] INFO - Information: 0 : 2020-07-14 20:58:03,671 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,671 [19] INFO - --------- 2020-07-14 20:58:03,671 [19] INFO - Information: 0 : 2020-07-14 20:58:03,671 [19] INFO - --------- 2020-07-14 20:58:03,672 [19] INFO - function SE637303570836714394() {} SE637303570836714394.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570836714394().executeScript(); 2020-07-14 20:58:03,672 [19] INFO - Information: 0 : 2020-07-14 20:58:03,672 [19] INFO - function SE637303570836714394() {} SE637303570836714394.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570836714394().executeScript(); 2020-07-14 20:58:03,672 [19] INFO - --------- 2020-07-14 20:58:03,672 [19] INFO - Information: 0 : 2020-07-14 20:58:03,672 [19] INFO - --------- 2020-07-14 20:58:03,677 [19] INFO - Information: 0 : 2020-07-14 20:58:03,677 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,679 [19] INFO - Information: 0 : 2020-07-14 20:58:03,679 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,679 [19] INFO - Information: 0 : 2020-07-14 20:58:03,679 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,680 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,680 [19] INFO - Information: 0 : 2020-07-14 20:58:03,680 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,680 [19] INFO - --------- 2020-07-14 20:58:03,680 [19] INFO - Information: 0 : 2020-07-14 20:58:03,680 [19] INFO - --------- 2020-07-14 20:58:03,681 [19] INFO - function SE637303570836714394() {} SE637303570836714394.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570836714394().executeScript(); 2020-07-14 20:58:03,681 [19] INFO - Information: 0 : 2020-07-14 20:58:03,681 [19] INFO - function SE637303570836714394() {} SE637303570836714394.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570836714394().executeScript(); 2020-07-14 20:58:03,681 [19] INFO - --------- 2020-07-14 20:58:03,681 [19] INFO - Information: 0 : 2020-07-14 20:58:03,681 [19] INFO - --------- 2020-07-14 20:58:03,681 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1902. 2020-07-14 20:58:03,681 [19] INFO - Information: 0 : 2020-07-14 20:58:03,682 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1902. 2020-07-14 20:58:03,682 [19] INFO - --------- 2020-07-14 20:58:03,682 [19] INFO - Information: 0 : 2020-07-14 20:58:03,682 [19] INFO - --------- 2020-07-14 20:58:03,682 [19] INFO - [system.partial] „article-begin.html“ 11 ms „[0, popupimage]“ 2020-07-14 20:58:03,682 [19] INFO - Information: 0 : 2020-07-14 20:58:03,682 [19] INFO - [system.partial] „article-begin.html“ 11 ms „[0, popupimage]“ 2020-07-14 20:58:03,684 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,684 [19] INFO - Information: 0 : 2020-07-14 20:58:03,684 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,684 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,684 [19] INFO - Information: 0 : 2020-07-14 20:58:03,684 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,684 [19] INFO - --------- 2020-07-14 20:58:03,684 [19] INFO - Information: 0 : 2020-07-14 20:58:03,685 [19] INFO - --------- 2020-07-14 20:58:03,685 [19] INFO - function SE637303570836484381() {} SE637303570836484381.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570836484381().executeScript(); 2020-07-14 20:58:03,685 [19] INFO - Information: 0 : 2020-07-14 20:58:03,686 [19] INFO - function SE637303570836484381() {} SE637303570836484381.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570836484381().executeScript(); 2020-07-14 20:58:03,686 [19] INFO - --------- 2020-07-14 20:58:03,686 [19] INFO - Information: 0 : 2020-07-14 20:58:03,686 [19] INFO - --------- 2020-07-14 20:58:03,686 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1903. 2020-07-14 20:58:03,686 [19] INFO - Information: 0 : 2020-07-14 20:58:03,686 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1903. 2020-07-14 20:58:03,686 [19] INFO - --------- 2020-07-14 20:58:03,687 [19] INFO - Information: 0 : 2020-07-14 20:58:03,687 [19] INFO - --------- 2020-07-14 20:58:03,687 [19] INFO - Information: 0 : 2020-07-14 20:58:03,688 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,690 [19] INFO - Information: 0 : 2020-07-14 20:58:03,690 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,690 [19] INFO - Information: 0 : 2020-07-14 20:58:03,690 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,691 [19] INFO - Information: 0 : 2020-07-14 20:58:03,691 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,693 [19] INFO - Information: 0 : 2020-07-14 20:58:03,693 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,693 [19] INFO - Information: 0 : 2020-07-14 20:58:03,693 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,694 [19] INFO - Information: 0 : 2020-07-14 20:58:03,694 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,696 [19] INFO - Information: 0 : 2020-07-14 20:58:03,696 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,696 [19] INFO - Information: 0 : 2020-07-14 20:58:03,696 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,698 [19] INFO - Information: 0 : 2020-07-14 20:58:03,698 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,699 [19] INFO - Information: 0 : 2020-07-14 20:58:03,700 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,700 [19] INFO - Information: 0 : 2020-07-14 20:58:03,700 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,701 [19] INFO - Information: 0 : 2020-07-14 20:58:03,701 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,703 [19] INFO - Information: 0 : 2020-07-14 20:58:03,703 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,703 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,704 [19] INFO - Information: 0 : 2020-07-14 20:58:03,704 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,705 [19] INFO - Information: 0 : 2020-07-14 20:58:03,705 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,705 [19] INFO - Information: 0 : 2020-07-14 20:58:03,705 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,709 [19] INFO - Information: 0 : 2020-07-14 20:58:03,709 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,711 [19] INFO - Information: 0 : 2020-07-14 20:58:03,711 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,711 [19] INFO - Information: 0 : 2020-07-14 20:58:03,711 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,713 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,713 [19] INFO - Information: 0 : 2020-07-14 20:58:03,713 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,713 [19] INFO - --------- 2020-07-14 20:58:03,713 [19] INFO - Information: 0 : 2020-07-14 20:58:03,714 [19] INFO - --------- 2020-07-14 20:58:03,714 [19] INFO - function SE637303570837134418() {} SE637303570837134418.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837134418().executeScript(); 2020-07-14 20:58:03,714 [19] INFO - Information: 0 : 2020-07-14 20:58:03,714 [19] INFO - function SE637303570837134418() {} SE637303570837134418.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837134418().executeScript(); 2020-07-14 20:58:03,714 [19] INFO - --------- 2020-07-14 20:58:03,714 [19] INFO - Information: 0 : 2020-07-14 20:58:03,714 [19] INFO - --------- 2020-07-14 20:58:03,715 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,716 [19] INFO - Information: 0 : 2020-07-14 20:58:03,716 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,716 [19] INFO - --------- 2020-07-14 20:58:03,716 [19] INFO - Information: 0 : 2020-07-14 20:58:03,716 [19] INFO - --------- 2020-07-14 20:58:03,716 [19] INFO - function SE637303570837154419() {} SE637303570837154419.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837154419().executeScript(); 2020-07-14 20:58:03,716 [19] INFO - Information: 0 : 2020-07-14 20:58:03,716 [19] INFO - function SE637303570837154419() {} SE637303570837154419.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837154419().executeScript(); 2020-07-14 20:58:03,717 [19] INFO - --------- 2020-07-14 20:58:03,717 [19] INFO - Information: 0 : 2020-07-14 20:58:03,717 [19] INFO - --------- 2020-07-14 20:58:03,722 [19] INFO - Information: 0 : 2020-07-14 20:58:03,722 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,724 [19] INFO - Information: 0 : 2020-07-14 20:58:03,724 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,725 [19] INFO - Information: 0 : 2020-07-14 20:58:03,725 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,725 [19] INFO - Information: 0 : 2020-07-14 20:58:03,725 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,726 [19] INFO - Information: 0 : 2020-07-14 20:58:03,727 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,727 [19] INFO - Information: 0 : 2020-07-14 20:58:03,727 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,727 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,727 [19] INFO - Information: 0 : 2020-07-14 20:58:03,728 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,728 [19] INFO - --------- 2020-07-14 20:58:03,728 [19] INFO - Information: 0 : 2020-07-14 20:58:03,728 [19] INFO - --------- 2020-07-14 20:58:03,728 [19] INFO - function SE637303570837154419() {} SE637303570837154419.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837154419().executeScript(); 2020-07-14 20:58:03,728 [19] INFO - Information: 0 : 2020-07-14 20:58:03,728 [19] INFO - function SE637303570837154419() {} SE637303570837154419.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837154419().executeScript(); 2020-07-14 20:58:03,728 [19] INFO - --------- 2020-07-14 20:58:03,729 [19] INFO - Information: 0 : 2020-07-14 20:58:03,729 [19] INFO - --------- 2020-07-14 20:58:03,729 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1904. 2020-07-14 20:58:03,729 [19] INFO - Information: 0 : 2020-07-14 20:58:03,729 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1904. 2020-07-14 20:58:03,729 [19] INFO - --------- 2020-07-14 20:58:03,729 [19] INFO - Information: 0 : 2020-07-14 20:58:03,729 [19] INFO - --------- 2020-07-14 20:58:03,729 [19] INFO - [system.partial] „article-begin.html“ 14 ms „“ 2020-07-14 20:58:03,729 [19] INFO - Information: 0 : 2020-07-14 20:58:03,730 [19] INFO - [system.partial] „article-begin.html“ 14 ms „“ 2020-07-14 20:58:03,730 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,730 [19] INFO - Information: 0 : 2020-07-14 20:58:03,730 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,730 [19] INFO - --------- 2020-07-14 20:58:03,730 [19] INFO - Information: 0 : 2020-07-14 20:58:03,730 [19] INFO - --------- 2020-07-14 20:58:03,730 [19] INFO - function SE637303570837304428() {} SE637303570837304428.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837304428().executeScript(); 2020-07-14 20:58:03,731 [19] INFO - Information: 0 : 2020-07-14 20:58:03,731 [19] INFO - function SE637303570837304428() {} SE637303570837304428.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837304428().executeScript(); 2020-07-14 20:58:03,731 [19] INFO - --------- 2020-07-14 20:58:03,731 [19] INFO - Information: 0 : 2020-07-14 20:58:03,731 [19] INFO - --------- 2020-07-14 20:58:03,733 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,733 [19] INFO - Information: 0 : 2020-07-14 20:58:03,733 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,733 [19] INFO - --------- 2020-07-14 20:58:03,733 [19] INFO - Information: 0 : 2020-07-14 20:58:03,733 [19] INFO - --------- 2020-07-14 20:58:03,733 [19] INFO - function SE637303570837304428() {} SE637303570837304428.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837304428().executeScript(); 2020-07-14 20:58:03,733 [19] INFO - Information: 0 : 2020-07-14 20:58:03,734 [19] INFO - function SE637303570837304428() {} SE637303570837304428.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837304428().executeScript(); 2020-07-14 20:58:03,734 [19] INFO - --------- 2020-07-14 20:58:03,734 [19] INFO - Information: 0 : 2020-07-14 20:58:03,734 [19] INFO - --------- 2020-07-14 20:58:03,734 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1905. 2020-07-14 20:58:03,734 [19] INFO - Information: 0 : 2020-07-14 20:58:03,734 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1905. 2020-07-14 20:58:03,734 [19] INFO - --------- 2020-07-14 20:58:03,734 [19] INFO - Information: 0 : 2020-07-14 20:58:03,735 [19] INFO - --------- 2020-07-14 20:58:03,735 [19] INFO - [system.partial] „article-headline.html“ 4 ms „“ 2020-07-14 20:58:03,735 [19] INFO - Information: 0 : 2020-07-14 20:58:03,735 [19] INFO - [system.partial] „article-headline.html“ 4 ms „“ 2020-07-14 20:58:03,735 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,735 [19] INFO - Information: 0 : 2020-07-14 20:58:03,735 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,735 [19] INFO - --------- 2020-07-14 20:58:03,735 [19] INFO - Information: 0 : 2020-07-14 20:58:03,736 [19] INFO - --------- 2020-07-14 20:58:03,736 [19] INFO - function SE637303570837354431() {} SE637303570837354431.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837354431().executeScript(); 2020-07-14 20:58:03,736 [19] INFO - Information: 0 : 2020-07-14 20:58:03,736 [19] INFO - function SE637303570837354431() {} SE637303570837354431.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837354431().executeScript(); 2020-07-14 20:58:03,736 [19] INFO - --------- 2020-07-14 20:58:03,736 [19] INFO - Information: 0 : 2020-07-14 20:58:03,736 [19] INFO - --------- 2020-07-14 20:58:03,739 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,740 [19] INFO - Information: 0 : 2020-07-14 20:58:03,740 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,740 [19] INFO - --------- 2020-07-14 20:58:03,740 [19] INFO - Information: 0 : 2020-07-14 20:58:03,740 [19] INFO - --------- 2020-07-14 20:58:03,740 [19] INFO - function SE637303570837354431() {} SE637303570837354431.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837354431().executeScript(); 2020-07-14 20:58:03,740 [19] INFO - Information: 0 : 2020-07-14 20:58:03,740 [19] INFO - function SE637303570837354431() {} SE637303570837354431.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837354431().executeScript(); 2020-07-14 20:58:03,740 [19] INFO - --------- 2020-07-14 20:58:03,741 [19] INFO - Information: 0 : 2020-07-14 20:58:03,741 [19] INFO - --------- 2020-07-14 20:58:03,741 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1906. 2020-07-14 20:58:03,741 [19] INFO - Information: 0 : 2020-07-14 20:58:03,741 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1906. 2020-07-14 20:58:03,741 [19] INFO - --------- 2020-07-14 20:58:03,741 [19] INFO - Information: 0 : 2020-07-14 20:58:03,741 [19] INFO - --------- 2020-07-14 20:58:03,741 [19] INFO - [system.partial] „inline-editor-start.html“ 6 ms „“ 2020-07-14 20:58:03,741 [19] INFO - Information: 0 : 2020-07-14 20:58:03,742 [19] INFO - [system.partial] „inline-editor-start.html“ 6 ms „“ 2020-07-14 20:58:03,742 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,742 [19] INFO - Information: 0 : 2020-07-14 20:58:03,742 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,742 [19] INFO - --------- 2020-07-14 20:58:03,742 [19] INFO - Information: 0 : 2020-07-14 20:58:03,742 [19] INFO - --------- 2020-07-14 20:58:03,742 [19] INFO - function SE637303570837424435() {} SE637303570837424435.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837424435().executeScript(); 2020-07-14 20:58:03,742 [19] INFO - Information: 0 : 2020-07-14 20:58:03,743 [19] INFO - function SE637303570837424435() {} SE637303570837424435.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837424435().executeScript(); 2020-07-14 20:58:03,743 [19] INFO - --------- 2020-07-14 20:58:03,743 [19] INFO - Information: 0 : 2020-07-14 20:58:03,743 [19] INFO - --------- 2020-07-14 20:58:03,744 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,745 [19] INFO - Information: 0 : 2020-07-14 20:58:03,745 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,745 [19] INFO - --------- 2020-07-14 20:58:03,745 [19] INFO - Information: 0 : 2020-07-14 20:58:03,745 [19] INFO - --------- 2020-07-14 20:58:03,745 [19] INFO - function SE637303570837424435() {} SE637303570837424435.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837424435().executeScript(); 2020-07-14 20:58:03,745 [19] INFO - Information: 0 : 2020-07-14 20:58:03,745 [19] INFO - function SE637303570837424435() {} SE637303570837424435.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837424435().executeScript(); 2020-07-14 20:58:03,745 [19] INFO - --------- 2020-07-14 20:58:03,746 [19] INFO - Information: 0 : 2020-07-14 20:58:03,746 [19] INFO - --------- 2020-07-14 20:58:03,746 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1907. 2020-07-14 20:58:03,746 [19] INFO - Information: 0 : 2020-07-14 20:58:03,746 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1907. 2020-07-14 20:58:03,746 [19] INFO - --------- 2020-07-14 20:58:03,746 [19] INFO - Information: 0 : 2020-07-14 20:58:03,746 [19] INFO - --------- 2020-07-14 20:58:03,746 [19] INFO - [system.partial] „inline-editor-end.html“ 4 ms „“ 2020-07-14 20:58:03,746 [19] INFO - Information: 0 : 2020-07-14 20:58:03,747 [19] INFO - [system.partial] „inline-editor-end.html“ 4 ms „“ 2020-07-14 20:58:03,747 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,747 [19] INFO - Information: 0 : 2020-07-14 20:58:03,747 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,747 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,747 [19] INFO - Information: 0 : 2020-07-14 20:58:03,747 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,747 [19] INFO - --------- 2020-07-14 20:58:03,747 [19] INFO - Information: 0 : 2020-07-14 20:58:03,748 [19] INFO - --------- 2020-07-14 20:58:03,748 [19] INFO - function SE637303570837134418() {} SE637303570837134418.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837134418().executeScript(); 2020-07-14 20:58:03,748 [19] INFO - Information: 0 : 2020-07-14 20:58:03,748 [19] INFO - function SE637303570837134418() {} SE637303570837134418.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837134418().executeScript(); 2020-07-14 20:58:03,748 [19] INFO - --------- 2020-07-14 20:58:03,748 [19] INFO - Information: 0 : 2020-07-14 20:58:03,748 [19] INFO - --------- 2020-07-14 20:58:03,748 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1908. 2020-07-14 20:58:03,748 [19] INFO - Information: 0 : 2020-07-14 20:58:03,748 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1908. 2020-07-14 20:58:03,749 [19] INFO - --------- 2020-07-14 20:58:03,749 [19] INFO - Information: 0 : 2020-07-14 20:58:03,749 [19] INFO - --------- 2020-07-14 20:58:03,750 [19] INFO - Information: 0 : 2020-07-14 20:58:03,750 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,752 [19] INFO - Information: 0 : 2020-07-14 20:58:03,752 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,753 [19] INFO - Information: 0 : 2020-07-14 20:58:03,753 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,753 [19] INFO - Information: 0 : 2020-07-14 20:58:03,753 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,755 [19] INFO - Information: 0 : 2020-07-14 20:58:03,755 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,756 [19] INFO - Information: 0 : 2020-07-14 20:58:03,756 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,757 [19] INFO - Information: 0 : 2020-07-14 20:58:03,757 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,758 [19] INFO - Information: 0 : 2020-07-14 20:58:03,758 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,758 [19] INFO - Information: 0 : 2020-07-14 20:58:03,758 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,760 [19] INFO - Information: 0 : 2020-07-14 20:58:03,760 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,762 [19] INFO - Information: 0 : 2020-07-14 20:58:03,762 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,762 [19] INFO - Information: 0 : 2020-07-14 20:58:03,762 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,763 [19] INFO - Information: 0 : 2020-07-14 20:58:03,763 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,765 [19] INFO - Information: 0 : 2020-07-14 20:58:03,765 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,766 [19] INFO - Information: 0 : 2020-07-14 20:58:03,766 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,766 [19] INFO - Information: 0 : 2020-07-14 20:58:03,766 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,768 [19] INFO - Information: 0 : 2020-07-14 20:58:03,768 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,768 [19] INFO - Information: 0 : 2020-07-14 20:58:03,768 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,771 [19] INFO - Information: 0 : 2020-07-14 20:58:03,771 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,773 [19] INFO - Information: 0 : 2020-07-14 20:58:03,773 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,773 [19] INFO - Information: 0 : 2020-07-14 20:58:03,774 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,775 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,775 [19] INFO - Information: 0 : 2020-07-14 20:58:03,775 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,775 [19] INFO - --------- 2020-07-14 20:58:03,775 [19] INFO - Information: 0 : 2020-07-14 20:58:03,775 [19] INFO - --------- 2020-07-14 20:58:03,776 [19] INFO - function SE637303570837754454() {} SE637303570837754454.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837754454().executeScript(); 2020-07-14 20:58:03,776 [19] INFO - Information: 0 : 2020-07-14 20:58:03,777 [19] INFO - function SE637303570837754454() {} SE637303570837754454.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837754454().executeScript(); 2020-07-14 20:58:03,777 [19] INFO - --------- 2020-07-14 20:58:03,777 [19] INFO - Information: 0 : 2020-07-14 20:58:03,777 [19] INFO - --------- 2020-07-14 20:58:03,781 [19] INFO - Information: 0 : 2020-07-14 20:58:03,781 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,783 [19] INFO - Information: 0 : 2020-07-14 20:58:03,783 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,784 [19] INFO - Information: 0 : 2020-07-14 20:58:03,784 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,784 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 668 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:03,784 [19] INFO - Information: 0 : 2020-07-14 20:58:03,784 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,786 [19] INFO - Information: 0 : 2020-07-14 20:58:03,786 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,786 [19] INFO - Information: 0 : 2020-07-14 20:58:03,786 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,786 [19] INFO - Entering 'ensureContentCopy' for image 421, article 1433, size 890. 2020-07-14 20:58:03,787 [19] INFO - Called 'createContentCopy' scripting function with article ID = 1433, image ID = 421, maxWidthInPixel = 890. 2020-07-14 20:58:03,788 [19] INFO - 'createContentCopy': NO content copy created (Never create content copy for preview.). 2020-07-14 20:58:03,788 [19] INFO - Leaving 'ensureContentCopy' for image 421, article 1433, size „890“, reason = not created (Never create content copy for preview.) 2020-07-14 20:58:03,791 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,802 [19] INFO - [GetImageSizeInPixel - B2] getting image size 2048x1536 for working copy image „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\ea19b11e57684c19a59ad6c2db6418e5.jpg“ live from file. 2020-07-14 20:58:03,802 [19] INFO - Returning live-calculated image size for image with ID 421, file version „ContentCopy“ of 2048×1536 pixels. 2020-07-14 20:58:03,803 [19] INFO - Returning cached image size for image with ID 421, file version „ContentCopy“ of 2048×1536 pixels. 2020-07-14 20:58:03,804 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,804 [19] INFO - Information: 0 : 2020-07-14 20:58:03,804 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,804 [19] INFO - --------- 2020-07-14 20:58:03,804 [19] INFO - Information: 0 : 2020-07-14 20:58:03,805 [19] INFO - --------- 2020-07-14 20:58:03,805 [19] INFO - function SE637303570838044470() {} SE637303570838044470.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570838044470().executeScript(); 2020-07-14 20:58:03,805 [19] INFO - Information: 0 : 2020-07-14 20:58:03,805 [19] INFO - function SE637303570838044470() {} SE637303570838044470.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570838044470().executeScript(); 2020-07-14 20:58:03,805 [19] INFO - --------- 2020-07-14 20:58:03,805 [19] INFO - Information: 0 : 2020-07-14 20:58:03,805 [19] INFO - --------- 2020-07-14 20:58:03,812 [19] INFO - Information: 0 : 2020-07-14 20:58:03,813 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,815 [19] INFO - Information: 0 : 2020-07-14 20:58:03,815 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,815 [19] INFO - Information: 0 : 2020-07-14 20:58:03,815 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,816 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,816 [19] INFO - Information: 0 : 2020-07-14 20:58:03,817 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,817 [19] INFO - --------- 2020-07-14 20:58:03,817 [19] INFO - Information: 0 : 2020-07-14 20:58:03,817 [19] INFO - --------- 2020-07-14 20:58:03,817 [19] INFO - function SE637303570838044470() {} SE637303570838044470.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570838044470().executeScript(); 2020-07-14 20:58:03,817 [19] INFO - Information: 0 : 2020-07-14 20:58:03,817 [19] INFO - function SE637303570838044470() {} SE637303570838044470.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570838044470().executeScript(); 2020-07-14 20:58:03,817 [19] INFO - --------- 2020-07-14 20:58:03,818 [19] INFO - Information: 0 : 2020-07-14 20:58:03,818 [19] INFO - --------- 2020-07-14 20:58:03,818 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1909. 2020-07-14 20:58:03,818 [19] INFO - Information: 0 : 2020-07-14 20:58:03,818 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1909. 2020-07-14 20:58:03,818 [19] INFO - --------- 2020-07-14 20:58:03,818 [19] INFO - Information: 0 : 2020-07-14 20:58:03,818 [19] INFO - --------- 2020-07-14 20:58:03,818 [19] INFO - [system.partial] „article-begin.html“ 14 ms „[0, popupimage]“ 2020-07-14 20:58:03,819 [19] INFO - Information: 0 : 2020-07-14 20:58:03,819 [19] INFO - [system.partial] „article-begin.html“ 14 ms „[0, popupimage]“ 2020-07-14 20:58:03,820 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,820 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,821 [19] INFO - Information: 0 : 2020-07-14 20:58:03,821 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,821 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,821 [19] INFO - Information: 0 : 2020-07-14 20:58:03,821 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,821 [19] INFO - --------- 2020-07-14 20:58:03,821 [19] INFO - Information: 0 : 2020-07-14 20:58:03,821 [19] INFO - --------- 2020-07-14 20:58:03,822 [19] INFO - function SE637303570837754454() {} SE637303570837754454.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837754454().executeScript(); 2020-07-14 20:58:03,822 [19] INFO - Information: 0 : 2020-07-14 20:58:03,822 [19] INFO - function SE637303570837754454() {} SE637303570837754454.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570837754454().executeScript(); 2020-07-14 20:58:03,823 [19] INFO - --------- 2020-07-14 20:58:03,823 [19] INFO - Information: 0 : 2020-07-14 20:58:03,823 [19] INFO - --------- 2020-07-14 20:58:03,823 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1910. 2020-07-14 20:58:03,823 [19] INFO - Information: 0 : 2020-07-14 20:58:03,823 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1910. 2020-07-14 20:58:03,823 [19] INFO - --------- 2020-07-14 20:58:03,823 [19] INFO - Information: 0 : 2020-07-14 20:58:03,823 [19] INFO - --------- 2020-07-14 20:58:03,824 [19] INFO - Information: 0 : 2020-07-14 20:58:03,824 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,827 [19] INFO - Information: 0 : 2020-07-14 20:58:03,827 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,827 [19] INFO - Information: 0 : 2020-07-14 20:58:03,828 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,828 [19] INFO - Information: 0 : 2020-07-14 20:58:03,828 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,830 [19] INFO - Information: 0 : 2020-07-14 20:58:03,830 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,831 [19] INFO - Information: 0 : 2020-07-14 20:58:03,831 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,832 [19] INFO - Information: 0 : 2020-07-14 20:58:03,832 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,833 [19] INFO - Information: 0 : 2020-07-14 20:58:03,833 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,833 [19] INFO - Information: 0 : 2020-07-14 20:58:03,834 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,836 [19] INFO - Information: 0 : 2020-07-14 20:58:03,836 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,838 [19] INFO - Information: 0 : 2020-07-14 20:58:03,838 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,839 [19] INFO - Information: 0 : 2020-07-14 20:58:03,839 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,840 [19] INFO - Information: 0 : 2020-07-14 20:58:03,840 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,843 [19] INFO - Information: 0 : 2020-07-14 20:58:03,843 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,843 [19] INFO - Information: 0 : 2020-07-14 20:58:03,843 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,844 [19] INFO - Information: 0 : 2020-07-14 20:58:03,844 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,846 [19] INFO - Information: 0 : 2020-07-14 20:58:03,846 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,846 [19] INFO - Information: 0 : 2020-07-14 20:58:03,846 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,849 [19] INFO - Information: 0 : 2020-07-14 20:58:03,849 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,851 [19] INFO - Information: 0 : 2020-07-14 20:58:03,851 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,851 [19] INFO - Information: 0 : 2020-07-14 20:58:03,851 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,853 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,853 [19] INFO - Information: 0 : 2020-07-14 20:58:03,853 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,853 [19] INFO - --------- 2020-07-14 20:58:03,853 [19] INFO - Information: 0 : 2020-07-14 20:58:03,853 [19] INFO - --------- 2020-07-14 20:58:03,853 [19] INFO - function SE637303570838524498() {} SE637303570838524498.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570838524498().executeScript(); 2020-07-14 20:58:03,854 [19] INFO - Information: 0 : 2020-07-14 20:58:03,854 [19] INFO - function SE637303570838524498() {} SE637303570838524498.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570838524498().executeScript(); 2020-07-14 20:58:03,854 [19] INFO - --------- 2020-07-14 20:58:03,854 [19] INFO - Information: 0 : 2020-07-14 20:58:03,855 [19] INFO - --------- 2020-07-14 20:58:03,856 [19] INFO - Information: 0 : 2020-07-14 20:58:03,856 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,858 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,859 [19] INFO - Information: 0 : 2020-07-14 20:58:03,859 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,860 [19] INFO - Information: 0 : 2020-07-14 20:58:03,860 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,860 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 231 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:03,860 [19] INFO - Information: 0 : 2020-07-14 20:58:03,861 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,862 [19] INFO - Information: 0 : 2020-07-14 20:58:03,862 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,863 [19] INFO - Information: 0 : 2020-07-14 20:58:03,863 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,863 [19] INFO - Entering 'ensureContentCopy' for image 422, article 1434, size 890. 2020-07-14 20:58:03,864 [19] INFO - Called 'createContentCopy' scripting function with article ID = 1434, image ID = 422, maxWidthInPixel = 890. 2020-07-14 20:58:03,864 [19] INFO - 'createContentCopy': NO content copy created (Never create content copy for preview.). 2020-07-14 20:58:03,864 [19] INFO - Leaving 'ensureContentCopy' for image 422, article 1434, size „890“, reason = not created (Never create content copy for preview.) 2020-07-14 20:58:03,874 [19] INFO - [GetImageSizeInPixel - B2] getting image size 2048x532 for working copy image „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\c14720cd67e74287b5bfa1fb1da61653.jpg“ live from file. 2020-07-14 20:58:03,874 [19] INFO - Returning live-calculated image size for image with ID 422, file version „ContentCopy“ of 2048×532 pixels. 2020-07-14 20:58:03,874 [19] INFO - Returning cached image size for image with ID 422, file version „ContentCopy“ of 2048×532 pixels. 2020-07-14 20:58:03,875 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,876 [19] INFO - Information: 0 : 2020-07-14 20:58:03,876 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,876 [19] INFO - --------- 2020-07-14 20:58:03,876 [19] INFO - Information: 0 : 2020-07-14 20:58:03,876 [19] INFO - --------- 2020-07-14 20:58:03,876 [19] INFO - function SE637303570838754511() {} SE637303570838754511.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570838754511().executeScript(); 2020-07-14 20:58:03,876 [19] INFO - Information: 0 : 2020-07-14 20:58:03,876 [19] INFO - function SE637303570838754511() {} SE637303570838754511.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570838754511().executeScript(); 2020-07-14 20:58:03,877 [19] INFO - --------- 2020-07-14 20:58:03,877 [19] INFO - Information: 0 : 2020-07-14 20:58:03,877 [19] INFO - --------- 2020-07-14 20:58:03,881 [19] INFO - Information: 0 : 2020-07-14 20:58:03,881 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,883 [19] INFO - Information: 0 : 2020-07-14 20:58:03,883 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,884 [19] INFO - Information: 0 : 2020-07-14 20:58:03,884 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,884 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,885 [19] INFO - Information: 0 : 2020-07-14 20:58:03,885 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,885 [19] INFO - --------- 2020-07-14 20:58:03,885 [19] INFO - Information: 0 : 2020-07-14 20:58:03,885 [19] INFO - --------- 2020-07-14 20:58:03,885 [19] INFO - function SE637303570838754511() {} SE637303570838754511.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570838754511().executeScript(); 2020-07-14 20:58:03,885 [19] INFO - Information: 0 : 2020-07-14 20:58:03,885 [19] INFO - function SE637303570838754511() {} SE637303570838754511.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570838754511().executeScript(); 2020-07-14 20:58:03,886 [19] INFO - --------- 2020-07-14 20:58:03,886 [19] INFO - Information: 0 : 2020-07-14 20:58:03,886 [19] INFO - --------- 2020-07-14 20:58:03,886 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1911. 2020-07-14 20:58:03,886 [19] INFO - Information: 0 : 2020-07-14 20:58:03,886 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1911. 2020-07-14 20:58:03,886 [19] INFO - --------- 2020-07-14 20:58:03,886 [19] INFO - Information: 0 : 2020-07-14 20:58:03,886 [19] INFO - --------- 2020-07-14 20:58:03,886 [19] INFO - [system.partial] „article-begin.html“ 11 ms „[0, popupimage]“ 2020-07-14 20:58:03,887 [19] INFO - Information: 0 : 2020-07-14 20:58:03,887 [19] INFO - [system.partial] „article-begin.html“ 11 ms „[0, popupimage]“ 2020-07-14 20:58:03,887 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,888 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,888 [19] INFO - Information: 0 : 2020-07-14 20:58:03,889 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,889 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,889 [19] INFO - Information: 0 : 2020-07-14 20:58:03,889 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,889 [19] INFO - --------- 2020-07-14 20:58:03,889 [19] INFO - Information: 0 : 2020-07-14 20:58:03,889 [19] INFO - --------- 2020-07-14 20:58:03,889 [19] INFO - function SE637303570838524498() {} SE637303570838524498.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570838524498().executeScript(); 2020-07-14 20:58:03,890 [19] INFO - Information: 0 : 2020-07-14 20:58:03,890 [19] INFO - function SE637303570838524498() {} SE637303570838524498.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570838524498().executeScript(); 2020-07-14 20:58:03,890 [19] INFO - --------- 2020-07-14 20:58:03,891 [19] INFO - Information: 0 : 2020-07-14 20:58:03,891 [19] INFO - --------- 2020-07-14 20:58:03,891 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1912. 2020-07-14 20:58:03,891 [19] INFO - Information: 0 : 2020-07-14 20:58:03,891 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1912. 2020-07-14 20:58:03,891 [19] INFO - --------- 2020-07-14 20:58:03,891 [19] INFO - Information: 0 : 2020-07-14 20:58:03,891 [19] INFO - --------- 2020-07-14 20:58:03,892 [19] INFO - Information: 0 : 2020-07-14 20:58:03,892 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,895 [19] INFO - Information: 0 : 2020-07-14 20:58:03,895 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,896 [19] INFO - Information: 0 : 2020-07-14 20:58:03,896 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,896 [19] INFO - Information: 0 : 2020-07-14 20:58:03,896 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,898 [19] INFO - Information: 0 : 2020-07-14 20:58:03,899 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,899 [19] INFO - Information: 0 : 2020-07-14 20:58:03,899 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,900 [19] INFO - Information: 0 : 2020-07-14 20:58:03,900 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,902 [19] INFO - Information: 0 : 2020-07-14 20:58:03,902 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,902 [19] INFO - Information: 0 : 2020-07-14 20:58:03,902 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,904 [19] INFO - Information: 0 : 2020-07-14 20:58:03,904 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,905 [19] INFO - Information: 0 : 2020-07-14 20:58:03,905 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,906 [19] INFO - Information: 0 : 2020-07-14 20:58:03,906 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,907 [19] INFO - Information: 0 : 2020-07-14 20:58:03,907 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,909 [19] INFO - Information: 0 : 2020-07-14 20:58:03,909 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,909 [19] INFO - Information: 0 : 2020-07-14 20:58:03,909 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,910 [19] INFO - Information: 0 : 2020-07-14 20:58:03,910 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,911 [19] INFO - Information: 0 : 2020-07-14 20:58:03,911 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,911 [19] INFO - Information: 0 : 2020-07-14 20:58:03,911 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,914 [19] INFO - Information: 0 : 2020-07-14 20:58:03,914 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,915 [19] INFO - Information: 0 : 2020-07-14 20:58:03,916 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,916 [19] INFO - Information: 0 : 2020-07-14 20:58:03,916 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,917 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,917 [19] INFO - Information: 0 : 2020-07-14 20:58:03,917 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,917 [19] INFO - --------- 2020-07-14 20:58:03,917 [19] INFO - Information: 0 : 2020-07-14 20:58:03,917 [19] INFO - --------- 2020-07-14 20:58:03,917 [19] INFO - function SE637303570839174535() {} SE637303570839174535.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839174535().executeScript(); 2020-07-14 20:58:03,917 [19] INFO - Information: 0 : 2020-07-14 20:58:03,917 [19] INFO - function SE637303570839174535() {} SE637303570839174535.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839174535().executeScript(); 2020-07-14 20:58:03,918 [19] INFO - --------- 2020-07-14 20:58:03,918 [19] INFO - Information: 0 : 2020-07-14 20:58:03,918 [19] INFO - --------- 2020-07-14 20:58:03,918 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,919 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,919 [19] INFO - Information: 0 : 2020-07-14 20:58:03,919 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,919 [19] INFO - --------- 2020-07-14 20:58:03,920 [19] INFO - Information: 0 : 2020-07-14 20:58:03,920 [19] INFO - --------- 2020-07-14 20:58:03,920 [19] INFO - function SE637303570839194536() {} SE637303570839194536.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839194536().executeScript(); 2020-07-14 20:58:03,920 [19] INFO - Information: 0 : 2020-07-14 20:58:03,920 [19] INFO - function SE637303570839194536() {} SE637303570839194536.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839194536().executeScript(); 2020-07-14 20:58:03,920 [19] INFO - --------- 2020-07-14 20:58:03,920 [19] INFO - Information: 0 : 2020-07-14 20:58:03,920 [19] INFO - --------- 2020-07-14 20:58:03,925 [19] INFO - Information: 0 : 2020-07-14 20:58:03,925 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,927 [19] INFO - Information: 0 : 2020-07-14 20:58:03,927 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,927 [19] INFO - Information: 0 : 2020-07-14 20:58:03,927 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,929 [19] INFO - Information: 0 : 2020-07-14 20:58:03,930 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,931 [19] INFO - Information: 0 : 2020-07-14 20:58:03,931 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,931 [19] INFO - Information: 0 : 2020-07-14 20:58:03,931 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,932 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,932 [19] INFO - Information: 0 : 2020-07-14 20:58:03,932 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,932 [19] INFO - --------- 2020-07-14 20:58:03,932 [19] INFO - Information: 0 : 2020-07-14 20:58:03,932 [19] INFO - --------- 2020-07-14 20:58:03,932 [19] INFO - function SE637303570839194536() {} SE637303570839194536.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839194536().executeScript(); 2020-07-14 20:58:03,933 [19] INFO - Information: 0 : 2020-07-14 20:58:03,933 [19] INFO - function SE637303570839194536() {} SE637303570839194536.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839194536().executeScript(); 2020-07-14 20:58:03,933 [19] INFO - --------- 2020-07-14 20:58:03,933 [19] INFO - Information: 0 : 2020-07-14 20:58:03,933 [19] INFO - --------- 2020-07-14 20:58:03,933 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1913. 2020-07-14 20:58:03,933 [19] INFO - Information: 0 : 2020-07-14 20:58:03,933 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1913. 2020-07-14 20:58:03,933 [19] INFO - --------- 2020-07-14 20:58:03,934 [19] INFO - Information: 0 : 2020-07-14 20:58:03,934 [19] INFO - --------- 2020-07-14 20:58:03,934 [19] INFO - [system.partial] „article-begin.html“ 14 ms „“ 2020-07-14 20:58:03,934 [19] INFO - Information: 0 : 2020-07-14 20:58:03,934 [19] INFO - [system.partial] „article-begin.html“ 14 ms „“ 2020-07-14 20:58:03,934 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,934 [19] INFO - Information: 0 : 2020-07-14 20:58:03,935 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,935 [19] INFO - --------- 2020-07-14 20:58:03,935 [19] INFO - Information: 0 : 2020-07-14 20:58:03,935 [19] INFO - --------- 2020-07-14 20:58:03,935 [19] INFO - function SE637303570839344544() {} SE637303570839344544.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839344544().executeScript(); 2020-07-14 20:58:03,935 [19] INFO - Information: 0 : 2020-07-14 20:58:03,935 [19] INFO - function SE637303570839344544() {} SE637303570839344544.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839344544().executeScript(); 2020-07-14 20:58:03,935 [19] INFO - --------- 2020-07-14 20:58:03,935 [19] INFO - Information: 0 : 2020-07-14 20:58:03,936 [19] INFO - --------- 2020-07-14 20:58:03,940 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,940 [19] INFO - Information: 0 : 2020-07-14 20:58:03,940 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,940 [19] INFO - --------- 2020-07-14 20:58:03,940 [19] INFO - Information: 0 : 2020-07-14 20:58:03,940 [19] INFO - --------- 2020-07-14 20:58:03,940 [19] INFO - function SE637303570839344544() {} SE637303570839344544.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839344544().executeScript(); 2020-07-14 20:58:03,941 [19] INFO - Information: 0 : 2020-07-14 20:58:03,941 [19] INFO - function SE637303570839344544() {} SE637303570839344544.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839344544().executeScript(); 2020-07-14 20:58:03,941 [19] INFO - --------- 2020-07-14 20:58:03,941 [19] INFO - Information: 0 : 2020-07-14 20:58:03,941 [19] INFO - --------- 2020-07-14 20:58:03,941 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1914. 2020-07-14 20:58:03,941 [19] INFO - Information: 0 : 2020-07-14 20:58:03,941 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1914. 2020-07-14 20:58:03,941 [19] INFO - --------- 2020-07-14 20:58:03,942 [19] INFO - Information: 0 : 2020-07-14 20:58:03,942 [19] INFO - --------- 2020-07-14 20:58:03,942 [19] INFO - [system.partial] „article-headline.html“ 7 ms „“ 2020-07-14 20:58:03,942 [19] INFO - Information: 0 : 2020-07-14 20:58:03,942 [19] INFO - [system.partial] „article-headline.html“ 7 ms „“ 2020-07-14 20:58:03,942 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,942 [19] INFO - Information: 0 : 2020-07-14 20:58:03,942 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,942 [19] INFO - --------- 2020-07-14 20:58:03,943 [19] INFO - Information: 0 : 2020-07-14 20:58:03,943 [19] INFO - --------- 2020-07-14 20:58:03,943 [19] INFO - function SE637303570839424549() {} SE637303570839424549.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839424549().executeScript(); 2020-07-14 20:58:03,943 [19] INFO - Information: 0 : 2020-07-14 20:58:03,943 [19] INFO - function SE637303570839424549() {} SE637303570839424549.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839424549().executeScript(); 2020-07-14 20:58:03,943 [19] INFO - --------- 2020-07-14 20:58:03,944 [19] INFO - Information: 0 : 2020-07-14 20:58:03,944 [19] INFO - --------- 2020-07-14 20:58:03,946 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,946 [19] INFO - Information: 0 : 2020-07-14 20:58:03,947 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,947 [19] INFO - --------- 2020-07-14 20:58:03,947 [19] INFO - Information: 0 : 2020-07-14 20:58:03,947 [19] INFO - --------- 2020-07-14 20:58:03,947 [19] INFO - function SE637303570839424549() {} SE637303570839424549.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. var fieldName = context.param(0, "text"); context.write("\r\n"); if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-start.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839424549().executeScript(); 2020-07-14 20:58:03,947 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:03,947 [19] INFO - --------- 2020-07-14 20:58:03,947 [19] INFO - Information: 0 : 2020-07-14 20:58:03,947 [19] INFO - --------- 2020-07-14 20:58:03,948 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1915. 2020-07-14 20:58:03,948 [19] INFO - Information: 0 : 2020-07-14 20:58:03,948 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1915. 2020-07-14 20:58:03,948 [19] INFO - --------- 2020-07-14 20:58:03,948 [19] INFO - Information: 0 : 2020-07-14 20:58:03,948 [19] INFO - --------- 2020-07-14 20:58:03,948 [19] INFO - [system.partial] „inline-editor-start.html“ 6 ms „“ 2020-07-14 20:58:03,948 [19] INFO - Information: 0 : 2020-07-14 20:58:03,948 [19] INFO - [system.partial] „inline-editor-start.html“ 6 ms „“ 2020-07-14 20:58:03,949 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,949 [19] INFO - Information: 0 : 2020-07-14 20:58:03,949 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,949 [19] INFO - --------- 2020-07-14 20:58:03,949 [19] INFO - Information: 0 : 2020-07-14 20:58:03,949 [19] INFO - --------- 2020-07-14 20:58:03,949 [19] INFO - function SE637303570839494553() {} SE637303570839494553.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839494553().executeScript(); 2020-07-14 20:58:03,949 [19] INFO - Information: 0 : 2020-07-14 20:58:03,949 [19] INFO - function SE637303570839494553() {} SE637303570839494553.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839494553().executeScript(); 2020-07-14 20:58:03,950 [19] INFO - --------- 2020-07-14 20:58:03,950 [19] INFO - Information: 0 : 2020-07-14 20:58:03,950 [19] INFO - --------- 2020-07-14 20:58:03,951 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,951 [19] INFO - Information: 0 : 2020-07-14 20:58:03,951 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,951 [19] INFO - --------- 2020-07-14 20:58:03,951 [19] INFO - Information: 0 : 2020-07-14 20:58:03,951 [19] INFO - --------- 2020-07-14 20:58:03,951 [19] INFO - function SE637303570839494553() {} SE637303570839494553.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839494553().executeScript(); 2020-07-14 20:58:03,951 [19] INFO - Information: 0 : 2020-07-14 20:58:03,951 [19] INFO - function SE637303570839494553() {} SE637303570839494553.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. if ( !isNull(article) ) { context.write("\r\n\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editor-end.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839494553().executeScript(); 2020-07-14 20:58:03,952 [19] INFO - --------- 2020-07-14 20:58:03,952 [19] INFO - Information: 0 : 2020-07-14 20:58:03,952 [19] INFO - --------- 2020-07-14 20:58:03,952 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1916. 2020-07-14 20:58:03,952 [19] INFO - Information: 0 : 2020-07-14 20:58:03,952 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1916. 2020-07-14 20:58:03,952 [19] INFO - --------- 2020-07-14 20:58:03,952 [19] INFO - Information: 0 : 2020-07-14 20:58:03,952 [19] INFO - --------- 2020-07-14 20:58:03,952 [19] INFO - [system.partial] „inline-editor-end.html“ 3 ms „“ 2020-07-14 20:58:03,953 [19] INFO - Information: 0 : 2020-07-14 20:58:03,953 [19] INFO - [system.partial] „inline-editor-end.html“ 3 ms „“ 2020-07-14 20:58:03,953 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,953 [19] INFO - Information: 0 : 2020-07-14 20:58:03,953 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:03,953 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,953 [19] INFO - Information: 0 : 2020-07-14 20:58:03,953 [19] INFO - Finished executing the following script: 2020-07-14 20:58:03,953 [19] INFO - --------- 2020-07-14 20:58:03,954 [19] INFO - Information: 0 : 2020-07-14 20:58:03,954 [19] INFO - --------- 2020-07-14 20:58:03,954 [19] INFO - function SE637303570839174535() {} SE637303570839174535.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839174535().executeScript(); 2020-07-14 20:58:03,954 [19] INFO - Information: 0 : 2020-07-14 20:58:03,954 [19] INFO - function SE637303570839174535() {} SE637303570839174535.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839174535().executeScript(); 2020-07-14 20:58:03,954 [19] INFO - --------- 2020-07-14 20:58:03,954 [19] INFO - Information: 0 : 2020-07-14 20:58:03,954 [19] INFO - --------- 2020-07-14 20:58:03,954 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1917. 2020-07-14 20:58:03,954 [19] INFO - Information: 0 : 2020-07-14 20:58:03,955 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1917. 2020-07-14 20:58:03,955 [19] INFO - --------- 2020-07-14 20:58:03,955 [19] INFO - Information: 0 : 2020-07-14 20:58:03,955 [19] INFO - --------- 2020-07-14 20:58:03,956 [19] INFO - Information: 0 : 2020-07-14 20:58:03,956 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,958 [19] INFO - Information: 0 : 2020-07-14 20:58:03,958 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,959 [19] INFO - Information: 0 : 2020-07-14 20:58:03,959 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,959 [19] INFO - Information: 0 : 2020-07-14 20:58:03,959 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,961 [19] INFO - Information: 0 : 2020-07-14 20:58:03,961 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,962 [19] INFO - Information: 0 : 2020-07-14 20:58:03,962 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,963 [19] INFO - Information: 0 : 2020-07-14 20:58:03,964 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,965 [19] INFO - Information: 0 : 2020-07-14 20:58:03,966 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,966 [19] INFO - Information: 0 : 2020-07-14 20:58:03,966 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,968 [19] INFO - Information: 0 : 2020-07-14 20:58:03,968 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,970 [19] INFO - Information: 0 : 2020-07-14 20:58:03,970 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,971 [19] INFO - Information: 0 : 2020-07-14 20:58:03,971 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,972 [19] INFO - Information: 0 : 2020-07-14 20:58:03,972 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,974 [19] INFO - Information: 0 : 2020-07-14 20:58:03,974 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,974 [19] INFO - Information: 0 : 2020-07-14 20:58:03,974 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,975 [19] INFO - Information: 0 : 2020-07-14 20:58:03,975 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,976 [19] INFO - Information: 0 : 2020-07-14 20:58:03,976 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,976 [19] INFO - Information: 0 : 2020-07-14 20:58:03,976 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,979 [19] INFO - Information: 0 : 2020-07-14 20:58:03,979 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,981 [19] INFO - Information: 0 : 2020-07-14 20:58:03,981 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,981 [19] INFO - Information: 0 : 2020-07-14 20:58:03,981 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,983 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,983 [19] INFO - Information: 0 : 2020-07-14 20:58:03,983 [19] INFO - About to execute the following script: 2020-07-14 20:58:03,983 [19] INFO - --------- 2020-07-14 20:58:03,983 [19] INFO - Information: 0 : 2020-07-14 20:58:03,983 [19] INFO - --------- 2020-07-14 20:58:03,984 [19] INFO - function SE637303570839834573() {} SE637303570839834573.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839834573().executeScript(); 2020-07-14 20:58:03,984 [19] INFO - Information: 0 : 2020-07-14 20:58:03,984 [19] INFO - function SE637303570839834573() {} SE637303570839834573.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839834573().executeScript(); 2020-07-14 20:58:03,985 [19] INFO - --------- 2020-07-14 20:58:03,985 [19] INFO - Information: 0 : 2020-07-14 20:58:03,985 [19] INFO - --------- 2020-07-14 20:58:03,987 [19] INFO - Information: 0 : 2020-07-14 20:58:03,988 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,992 [19] INFO - Information: 0 : 2020-07-14 20:58:03,992 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,993 [19] INFO - Information: 0 : 2020-07-14 20:58:03,993 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,993 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 1187 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:03,994 [19] INFO - Information: 0 : 2020-07-14 20:58:03,994 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:03,996 [19] INFO - Information: 0 : 2020-07-14 20:58:03,996 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,996 [19] INFO - Information: 0 : 2020-07-14 20:58:03,996 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:03,996 [19] INFO - Entering 'ensureContentCopy' for image 423, article 1436, size 890. 2020-07-14 20:58:03,997 [19] INFO - Called 'createContentCopy' scripting function with article ID = 1436, image ID = 423, maxWidthInPixel = 890. 2020-07-14 20:58:03,997 [19] INFO - 'createContentCopy': NO content copy created (Never create content copy for preview.). 2020-07-14 20:58:03,997 [19] INFO - Leaving 'ensureContentCopy' for image 423, article 1436, size „890“, reason = not created (Never create content copy for preview.) 2020-07-14 20:58:04,008 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:04,010 [19] INFO - [GetImageSizeInPixel - B2] getting image size 2048x2731 for working copy image „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\923304e980634f9fb6658a0524220f00.jpg“ live from file. 2020-07-14 20:58:04,010 [19] INFO - Returning live-calculated image size for image with ID 423, file version „ContentCopy“ of 2048×2731 pixels. 2020-07-14 20:58:04,010 [19] INFO - Returning cached image size for image with ID 423, file version „ContentCopy“ of 2048×2731 pixels. 2020-07-14 20:58:04,012 [19] INFO - About to execute the following script: 2020-07-14 20:58:04,012 [19] INFO - Information: 0 : 2020-07-14 20:58:04,012 [19] INFO - About to execute the following script: 2020-07-14 20:58:04,012 [19] INFO - --------- 2020-07-14 20:58:04,012 [19] INFO - Information: 0 : 2020-07-14 20:58:04,012 [19] INFO - --------- 2020-07-14 20:58:04,012 [19] INFO - function SE637303570840124589() {} SE637303570840124589.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570840124589().executeScript(); 2020-07-14 20:58:04,013 [19] INFO - Information: 0 : 2020-07-14 20:58:04,013 [19] INFO - function SE637303570840124589() {} SE637303570840124589.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570840124589().executeScript(); 2020-07-14 20:58:04,013 [19] INFO - --------- 2020-07-14 20:58:04,013 [19] INFO - Information: 0 : 2020-07-14 20:58:04,013 [19] INFO - --------- 2020-07-14 20:58:04,017 [19] INFO - Information: 0 : 2020-07-14 20:58:04,017 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,020 [19] INFO - Information: 0 : 2020-07-14 20:58:04,020 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,021 [19] INFO - Information: 0 : 2020-07-14 20:58:04,021 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,022 [19] INFO - Finished executing the following script: 2020-07-14 20:58:04,022 [19] INFO - Information: 0 : 2020-07-14 20:58:04,022 [19] INFO - Finished executing the following script: 2020-07-14 20:58:04,022 [19] INFO - --------- 2020-07-14 20:58:04,022 [19] INFO - Information: 0 : 2020-07-14 20:58:04,022 [19] INFO - --------- 2020-07-14 20:58:04,022 [19] INFO - function SE637303570840124589() {} SE637303570840124589.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570840124589().executeScript(); 2020-07-14 20:58:04,022 [19] INFO - Information: 0 : 2020-07-14 20:58:04,023 [19] INFO - function SE637303570840124589() {} SE637303570840124589.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570840124589().executeScript(); 2020-07-14 20:58:04,023 [19] INFO - --------- 2020-07-14 20:58:04,023 [19] INFO - Information: 0 : 2020-07-14 20:58:04,023 [19] INFO - --------- 2020-07-14 20:58:04,023 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1918. 2020-07-14 20:58:04,023 [19] INFO - Information: 0 : 2020-07-14 20:58:04,023 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1918. 2020-07-14 20:58:04,023 [19] INFO - --------- 2020-07-14 20:58:04,023 [19] INFO - Information: 0 : 2020-07-14 20:58:04,023 [19] INFO - --------- 2020-07-14 20:58:04,024 [19] INFO - [system.partial] „article-begin.html“ 12 ms „[0, popupimage]“ 2020-07-14 20:58:04,024 [19] INFO - Information: 0 : 2020-07-14 20:58:04,024 [19] INFO - [system.partial] „article-begin.html“ 12 ms „[0, popupimage]“ 2020-07-14 20:58:04,025 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:04,026 [19] INFO - Information: 0 : 2020-07-14 20:58:04,026 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:04,026 [19] INFO - Finished executing the following script: 2020-07-14 20:58:04,026 [19] INFO - Information: 0 : 2020-07-14 20:58:04,026 [19] INFO - Finished executing the following script: 2020-07-14 20:58:04,026 [19] INFO - --------- 2020-07-14 20:58:04,026 [19] INFO - Information: 0 : 2020-07-14 20:58:04,026 [19] INFO - --------- 2020-07-14 20:58:04,026 [19] INFO - function SE637303570839834573() {} SE637303570839834573.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839834573().executeScript(); 2020-07-14 20:58:04,027 [19] INFO - Information: 0 : 2020-07-14 20:58:04,027 [19] INFO - function SE637303570839834573() {} SE637303570839834573.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570839834573().executeScript(); 2020-07-14 20:58:04,028 [19] INFO - --------- 2020-07-14 20:58:04,028 [19] INFO - Information: 0 : 2020-07-14 20:58:04,028 [19] INFO - --------- 2020-07-14 20:58:04,028 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1919. 2020-07-14 20:58:04,028 [19] INFO - Information: 0 : 2020-07-14 20:58:04,028 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1919. 2020-07-14 20:58:04,028 [19] INFO - --------- 2020-07-14 20:58:04,028 [19] INFO - Information: 0 : 2020-07-14 20:58:04,028 [19] INFO - --------- 2020-07-14 20:58:04,029 [19] INFO - Information: 0 : 2020-07-14 20:58:04,029 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,031 [19] INFO - Information: 0 : 2020-07-14 20:58:04,032 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,032 [19] INFO - Information: 0 : 2020-07-14 20:58:04,032 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,035 [19] INFO - Information: 0 : 2020-07-14 20:58:04,035 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,037 [19] INFO - Information: 0 : 2020-07-14 20:58:04,037 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,037 [19] INFO - Information: 0 : 2020-07-14 20:58:04,037 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,038 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:04,038 [19] INFO - About to execute the following script: 2020-07-14 20:58:04,039 [19] INFO - Information: 0 : 2020-07-14 20:58:04,039 [19] INFO - About to execute the following script: 2020-07-14 20:58:04,039 [19] INFO - --------- 2020-07-14 20:58:04,039 [19] INFO - Information: 0 : 2020-07-14 20:58:04,039 [19] INFO - --------- 2020-07-14 20:58:04,039 [19] INFO - function SE637303570840384604() {} SE637303570840384604.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570840384604().executeScript(); 2020-07-14 20:58:04,040 [19] INFO - Information: 0 : 2020-07-14 20:58:04,040 [19] INFO - function SE637303570840384604() {} SE637303570840384604.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570840384604().executeScript(); 2020-07-14 20:58:04,040 [19] INFO - --------- 2020-07-14 20:58:04,040 [19] INFO - Information: 0 : 2020-07-14 20:58:04,040 [19] INFO - --------- 2020-07-14 20:58:04,043 [19] INFO - Information: 0 : 2020-07-14 20:58:04,043 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,046 [19] INFO - Information: 0 : 2020-07-14 20:58:04,046 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,046 [19] INFO - Information: 0 : 2020-07-14 20:58:04,046 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,047 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 1187 pixels for output flavor „Output“. Laden von Bild-Asset. 2020-07-14 20:58:04,047 [19] INFO - Information: 0 : 2020-07-14 20:58:04,047 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,048 [19] INFO - Information: 0 : 2020-07-14 20:58:04,049 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,049 [19] INFO - Information: 0 : 2020-07-14 20:58:04,049 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,049 [19] INFO - Entering 'ensureContentCopy' for image 424, article 1437, size 890. 2020-07-14 20:58:04,049 [19] INFO - Called 'createContentCopy' scripting function with article ID = 1437, image ID = 424, maxWidthInPixel = 890. 2020-07-14 20:58:04,050 [19] INFO - 'createContentCopy': NO content copy created (Never create content copy for preview.). 2020-07-14 20:58:04,050 [19] INFO - Leaving 'ensureContentCopy' for image 424, article 1437, size „890“, reason = not created (Never create content copy for preview.) 2020-07-14 20:58:04,059 [19] INFO - [GetImageSizeInPixel - B2] getting image size 2048x2731 for working copy image „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\1fcda670765f4e099b1272092ec8685c.jpg“ live from file. 2020-07-14 20:58:04,059 [19] INFO - Returning live-calculated image size for image with ID 424, file version „ContentCopy“ of 2048×2731 pixels. 2020-07-14 20:58:04,059 [19] INFO - Returning cached image size for image with ID 424, file version „ContentCopy“ of 2048×2731 pixels. 2020-07-14 20:58:04,061 [19] INFO - About to execute the following script: 2020-07-14 20:58:04,061 [19] INFO - Information: 0 : 2020-07-14 20:58:04,061 [19] INFO - About to execute the following script: 2020-07-14 20:58:04,061 [19] INFO - --------- 2020-07-14 20:58:04,061 [19] INFO - Information: 0 : 2020-07-14 20:58:04,061 [19] INFO - --------- 2020-07-14 20:58:04,062 [19] INFO - function SE637303570840614617() {} SE637303570840614617.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570840614617().executeScript(); 2020-07-14 20:58:04,062 [19] INFO - Information: 0 : 2020-07-14 20:58:04,062 [19] INFO - function SE637303570840614617() {} SE637303570840614617.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570840614617().executeScript(); 2020-07-14 20:58:04,062 [19] INFO - --------- 2020-07-14 20:58:04,062 [19] INFO - Information: 0 : 2020-07-14 20:58:04,062 [19] INFO - --------- 2020-07-14 20:58:04,067 [19] INFO - Information: 0 : 2020-07-14 20:58:04,067 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,070 [19] INFO - Information: 0 : 2020-07-14 20:58:04,070 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,070 [19] INFO - Information: 0 : 2020-07-14 20:58:04,070 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,071 [19] INFO - Finished executing the following script: 2020-07-14 20:58:04,071 [19] INFO - Information: 0 : 2020-07-14 20:58:04,071 [19] INFO - Finished executing the following script: 2020-07-14 20:58:04,071 [19] INFO - --------- 2020-07-14 20:58:04,071 [19] INFO - Information: 0 : 2020-07-14 20:58:04,071 [19] INFO - --------- 2020-07-14 20:58:04,072 [19] INFO - function SE637303570840614617() {} SE637303570840614617.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570840614617().executeScript(); 2020-07-14 20:58:04,072 [19] INFO - Information: 0 : 2020-07-14 20:58:04,072 [19] INFO - function SE637303570840614617() {} SE637303570840614617.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570840614617().executeScript(); 2020-07-14 20:58:04,072 [19] INFO - --------- 2020-07-14 20:58:04,072 [19] INFO - Information: 0 : 2020-07-14 20:58:04,073 [19] INFO - --------- 2020-07-14 20:58:04,073 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1920. 2020-07-14 20:58:04,073 [19] INFO - Information: 0 : 2020-07-14 20:58:04,073 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1920. 2020-07-14 20:58:04,073 [19] INFO - --------- 2020-07-14 20:58:04,073 [19] INFO - Information: 0 : 2020-07-14 20:58:04,073 [19] INFO - --------- 2020-07-14 20:58:04,073 [19] INFO - [system.partial] „article-begin.html“ 12 ms „[0, popupimage]“ 2020-07-14 20:58:04,073 [19] INFO - Information: 0 : 2020-07-14 20:58:04,073 [19] INFO - [system.partial] „article-begin.html“ 12 ms „[0, popupimage]“ 2020-07-14 20:58:04,075 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:04,075 [19] INFO - Information: 0 : 2020-07-14 20:58:04,075 [19] INFO - [system.partial] „article-end.html“ 0 ms „“ 2020-07-14 20:58:04,075 [19] INFO - Finished executing the following script: 2020-07-14 20:58:04,076 [19] INFO - Information: 0 : 2020-07-14 20:58:04,076 [19] INFO - Finished executing the following script: 2020-07-14 20:58:04,076 [19] INFO - --------- 2020-07-14 20:58:04,076 [19] INFO - Information: 0 : 2020-07-14 20:58:04,076 [19] INFO - --------- 2020-07-14 20:58:04,076 [19] INFO - function SE637303570840384604() {} SE637303570840384604.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570840384604().executeScript(); 2020-07-14 20:58:04,077 [19] INFO - Information: 0 : 2020-07-14 20:58:04,077 [19] INFO - function SE637303570840384604() {} SE637303570840384604.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. var image = project.getImage(article.value("image")); var contentImageWidth = "890"; var defaultImageWidth = 960; var cssClass = article.cssClass || ""; var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false; // Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen. contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth; var gridCols = article.column.cssClass; if ( gridCols ){ gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", "")); } else{ gridCols = 12; } var columnMargin = 30; var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols; // minimum width needed for 100% width display on 1-column breakpoint var minwidth = parseInt(479 - columnMargin); var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth; if ( minwidth > contentCopyWidth ){ contentCopyWidth = minwidth; } //system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")"); var imageError = false; if ( !isNull(image) ) { if ( isBreakout ){ contentCopyWidth = image.workingCopyWidth; } try { var iresult = image.ensureContentCopy(article, contentCopyWidth); var thumbImageWidth = image.contentCopyWidth; var thumbImageHeight = image.contentCopyHeight; var description = image.description; var altText = system.htmlEncode(system.removeHtmlTags(image.altText)); var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", ""))); if ( altText == "" && oldAltText !== "" ){ altText = oldAltText; } var encodedDescription = system.htmlEncode(image.description); var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description)); // strip

    -Tags from description as

    is not valid inside SPAN description = description.toString().replace(/

    /g,""); description = description.toString().replace(/<\/p>/g,"
    "); //system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult); } catch(err) { imageError = true; } } if ( stripDescription !== "" ) { var showCaption = "1"; } else { var showCaption = "0"; } var lightBox = article.value("lightbox", "lightbox"); var clickURL = article.value("clickurl"); var effect = article.value("effect", "none"); var effectClass = ""; switch ( effect ) { case "hoverzoom": effectClass = " zpeffect zphoverscale"; break; default: effectClass = ""; } context.write("\r\n\r\n"); if ( isNull(image) || imageError ) { context.write("\r\n\t"); if ( system.preview ) { context.write("\r\n\t\t

    \r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t

    \r\n\t\t
    \r\n\t"); } context.write("\r\n"); } else { context.write("\r\n\t"); if ( lightBox == "zoom" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t
    \r\n\t\t\t
    \r\n\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t\t"); } context.write("\r\n\t\t\t
    \r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t\r\n\t\t\t
    \r\n\t\t"); context.write( system.partial("article-end.html") ); context.write(" \r\n\t"); } else if ( lightBox == true || lightBox == "lightbox" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html", "popupimage") ); context.write("\r\n\t\t\t\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else if ( lightBox == "off" ) { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\r\n\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } else { context.write("\r\n\t\t"); context.write( system.partial("article-begin.html") ); context.write("\r\n\t\t\t"); if ( clickURL !== "" ) { context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t"); if ( image.isSvgImage ){ context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else if ( image.isAnimatedGif ) { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } else { context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t"); } context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t"); } else { context.write("\r\n\t\t\t\t\r\n\t\t\t"); } context.write("\r\n\r\n\t\t\t"); if ( showCaption == "1" && description ) { context.write("\r\n\t\t\t\t"); context.write( description ); context.write("\r\n\t\t\t"); } context.write("\r\n\t\t"); context.write( system.partial("article-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570840384604().executeScript(); 2020-07-14 20:58:04,077 [19] INFO - --------- 2020-07-14 20:58:04,077 [19] INFO - Information: 0 : 2020-07-14 20:58:04,077 [19] INFO - --------- 2020-07-14 20:58:04,077 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1921. 2020-07-14 20:58:04,077 [19] INFO - Information: 0 : 2020-07-14 20:58:04,078 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1921. 2020-07-14 20:58:04,078 [19] INFO - --------- 2020-07-14 20:58:04,078 [19] INFO - Information: 0 : 2020-07-14 20:58:04,078 [19] INFO - --------- 2020-07-14 20:58:04,078 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:04,079 [19] INFO - Information: 0 : 2020-07-14 20:58:04,079 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,081 [19] INFO - Information: 0 : 2020-07-14 20:58:04,081 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,082 [19] INFO - Information: 0 : 2020-07-14 20:58:04,082 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,082 [19] INFO - Information: 0 : 2020-07-14 20:58:04,082 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,084 [19] INFO - Information: 0 : 2020-07-14 20:58:04,084 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,085 [19] INFO - Information: 0 : 2020-07-14 20:58:04,085 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,086 [19] INFO - Information: 0 : 2020-07-14 20:58:04,086 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,087 [19] INFO - Information: 0 : 2020-07-14 20:58:04,087 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,087 [19] INFO - Information: 0 : 2020-07-14 20:58:04,087 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,089 [19] INFO - Information: 0 : 2020-07-14 20:58:04,090 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,091 [19] INFO - Information: 0 : 2020-07-14 20:58:04,091 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,091 [19] INFO - Information: 0 : 2020-07-14 20:58:04,091 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,092 [19] INFO - Information: 0 : 2020-07-14 20:58:04,092 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,096 [19] INFO - Information: 0 : 2020-07-14 20:58:04,096 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,096 [19] INFO - Information: 0 : 2020-07-14 20:58:04,096 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,096 [19] INFO - Information: 0 : 2020-07-14 20:58:04,097 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,098 [19] INFO - Information: 0 : 2020-07-14 20:58:04,098 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,098 [19] INFO - Information: 0 : 2020-07-14 20:58:04,098 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,101 [19] INFO - Information: 0 : 2020-07-14 20:58:04,101 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,103 [19] INFO - Information: 0 : 2020-07-14 20:58:04,103 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,103 [19] INFO - Information: 0 : 2020-07-14 20:58:04,103 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,104 [19] INFO - About to execute the following script: 2020-07-14 20:58:04,104 [19] INFO - Information: 0 : 2020-07-14 20:58:04,104 [19] INFO - About to execute the following script: 2020-07-14 20:58:04,104 [19] INFO - --------- 2020-07-14 20:58:04,104 [19] INFO - Information: 0 : 2020-07-14 20:58:04,104 [19] INFO - --------- 2020-07-14 20:58:04,104 [19] INFO - function SE637303570841044642() {} SE637303570841044642.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570841044642().executeScript(); 2020-07-14 20:58:04,104 [19] INFO - Information: 0 : 2020-07-14 20:58:04,105 [19] INFO - function SE637303570841044642() {} SE637303570841044642.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write( system.partial("article-begin.html") ); context.write("\r\n\t"); if ( article.inArea("News") ) { context.write("\r\n\t\t
    \r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t
    "); context.write( article.value('Text') ); context.write("
    \r\n\t\t
    \r\n\t"); } else { context.write("\r\n\t\t\t"); context.write( system.partial("article-headline.html") ); context.write("\r\n\t\t\t"); context.write( system.partial("inline-editor-start.html") ); context.write( article.value('Text') ); context.write( system.partial("inline-editor-end.html") ); context.write("\r\n\t"); } context.write("\r\n"); context.write( system.partial("article-end.html") ); context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570841044642().executeScript(); 2020-07-14 20:58:04,105 [19] INFO - --------- 2020-07-14 20:58:04,105 [19] INFO - Information: 0 : 2020-07-14 20:58:04,105 [19] INFO - --------- 2020-07-14 20:58:04,106 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“. 2020-07-14 20:58:04,106 [19] INFO - About to execute the following script: 2020-07-14 20:58:04,106 [19] INFO - Information: 0 : 2020-07-14 20:58:04,106 [19] INFO - About to execute the following script: 2020-07-14 20:58:04,107 [19] INFO - --------- 2020-07-14 20:58:04,107 [19] INFO - Information: 0 : 2020-07-14 20:58:04,107 [19] INFO - --------- 2020-07-14 20:58:04,107 [19] INFO - function SE637303570841064643() {} SE637303570841064643.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570841064643().executeScript(); 2020-07-14 20:58:04,107 [19] INFO - Information: 0 : 2020-07-14 20:58:04,107 [19] INFO - function SE637303570841064643() {} SE637303570841064643.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570841064643().executeScript(); 2020-07-14 20:58:04,107 [19] INFO - --------- 2020-07-14 20:58:04,107 [19] INFO - Information: 0 : 2020-07-14 20:58:04,108 [19] INFO - --------- 2020-07-14 20:58:04,112 [19] INFO - Information: 0 : 2020-07-14 20:58:04,112 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,114 [19] INFO - Information: 0 : 2020-07-14 20:58:04,114 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,114 [19] INFO - Information: 0 : 2020-07-14 20:58:04,115 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,115 [19] INFO - Information: 0 : 2020-07-14 20:58:04,115 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 (''). 2020-07-14 20:58:04,116 [19] INFO - Information: 0 : 2020-07-14 20:58:04,117 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,117 [19] INFO - Information: 0 : 2020-07-14 20:58:04,117 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 (''). 2020-07-14 20:58:04,117 [19] INFO - Finished executing the following script: 2020-07-14 20:58:04,117 [19] INFO - Information: 0 : 2020-07-14 20:58:04,118 [19] INFO - Finished executing the following script: 2020-07-14 20:58:04,118 [19] INFO - --------- 2020-07-14 20:58:04,118 [19] INFO - Information: 0 : 2020-07-14 20:58:04,118 [19] INFO - --------- 2020-07-14 20:58:04,118 [19] INFO - function SE637303570841064643() {} SE637303570841064643.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570841064643().executeScript(); 2020-07-14 20:58:04,118 [19] INFO - Information: 0 : 2020-07-14 20:58:04,118 [19] INFO - function SE637303570841064643() {} SE637303570841064643.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. var additionalClass = context.param(0, ""); var articleAreaInlineCSS = context.param(1, ""); // additional Inline CSS may be needed because columnItems have overflow hidden set and don't float etc. and we may want to override that for certain articles. var columnItemInlineCSS = context.param(2, ""); var showCssFields = context.param(3, true); var columnItemCSSClass = context.param(4, ""); var dataAttributes = context.param(5, ""); if ( columnItemCSSClass !== "" ){ columnItemCSSClass = " " + columnItemCSSClass; } var inlineCss = article.inlineCss || ""; var cssClass = article.cssClass || ""; if ( additionalClass !== "" ){ additionalClass = " " + additionalClass; } if ( showCssFields && cssClass ){ additionalClass = additionalClass + " " + cssClass; } if ( columnItemInlineCSS !== "" ){ columnItemInlineCSS = " style=\"" + columnItemInlineCSS + "\""; } if ( (showCssFields && inlineCss) || articleAreaInlineCSS ){ //inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; if ( showCssFields && inlineCss ){ inlineCss = ' style="' + inlineCss + ' ' + articleAreaInlineCSS + '"'; } else{ inlineCss = ' style="' + articleAreaInlineCSS + '"'; } } else{ inlineCss = ""; } function validClassName(theName){ var tmp = theName.toString().replace(/\s/g, "_"); // strip all non alphanumerics and make them dashes tmp = tmp.toString().replace(/[^a-z0-9\-_]+/gi, '-'); return tmp; } // so we do not have to define rules for all possible widgets, we unify text-based-widgets as "widget-text" unifiedTextWidgets = "alertbanner, artikeluebersicht, blogartikel, tabs, "; if ( unifiedTextWidgets.indexOf(article.widgetNameInternal + ", ") !== -1 ){ var myLeElement = "widget-text"; } else{ var myLeElement = "widget-" + article.widgetNameInternal; } context.write("\r\n
    \r\n\t
    \r\n"); context.write( dataAttributes ); context.write(" class=\"articlearea zpw"); context.write( validClassName(article.widgetName) ); context.write( additionalClass ); context.write("\""); context.write( inlineCss ); context.write(" "); if ( !isNull(article) ) { context.write("\r\n\t\r\n\t"); } context.write(">\r\n\t"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-begin.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570841064643().executeScript(); 2020-07-14 20:58:04,119 [19] INFO - --------- 2020-07-14 20:58:04,119 [19] INFO - Information: 0 : 2020-07-14 20:58:04,119 [19] INFO - --------- 2020-07-14 20:58:04,119 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1922. 2020-07-14 20:58:04,119 [19] INFO - Information: 0 : 2020-07-14 20:58:04,119 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1922. 2020-07-14 20:58:04,119 [19] INFO - --------- 2020-07-14 20:58:04,119 [19] INFO - Information: 0 : 2020-07-14 20:58:04,119 [19] INFO - --------- 2020-07-14 20:58:04,120 [19] INFO - [system.partial] „article-begin.html“ 13 ms „“ 2020-07-14 20:58:04,120 [19] INFO - Information: 0 : 2020-07-14 20:58:04,120 [19] INFO - [system.partial] „article-begin.html“ 13 ms „“ 2020-07-14 20:58:04,120 [19] INFO - About to execute the following script: 2020-07-14 20:58:04,120 [19] INFO - Information: 0 : 2020-07-14 20:58:04,120 [19] INFO - About to execute the following script: 2020-07-14 20:58:04,120 [19] INFO - --------- 2020-07-14 20:58:04,120 [19] INFO - Information: 0 : 2020-07-14 20:58:04,121 [19] INFO - --------- 2020-07-14 20:58:04,121 [19] INFO - function SE637303570841204651() {} SE637303570841204651.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570841204651().executeScript(); 2020-07-14 20:58:04,121 [19] INFO - Information: 0 : 2020-07-14 20:58:04,121 [19] INFO - function SE637303570841204651() {} SE637303570841204651.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. var fallbackColor = context.param(0, ""); var forceAlign = context.param(1, ""); var additionalAttributes = context.param(2, ""); var inlineStyle = ""; var inlineColor = ""; var articleAlign = ""; if ( article.headlineColor ){ inlineColor = "color: " + article.headlineColor + "; "; } else if ( fallbackColor ){ inlineColor = "color: " + fallbackColor + "; "; } if ( forceAlign !== "" ){ articleAlign = "text-align:" + forceAlign + ";"; } else if ( article.headlineAlign !== "" ){ articleAlign = "text-align:" + article.headlineAlign + ";"; } if ( inlineColor !== "" || articleAlign !== ""){ inlineStyle = 'style="' + inlineColor + articleAlign + '"'; } context.write("\r\n"); if ( article.headline != "" ) { context.write("\r\n\t<"); context.write( article.headlineLevel ); context.write(" \r\n\t\r\n\t"); context.write( additionalAttributes ); context.write(" "); context.write( inlineStyle ); context.write(" data-zpfieldname=\"headline\">"); context.write( article.headline ); context.write("\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\article-headline.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570841204651().executeScript(); ----------------------------------------