---------------------------------------- 2020-07-14 20:57:05,907 [19] INFO - --------- 2020-07-14 20:57:07,824 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 790. 2020-07-14 20:57:07,825 [19] INFO - --------- 2020-07-14 20:57:07,826 [19] INFO - Closing the script engine. 2020-07-14 20:57:07,826 [19] INFO - --------- 2020-07-14 20:57:07,826 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 790. 2020-07-14 20:57:07,827 [19] INFO - --------- 2020-07-14 20:57:07,880 [19] INFO - Script engine constructed. 2020-07-14 20:57:07,881 [19] INFO - Script engine initialized. 2020-07-14 20:57:07,881 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,882 [19] INFO - --------- 2020-07-14 20:57:07,882 [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:57:07,883 [19] INFO - --------- 2020-07-14 20:57:07,883 [19] INFO - Finished executing the following script: 2020-07-14 20:57:07,884 [19] INFO - --------- 2020-07-14 20:57:07,884 [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:57:07,885 [19] INFO - --------- 2020-07-14 20:57:07,885 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 791. 2020-07-14 20:57:07,885 [19] INFO - --------- 2020-07-14 20:57:07,886 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,886 [19] INFO - --------- 2020-07-14 20:57:07,887 [19] INFO - function SE637303570278802483() {} SE637303570278802483.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 SE637303570278802483().executeScript(); 2020-07-14 20:57:07,888 [19] INFO - --------- 2020-07-14 20:57:07,890 [19] INFO - Finished executing the following script: 2020-07-14 20:57:07,890 [19] INFO - --------- 2020-07-14 20:57:07,890 [19] INFO - function SE637303570278802483() {} SE637303570278802483.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 SE637303570278802483().executeScript(); 2020-07-14 20:57:07,891 [19] INFO - --------- 2020-07-14 20:57:07,891 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 792. 2020-07-14 20:57:07,891 [19] INFO - --------- 2020-07-14 20:57:07,892 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,893 [19] INFO - --------- 2020-07-14 20:57:07,893 [19] INFO - function SE637303570278922490() {} SE637303570278922490.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 SE637303570278922490().executeScript(); 2020-07-14 20:57:07,894 [19] INFO - --------- 2020-07-14 20:57:07,910 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,910 [19] INFO - --------- 2020-07-14 20:57:07,911 [19] INFO - function SE637303570279102500() {} SE637303570279102500.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 SE637303570279102500().executeScript(); 2020-07-14 20:57:07,911 [19] INFO - --------- 2020-07-14 20:57:07,912 [19] INFO - Finished executing the following script: 2020-07-14 20:57:07,913 [19] INFO - --------- 2020-07-14 20:57:07,913 [19] INFO - function SE637303570279102500() {} SE637303570279102500.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 SE637303570279102500().executeScript(); 2020-07-14 20:57:07,913 [19] INFO - --------- 2020-07-14 20:57:07,914 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 793. 2020-07-14 20:57:07,914 [19] INFO - --------- 2020-07-14 20:57:07,919 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,919 [19] INFO - --------- 2020-07-14 20:57:07,920 [19] INFO - function SE637303570279192506() {} SE637303570279192506.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 SE637303570279192506().executeScript(); 2020-07-14 20:57:07,920 [19] INFO - --------- 2020-07-14 20:57:07,921 [19] INFO - Finished executing the following script: 2020-07-14 20:57:07,922 [19] INFO - --------- 2020-07-14 20:57:07,922 [19] INFO - function SE637303570279192506() {} SE637303570279192506.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 SE637303570279192506().executeScript(); 2020-07-14 20:57:07,922 [19] INFO - --------- 2020-07-14 20:57:07,923 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 794. 2020-07-14 20:57:07,923 [19] INFO - --------- 2020-07-14 20:57:07,924 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,924 [19] INFO - --------- 2020-07-14 20:57:07,924 [19] INFO - function SE637303570279242508() {} SE637303570279242508.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 SE637303570279242508().executeScript(); 2020-07-14 20:57:07,925 [19] INFO - --------- 2020-07-14 20:57:07,926 [19] INFO - Finished executing the following script: 2020-07-14 20:57:07,926 [19] INFO - --------- 2020-07-14 20:57:07,926 [19] INFO - function SE637303570279242508() {} SE637303570279242508.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 SE637303570279242508().executeScript(); 2020-07-14 20:57:07,927 [19] INFO - --------- 2020-07-14 20:57:07,927 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 795. 2020-07-14 20:57:07,927 [19] INFO - --------- 2020-07-14 20:57:07,929 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,930 [19] INFO - --------- 2020-07-14 20:57:07,930 [19] INFO - function SE637303570279292511() {} SE637303570279292511.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 SE637303570279292511().executeScript(); 2020-07-14 20:57:07,930 [19] INFO - --------- 2020-07-14 20:57:07,932 [19] INFO - Finished executing the following script: 2020-07-14 20:57:07,932 [19] INFO - --------- 2020-07-14 20:57:07,932 [19] INFO - function SE637303570279292511() {} SE637303570279292511.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 SE637303570279292511().executeScript(); 2020-07-14 20:57:07,933 [19] INFO - --------- 2020-07-14 20:57:07,933 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 796. 2020-07-14 20:57:07,933 [19] INFO - --------- 2020-07-14 20:57:07,935 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,935 [19] INFO - --------- 2020-07-14 20:57:07,935 [19] INFO - function SE637303570279352515() {} SE637303570279352515.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 SE637303570279352515().executeScript(); 2020-07-14 20:57:07,936 [19] INFO - --------- 2020-07-14 20:57:07,938 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,939 [19] INFO - --------- 2020-07-14 20:57:07,939 [19] INFO - function SE637303570279382516() {} SE637303570279382516.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 SE637303570279382516().executeScript(); 2020-07-14 20:57:07,940 [19] INFO - --------- 2020-07-14 20:57:07,942 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,942 [19] INFO - --------- 2020-07-14 20:57:07,942 [19] INFO - function SE637303570279422519() {} SE637303570279422519.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 SE637303570279422519().executeScript(); 2020-07-14 20:57:07,943 [19] INFO - --------- 2020-07-14 20:57:07,946 [19] INFO - Finished executing the following script: 2020-07-14 20:57:07,946 [19] INFO - --------- 2020-07-14 20:57:07,946 [19] INFO - function SE637303570279422519() {} SE637303570279422519.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 SE637303570279422519().executeScript(); 2020-07-14 20:57:07,947 [19] INFO - --------- 2020-07-14 20:57:07,947 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 797. 2020-07-14 20:57:07,947 [19] INFO - --------- 2020-07-14 20:57:07,961 [19] INFO - Finished executing the following script: 2020-07-14 20:57:07,961 [19] INFO - --------- 2020-07-14 20:57:07,961 [19] INFO - function SE637303570279382516() {} SE637303570279382516.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 SE637303570279382516().executeScript(); 2020-07-14 20:57:07,962 [19] INFO - --------- 2020-07-14 20:57:07,963 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 798. 2020-07-14 20:57:07,963 [19] INFO - --------- 2020-07-14 20:57:07,965 [19] INFO - Finished executing the following script: 2020-07-14 20:57:07,965 [19] INFO - --------- 2020-07-14 20:57:07,966 [19] INFO - function SE637303570279352515() {} SE637303570279352515.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 SE637303570279352515().executeScript(); 2020-07-14 20:57:07,966 [19] INFO - --------- 2020-07-14 20:57:07,966 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 799. 2020-07-14 20:57:07,967 [19] INFO - --------- 2020-07-14 20:57:07,967 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,968 [19] INFO - --------- 2020-07-14 20:57:07,968 [19] INFO - function SE637303570279672533() {} SE637303570279672533.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 SE637303570279672533().executeScript(); 2020-07-14 20:57:07,968 [19] INFO - --------- 2020-07-14 20:57:07,974 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,974 [19] INFO - --------- 2020-07-14 20:57:07,974 [19] INFO - function SE637303570279732537() {} SE637303570279732537.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 SE637303570279732537().executeScript(); 2020-07-14 20:57:07,974 [19] INFO - --------- 2020-07-14 20:57:07,976 [19] INFO - Finished executing the following script: 2020-07-14 20:57:07,976 [19] INFO - --------- 2020-07-14 20:57:07,977 [19] INFO - function SE637303570279732537() {} SE637303570279732537.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 SE637303570279732537().executeScript(); 2020-07-14 20:57:07,977 [19] INFO - --------- 2020-07-14 20:57:07,977 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 800. 2020-07-14 20:57:07,978 [19] INFO - --------- 2020-07-14 20:57:07,982 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,983 [19] INFO - --------- 2020-07-14 20:57:07,983 [19] INFO - function SE637303570279822542() {} SE637303570279822542.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 SE637303570279822542().executeScript(); 2020-07-14 20:57:07,983 [19] INFO - --------- 2020-07-14 20:57:07,985 [19] INFO - Finished executing the following script: 2020-07-14 20:57:07,985 [19] INFO - --------- 2020-07-14 20:57:07,986 [19] INFO - function SE637303570279822542() {} SE637303570279822542.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 SE637303570279822542().executeScript(); 2020-07-14 20:57:07,986 [19] INFO - --------- 2020-07-14 20:57:07,986 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 801. 2020-07-14 20:57:07,986 [19] INFO - --------- 2020-07-14 20:57:07,995 [19] INFO - About to execute the following script: 2020-07-14 20:57:07,995 [19] INFO - --------- 2020-07-14 20:57:07,995 [19] INFO - function SE637303570279952549() {} SE637303570279952549.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 SE637303570279952549().executeScript(); 2020-07-14 20:57:07,996 [19] INFO - --------- 2020-07-14 20:57:07,997 [19] INFO - Finished executing the following script: 2020-07-14 20:57:07,998 [19] INFO - --------- 2020-07-14 20:57:07,998 [19] INFO - function SE637303570279952549() {} SE637303570279952549.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 SE637303570279952549().executeScript(); 2020-07-14 20:57:07,999 [19] INFO - --------- 2020-07-14 20:57:07,999 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 802. 2020-07-14 20:57:07,999 [19] INFO - --------- 2020-07-14 20:57:08,001 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,001 [19] INFO - --------- 2020-07-14 20:57:08,002 [19] INFO - function SE637303570280012553() {} SE637303570280012553.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 SE637303570280012553().executeScript(); 2020-07-14 20:57:08,002 [19] INFO - --------- 2020-07-14 20:57:08,003 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,004 [19] INFO - --------- 2020-07-14 20:57:08,004 [19] INFO - function SE637303570280012553() {} SE637303570280012553.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 SE637303570280012553().executeScript(); 2020-07-14 20:57:08,004 [19] INFO - --------- 2020-07-14 20:57:08,005 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 803. 2020-07-14 20:57:08,005 [19] INFO - --------- 2020-07-14 20:57:08,008 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,008 [19] INFO - --------- 2020-07-14 20:57:08,009 [19] INFO - function SE637303570280082557() {} SE637303570280082557.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 SE637303570280082557().executeScript(); 2020-07-14 20:57:08,009 [19] INFO - --------- 2020-07-14 20:57:08,010 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,011 [19] INFO - --------- 2020-07-14 20:57:08,011 [19] INFO - function SE637303570280082557() {} SE637303570280082557.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 SE637303570280082557().executeScript(); 2020-07-14 20:57:08,011 [19] INFO - --------- 2020-07-14 20:57:08,012 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 804. 2020-07-14 20:57:08,012 [19] INFO - --------- 2020-07-14 20:57:08,014 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,014 [19] INFO - --------- 2020-07-14 20:57:08,015 [19] INFO - function SE637303570280142560() {} SE637303570280142560.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 SE637303570280142560().executeScript(); 2020-07-14 20:57:08,015 [19] INFO - --------- 2020-07-14 20:57:08,017 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,017 [19] INFO - --------- 2020-07-14 20:57:08,017 [19] INFO - function SE637303570280142560() {} SE637303570280142560.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 SE637303570280142560().executeScript(); 2020-07-14 20:57:08,018 [19] INFO - --------- 2020-07-14 20:57:08,018 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 805. 2020-07-14 20:57:08,018 [19] INFO - --------- 2020-07-14 20:57:08,020 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,021 [19] INFO - --------- 2020-07-14 20:57:08,021 [19] INFO - function SE637303570280202563() {} SE637303570280202563.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 SE637303570280202563().executeScript(); 2020-07-14 20:57:08,021 [19] INFO - --------- 2020-07-14 20:57:08,023 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,023 [19] INFO - --------- 2020-07-14 20:57:08,023 [19] INFO - function SE637303570280202563() {} SE637303570280202563.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 SE637303570280202563().executeScript(); 2020-07-14 20:57:08,024 [19] INFO - --------- 2020-07-14 20:57:08,024 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 806. 2020-07-14 20:57:08,025 [19] INFO - --------- 2020-07-14 20:57:08,025 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,026 [19] INFO - --------- 2020-07-14 20:57:08,026 [19] INFO - function SE637303570279672533() {} SE637303570279672533.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 SE637303570279672533().executeScript(); 2020-07-14 20:57:08,026 [19] INFO - --------- 2020-07-14 20:57:08,027 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 807. 2020-07-14 20:57:08,027 [19] INFO - --------- 2020-07-14 20:57:08,028 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,028 [19] INFO - --------- 2020-07-14 20:57:08,028 [19] INFO - function SE637303570280282568() {} SE637303570280282568.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 SE637303570280282568().executeScript(); 2020-07-14 20:57:08,029 [19] INFO - --------- 2020-07-14 20:57:08,030 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,030 [19] INFO - --------- 2020-07-14 20:57:08,030 [19] INFO - function SE637303570280282568() {} SE637303570280282568.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 SE637303570280282568().executeScript(); 2020-07-14 20:57:08,031 [19] INFO - --------- 2020-07-14 20:57:08,031 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 808. 2020-07-14 20:57:08,031 [19] INFO - --------- 2020-07-14 20:57:08,032 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,033 [19] INFO - --------- 2020-07-14 20:57:08,033 [19] INFO - function SE637303570280322570() {} SE637303570280322570.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 SE637303570280322570().executeScript(); 2020-07-14 20:57:08,034 [19] INFO - --------- 2020-07-14 20:57:08,040 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,040 [19] INFO - --------- 2020-07-14 20:57:08,041 [19] INFO - function SE637303570280322570() {} SE637303570280322570.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 SE637303570280322570().executeScript(); 2020-07-14 20:57:08,041 [19] INFO - --------- 2020-07-14 20:57:08,041 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 809. 2020-07-14 20:57:08,042 [19] INFO - --------- 2020-07-14 20:57:08,044 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,044 [19] INFO - --------- 2020-07-14 20:57:08,044 [19] INFO - function SE637303570280432577() {} SE637303570280432577.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 SE637303570280432577().executeScript(); 2020-07-14 20:57:08,053 [19] INFO - --------- 2020-07-14 20:57:08,069 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,069 [19] INFO - --------- 2020-07-14 20:57:08,069 [19] INFO - function SE637303570280692591() {} SE637303570280692591.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 SE637303570280692591().executeScript(); 2020-07-14 20:57:08,070 [19] INFO - --------- 2020-07-14 20:57:08,071 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,072 [19] INFO - --------- 2020-07-14 20:57:08,072 [19] INFO - function SE637303570280712593() {} SE637303570280712593.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 SE637303570280712593().executeScript(); 2020-07-14 20:57:08,072 [19] INFO - --------- 2020-07-14 20:57:08,077 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,078 [19] INFO - --------- 2020-07-14 20:57:08,078 [19] INFO - function SE637303570280712593() {} SE637303570280712593.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 SE637303570280712593().executeScript(); 2020-07-14 20:57:08,079 [19] INFO - --------- 2020-07-14 20:57:08,079 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 810. 2020-07-14 20:57:08,079 [19] INFO - --------- 2020-07-14 20:57:08,080 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,080 [19] INFO - --------- 2020-07-14 20:57:08,081 [19] INFO - function SE637303570280802598() {} SE637303570280802598.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 SE637303570280802598().executeScript(); 2020-07-14 20:57:08,081 [19] INFO - --------- 2020-07-14 20:57:08,085 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,085 [19] INFO - --------- 2020-07-14 20:57:08,085 [19] INFO - function SE637303570280802598() {} SE637303570280802598.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 SE637303570280802598().executeScript(); 2020-07-14 20:57:08,086 [19] INFO - --------- 2020-07-14 20:57:08,086 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 811. 2020-07-14 20:57:08,086 [19] INFO - --------- 2020-07-14 20:57:08,087 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,088 [19] INFO - --------- 2020-07-14 20:57:08,088 [19] INFO - function SE637303570280872602() {} SE637303570280872602.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 SE637303570280872602().executeScript(); 2020-07-14 20:57:08,088 [19] INFO - --------- 2020-07-14 20:57:08,091 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,091 [19] INFO - --------- 2020-07-14 20:57:08,092 [19] INFO - function SE637303570280872602() {} SE637303570280872602.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 SE637303570280872602().executeScript(); 2020-07-14 20:57:08,092 [19] INFO - --------- 2020-07-14 20:57:08,092 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 812. 2020-07-14 20:57:08,093 [19] INFO - --------- 2020-07-14 20:57:08,093 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,094 [19] INFO - --------- 2020-07-14 20:57:08,094 [19] INFO - function SE637303570280932605() {} SE637303570280932605.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 SE637303570280932605().executeScript(); 2020-07-14 20:57:08,094 [19] INFO - --------- 2020-07-14 20:57:08,095 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,096 [19] INFO - --------- 2020-07-14 20:57:08,096 [19] INFO - function SE637303570280932605() {} SE637303570280932605.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 SE637303570280932605().executeScript(); 2020-07-14 20:57:08,096 [19] INFO - --------- 2020-07-14 20:57:08,097 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 813. 2020-07-14 20:57:08,097 [19] INFO - --------- 2020-07-14 20:57:08,098 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,098 [19] INFO - --------- 2020-07-14 20:57:08,099 [19] INFO - function SE637303570280692591() {} SE637303570280692591.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 SE637303570280692591().executeScript(); 2020-07-14 20:57:08,099 [19] INFO - --------- 2020-07-14 20:57:08,099 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 814. 2020-07-14 20:57:08,100 [19] INFO - --------- 2020-07-14 20:57:08,100 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,101 [19] INFO - --------- 2020-07-14 20:57:08,101 [19] INFO - function SE637303570281002609() {} SE637303570281002609.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 SE637303570281002609().executeScript(); 2020-07-14 20:57:08,101 [19] INFO - --------- 2020-07-14 20:57:08,103 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,104 [19] INFO - --------- 2020-07-14 20:57:08,104 [19] INFO - function SE637303570281032611() {} SE637303570281032611.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 SE637303570281032611().executeScript(); 2020-07-14 20:57:08,104 [19] INFO - --------- 2020-07-14 20:57:08,110 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,110 [19] INFO - --------- 2020-07-14 20:57:08,110 [19] INFO - function SE637303570281032611() {} SE637303570281032611.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 SE637303570281032611().executeScript(); 2020-07-14 20:57:08,111 [19] INFO - --------- 2020-07-14 20:57:08,111 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 815. 2020-07-14 20:57:08,111 [19] INFO - --------- 2020-07-14 20:57:08,112 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,113 [19] INFO - --------- 2020-07-14 20:57:08,113 [19] INFO - function SE637303570281122616() {} SE637303570281122616.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 SE637303570281122616().executeScript(); 2020-07-14 20:57:08,114 [19] INFO - --------- 2020-07-14 20:57:08,118 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,118 [19] INFO - --------- 2020-07-14 20:57:08,118 [19] INFO - function SE637303570281122616() {} SE637303570281122616.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 SE637303570281122616().executeScript(); 2020-07-14 20:57:08,119 [19] INFO - --------- 2020-07-14 20:57:08,119 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 816. 2020-07-14 20:57:08,119 [19] INFO - --------- 2020-07-14 20:57:08,120 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,120 [19] INFO - --------- 2020-07-14 20:57:08,121 [19] INFO - function SE637303570281202621() {} SE637303570281202621.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 SE637303570281202621().executeScript(); 2020-07-14 20:57:08,121 [19] INFO - --------- 2020-07-14 20:57:08,123 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,124 [19] INFO - --------- 2020-07-14 20:57:08,124 [19] INFO - function SE637303570281202621() {} SE637303570281202621.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 SE637303570281202621().executeScript(); 2020-07-14 20:57:08,124 [19] INFO - --------- 2020-07-14 20:57:08,125 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 817. 2020-07-14 20:57:08,125 [19] INFO - --------- 2020-07-14 20:57:08,126 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,126 [19] INFO - --------- 2020-07-14 20:57:08,126 [19] INFO - function SE637303570281262624() {} SE637303570281262624.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 SE637303570281262624().executeScript(); 2020-07-14 20:57:08,127 [19] INFO - --------- 2020-07-14 20:57:08,128 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,128 [19] INFO - --------- 2020-07-14 20:57:08,128 [19] INFO - function SE637303570281262624() {} SE637303570281262624.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 SE637303570281262624().executeScript(); 2020-07-14 20:57:08,129 [19] INFO - --------- 2020-07-14 20:57:08,129 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 818. 2020-07-14 20:57:08,129 [19] INFO - --------- 2020-07-14 20:57:08,130 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,131 [19] INFO - --------- 2020-07-14 20:57:08,131 [19] INFO - function SE637303570281002609() {} SE637303570281002609.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 SE637303570281002609().executeScript(); 2020-07-14 20:57:08,131 [19] INFO - --------- 2020-07-14 20:57:08,132 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 819. 2020-07-14 20:57:08,132 [19] INFO - --------- 2020-07-14 20:57:08,133 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,134 [19] INFO - --------- 2020-07-14 20:57:08,135 [19] INFO - function SE637303570281332628() {} SE637303570281332628.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write("\r\n
    \r\n\t
    \r\n class=\"articlearea zpwText\" \r\n\t\r\n\t>\r\n\t\r\n\t\r\n\t\t\t\r\n\r\n\t

    \r\n\t data-zpfieldname=\"headline\">VOLVO C303

    \r\n\r\n\t\t\t\r\n\r\n\r\n

    Irgendwie passte der so garn nicht in das ürsprüngliche Zielbild.

    \r\n

    \"");

    \r\n

    Über einen Arbeitskollegen waren wir auf ein solches Gefährt gestoßen. \r\nInteressant, aber schied sehr schnell aus der Liste der Begehrlichkeiten wieder \r\naus.

    \r\n\r\n\r\n\t\r\n\r\n\t
    \r\n
    \r\n\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 SE637303570281332628().executeScript(); 2020-07-14 20:57:08,135 [19] INFO - --------- 2020-07-14 20:57:08,137 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,138 [19] INFO - --------- 2020-07-14 20:57:08,138 [19] INFO - function SE637303570281332628() {} SE637303570281332628.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write("\r\n
    \r\n\t
    \r\n class=\"articlearea zpwText\" \r\n\t\r\n\t>\r\n\t\r\n\t\r\n\t\t\t\r\n\r\n\t

    \r\n\t data-zpfieldname=\"headline\">VOLVO C303

    \r\n\r\n\t\t\t\r\n\r\n\r\n

    Irgendwie passte der so garn nicht in das ürsprüngliche Zielbild.

    \r\n

    \"");

    \r\n

    Über einen Arbeitskollegen waren wir auf ein solches Gefährt gestoßen. \r\nInteressant, aber schied sehr schnell aus der Liste der Begehrlichkeiten wieder \r\naus.

    \r\n\r\n\r\n\t\r\n\r\n\t
    \r\n
    \r\n\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 SE637303570281332628().executeScript(); 2020-07-14 20:57:08,139 [19] INFO - --------- 2020-07-14 20:57:08,139 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 820. 2020-07-14 20:57:08,139 [19] INFO - --------- 2020-07-14 20:57:08,147 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,147 [19] INFO - --------- 2020-07-14 20:57:08,148 [19] INFO - function SE637303570281472636() {} SE637303570281472636.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 SE637303570281472636().executeScript(); 2020-07-14 20:57:08,148 [19] INFO - --------- 2020-07-14 20:57:08,149 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,150 [19] INFO - --------- 2020-07-14 20:57:08,150 [19] INFO - function SE637303570281492637() {} SE637303570281492637.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 SE637303570281492637().executeScript(); 2020-07-14 20:57:08,151 [19] INFO - --------- 2020-07-14 20:57:08,156 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,156 [19] INFO - --------- 2020-07-14 20:57:08,156 [19] INFO - function SE637303570281492637() {} SE637303570281492637.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 SE637303570281492637().executeScript(); 2020-07-14 20:57:08,157 [19] INFO - --------- 2020-07-14 20:57:08,157 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 821. 2020-07-14 20:57:08,157 [19] INFO - --------- 2020-07-14 20:57:08,158 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,159 [19] INFO - --------- 2020-07-14 20:57:08,159 [19] INFO - function SE637303570281582642() {} SE637303570281582642.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 SE637303570281582642().executeScript(); 2020-07-14 20:57:08,160 [19] INFO - --------- 2020-07-14 20:57:08,163 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,164 [19] INFO - --------- 2020-07-14 20:57:08,164 [19] INFO - function SE637303570281582642() {} SE637303570281582642.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 SE637303570281582642().executeScript(); 2020-07-14 20:57:08,165 [19] INFO - --------- 2020-07-14 20:57:08,165 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 822. 2020-07-14 20:57:08,165 [19] INFO - --------- 2020-07-14 20:57:08,166 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,166 [19] INFO - --------- 2020-07-14 20:57:08,167 [19] INFO - function SE637303570281662647() {} SE637303570281662647.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 SE637303570281662647().executeScript(); 2020-07-14 20:57:08,167 [19] INFO - --------- 2020-07-14 20:57:08,169 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,170 [19] INFO - --------- 2020-07-14 20:57:08,170 [19] INFO - function SE637303570281662647() {} SE637303570281662647.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 SE637303570281662647().executeScript(); 2020-07-14 20:57:08,170 [19] INFO - --------- 2020-07-14 20:57:08,171 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 823. 2020-07-14 20:57:08,171 [19] INFO - --------- 2020-07-14 20:57:08,173 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,173 [19] INFO - --------- 2020-07-14 20:57:08,173 [19] INFO - function SE637303570281732651() {} SE637303570281732651.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 SE637303570281732651().executeScript(); 2020-07-14 20:57:08,174 [19] INFO - --------- 2020-07-14 20:57:08,175 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,175 [19] INFO - --------- 2020-07-14 20:57:08,175 [19] INFO - function SE637303570281732651() {} SE637303570281732651.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 SE637303570281732651().executeScript(); 2020-07-14 20:57:08,176 [19] INFO - --------- 2020-07-14 20:57:08,176 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 824. 2020-07-14 20:57:08,176 [19] INFO - --------- 2020-07-14 20:57:08,177 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,178 [19] INFO - --------- 2020-07-14 20:57:08,178 [19] INFO - function SE637303570281472636() {} SE637303570281472636.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 SE637303570281472636().executeScript(); 2020-07-14 20:57:08,178 [19] INFO - --------- 2020-07-14 20:57:08,179 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 825. 2020-07-14 20:57:08,179 [19] INFO - --------- 2020-07-14 20:57:08,180 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,180 [19] INFO - --------- 2020-07-14 20:57:08,181 [19] INFO - function SE637303570281802655() {} SE637303570281802655.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write("\r\n
    \r\n\t
    \r\n class=\"articlearea zpwText\" \r\n\t\r\n\t>\r\n\t\r\n\t\r\n\t\t\t\r\n\r\n\t

    \r\n\t data-zpfieldname=\"headline\">W50 / L60

    \r\n\r\n\t\t\t\r\n\r\n\r\n

    Im Netz fanden sich im Sommer 2017 noch diverse IFA Modelle, \r\nwelche bereits als Fernreisemobil (teil-)umgebaut waren. Auch haben wir 3 \r\ninteressante W50 in Mitteldeutschland gefunden, welche sich zum Ausbau bestens \r\ngeeignet hätten.

    \r\n

    \"");

    \r\n\r\n\r\n\t\r\n\r\n\t
    \r\n
    \r\n\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 SE637303570281802655().executeScript(); 2020-07-14 20:57:08,181 [19] INFO - --------- 2020-07-14 20:57:08,183 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,183 [19] INFO - --------- 2020-07-14 20:57:08,184 [19] INFO - function SE637303570281802655() {} SE637303570281802655.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\text\standard.html'. context.write("\r\n
    \r\n\t
    \r\n class=\"articlearea zpwText\" \r\n\t\r\n\t>\r\n\t\r\n\t\r\n\t\t\t\r\n\r\n\t

    \r\n\t data-zpfieldname=\"headline\">W50 / L60

    \r\n\r\n\t\t\t\r\n\r\n\r\n

    Im Netz fanden sich im Sommer 2017 noch diverse IFA Modelle, \r\nwelche bereits als Fernreisemobil (teil-)umgebaut waren. Auch haben wir 3 \r\ninteressante W50 in Mitteldeutschland gefunden, welche sich zum Ausbau bestens \r\ngeeignet hätten.

    \r\n

    \"");

    \r\n\r\n\r\n\t\r\n\r\n\t
    \r\n
    \r\n\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 SE637303570281802655().executeScript(); 2020-07-14 20:57:08,184 [19] INFO - --------- 2020-07-14 20:57:08,185 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 826. 2020-07-14 20:57:08,185 [19] INFO - --------- 2020-07-14 20:57:08,193 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,193 [19] INFO - --------- 2020-07-14 20:57:08,193 [19] INFO - function SE637303570281932662() {} SE637303570281932662.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 SE637303570281932662().executeScript(); 2020-07-14 20:57:08,194 [19] INFO - --------- 2020-07-14 20:57:08,195 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,196 [19] INFO - --------- 2020-07-14 20:57:08,196 [19] INFO - function SE637303570281952663() {} SE637303570281952663.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 SE637303570281952663().executeScript(); 2020-07-14 20:57:08,196 [19] INFO - --------- 2020-07-14 20:57:08,202 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,202 [19] INFO - --------- 2020-07-14 20:57:08,202 [19] INFO - function SE637303570281952663() {} SE637303570281952663.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 SE637303570281952663().executeScript(); 2020-07-14 20:57:08,203 [19] INFO - --------- 2020-07-14 20:57:08,203 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 827. 2020-07-14 20:57:08,203 [19] INFO - --------- 2020-07-14 20:57:08,204 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,205 [19] INFO - --------- 2020-07-14 20:57:08,205 [19] INFO - function SE637303570282042669() {} SE637303570282042669.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 SE637303570282042669().executeScript(); 2020-07-14 20:57:08,205 [19] INFO - --------- 2020-07-14 20:57:08,210 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,210 [19] INFO - --------- 2020-07-14 20:57:08,211 [19] INFO - function SE637303570282042669() {} SE637303570282042669.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 SE637303570282042669().executeScript(); 2020-07-14 20:57:08,211 [19] INFO - --------- 2020-07-14 20:57:08,211 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 828. 2020-07-14 20:57:08,212 [19] INFO - --------- 2020-07-14 20:57:08,213 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,213 [19] INFO - --------- 2020-07-14 20:57:08,214 [19] INFO - function SE637303570282132674() {} SE637303570282132674.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 SE637303570282132674().executeScript(); 2020-07-14 20:57:08,214 [19] INFO - --------- 2020-07-14 20:57:08,217 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,217 [19] INFO - --------- 2020-07-14 20:57:08,217 [19] INFO - function SE637303570282132674() {} SE637303570282132674.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 SE637303570282132674().executeScript(); 2020-07-14 20:57:08,218 [19] INFO - --------- 2020-07-14 20:57:08,218 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 829. 2020-07-14 20:57:08,218 [19] INFO - --------- 2020-07-14 20:57:08,219 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,220 [19] INFO - --------- 2020-07-14 20:57:08,220 [19] INFO - function SE637303570282192677() {} SE637303570282192677.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 SE637303570282192677().executeScript(); 2020-07-14 20:57:08,220 [19] INFO - --------- 2020-07-14 20:57:08,222 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,222 [19] INFO - --------- 2020-07-14 20:57:08,222 [19] INFO - function SE637303570282192677() {} SE637303570282192677.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 SE637303570282192677().executeScript(); 2020-07-14 20:57:08,223 [19] INFO - --------- 2020-07-14 20:57:08,223 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 830. 2020-07-14 20:57:08,223 [19] INFO - --------- 2020-07-14 20:57:08,224 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,225 [19] INFO - --------- 2020-07-14 20:57:08,225 [19] INFO - function SE637303570281932662() {} SE637303570281932662.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 SE637303570281932662().executeScript(); 2020-07-14 20:57:08,225 [19] INFO - --------- 2020-07-14 20:57:08,226 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 831. 2020-07-14 20:57:08,226 [19] INFO - --------- 2020-07-14 20:57:08,235 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,235 [19] INFO - --------- 2020-07-14 20:57:08,236 [19] INFO - function SE637303570282352686() {} SE637303570282352686.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570282352686().executeScript(); 2020-07-14 20:57:08,236 [19] INFO - --------- 2020-07-14 20:57:08,239 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,239 [19] INFO - --------- 2020-07-14 20:57:08,239 [19] INFO - function SE637303570282392689() {} SE637303570282392689.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 SE637303570282392689().executeScript(); 2020-07-14 20:57:08,240 [19] INFO - --------- 2020-07-14 20:57:08,246 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,247 [19] INFO - --------- 2020-07-14 20:57:08,247 [19] INFO - function SE637303570282392689() {} SE637303570282392689.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 SE637303570282392689().executeScript(); 2020-07-14 20:57:08,248 [19] INFO - --------- 2020-07-14 20:57:08,248 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 832. 2020-07-14 20:57:08,248 [19] INFO - --------- 2020-07-14 20:57:08,249 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,250 [19] INFO - --------- 2020-07-14 20:57:08,250 [19] INFO - function SE637303570282492694() {} SE637303570282492694.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570282492694().executeScript(); 2020-07-14 20:57:08,250 [19] INFO - --------- 2020-07-14 20:57:08,252 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,253 [19] INFO - --------- 2020-07-14 20:57:08,253 [19] INFO - function SE637303570282492694() {} SE637303570282492694.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570282492694().executeScript(); 2020-07-14 20:57:08,253 [19] INFO - --------- 2020-07-14 20:57:08,254 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 833. 2020-07-14 20:57:08,254 [19] INFO - --------- 2020-07-14 20:57:08,255 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,256 [19] INFO - --------- 2020-07-14 20:57:08,256 [19] INFO - function SE637303570282352686() {} SE637303570282352686.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570282352686().executeScript(); 2020-07-14 20:57:08,257 [19] INFO - --------- 2020-07-14 20:57:08,257 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 834. 2020-07-14 20:57:08,257 [19] INFO - --------- 2020-07-14 20:57:08,262 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,263 [19] INFO - --------- 2020-07-14 20:57:08,263 [19] INFO - function SE637303570282622702() {} SE637303570282622702.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570282622702().executeScript(); 2020-07-14 20:57:08,264 [19] INFO - --------- 2020-07-14 20:57:08,266 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,266 [19] INFO - --------- 2020-07-14 20:57:08,267 [19] INFO - function SE637303570282662704() {} SE637303570282662704.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 SE637303570282662704().executeScript(); 2020-07-14 20:57:08,267 [19] INFO - --------- 2020-07-14 20:57:08,273 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,273 [19] INFO - --------- 2020-07-14 20:57:08,273 [19] INFO - function SE637303570282662704() {} SE637303570282662704.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 SE637303570282662704().executeScript(); 2020-07-14 20:57:08,275 [19] INFO - --------- 2020-07-14 20:57:08,275 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 835. 2020-07-14 20:57:08,275 [19] INFO - --------- 2020-07-14 20:57:08,276 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,277 [19] INFO - --------- 2020-07-14 20:57:08,277 [19] INFO - function SE637303570282762710() {} SE637303570282762710.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570282762710().executeScript(); 2020-07-14 20:57:08,277 [19] INFO - --------- 2020-07-14 20:57:08,279 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,280 [19] INFO - --------- 2020-07-14 20:57:08,280 [19] INFO - function SE637303570282762710() {} SE637303570282762710.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570282762710().executeScript(); 2020-07-14 20:57:08,281 [19] INFO - --------- 2020-07-14 20:57:08,281 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 836. 2020-07-14 20:57:08,281 [19] INFO - --------- 2020-07-14 20:57:08,282 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,283 [19] INFO - --------- 2020-07-14 20:57:08,283 [19] INFO - function SE637303570282622702() {} SE637303570282622702.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570282622702().executeScript(); 2020-07-14 20:57:08,284 [19] INFO - --------- 2020-07-14 20:57:08,284 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 837. 2020-07-14 20:57:08,284 [19] INFO - --------- 2020-07-14 20:57:08,289 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,289 [19] INFO - --------- 2020-07-14 20:57:08,290 [19] INFO - function SE637303570282892717() {} SE637303570282892717.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570282892717().executeScript(); 2020-07-14 20:57:08,290 [19] INFO - --------- 2020-07-14 20:57:08,292 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,292 [19] INFO - --------- 2020-07-14 20:57:08,293 [19] INFO - function SE637303570282922719() {} SE637303570282922719.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 SE637303570282922719().executeScript(); 2020-07-14 20:57:08,293 [19] INFO - --------- 2020-07-14 20:57:08,298 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,299 [19] INFO - --------- 2020-07-14 20:57:08,299 [19] INFO - function SE637303570282922719() {} SE637303570282922719.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 SE637303570282922719().executeScript(); 2020-07-14 20:57:08,300 [19] INFO - --------- 2020-07-14 20:57:08,300 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 838. 2020-07-14 20:57:08,301 [19] INFO - --------- 2020-07-14 20:57:08,301 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,303 [19] INFO - --------- 2020-07-14 20:57:08,303 [19] INFO - function SE637303570283012724() {} SE637303570283012724.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283012724().executeScript(); 2020-07-14 20:57:08,303 [19] INFO - --------- 2020-07-14 20:57:08,305 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,306 [19] INFO - --------- 2020-07-14 20:57:08,306 [19] INFO - function SE637303570283012724() {} SE637303570283012724.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283012724().executeScript(); 2020-07-14 20:57:08,307 [19] INFO - --------- 2020-07-14 20:57:08,307 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 839. 2020-07-14 20:57:08,307 [19] INFO - --------- 2020-07-14 20:57:08,308 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,309 [19] INFO - --------- 2020-07-14 20:57:08,309 [19] INFO - function SE637303570282892717() {} SE637303570282892717.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570282892717().executeScript(); 2020-07-14 20:57:08,309 [19] INFO - --------- 2020-07-14 20:57:08,310 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 840. 2020-07-14 20:57:08,310 [19] INFO - --------- 2020-07-14 20:57:08,314 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,314 [19] INFO - --------- 2020-07-14 20:57:08,315 [19] INFO - function SE637303570280432577() {} SE637303570280432577.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 SE637303570280432577().executeScript(); 2020-07-14 20:57:08,317 [19] INFO - --------- 2020-07-14 20:57:08,317 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 841. 2020-07-14 20:57:08,318 [19] INFO - --------- 2020-07-14 20:57:08,319 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,319 [19] INFO - --------- 2020-07-14 20:57:08,319 [19] INFO - function SE637303570283192734() {} SE637303570283192734.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu-layout.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!=2 ) { return; } context.write("\r\n\r\n\r\n\t"); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n\t\t\t"); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n\t\t\t "); context.write( system.partial("submenu1.html", p.id, 2) ); context.write("\r\n\t\t\t"); } context.write("\r\n\r\n\t"); } } context.write("\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\submenu-layout.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283192734().executeScript(); 2020-07-14 20:57:08,320 [19] INFO - --------- 2020-07-14 20:57:08,325 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,325 [19] INFO - --------- 2020-07-14 20:57:08,325 [19] INFO - function SE637303570283252738() {} SE637303570283252738.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu1.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\t
      \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-submenu1-aktiv.html", p.id, 2) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu1.html", p.id, 2) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t
    \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\submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283252738().executeScript(); 2020-07-14 20:57:08,326 [19] INFO - --------- 2020-07-14 20:57:08,331 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,331 [19] INFO - --------- 2020-07-14 20:57:08,331 [19] INFO - function SE637303570283312741() {} SE637303570283312741.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1-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"); context.write( system.partial("submenu2.html", p.id) ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283312741().executeScript(); 2020-07-14 20:57:08,332 [19] INFO - --------- 2020-07-14 20:57:08,334 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,334 [19] INFO - --------- 2020-07-14 20:57:08,334 [19] INFO - function SE637303570283342743() {} SE637303570283342743.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu2.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!=3 ) { return; } context.write("\r\n\t\t
      \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-submenu2-aktiv.html", p.id, 3) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu2.html", p.id, 3) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t\t
    \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\submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283342743().executeScript(); 2020-07-14 20:57:08,335 [19] INFO - --------- 2020-07-14 20:57:08,338 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,339 [19] INFO - --------- 2020-07-14 20:57:08,339 [19] INFO - function SE637303570283382745() {} SE637303570283382745.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283382745().executeScript(); 2020-07-14 20:57:08,339 [19] INFO - --------- 2020-07-14 20:57:08,341 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,341 [19] INFO - --------- 2020-07-14 20:57:08,342 [19] INFO - function SE637303570283382745() {} SE637303570283382745.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283382745().executeScript(); 2020-07-14 20:57:08,342 [19] INFO - --------- 2020-07-14 20:57:08,342 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 842. 2020-07-14 20:57:08,343 [19] INFO - --------- 2020-07-14 20:57:08,345 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,345 [19] INFO - --------- 2020-07-14 20:57:08,345 [19] INFO - function SE637303570283452749() {} SE637303570283452749.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283452749().executeScript(); 2020-07-14 20:57:08,346 [19] INFO - --------- 2020-07-14 20:57:08,347 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,348 [19] INFO - --------- 2020-07-14 20:57:08,348 [19] INFO - function SE637303570283452749() {} SE637303570283452749.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283452749().executeScript(); 2020-07-14 20:57:08,348 [19] INFO - --------- 2020-07-14 20:57:08,349 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 843. 2020-07-14 20:57:08,349 [19] INFO - --------- 2020-07-14 20:57:08,351 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,351 [19] INFO - --------- 2020-07-14 20:57:08,351 [19] INFO - function SE637303570283512753() {} SE637303570283512753.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2-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"); context.write( system.partial("submenu2.html", p.id) ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283512753().executeScript(); 2020-07-14 20:57:08,352 [19] INFO - --------- 2020-07-14 20:57:08,354 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,354 [19] INFO - --------- 2020-07-14 20:57:08,354 [19] INFO - function SE637303570283532754() {} SE637303570283532754.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu2.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!=3 ) { return; } context.write("\r\n\t\t
      \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-submenu2-aktiv.html", p.id, 3) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu2.html", p.id, 3) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t\t
    \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\submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283532754().executeScript(); 2020-07-14 20:57:08,355 [19] INFO - --------- 2020-07-14 20:57:08,356 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,356 [19] INFO - --------- 2020-07-14 20:57:08,357 [19] INFO - function SE637303570283532754() {} SE637303570283532754.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu2.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!=3 ) { return; } context.write("\r\n\t\t
      \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-submenu2-aktiv.html", p.id, 3) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu2.html", p.id, 3) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t\t
    \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\submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283532754().executeScript(); 2020-07-14 20:57:08,357 [19] INFO - --------- 2020-07-14 20:57:08,358 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 844. 2020-07-14 20:57:08,358 [19] INFO - --------- 2020-07-14 20:57:08,359 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,359 [19] INFO - --------- 2020-07-14 20:57:08,359 [19] INFO - function SE637303570283512753() {} SE637303570283512753.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2-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"); context.write( system.partial("submenu2.html", p.id) ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283512753().executeScript(); 2020-07-14 20:57:08,360 [19] INFO - --------- 2020-07-14 20:57:08,360 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 845. 2020-07-14 20:57:08,360 [19] INFO - --------- 2020-07-14 20:57:08,363 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,363 [19] INFO - --------- 2020-07-14 20:57:08,363 [19] INFO - function SE637303570283632760() {} SE637303570283632760.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283632760().executeScript(); 2020-07-14 20:57:08,364 [19] INFO - --------- 2020-07-14 20:57:08,366 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,366 [19] INFO - --------- 2020-07-14 20:57:08,366 [19] INFO - function SE637303570283632760() {} SE637303570283632760.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283632760().executeScript(); 2020-07-14 20:57:08,367 [19] INFO - --------- 2020-07-14 20:57:08,367 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 846. 2020-07-14 20:57:08,367 [19] INFO - --------- 2020-07-14 20:57:08,368 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,368 [19] INFO - --------- 2020-07-14 20:57:08,369 [19] INFO - function SE637303570283342743() {} SE637303570283342743.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu2.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!=3 ) { return; } context.write("\r\n\t\t
      \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-submenu2-aktiv.html", p.id, 3) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu2.html", p.id, 3) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t\t
    \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\submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283342743().executeScript(); 2020-07-14 20:57:08,369 [19] INFO - --------- 2020-07-14 20:57:08,370 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 847. 2020-07-14 20:57:08,370 [19] INFO - --------- 2020-07-14 20:57:08,371 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,371 [19] INFO - --------- 2020-07-14 20:57:08,371 [19] INFO - function SE637303570283312741() {} SE637303570283312741.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1-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"); context.write( system.partial("submenu2.html", p.id) ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283312741().executeScript(); 2020-07-14 20:57:08,372 [19] INFO - --------- 2020-07-14 20:57:08,372 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 848. 2020-07-14 20:57:08,372 [19] INFO - --------- 2020-07-14 20:57:08,373 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,373 [19] INFO - --------- 2020-07-14 20:57:08,374 [19] INFO - function SE637303570283252738() {} SE637303570283252738.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu1.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\t
      \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-submenu1-aktiv.html", p.id, 2) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu1.html", p.id, 2) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t
    \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\submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283252738().executeScript(); 2020-07-14 20:57:08,374 [19] INFO - --------- 2020-07-14 20:57:08,375 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 849. 2020-07-14 20:57:08,375 [19] INFO - --------- 2020-07-14 20:57:08,391 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,392 [19] INFO - --------- 2020-07-14 20:57:08,392 [19] INFO - function SE637303570283192734() {} SE637303570283192734.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu-layout.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!=2 ) { return; } context.write("\r\n\r\n\r\n\t"); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n\t\t\t"); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n\t\t\t "); context.write( system.partial("submenu1.html", p.id, 2) ); context.write("\r\n\t\t\t"); } context.write("\r\n\r\n\t"); } } context.write("\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\submenu-layout.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570283192734().executeScript(); 2020-07-14 20:57:08,393 [19] INFO - --------- 2020-07-14 20:57:08,393 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 850. 2020-07-14 20:57:08,393 [19] INFO - --------- 2020-07-14 20:57:08,395 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,395 [19] INFO - --------- 2020-07-14 20:57:08,396 [19] INFO - function SE637303570283952778() {} SE637303570283952778.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 SE637303570283952778().executeScript(); 2020-07-14 20:57:08,397 [19] INFO - --------- 2020-07-14 20:57:08,406 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,406 [19] INFO - --------- 2020-07-14 20:57:08,407 [19] INFO - function SE637303570283952778() {} SE637303570283952778.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 SE637303570283952778().executeScript(); 2020-07-14 20:57:08,409 [19] INFO - --------- 2020-07-14 20:57:08,409 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 851. 2020-07-14 20:57:08,409 [19] INFO - --------- 2020-07-14 20:57:08,411 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,411 [19] INFO - --------- 2020-07-14 20:57:08,411 [19] INFO - function SE637303570284102786() {} SE637303570284102786.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. var args = context.param(0, {}); var wraptag = args["wraptag"] || "div"; var menuid = args["menuid"] || "xmenu"; var menuclass = args["menuclass"] || ""; var listwrapper = args["listwrapper"] || ["",""]; var itemwrapper = args["itemwrapper"] || ["",""]; var areaname = args["areaname"] || "Footer"; context.write("\r\n"); if ( page.attribute("show_extra_menu") ) { var extraMenu = page.extraMenu; context.write("\r\n\t<"); context.write( wraptag ); context.write(" id=\""); context.write( menuid ); context.write("\" class=\""); context.write( menuclass ); context.write("\" "); context.write( system.partial("inline-editing-xmenu.html", areaname) ); context.write(">\r\n\t\t"); context.write( listwrapper[0] ); context.write("\r\n\t\t"); for ( var mi = 0; mi < extraMenu.menuItems.count; ++mi ) { var menuItem = extraMenu.menuItems.item(mi); var rel = ""; if ( menuItem.nofollow ){ rel += "nofollow "; } if ( menuItem.target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } context.write("\r\n\t\t\t"); context.write( itemwrapper[0] ); context.write(""); context.write(menuItem.name); context.write(""); context.write( itemwrapper[1] ); context.write("\r\n\t\t"); } context.write("\r\n\t\t\t"); var output = ""; // Special case for Top Responsive which can add entries via attribute if ( page.attribute("add_extramenu") ) { output += page.attribute("add_extramenu"); } if ( page.attribute("show_language_menu") ){ // language selection var pf = project.projectFolders; if ( pf.count > 0 ){ output += itemwrapper[0] + '' + itemwrapper[1]; } } if ( output !== "" ){ context.write(output); } context.write("\r\n\t\t\t\r\n\t\t"); context.write( listwrapper[1] ); context.write("\r\n\t\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570284102786().executeScript(); 2020-07-14 20:57:08,412 [19] INFO - --------- 2020-07-14 20:57:08,413 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,414 [19] INFO - --------- 2020-07-14 20:57:08,414 [19] INFO - function SE637303570284132788() {} SE637303570284132788.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570284132788().executeScript(); 2020-07-14 20:57:08,415 [19] INFO - --------- 2020-07-14 20:57:08,416 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,416 [19] INFO - --------- 2020-07-14 20:57:08,417 [19] INFO - function SE637303570284132788() {} SE637303570284132788.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570284132788().executeScript(); 2020-07-14 20:57:08,418 [19] INFO - --------- 2020-07-14 20:57:08,418 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 852. 2020-07-14 20:57:08,418 [19] INFO - --------- 2020-07-14 20:57:08,426 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,427 [19] INFO - --------- 2020-07-14 20:57:08,427 [19] INFO - function SE637303570284102786() {} SE637303570284102786.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. var args = context.param(0, {}); var wraptag = args["wraptag"] || "div"; var menuid = args["menuid"] || "xmenu"; var menuclass = args["menuclass"] || ""; var listwrapper = args["listwrapper"] || ["",""]; var itemwrapper = args["itemwrapper"] || ["",""]; var areaname = args["areaname"] || "Footer"; context.write("\r\n"); if ( page.attribute("show_extra_menu") ) { var extraMenu = page.extraMenu; context.write("\r\n\t<"); context.write( wraptag ); context.write(" id=\""); context.write( menuid ); context.write("\" class=\""); context.write( menuclass ); context.write("\" "); context.write( system.partial("inline-editing-xmenu.html", areaname) ); context.write(">\r\n\t\t"); context.write( listwrapper[0] ); context.write("\r\n\t\t"); for ( var mi = 0; mi < extraMenu.menuItems.count; ++mi ) { var menuItem = extraMenu.menuItems.item(mi); var rel = ""; if ( menuItem.nofollow ){ rel += "nofollow "; } if ( menuItem.target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } context.write("\r\n\t\t\t"); context.write( itemwrapper[0] ); context.write(""); context.write(menuItem.name); context.write(""); context.write( itemwrapper[1] ); context.write("\r\n\t\t"); } context.write("\r\n\t\t\t"); var output = ""; // Special case for Top Responsive which can add entries via attribute if ( page.attribute("add_extramenu") ) { output += page.attribute("add_extramenu"); } if ( page.attribute("show_language_menu") ){ // language selection var pf = project.projectFolders; if ( pf.count > 0 ){ output += itemwrapper[0] + '' + itemwrapper[1]; } } if ( output !== "" ){ context.write(output); } context.write("\r\n\t\t\t\r\n\t\t"); context.write( listwrapper[1] ); context.write("\r\n\t\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570284102786().executeScript(); 2020-07-14 20:57:08,428 [19] INFO - --------- 2020-07-14 20:57:08,428 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 853. 2020-07-14 20:57:08,428 [19] INFO - --------- 2020-07-14 20:57:08,431 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,431 [19] INFO - --------- 2020-07-14 20:57:08,431 [19] INFO - function SE637303570284312798() {} SE637303570284312798.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570284312798().executeScript(); 2020-07-14 20:57:08,432 [19] INFO - --------- 2020-07-14 20:57:08,433 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,433 [19] INFO - --------- 2020-07-14 20:57:08,434 [19] INFO - function SE637303570284312798() {} SE637303570284312798.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570284312798().executeScript(); 2020-07-14 20:57:08,434 [19] INFO - --------- 2020-07-14 20:57:08,434 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 854. 2020-07-14 20:57:08,435 [19] INFO - --------- 2020-07-14 20:57:08,437 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,438 [19] INFO - --------- 2020-07-14 20:57:08,438 [19] INFO - function SE637303570278922490() {} SE637303570278922490.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 SE637303570278922490().executeScript(); 2020-07-14 20:57:08,439 [19] INFO - --------- 2020-07-14 20:57:08,439 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 855. 2020-07-14 20:57:08,440 [19] INFO - --------- 2020-07-14 20:57:08,441 [19] INFO - Closing the script engine. 2020-07-14 20:57:08,441 [19] INFO - --------- 2020-07-14 20:57:08,441 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 855. 2020-07-14 20:57:08,442 [19] INFO - --------- 2020-07-14 20:57:08,538 [19] INFO - Script engine constructed. 2020-07-14 20:57:08,538 [19] INFO - Script engine initialized. 2020-07-14 20:57:08,539 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,539 [19] INFO - --------- 2020-07-14 20:57:08,540 [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:57:08,540 [19] INFO - --------- 2020-07-14 20:57:08,541 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,541 [19] INFO - --------- 2020-07-14 20:57:08,542 [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:57:08,542 [19] INFO - --------- 2020-07-14 20:57:08,543 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 856. 2020-07-14 20:57:08,543 [19] INFO - --------- 2020-07-14 20:57:08,543 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,544 [19] INFO - --------- 2020-07-14 20:57:08,544 [19] INFO - function SE637303570285382860() {} SE637303570285382860.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\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 SE637303570285382860().executeScript(); 2020-07-14 20:57:08,544 [19] INFO - --------- 2020-07-14 20:57:08,546 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,546 [19] INFO - --------- 2020-07-14 20:57:08,547 [19] INFO - function SE637303570285382860() {} SE637303570285382860.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\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 SE637303570285382860().executeScript(); 2020-07-14 20:57:08,547 [19] INFO - --------- 2020-07-14 20:57:08,548 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 857. 2020-07-14 20:57:08,548 [19] INFO - --------- 2020-07-14 20:57:08,549 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,549 [19] INFO - --------- 2020-07-14 20:57:08,550 [19] INFO - function SE637303570285492866() {} SE637303570285492866.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 SE637303570285492866().executeScript(); 2020-07-14 20:57:08,551 [19] INFO - --------- 2020-07-14 20:57:08,570 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,571 [19] INFO - --------- 2020-07-14 20:57:08,571 [19] INFO - function SE637303570285702878() {} SE637303570285702878.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 SE637303570285702878().executeScript(); 2020-07-14 20:57:08,572 [19] INFO - --------- 2020-07-14 20:57:08,573 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,573 [19] INFO - --------- 2020-07-14 20:57:08,574 [19] INFO - function SE637303570285702878() {} SE637303570285702878.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 SE637303570285702878().executeScript(); 2020-07-14 20:57:08,574 [19] INFO - --------- 2020-07-14 20:57:08,574 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 858. 2020-07-14 20:57:08,575 [19] INFO - --------- 2020-07-14 20:57:08,586 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,587 [19] INFO - --------- 2020-07-14 20:57:08,587 [19] INFO - function SE637303570285862887() {} SE637303570285862887.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 SE637303570285862887().executeScript(); 2020-07-14 20:57:08,588 [19] INFO - --------- 2020-07-14 20:57:08,589 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,589 [19] INFO - --------- 2020-07-14 20:57:08,590 [19] INFO - function SE637303570285862887() {} SE637303570285862887.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 SE637303570285862887().executeScript(); 2020-07-14 20:57:08,590 [19] INFO - --------- 2020-07-14 20:57:08,590 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 859. 2020-07-14 20:57:08,591 [19] INFO - --------- 2020-07-14 20:57:08,592 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,592 [19] INFO - --------- 2020-07-14 20:57:08,592 [19] INFO - function SE637303570285922891() {} SE637303570285922891.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 SE637303570285922891().executeScript(); 2020-07-14 20:57:08,593 [19] INFO - --------- 2020-07-14 20:57:08,594 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,594 [19] INFO - --------- 2020-07-14 20:57:08,595 [19] INFO - function SE637303570285922891() {} SE637303570285922891.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 SE637303570285922891().executeScript(); 2020-07-14 20:57:08,595 [19] INFO - --------- 2020-07-14 20:57:08,595 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 860. 2020-07-14 20:57:08,596 [19] INFO - --------- 2020-07-14 20:57:08,598 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,599 [19] INFO - --------- 2020-07-14 20:57:08,599 [19] INFO - function SE637303570285982894() {} SE637303570285982894.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 SE637303570285982894().executeScript(); 2020-07-14 20:57:08,599 [19] INFO - --------- 2020-07-14 20:57:08,600 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,601 [19] INFO - --------- 2020-07-14 20:57:08,601 [19] INFO - function SE637303570285982894() {} SE637303570285982894.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 SE637303570285982894().executeScript(); 2020-07-14 20:57:08,601 [19] INFO - --------- 2020-07-14 20:57:08,602 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 861. 2020-07-14 20:57:08,602 [19] INFO - --------- 2020-07-14 20:57:08,604 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,604 [19] INFO - --------- 2020-07-14 20:57:08,604 [19] INFO - function SE637303570286042897() {} SE637303570286042897.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 SE637303570286042897().executeScript(); 2020-07-14 20:57:08,605 [19] INFO - --------- 2020-07-14 20:57:08,613 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,613 [19] INFO - --------- 2020-07-14 20:57:08,613 [19] INFO - function SE637303570286132903() {} SE637303570286132903.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 SE637303570286132903().executeScript(); 2020-07-14 20:57:08,614 [19] INFO - --------- 2020-07-14 20:57:08,616 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,617 [19] INFO - --------- 2020-07-14 20:57:08,617 [19] INFO - function SE637303570286162904() {} SE637303570286162904.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 SE637303570286162904().executeScript(); 2020-07-14 20:57:08,617 [19] INFO - --------- 2020-07-14 20:57:08,640 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,640 [19] INFO - --------- 2020-07-14 20:57:08,640 [19] INFO - function SE637303570286162904() {} SE637303570286162904.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 SE637303570286162904().executeScript(); 2020-07-14 20:57:08,641 [19] INFO - --------- 2020-07-14 20:57:08,641 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 862. 2020-07-14 20:57:08,641 [19] INFO - --------- 2020-07-14 20:57:08,655 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,655 [19] INFO - --------- 2020-07-14 20:57:08,656 [19] INFO - function SE637303570286132903() {} SE637303570286132903.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 SE637303570286132903().executeScript(); 2020-07-14 20:57:08,657 [19] INFO - --------- 2020-07-14 20:57:08,658 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 863. 2020-07-14 20:57:08,658 [19] INFO - --------- 2020-07-14 20:57:08,659 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,660 [19] INFO - --------- 2020-07-14 20:57:08,660 [19] INFO - function SE637303570286042897() {} SE637303570286042897.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 SE637303570286042897().executeScript(); 2020-07-14 20:57:08,661 [19] INFO - --------- 2020-07-14 20:57:08,661 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 864. 2020-07-14 20:57:08,661 [19] INFO - --------- 2020-07-14 20:57:08,662 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,662 [19] INFO - --------- 2020-07-14 20:57:08,663 [19] INFO - function SE637303570286622931() {} SE637303570286622931.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 SE637303570286622931().executeScript(); 2020-07-14 20:57:08,663 [19] INFO - --------- 2020-07-14 20:57:08,669 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,670 [19] INFO - --------- 2020-07-14 20:57:08,670 [19] INFO - function SE637303570286692935() {} SE637303570286692935.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 SE637303570286692935().executeScript(); 2020-07-14 20:57:08,670 [19] INFO - --------- 2020-07-14 20:57:08,672 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,672 [19] INFO - --------- 2020-07-14 20:57:08,673 [19] INFO - function SE637303570286692935() {} SE637303570286692935.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 SE637303570286692935().executeScript(); 2020-07-14 20:57:08,673 [19] INFO - --------- 2020-07-14 20:57:08,673 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 865. 2020-07-14 20:57:08,674 [19] INFO - --------- 2020-07-14 20:57:08,679 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,680 [19] INFO - --------- 2020-07-14 20:57:08,680 [19] INFO - function SE637303570286792940() {} SE637303570286792940.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 SE637303570286792940().executeScript(); 2020-07-14 20:57:08,681 [19] INFO - --------- 2020-07-14 20:57:08,684 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,684 [19] INFO - --------- 2020-07-14 20:57:08,684 [19] INFO - function SE637303570286792940() {} SE637303570286792940.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 SE637303570286792940().executeScript(); 2020-07-14 20:57:08,685 [19] INFO - --------- 2020-07-14 20:57:08,685 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 866. 2020-07-14 20:57:08,685 [19] INFO - --------- 2020-07-14 20:57:08,697 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,697 [19] INFO - --------- 2020-07-14 20:57:08,697 [19] INFO - function SE637303570286962950() {} SE637303570286962950.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 SE637303570286962950().executeScript(); 2020-07-14 20:57:08,698 [19] INFO - --------- 2020-07-14 20:57:08,699 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,700 [19] INFO - --------- 2020-07-14 20:57:08,700 [19] INFO - function SE637303570286962950() {} SE637303570286962950.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 SE637303570286962950().executeScript(); 2020-07-14 20:57:08,700 [19] INFO - --------- 2020-07-14 20:57:08,701 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 867. 2020-07-14 20:57:08,701 [19] INFO - --------- 2020-07-14 20:57:08,703 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,703 [19] INFO - --------- 2020-07-14 20:57:08,704 [19] INFO - function SE637303570287032954() {} SE637303570287032954.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 SE637303570287032954().executeScript(); 2020-07-14 20:57:08,704 [19] INFO - --------- 2020-07-14 20:57:08,706 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,706 [19] INFO - --------- 2020-07-14 20:57:08,706 [19] INFO - function SE637303570287032954() {} SE637303570287032954.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 SE637303570287032954().executeScript(); 2020-07-14 20:57:08,707 [19] INFO - --------- 2020-07-14 20:57:08,708 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 868. 2020-07-14 20:57:08,708 [19] INFO - --------- 2020-07-14 20:57:08,711 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,711 [19] INFO - --------- 2020-07-14 20:57:08,712 [19] INFO - function SE637303570287112959() {} SE637303570287112959.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 SE637303570287112959().executeScript(); 2020-07-14 20:57:08,712 [19] INFO - --------- 2020-07-14 20:57:08,714 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,714 [19] INFO - --------- 2020-07-14 20:57:08,715 [19] INFO - function SE637303570287112959() {} SE637303570287112959.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 SE637303570287112959().executeScript(); 2020-07-14 20:57:08,715 [19] INFO - --------- 2020-07-14 20:57:08,715 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 869. 2020-07-14 20:57:08,716 [19] INFO - --------- 2020-07-14 20:57:08,718 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,719 [19] INFO - --------- 2020-07-14 20:57:08,719 [19] INFO - function SE637303570287182963() {} SE637303570287182963.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 SE637303570287182963().executeScript(); 2020-07-14 20:57:08,720 [19] INFO - --------- 2020-07-14 20:57:08,722 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,722 [19] INFO - --------- 2020-07-14 20:57:08,723 [19] INFO - function SE637303570287182963() {} SE637303570287182963.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 SE637303570287182963().executeScript(); 2020-07-14 20:57:08,723 [19] INFO - --------- 2020-07-14 20:57:08,723 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 870. 2020-07-14 20:57:08,724 [19] INFO - --------- 2020-07-14 20:57:08,726 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,726 [19] INFO - --------- 2020-07-14 20:57:08,727 [19] INFO - function SE637303570287262967() {} SE637303570287262967.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 SE637303570287262967().executeScript(); 2020-07-14 20:57:08,727 [19] INFO - --------- 2020-07-14 20:57:08,729 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,729 [19] INFO - --------- 2020-07-14 20:57:08,729 [19] INFO - function SE637303570287262967() {} SE637303570287262967.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 SE637303570287262967().executeScript(); 2020-07-14 20:57:08,730 [19] INFO - --------- 2020-07-14 20:57:08,730 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 871. 2020-07-14 20:57:08,730 [19] INFO - --------- 2020-07-14 20:57:08,731 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,732 [19] INFO - --------- 2020-07-14 20:57:08,732 [19] INFO - function SE637303570286622931() {} SE637303570286622931.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 SE637303570286622931().executeScript(); 2020-07-14 20:57:08,733 [19] INFO - --------- 2020-07-14 20:57:08,733 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 872. 2020-07-14 20:57:08,733 [19] INFO - --------- 2020-07-14 20:57:08,735 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,735 [19] INFO - --------- 2020-07-14 20:57:08,735 [19] INFO - function SE637303570287352972() {} SE637303570287352972.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 SE637303570287352972().executeScript(); 2020-07-14 20:57:08,736 [19] INFO - --------- 2020-07-14 20:57:08,738 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,738 [19] INFO - --------- 2020-07-14 20:57:08,739 [19] INFO - function SE637303570287352972() {} SE637303570287352972.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 SE637303570287352972().executeScript(); 2020-07-14 20:57:08,739 [19] INFO - --------- 2020-07-14 20:57:08,740 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 873. 2020-07-14 20:57:08,740 [19] INFO - --------- 2020-07-14 20:57:08,741 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,742 [19] INFO - --------- 2020-07-14 20:57:08,742 [19] INFO - function SE637303570287412976() {} SE637303570287412976.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 SE637303570287412976().executeScript(); 2020-07-14 20:57:08,742 [19] INFO - --------- 2020-07-14 20:57:08,750 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,750 [19] INFO - --------- 2020-07-14 20:57:08,751 [19] INFO - function SE637303570287412976() {} SE637303570287412976.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 SE637303570287412976().executeScript(); 2020-07-14 20:57:08,751 [19] INFO - --------- 2020-07-14 20:57:08,752 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 874. 2020-07-14 20:57:08,752 [19] INFO - --------- 2020-07-14 20:57:08,754 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,754 [19] INFO - --------- 2020-07-14 20:57:08,755 [19] INFO - function SE637303570287542983() {} SE637303570287542983.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 SE637303570287542983().executeScript(); 2020-07-14 20:57:08,758 [19] INFO - --------- 2020-07-14 20:57:08,885 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,885 [19] INFO - --------- 2020-07-14 20:57:08,886 [19] INFO - function SE637303570288853058() {} SE637303570288853058.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 SE637303570288853058().executeScript(); 2020-07-14 20:57:08,886 [19] INFO - --------- 2020-07-14 20:57:08,888 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,888 [19] INFO - --------- 2020-07-14 20:57:08,888 [19] INFO - function SE637303570288883060() {} SE637303570288883060.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 SE637303570288883060().executeScript(); 2020-07-14 20:57:08,889 [19] INFO - --------- 2020-07-14 20:57:08,899 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,899 [19] INFO - --------- 2020-07-14 20:57:08,899 [19] INFO - function SE637303570288883060() {} SE637303570288883060.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 SE637303570288883060().executeScript(); 2020-07-14 20:57:08,900 [19] INFO - --------- 2020-07-14 20:57:08,900 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 875. 2020-07-14 20:57:08,900 [19] INFO - --------- 2020-07-14 20:57:08,901 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,901 [19] INFO - --------- 2020-07-14 20:57:08,902 [19] INFO - function SE637303570289013067() {} SE637303570289013067.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 SE637303570289013067().executeScript(); 2020-07-14 20:57:08,902 [19] INFO - --------- 2020-07-14 20:57:08,906 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,906 [19] INFO - --------- 2020-07-14 20:57:08,906 [19] INFO - function SE637303570289013067() {} SE637303570289013067.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 SE637303570289013067().executeScript(); 2020-07-14 20:57:08,907 [19] INFO - --------- 2020-07-14 20:57:08,907 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 876. 2020-07-14 20:57:08,907 [19] INFO - --------- 2020-07-14 20:57:08,908 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,908 [19] INFO - --------- 2020-07-14 20:57:08,909 [19] INFO - function SE637303570289083071() {} SE637303570289083071.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 SE637303570289083071().executeScript(); 2020-07-14 20:57:08,909 [19] INFO - --------- 2020-07-14 20:57:08,912 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,912 [19] INFO - --------- 2020-07-14 20:57:08,912 [19] INFO - function SE637303570289083071() {} SE637303570289083071.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 SE637303570289083071().executeScript(); 2020-07-14 20:57:08,913 [19] INFO - --------- 2020-07-14 20:57:08,913 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 877. 2020-07-14 20:57:08,913 [19] INFO - --------- 2020-07-14 20:57:08,914 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,915 [19] INFO - --------- 2020-07-14 20:57:08,915 [19] INFO - function SE637303570289143075() {} SE637303570289143075.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 SE637303570289143075().executeScript(); 2020-07-14 20:57:08,915 [19] INFO - --------- 2020-07-14 20:57:08,916 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,917 [19] INFO - --------- 2020-07-14 20:57:08,917 [19] INFO - function SE637303570289143075() {} SE637303570289143075.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 SE637303570289143075().executeScript(); 2020-07-14 20:57:08,917 [19] INFO - --------- 2020-07-14 20:57:08,918 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 878. 2020-07-14 20:57:08,918 [19] INFO - --------- 2020-07-14 20:57:08,919 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,919 [19] INFO - --------- 2020-07-14 20:57:08,920 [19] INFO - function SE637303570288853058() {} SE637303570288853058.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 SE637303570288853058().executeScript(); 2020-07-14 20:57:08,920 [19] INFO - --------- 2020-07-14 20:57:08,920 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 879. 2020-07-14 20:57:08,921 [19] INFO - --------- 2020-07-14 20:57:08,948 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,948 [19] INFO - --------- 2020-07-14 20:57:08,948 [19] INFO - function SE637303570289483094() {} SE637303570289483094.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 SE637303570289483094().executeScript(); 2020-07-14 20:57:08,949 [19] INFO - --------- 2020-07-14 20:57:08,950 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,950 [19] INFO - --------- 2020-07-14 20:57:08,951 [19] INFO - function SE637303570289503095() {} SE637303570289503095.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 SE637303570289503095().executeScript(); 2020-07-14 20:57:08,951 [19] INFO - --------- 2020-07-14 20:57:08,961 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,962 [19] INFO - --------- 2020-07-14 20:57:08,962 [19] INFO - function SE637303570289503095() {} SE637303570289503095.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 SE637303570289503095().executeScript(); 2020-07-14 20:57:08,963 [19] INFO - --------- 2020-07-14 20:57:08,963 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 880. 2020-07-14 20:57:08,963 [19] INFO - --------- 2020-07-14 20:57:08,964 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,965 [19] INFO - --------- 2020-07-14 20:57:08,965 [19] INFO - function SE637303570289643103() {} SE637303570289643103.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 SE637303570289643103().executeScript(); 2020-07-14 20:57:08,965 [19] INFO - --------- 2020-07-14 20:57:08,967 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,968 [19] INFO - --------- 2020-07-14 20:57:08,968 [19] INFO - function SE637303570289643103() {} SE637303570289643103.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 SE637303570289643103().executeScript(); 2020-07-14 20:57:08,968 [19] INFO - --------- 2020-07-14 20:57:08,969 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 881. 2020-07-14 20:57:08,969 [19] INFO - --------- 2020-07-14 20:57:08,970 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,970 [19] INFO - --------- 2020-07-14 20:57:08,970 [19] INFO - function SE637303570289703107() {} SE637303570289703107.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 SE637303570289703107().executeScript(); 2020-07-14 20:57:08,971 [19] INFO - --------- 2020-07-14 20:57:08,973 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,973 [19] INFO - --------- 2020-07-14 20:57:08,974 [19] INFO - function SE637303570289703107() {} SE637303570289703107.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 SE637303570289703107().executeScript(); 2020-07-14 20:57:08,974 [19] INFO - --------- 2020-07-14 20:57:08,974 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 882. 2020-07-14 20:57:08,975 [19] INFO - --------- 2020-07-14 20:57:08,975 [19] INFO - About to execute the following script: 2020-07-14 20:57:08,976 [19] INFO - --------- 2020-07-14 20:57:08,976 [19] INFO - function SE637303570289753110() {} SE637303570289753110.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 SE637303570289753110().executeScript(); 2020-07-14 20:57:08,976 [19] INFO - --------- 2020-07-14 20:57:08,978 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,978 [19] INFO - --------- 2020-07-14 20:57:08,978 [19] INFO - function SE637303570289753110() {} SE637303570289753110.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 SE637303570289753110().executeScript(); 2020-07-14 20:57:08,978 [19] INFO - --------- 2020-07-14 20:57:08,979 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 883. 2020-07-14 20:57:08,979 [19] INFO - --------- 2020-07-14 20:57:08,980 [19] INFO - Finished executing the following script: 2020-07-14 20:57:08,980 [19] INFO - --------- 2020-07-14 20:57:08,981 [19] INFO - function SE637303570289483094() {} SE637303570289483094.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 SE637303570289483094().executeScript(); 2020-07-14 20:57:08,981 [19] INFO - --------- 2020-07-14 20:57:08,981 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 884. 2020-07-14 20:57:08,982 [19] INFO - --------- 2020-07-14 20:57:09,011 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,011 [19] INFO - --------- 2020-07-14 20:57:09,011 [19] INFO - function SE637303570290113130() {} SE637303570290113130.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570290113130().executeScript(); 2020-07-14 20:57:09,012 [19] INFO - --------- 2020-07-14 20:57:09,015 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,015 [19] INFO - --------- 2020-07-14 20:57:09,015 [19] INFO - function SE637303570290143132() {} SE637303570290143132.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 SE637303570290143132().executeScript(); 2020-07-14 20:57:09,016 [19] INFO - --------- 2020-07-14 20:57:09,026 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,026 [19] INFO - --------- 2020-07-14 20:57:09,027 [19] INFO - function SE637303570290143132() {} SE637303570290143132.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 SE637303570290143132().executeScript(); 2020-07-14 20:57:09,027 [19] INFO - --------- 2020-07-14 20:57:09,027 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 885. 2020-07-14 20:57:09,028 [19] INFO - --------- 2020-07-14 20:57:09,028 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,029 [19] INFO - --------- 2020-07-14 20:57:09,029 [19] INFO - function SE637303570290283140() {} SE637303570290283140.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570290283140().executeScript(); 2020-07-14 20:57:09,029 [19] INFO - --------- 2020-07-14 20:57:09,034 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,034 [19] INFO - --------- 2020-07-14 20:57:09,034 [19] INFO - function SE637303570290283140() {} SE637303570290283140.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570290283140().executeScript(); 2020-07-14 20:57:09,035 [19] INFO - --------- 2020-07-14 20:57:09,035 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 886. 2020-07-14 20:57:09,035 [19] INFO - --------- 2020-07-14 20:57:09,037 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,037 [19] INFO - --------- 2020-07-14 20:57:09,038 [19] INFO - function SE637303570290113130() {} SE637303570290113130.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570290113130().executeScript(); 2020-07-14 20:57:09,038 [19] INFO - --------- 2020-07-14 20:57:09,038 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 887. 2020-07-14 20:57:09,039 [19] INFO - --------- 2020-07-14 20:57:09,050 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,050 [19] INFO - --------- 2020-07-14 20:57:09,050 [19] INFO - function SE637303570290503153() {} SE637303570290503153.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570290503153().executeScript(); 2020-07-14 20:57:09,051 [19] INFO - --------- 2020-07-14 20:57:09,053 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,053 [19] INFO - --------- 2020-07-14 20:57:09,054 [19] INFO - function SE637303570290533154() {} SE637303570290533154.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 SE637303570290533154().executeScript(); 2020-07-14 20:57:09,054 [19] INFO - --------- 2020-07-14 20:57:09,065 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,066 [19] INFO - --------- 2020-07-14 20:57:09,066 [19] INFO - function SE637303570290533154() {} SE637303570290533154.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 SE637303570290533154().executeScript(); 2020-07-14 20:57:09,066 [19] INFO - --------- 2020-07-14 20:57:09,067 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 888. 2020-07-14 20:57:09,067 [19] INFO - --------- 2020-07-14 20:57:09,068 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,068 [19] INFO - --------- 2020-07-14 20:57:09,069 [19] INFO - function SE637303570290683163() {} SE637303570290683163.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570290683163().executeScript(); 2020-07-14 20:57:09,069 [19] INFO - --------- 2020-07-14 20:57:09,071 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,071 [19] INFO - --------- 2020-07-14 20:57:09,071 [19] INFO - function SE637303570290683163() {} SE637303570290683163.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570290683163().executeScript(); 2020-07-14 20:57:09,072 [19] INFO - --------- 2020-07-14 20:57:09,072 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 889. 2020-07-14 20:57:09,072 [19] INFO - --------- 2020-07-14 20:57:09,074 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,074 [19] INFO - --------- 2020-07-14 20:57:09,074 [19] INFO - function SE637303570290503153() {} SE637303570290503153.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570290503153().executeScript(); 2020-07-14 20:57:09,075 [19] INFO - --------- 2020-07-14 20:57:09,075 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 890. 2020-07-14 20:57:09,075 [19] INFO - --------- 2020-07-14 20:57:09,086 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,086 [19] INFO - --------- 2020-07-14 20:57:09,086 [19] INFO - function SE637303570290863173() {} SE637303570290863173.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570290863173().executeScript(); 2020-07-14 20:57:09,087 [19] INFO - --------- 2020-07-14 20:57:09,089 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,090 [19] INFO - --------- 2020-07-14 20:57:09,090 [19] INFO - function SE637303570290893175() {} SE637303570290893175.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 SE637303570290893175().executeScript(); 2020-07-14 20:57:09,091 [19] INFO - --------- 2020-07-14 20:57:09,103 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,103 [19] INFO - --------- 2020-07-14 20:57:09,103 [19] INFO - function SE637303570290893175() {} SE637303570290893175.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 SE637303570290893175().executeScript(); 2020-07-14 20:57:09,104 [19] INFO - --------- 2020-07-14 20:57:09,104 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 891. 2020-07-14 20:57:09,105 [19] INFO - --------- 2020-07-14 20:57:09,105 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,106 [19] INFO - --------- 2020-07-14 20:57:09,106 [19] INFO - function SE637303570291053184() {} SE637303570291053184.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291053184().executeScript(); 2020-07-14 20:57:09,107 [19] INFO - --------- 2020-07-14 20:57:09,111 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,112 [19] INFO - --------- 2020-07-14 20:57:09,112 [19] INFO - function SE637303570291053184() {} SE637303570291053184.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291053184().executeScript(); 2020-07-14 20:57:09,113 [19] INFO - --------- 2020-07-14 20:57:09,114 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 892. 2020-07-14 20:57:09,114 [19] INFO - --------- 2020-07-14 20:57:09,115 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,116 [19] INFO - --------- 2020-07-14 20:57:09,116 [19] INFO - function SE637303570290863173() {} SE637303570290863173.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570290863173().executeScript(); 2020-07-14 20:57:09,116 [19] INFO - --------- 2020-07-14 20:57:09,117 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 893. 2020-07-14 20:57:09,117 [19] INFO - --------- 2020-07-14 20:57:09,120 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,120 [19] INFO - --------- 2020-07-14 20:57:09,121 [19] INFO - function SE637303570287542983() {} SE637303570287542983.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 SE637303570287542983().executeScript(); 2020-07-14 20:57:09,122 [19] INFO - --------- 2020-07-14 20:57:09,123 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 894. 2020-07-14 20:57:09,123 [19] INFO - --------- 2020-07-14 20:57:09,124 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,124 [19] INFO - --------- 2020-07-14 20:57:09,125 [19] INFO - function SE637303570291243195() {} SE637303570291243195.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu-layout.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!=2 ) { return; } context.write("\r\n\r\n\r\n\t"); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n\t\t\t"); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n\t\t\t "); context.write( system.partial("submenu1.html", p.id, 2) ); context.write("\r\n\t\t\t"); } context.write("\r\n\r\n\t"); } } context.write("\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\submenu-layout.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291243195().executeScript(); 2020-07-14 20:57:09,125 [19] INFO - --------- 2020-07-14 20:57:09,131 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,131 [19] INFO - --------- 2020-07-14 20:57:09,132 [19] INFO - function SE637303570291313199() {} SE637303570291313199.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu1.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\t
      \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-submenu1-aktiv.html", p.id, 2) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu1.html", p.id, 2) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t
    \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\submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291313199().executeScript(); 2020-07-14 20:57:09,132 [19] INFO - --------- 2020-07-14 20:57:09,138 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,139 [19] INFO - --------- 2020-07-14 20:57:09,139 [19] INFO - function SE637303570291383203() {} SE637303570291383203.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1-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"); context.write( system.partial("submenu2.html", p.id) ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291383203().executeScript(); 2020-07-14 20:57:09,139 [19] INFO - --------- 2020-07-14 20:57:09,141 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,141 [19] INFO - --------- 2020-07-14 20:57:09,142 [19] INFO - function SE637303570291413205() {} SE637303570291413205.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu2.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!=3 ) { return; } context.write("\r\n\t\t
      \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-submenu2-aktiv.html", p.id, 3) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu2.html", p.id, 3) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t\t
    \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\submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291413205().executeScript(); 2020-07-14 20:57:09,142 [19] INFO - --------- 2020-07-14 20:57:09,145 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,146 [19] INFO - --------- 2020-07-14 20:57:09,146 [19] INFO - function SE637303570291453207() {} SE637303570291453207.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291453207().executeScript(); 2020-07-14 20:57:09,147 [19] INFO - --------- 2020-07-14 20:57:09,148 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,149 [19] INFO - --------- 2020-07-14 20:57:09,149 [19] INFO - function SE637303570291453207() {} SE637303570291453207.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291453207().executeScript(); 2020-07-14 20:57:09,149 [19] INFO - --------- 2020-07-14 20:57:09,150 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 895. 2020-07-14 20:57:09,150 [19] INFO - --------- 2020-07-14 20:57:09,152 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,152 [19] INFO - --------- 2020-07-14 20:57:09,152 [19] INFO - function SE637303570291523211() {} SE637303570291523211.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291523211().executeScript(); 2020-07-14 20:57:09,153 [19] INFO - --------- 2020-07-14 20:57:09,155 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,155 [19] INFO - --------- 2020-07-14 20:57:09,155 [19] INFO - function SE637303570291523211() {} SE637303570291523211.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291523211().executeScript(); 2020-07-14 20:57:09,156 [19] INFO - --------- 2020-07-14 20:57:09,156 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 896. 2020-07-14 20:57:09,156 [19] INFO - --------- 2020-07-14 20:57:09,158 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,159 [19] INFO - --------- 2020-07-14 20:57:09,159 [19] INFO - function SE637303570291583214() {} SE637303570291583214.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291583214().executeScript(); 2020-07-14 20:57:09,159 [19] INFO - --------- 2020-07-14 20:57:09,161 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,162 [19] INFO - --------- 2020-07-14 20:57:09,162 [19] INFO - function SE637303570291583214() {} SE637303570291583214.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291583214().executeScript(); 2020-07-14 20:57:09,163 [19] INFO - --------- 2020-07-14 20:57:09,163 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 897. 2020-07-14 20:57:09,163 [19] INFO - --------- 2020-07-14 20:57:09,165 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,165 [19] INFO - --------- 2020-07-14 20:57:09,166 [19] INFO - function SE637303570291653218() {} SE637303570291653218.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2-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"); context.write( system.partial("submenu2.html", p.id) ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291653218().executeScript(); 2020-07-14 20:57:09,166 [19] INFO - --------- 2020-07-14 20:57:09,168 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,168 [19] INFO - --------- 2020-07-14 20:57:09,168 [19] INFO - function SE637303570291683220() {} SE637303570291683220.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu2.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!=3 ) { return; } context.write("\r\n\t\t
      \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-submenu2-aktiv.html", p.id, 3) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu2.html", p.id, 3) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t\t
    \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\submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291683220().executeScript(); 2020-07-14 20:57:09,169 [19] INFO - --------- 2020-07-14 20:57:09,170 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,171 [19] INFO - --------- 2020-07-14 20:57:09,171 [19] INFO - function SE637303570291683220() {} SE637303570291683220.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu2.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!=3 ) { return; } context.write("\r\n\t\t
      \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-submenu2-aktiv.html", p.id, 3) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu2.html", p.id, 3) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t\t
    \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\submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291683220().executeScript(); 2020-07-14 20:57:09,171 [19] INFO - --------- 2020-07-14 20:57:09,172 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 898. 2020-07-14 20:57:09,172 [19] INFO - --------- 2020-07-14 20:57:09,173 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,173 [19] INFO - --------- 2020-07-14 20:57:09,173 [19] INFO - function SE637303570291653218() {} SE637303570291653218.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2-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"); context.write( system.partial("submenu2.html", p.id) ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291653218().executeScript(); 2020-07-14 20:57:09,174 [19] INFO - --------- 2020-07-14 20:57:09,174 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 899. 2020-07-14 20:57:09,174 [19] INFO - --------- 2020-07-14 20:57:09,175 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,175 [19] INFO - --------- 2020-07-14 20:57:09,175 [19] INFO - function SE637303570291413205() {} SE637303570291413205.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu2.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!=3 ) { return; } context.write("\r\n\t\t
      \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-submenu2-aktiv.html", p.id, 3) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu2.html", p.id, 3) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t\t
    \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\submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291413205().executeScript(); 2020-07-14 20:57:09,176 [19] INFO - --------- 2020-07-14 20:57:09,176 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 900. 2020-07-14 20:57:09,176 [19] INFO - --------- 2020-07-14 20:57:09,177 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,177 [19] INFO - --------- 2020-07-14 20:57:09,178 [19] INFO - function SE637303570291383203() {} SE637303570291383203.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1-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"); context.write( system.partial("submenu2.html", p.id) ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291383203().executeScript(); 2020-07-14 20:57:09,178 [19] INFO - --------- 2020-07-14 20:57:09,178 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 901. 2020-07-14 20:57:09,179 [19] INFO - --------- 2020-07-14 20:57:09,179 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,180 [19] INFO - --------- 2020-07-14 20:57:09,180 [19] INFO - function SE637303570291313199() {} SE637303570291313199.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu1.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\t
      \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-submenu1-aktiv.html", p.id, 2) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu1.html", p.id, 2) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t
    \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\submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291313199().executeScript(); 2020-07-14 20:57:09,181 [19] INFO - --------- 2020-07-14 20:57:09,181 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 902. 2020-07-14 20:57:09,181 [19] INFO - --------- 2020-07-14 20:57:09,197 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,198 [19] INFO - --------- 2020-07-14 20:57:09,198 [19] INFO - function SE637303570291243195() {} SE637303570291243195.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu-layout.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!=2 ) { return; } context.write("\r\n\r\n\r\n\t"); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n\t\t\t"); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n\t\t\t "); context.write( system.partial("submenu1.html", p.id, 2) ); context.write("\r\n\t\t\t"); } context.write("\r\n\r\n\t"); } } context.write("\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\submenu-layout.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570291243195().executeScript(); 2020-07-14 20:57:09,199 [19] INFO - --------- 2020-07-14 20:57:09,199 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 903. 2020-07-14 20:57:09,199 [19] INFO - --------- 2020-07-14 20:57:09,204 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,204 [19] INFO - --------- 2020-07-14 20:57:09,205 [19] INFO - function SE637303570292033240() {} SE637303570292033240.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 SE637303570292033240().executeScript(); 2020-07-14 20:57:09,206 [19] INFO - --------- 2020-07-14 20:57:09,216 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,216 [19] INFO - --------- 2020-07-14 20:57:09,216 [19] INFO - function SE637303570292033240() {} SE637303570292033240.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 SE637303570292033240().executeScript(); 2020-07-14 20:57:09,218 [19] INFO - --------- 2020-07-14 20:57:09,218 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 904. 2020-07-14 20:57:09,219 [19] INFO - --------- 2020-07-14 20:57:09,220 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,220 [19] INFO - --------- 2020-07-14 20:57:09,220 [19] INFO - function SE637303570292203250() {} SE637303570292203250.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. var args = context.param(0, {}); var wraptag = args["wraptag"] || "div"; var menuid = args["menuid"] || "xmenu"; var menuclass = args["menuclass"] || ""; var listwrapper = args["listwrapper"] || ["",""]; var itemwrapper = args["itemwrapper"] || ["",""]; var areaname = args["areaname"] || "Footer"; context.write("\r\n"); if ( page.attribute("show_extra_menu") ) { var extraMenu = page.extraMenu; context.write("\r\n\t<"); context.write( wraptag ); context.write(" id=\""); context.write( menuid ); context.write("\" class=\""); context.write( menuclass ); context.write("\" "); context.write( system.partial("inline-editing-xmenu.html", areaname) ); context.write(">\r\n\t\t"); context.write( listwrapper[0] ); context.write("\r\n\t\t"); for ( var mi = 0; mi < extraMenu.menuItems.count; ++mi ) { var menuItem = extraMenu.menuItems.item(mi); var rel = ""; if ( menuItem.nofollow ){ rel += "nofollow "; } if ( menuItem.target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } context.write("\r\n\t\t\t"); context.write( itemwrapper[0] ); context.write(""); context.write(menuItem.name); context.write(""); context.write( itemwrapper[1] ); context.write("\r\n\t\t"); } context.write("\r\n\t\t\t"); var output = ""; // Special case for Top Responsive which can add entries via attribute if ( page.attribute("add_extramenu") ) { output += page.attribute("add_extramenu"); } if ( page.attribute("show_language_menu") ){ // language selection var pf = project.projectFolders; if ( pf.count > 0 ){ output += itemwrapper[0] + '' + itemwrapper[1]; } } if ( output !== "" ){ context.write(output); } context.write("\r\n\t\t\t\r\n\t\t"); context.write( listwrapper[1] ); context.write("\r\n\t\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570292203250().executeScript(); 2020-07-14 20:57:09,221 [19] INFO - --------- 2020-07-14 20:57:09,223 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,223 [19] INFO - --------- 2020-07-14 20:57:09,223 [19] INFO - function SE637303570292233252() {} SE637303570292233252.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570292233252().executeScript(); 2020-07-14 20:57:09,224 [19] INFO - --------- 2020-07-14 20:57:09,225 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,225 [19] INFO - --------- 2020-07-14 20:57:09,225 [19] INFO - function SE637303570292233252() {} SE637303570292233252.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570292233252().executeScript(); 2020-07-14 20:57:09,226 [19] INFO - --------- 2020-07-14 20:57:09,226 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 905. 2020-07-14 20:57:09,226 [19] INFO - --------- 2020-07-14 20:57:09,281 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,282 [19] INFO - --------- 2020-07-14 20:57:09,282 [19] INFO - function SE637303570292203250() {} SE637303570292203250.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. var args = context.param(0, {}); var wraptag = args["wraptag"] || "div"; var menuid = args["menuid"] || "xmenu"; var menuclass = args["menuclass"] || ""; var listwrapper = args["listwrapper"] || ["",""]; var itemwrapper = args["itemwrapper"] || ["",""]; var areaname = args["areaname"] || "Footer"; context.write("\r\n"); if ( page.attribute("show_extra_menu") ) { var extraMenu = page.extraMenu; context.write("\r\n\t<"); context.write( wraptag ); context.write(" id=\""); context.write( menuid ); context.write("\" class=\""); context.write( menuclass ); context.write("\" "); context.write( system.partial("inline-editing-xmenu.html", areaname) ); context.write(">\r\n\t\t"); context.write( listwrapper[0] ); context.write("\r\n\t\t"); for ( var mi = 0; mi < extraMenu.menuItems.count; ++mi ) { var menuItem = extraMenu.menuItems.item(mi); var rel = ""; if ( menuItem.nofollow ){ rel += "nofollow "; } if ( menuItem.target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } context.write("\r\n\t\t\t"); context.write( itemwrapper[0] ); context.write(""); context.write(menuItem.name); context.write(""); context.write( itemwrapper[1] ); context.write("\r\n\t\t"); } context.write("\r\n\t\t\t"); var output = ""; // Special case for Top Responsive which can add entries via attribute if ( page.attribute("add_extramenu") ) { output += page.attribute("add_extramenu"); } if ( page.attribute("show_language_menu") ){ // language selection var pf = project.projectFolders; if ( pf.count > 0 ){ output += itemwrapper[0] + '' + itemwrapper[1]; } } if ( output !== "" ){ context.write(output); } context.write("\r\n\t\t\t\r\n\t\t"); context.write( listwrapper[1] ); context.write("\r\n\t\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570292203250().executeScript(); 2020-07-14 20:57:09,283 [19] INFO - --------- 2020-07-14 20:57:09,283 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 906. 2020-07-14 20:57:09,283 [19] INFO - --------- 2020-07-14 20:57:09,285 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,285 [19] INFO - --------- 2020-07-14 20:57:09,286 [19] INFO - function SE637303570292853287() {} SE637303570292853287.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570292853287().executeScript(); 2020-07-14 20:57:09,286 [19] INFO - --------- 2020-07-14 20:57:09,288 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,288 [19] INFO - --------- 2020-07-14 20:57:09,289 [19] INFO - function SE637303570292853287() {} SE637303570292853287.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570292853287().executeScript(); 2020-07-14 20:57:09,289 [19] INFO - --------- 2020-07-14 20:57:09,289 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 907. 2020-07-14 20:57:09,290 [19] INFO - --------- 2020-07-14 20:57:09,292 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,293 [19] INFO - --------- 2020-07-14 20:57:09,293 [19] INFO - function SE637303570285492866() {} SE637303570285492866.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 SE637303570285492866().executeScript(); 2020-07-14 20:57:09,295 [19] INFO - --------- 2020-07-14 20:57:09,295 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 908. 2020-07-14 20:57:09,296 [19] INFO - --------- 2020-07-14 20:57:09,296 [19] INFO - Closing the script engine. 2020-07-14 20:57:09,297 [19] INFO - --------- 2020-07-14 20:57:09,297 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 908. 2020-07-14 20:57:09,297 [19] INFO - --------- 2020-07-14 20:57:09,351 [19] INFO - Script engine constructed. 2020-07-14 20:57:09,351 [19] INFO - Script engine initialized. 2020-07-14 20:57:09,352 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,352 [19] INFO - --------- 2020-07-14 20:57:09,352 [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:57:09,353 [19] INFO - --------- 2020-07-14 20:57:09,353 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,354 [19] INFO - --------- 2020-07-14 20:57:09,354 [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:57:09,355 [19] INFO - --------- 2020-07-14 20:57:09,355 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 909. 2020-07-14 20:57:09,355 [19] INFO - --------- 2020-07-14 20:57:09,356 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,356 [19] INFO - --------- 2020-07-14 20:57:09,356 [19] INFO - function SE637303570293503324() {} SE637303570293503324.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\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 SE637303570293503324().executeScript(); 2020-07-14 20:57:09,357 [19] INFO - --------- 2020-07-14 20:57:09,359 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,359 [19] INFO - --------- 2020-07-14 20:57:09,359 [19] INFO - function SE637303570293503324() {} SE637303570293503324.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\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 SE637303570293503324().executeScript(); 2020-07-14 20:57:09,360 [19] INFO - --------- 2020-07-14 20:57:09,361 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 910. 2020-07-14 20:57:09,361 [19] INFO - --------- 2020-07-14 20:57:09,362 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,362 [19] INFO - --------- 2020-07-14 20:57:09,363 [19] INFO - function SE637303570293623331() {} SE637303570293623331.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 SE637303570293623331().executeScript(); 2020-07-14 20:57:09,364 [19] INFO - --------- 2020-07-14 20:57:09,380 [19] INFO - About to execute the following script: 2020-07-14 20:57:09,380 [19] INFO - --------- 2020-07-14 20:57:09,380 [19] INFO - function SE637303570293803341() {} SE637303570293803341.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 SE637303570293803341().executeScript(); 2020-07-14 20:57:09,381 [19] INFO - --------- 2020-07-14 20:57:09,382 [19] INFO - Finished executing the following script: 2020-07-14 20:57:09,382 [19] INFO - --------- 2020-07-14 20:57:09,383 [19] INFO - function SE637303570293803341() {} SE637303570293803341.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 SE637303570293803341().executeScript(); 2020-07-14 20:57:10,595 [19] INFO - --------- 2020-07-14 20:57:10,595 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 911. 2020-07-14 20:57:10,596 [19] INFO - --------- 2020-07-14 20:57:10,601 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,602 [19] INFO - --------- 2020-07-14 20:57:10,602 [19] INFO - function SE637303570306014040() {} SE637303570306014040.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 SE637303570306014040().executeScript(); 2020-07-14 20:57:10,602 [19] INFO - --------- 2020-07-14 20:57:10,604 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,604 [19] INFO - --------- 2020-07-14 20:57:10,604 [19] INFO - function SE637303570306014040() {} SE637303570306014040.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 SE637303570306014040().executeScript(); 2020-07-14 20:57:10,604 [19] INFO - --------- 2020-07-14 20:57:10,605 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 912. 2020-07-14 20:57:10,605 [19] INFO - --------- 2020-07-14 20:57:10,606 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,606 [19] INFO - --------- 2020-07-14 20:57:10,606 [19] INFO - function SE637303570306064043() {} SE637303570306064043.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 SE637303570306064043().executeScript(); 2020-07-14 20:57:10,607 [19] INFO - --------- 2020-07-14 20:57:10,609 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,609 [19] INFO - --------- 2020-07-14 20:57:10,609 [19] INFO - function SE637303570306064043() {} SE637303570306064043.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 SE637303570306064043().executeScript(); 2020-07-14 20:57:10,610 [19] INFO - --------- 2020-07-14 20:57:10,610 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 913. 2020-07-14 20:57:10,610 [19] INFO - --------- 2020-07-14 20:57:10,613 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,613 [19] INFO - --------- 2020-07-14 20:57:10,613 [19] INFO - function SE637303570306134047() {} SE637303570306134047.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 SE637303570306134047().executeScript(); 2020-07-14 20:57:10,614 [19] INFO - --------- 2020-07-14 20:57:10,615 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,615 [19] INFO - --------- 2020-07-14 20:57:10,616 [19] INFO - function SE637303570306134047() {} SE637303570306134047.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 SE637303570306134047().executeScript(); 2020-07-14 20:57:10,616 [19] INFO - --------- 2020-07-14 20:57:10,616 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 914. 2020-07-14 20:57:10,617 [19] INFO - --------- 2020-07-14 20:57:10,618 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,619 [19] INFO - --------- 2020-07-14 20:57:10,619 [19] INFO - function SE637303570306184049() {} SE637303570306184049.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 SE637303570306184049().executeScript(); 2020-07-14 20:57:10,619 [19] INFO - --------- 2020-07-14 20:57:10,622 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,622 [19] INFO - --------- 2020-07-14 20:57:10,623 [19] INFO - function SE637303570306224052() {} SE637303570306224052.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 SE637303570306224052().executeScript(); 2020-07-14 20:57:10,623 [19] INFO - --------- 2020-07-14 20:57:10,625 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,626 [19] INFO - --------- 2020-07-14 20:57:10,626 [19] INFO - function SE637303570306254053() {} SE637303570306254053.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 SE637303570306254053().executeScript(); 2020-07-14 20:57:10,627 [19] INFO - --------- 2020-07-14 20:57:10,630 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,630 [19] INFO - --------- 2020-07-14 20:57:10,630 [19] INFO - function SE637303570306254053() {} SE637303570306254053.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 SE637303570306254053().executeScript(); 2020-07-14 20:57:10,631 [19] INFO - --------- 2020-07-14 20:57:10,631 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 915. 2020-07-14 20:57:10,631 [19] INFO - --------- 2020-07-14 20:57:10,681 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,682 [19] INFO - --------- 2020-07-14 20:57:10,682 [19] INFO - function SE637303570306224052() {} SE637303570306224052.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 SE637303570306224052().executeScript(); 2020-07-14 20:57:10,684 [19] INFO - --------- 2020-07-14 20:57:10,684 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 916. 2020-07-14 20:57:10,684 [19] INFO - --------- 2020-07-14 20:57:10,686 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,686 [19] INFO - --------- 2020-07-14 20:57:10,687 [19] INFO - function SE637303570306184049() {} SE637303570306184049.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 SE637303570306184049().executeScript(); 2020-07-14 20:57:10,688 [19] INFO - --------- 2020-07-14 20:57:10,688 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 917. 2020-07-14 20:57:10,688 [19] INFO - --------- 2020-07-14 20:57:10,689 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,690 [19] INFO - --------- 2020-07-14 20:57:10,690 [19] INFO - function SE637303570306894090() {} SE637303570306894090.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 SE637303570306894090().executeScript(); 2020-07-14 20:57:10,690 [19] INFO - --------- 2020-07-14 20:57:10,696 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,697 [19] INFO - --------- 2020-07-14 20:57:10,697 [19] INFO - function SE637303570306964094() {} SE637303570306964094.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 SE637303570306964094().executeScript(); 2020-07-14 20:57:10,698 [19] INFO - --------- 2020-07-14 20:57:10,699 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,700 [19] INFO - --------- 2020-07-14 20:57:10,700 [19] INFO - function SE637303570306964094() {} SE637303570306964094.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 SE637303570306964094().executeScript(); 2020-07-14 20:57:10,700 [19] INFO - --------- 2020-07-14 20:57:10,701 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 918. 2020-07-14 20:57:10,701 [19] INFO - --------- 2020-07-14 20:57:10,706 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,706 [19] INFO - --------- 2020-07-14 20:57:10,707 [19] INFO - function SE637303570307064100() {} SE637303570307064100.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 SE637303570307064100().executeScript(); 2020-07-14 20:57:10,707 [19] INFO - --------- 2020-07-14 20:57:10,710 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,711 [19] INFO - --------- 2020-07-14 20:57:10,711 [19] INFO - function SE637303570307064100() {} SE637303570307064100.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 SE637303570307064100().executeScript(); 2020-07-14 20:57:10,711 [19] INFO - --------- 2020-07-14 20:57:10,712 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 919. 2020-07-14 20:57:10,713 [19] INFO - --------- 2020-07-14 20:57:10,721 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,721 [19] INFO - --------- 2020-07-14 20:57:10,722 [19] INFO - function SE637303570307214108() {} SE637303570307214108.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 SE637303570307214108().executeScript(); 2020-07-14 20:57:10,722 [19] INFO - --------- 2020-07-14 20:57:10,724 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,724 [19] INFO - --------- 2020-07-14 20:57:10,724 [19] INFO - function SE637303570307214108() {} SE637303570307214108.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 SE637303570307214108().executeScript(); 2020-07-14 20:57:10,725 [19] INFO - --------- 2020-07-14 20:57:10,725 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 920. 2020-07-14 20:57:10,725 [19] INFO - --------- 2020-07-14 20:57:10,727 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,728 [19] INFO - --------- 2020-07-14 20:57:10,728 [19] INFO - function SE637303570307274112() {} SE637303570307274112.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 SE637303570307274112().executeScript(); 2020-07-14 20:57:10,728 [19] INFO - --------- 2020-07-14 20:57:10,730 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,730 [19] INFO - --------- 2020-07-14 20:57:10,731 [19] INFO - function SE637303570307274112() {} SE637303570307274112.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 SE637303570307274112().executeScript(); 2020-07-14 20:57:10,731 [19] INFO - --------- 2020-07-14 20:57:10,731 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 921. 2020-07-14 20:57:10,732 [19] INFO - --------- 2020-07-14 20:57:10,735 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,735 [19] INFO - --------- 2020-07-14 20:57:10,736 [19] INFO - function SE637303570307354116() {} SE637303570307354116.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 SE637303570307354116().executeScript(); 2020-07-14 20:57:10,736 [19] INFO - --------- 2020-07-14 20:57:10,738 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,738 [19] INFO - --------- 2020-07-14 20:57:10,738 [19] INFO - function SE637303570307354116() {} SE637303570307354116.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 SE637303570307354116().executeScript(); 2020-07-14 20:57:10,739 [19] INFO - --------- 2020-07-14 20:57:10,739 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 922. 2020-07-14 20:57:10,740 [19] INFO - --------- 2020-07-14 20:57:10,742 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,742 [19] INFO - --------- 2020-07-14 20:57:10,742 [19] INFO - function SE637303570307424120() {} SE637303570307424120.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 SE637303570307424120().executeScript(); 2020-07-14 20:57:10,743 [19] INFO - --------- 2020-07-14 20:57:10,745 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,746 [19] INFO - --------- 2020-07-14 20:57:10,746 [19] INFO - function SE637303570307424120() {} SE637303570307424120.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 SE637303570307424120().executeScript(); 2020-07-14 20:57:10,746 [19] INFO - --------- 2020-07-14 20:57:10,747 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 923. 2020-07-14 20:57:10,747 [19] INFO - --------- 2020-07-14 20:57:10,749 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,749 [19] INFO - --------- 2020-07-14 20:57:10,750 [19] INFO - function SE637303570307494124() {} SE637303570307494124.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 SE637303570307494124().executeScript(); 2020-07-14 20:57:10,750 [19] INFO - --------- 2020-07-14 20:57:10,752 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,752 [19] INFO - --------- 2020-07-14 20:57:10,752 [19] INFO - function SE637303570307494124() {} SE637303570307494124.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 SE637303570307494124().executeScript(); 2020-07-14 20:57:10,753 [19] INFO - --------- 2020-07-14 20:57:10,753 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 924. 2020-07-14 20:57:10,753 [19] INFO - --------- 2020-07-14 20:57:10,754 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,755 [19] INFO - --------- 2020-07-14 20:57:10,755 [19] INFO - function SE637303570306894090() {} SE637303570306894090.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 SE637303570306894090().executeScript(); 2020-07-14 20:57:10,755 [19] INFO - --------- 2020-07-14 20:57:10,756 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 925. 2020-07-14 20:57:10,756 [19] INFO - --------- 2020-07-14 20:57:10,757 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,757 [19] INFO - --------- 2020-07-14 20:57:10,758 [19] INFO - function SE637303570307574129() {} SE637303570307574129.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 SE637303570307574129().executeScript(); 2020-07-14 20:57:10,759 [19] INFO - --------- 2020-07-14 20:57:10,760 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,760 [19] INFO - --------- 2020-07-14 20:57:10,760 [19] INFO - function SE637303570307574129() {} SE637303570307574129.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 SE637303570307574129().executeScript(); 2020-07-14 20:57:10,761 [19] INFO - --------- 2020-07-14 20:57:10,761 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 926. 2020-07-14 20:57:10,761 [19] INFO - --------- 2020-07-14 20:57:10,763 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,764 [19] INFO - --------- 2020-07-14 20:57:10,764 [19] INFO - function SE637303570307634132() {} SE637303570307634132.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 SE637303570307634132().executeScript(); 2020-07-14 20:57:10,765 [19] INFO - --------- 2020-07-14 20:57:10,771 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,772 [19] INFO - --------- 2020-07-14 20:57:10,772 [19] INFO - function SE637303570307634132() {} SE637303570307634132.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 SE637303570307634132().executeScript(); 2020-07-14 20:57:10,772 [19] INFO - --------- 2020-07-14 20:57:10,773 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 927. 2020-07-14 20:57:10,773 [19] INFO - --------- 2020-07-14 20:57:10,775 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,775 [19] INFO - --------- 2020-07-14 20:57:10,776 [19] INFO - function SE637303570307754139() {} SE637303570307754139.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 SE637303570307754139().executeScript(); 2020-07-14 20:57:10,778 [19] INFO - --------- 2020-07-14 20:57:10,800 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,800 [19] INFO - --------- 2020-07-14 20:57:10,801 [19] INFO - function SE637303570308004154() {} SE637303570308004154.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 SE637303570308004154().executeScript(); 2020-07-14 20:57:10,801 [19] INFO - --------- 2020-07-14 20:57:10,803 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,803 [19] INFO - --------- 2020-07-14 20:57:10,803 [19] INFO - function SE637303570308034155() {} SE637303570308034155.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 SE637303570308034155().executeScript(); 2020-07-14 20:57:10,804 [19] INFO - --------- 2020-07-14 20:57:10,809 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,810 [19] INFO - --------- 2020-07-14 20:57:10,810 [19] INFO - function SE637303570308034155() {} SE637303570308034155.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 SE637303570308034155().executeScript(); 2020-07-14 20:57:10,811 [19] INFO - --------- 2020-07-14 20:57:10,811 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 928. 2020-07-14 20:57:10,811 [19] INFO - --------- 2020-07-14 20:57:10,812 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,813 [19] INFO - --------- 2020-07-14 20:57:10,813 [19] INFO - function SE637303570308124160() {} SE637303570308124160.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 SE637303570308124160().executeScript(); 2020-07-14 20:57:10,813 [19] INFO - --------- 2020-07-14 20:57:10,818 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,818 [19] INFO - --------- 2020-07-14 20:57:10,819 [19] INFO - function SE637303570308124160() {} SE637303570308124160.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 SE637303570308124160().executeScript(); 2020-07-14 20:57:10,819 [19] INFO - --------- 2020-07-14 20:57:10,819 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 929. 2020-07-14 20:57:10,820 [19] INFO - --------- 2020-07-14 20:57:10,821 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,821 [19] INFO - --------- 2020-07-14 20:57:10,821 [19] INFO - function SE637303570308214166() {} SE637303570308214166.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 SE637303570308214166().executeScript(); 2020-07-14 20:57:10,822 [19] INFO - --------- 2020-07-14 20:57:10,824 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,824 [19] INFO - --------- 2020-07-14 20:57:10,825 [19] INFO - function SE637303570308214166() {} SE637303570308214166.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 SE637303570308214166().executeScript(); 2020-07-14 20:57:10,825 [19] INFO - --------- 2020-07-14 20:57:10,825 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 930. 2020-07-14 20:57:10,826 [19] INFO - --------- 2020-07-14 20:57:10,827 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,827 [19] INFO - --------- 2020-07-14 20:57:10,827 [19] INFO - function SE637303570308274169() {} SE637303570308274169.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 SE637303570308274169().executeScript(); 2020-07-14 20:57:10,828 [19] INFO - --------- 2020-07-14 20:57:10,829 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,829 [19] INFO - --------- 2020-07-14 20:57:10,830 [19] INFO - function SE637303570308274169() {} SE637303570308274169.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 SE637303570308274169().executeScript(); 2020-07-14 20:57:10,830 [19] INFO - --------- 2020-07-14 20:57:10,830 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 931. 2020-07-14 20:57:10,831 [19] INFO - --------- 2020-07-14 20:57:10,832 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,832 [19] INFO - --------- 2020-07-14 20:57:10,832 [19] INFO - function SE637303570308004154() {} SE637303570308004154.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 SE637303570308004154().executeScript(); 2020-07-14 20:57:10,833 [19] INFO - --------- 2020-07-14 20:57:10,834 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 932. 2020-07-14 20:57:10,834 [19] INFO - --------- 2020-07-14 20:57:10,842 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,843 [19] INFO - --------- 2020-07-14 20:57:10,843 [19] INFO - function SE637303570308424178() {} SE637303570308424178.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 SE637303570308424178().executeScript(); 2020-07-14 20:57:10,843 [19] INFO - --------- 2020-07-14 20:57:10,845 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,845 [19] INFO - --------- 2020-07-14 20:57:10,846 [19] INFO - function SE637303570308454179() {} SE637303570308454179.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 SE637303570308454179().executeScript(); 2020-07-14 20:57:10,846 [19] INFO - --------- 2020-07-14 20:57:10,851 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,852 [19] INFO - --------- 2020-07-14 20:57:10,852 [19] INFO - function SE637303570308454179() {} SE637303570308454179.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 SE637303570308454179().executeScript(); 2020-07-14 20:57:10,853 [19] INFO - --------- 2020-07-14 20:57:10,853 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 933. 2020-07-14 20:57:10,853 [19] INFO - --------- 2020-07-14 20:57:10,854 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,855 [19] INFO - --------- 2020-07-14 20:57:10,855 [19] INFO - function SE637303570308544184() {} SE637303570308544184.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 SE637303570308544184().executeScript(); 2020-07-14 20:57:10,855 [19] INFO - --------- 2020-07-14 20:57:10,857 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,857 [19] INFO - --------- 2020-07-14 20:57:10,858 [19] INFO - function SE637303570308544184() {} SE637303570308544184.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 SE637303570308544184().executeScript(); 2020-07-14 20:57:10,859 [19] INFO - --------- 2020-07-14 20:57:10,860 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 934. 2020-07-14 20:57:10,860 [19] INFO - --------- 2020-07-14 20:57:10,861 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,861 [19] INFO - --------- 2020-07-14 20:57:10,861 [19] INFO - function SE637303570308614188() {} SE637303570308614188.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 SE637303570308614188().executeScript(); 2020-07-14 20:57:10,862 [19] INFO - --------- 2020-07-14 20:57:10,864 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,865 [19] INFO - --------- 2020-07-14 20:57:10,866 [19] INFO - function SE637303570308614188() {} SE637303570308614188.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 SE637303570308614188().executeScript(); 2020-07-14 20:57:10,866 [19] INFO - --------- 2020-07-14 20:57:10,866 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 935. 2020-07-14 20:57:10,867 [19] INFO - --------- 2020-07-14 20:57:10,868 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,868 [19] INFO - --------- 2020-07-14 20:57:10,868 [19] INFO - function SE637303570308684192() {} SE637303570308684192.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 SE637303570308684192().executeScript(); 2020-07-14 20:57:10,869 [19] INFO - --------- 2020-07-14 20:57:10,870 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,870 [19] INFO - --------- 2020-07-14 20:57:10,870 [19] INFO - function SE637303570308684192() {} SE637303570308684192.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 SE637303570308684192().executeScript(); 2020-07-14 20:57:10,871 [19] INFO - --------- 2020-07-14 20:57:10,871 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 936. 2020-07-14 20:57:10,871 [19] INFO - --------- 2020-07-14 20:57:10,872 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,873 [19] INFO - --------- 2020-07-14 20:57:10,873 [19] INFO - function SE637303570308424178() {} SE637303570308424178.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 SE637303570308424178().executeScript(); 2020-07-14 20:57:10,874 [19] INFO - --------- 2020-07-14 20:57:10,874 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 937. 2020-07-14 20:57:10,874 [19] INFO - --------- 2020-07-14 20:57:10,884 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,885 [19] INFO - --------- 2020-07-14 20:57:10,885 [19] INFO - function SE637303570308844202() {} SE637303570308844202.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570308844202().executeScript(); 2020-07-14 20:57:10,886 [19] INFO - --------- 2020-07-14 20:57:10,896 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,896 [19] INFO - --------- 2020-07-14 20:57:10,897 [19] INFO - function SE637303570308964208() {} SE637303570308964208.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 SE637303570308964208().executeScript(); 2020-07-14 20:57:10,897 [19] INFO - --------- 2020-07-14 20:57:10,903 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,904 [19] INFO - --------- 2020-07-14 20:57:10,904 [19] INFO - function SE637303570308964208() {} SE637303570308964208.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 SE637303570308964208().executeScript(); 2020-07-14 20:57:10,905 [19] INFO - --------- 2020-07-14 20:57:10,905 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 938. 2020-07-14 20:57:10,905 [19] INFO - --------- 2020-07-14 20:57:10,906 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,907 [19] INFO - --------- 2020-07-14 20:57:10,907 [19] INFO - function SE637303570309064214() {} SE637303570309064214.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309064214().executeScript(); 2020-07-14 20:57:10,907 [19] INFO - --------- 2020-07-14 20:57:10,910 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,910 [19] INFO - --------- 2020-07-14 20:57:10,910 [19] INFO - function SE637303570309064214() {} SE637303570309064214.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309064214().executeScript(); 2020-07-14 20:57:10,911 [19] INFO - --------- 2020-07-14 20:57:10,911 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 939. 2020-07-14 20:57:10,911 [19] INFO - --------- 2020-07-14 20:57:10,913 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,913 [19] INFO - --------- 2020-07-14 20:57:10,913 [19] INFO - function SE637303570308844202() {} SE637303570308844202.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570308844202().executeScript(); 2020-07-14 20:57:10,914 [19] INFO - --------- 2020-07-14 20:57:10,914 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 940. 2020-07-14 20:57:10,914 [19] INFO - --------- 2020-07-14 20:57:10,920 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,920 [19] INFO - --------- 2020-07-14 20:57:10,921 [19] INFO - function SE637303570309204222() {} SE637303570309204222.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309204222().executeScript(); 2020-07-14 20:57:10,921 [19] INFO - --------- 2020-07-14 20:57:10,923 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,924 [19] INFO - --------- 2020-07-14 20:57:10,924 [19] INFO - function SE637303570309234224() {} SE637303570309234224.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 SE637303570309234224().executeScript(); 2020-07-14 20:57:10,925 [19] INFO - --------- 2020-07-14 20:57:10,930 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,931 [19] INFO - --------- 2020-07-14 20:57:10,931 [19] INFO - function SE637303570309234224() {} SE637303570309234224.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 SE637303570309234224().executeScript(); 2020-07-14 20:57:10,932 [19] INFO - --------- 2020-07-14 20:57:10,933 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 941. 2020-07-14 20:57:10,934 [19] INFO - --------- 2020-07-14 20:57:10,934 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,935 [19] INFO - --------- 2020-07-14 20:57:10,935 [19] INFO - function SE637303570309344230() {} SE637303570309344230.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309344230().executeScript(); 2020-07-14 20:57:10,936 [19] INFO - --------- 2020-07-14 20:57:10,937 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,938 [19] INFO - --------- 2020-07-14 20:57:10,938 [19] INFO - function SE637303570309344230() {} SE637303570309344230.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309344230().executeScript(); 2020-07-14 20:57:10,938 [19] INFO - --------- 2020-07-14 20:57:10,939 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 942. 2020-07-14 20:57:10,939 [19] INFO - --------- 2020-07-14 20:57:10,940 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,940 [19] INFO - --------- 2020-07-14 20:57:10,941 [19] INFO - function SE637303570309204222() {} SE637303570309204222.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309204222().executeScript(); 2020-07-14 20:57:10,941 [19] INFO - --------- 2020-07-14 20:57:10,942 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 943. 2020-07-14 20:57:10,942 [19] INFO - --------- 2020-07-14 20:57:10,947 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,947 [19] INFO - --------- 2020-07-14 20:57:10,947 [19] INFO - function SE637303570309464237() {} SE637303570309464237.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309464237().executeScript(); 2020-07-14 20:57:10,948 [19] INFO - --------- 2020-07-14 20:57:10,951 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,952 [19] INFO - --------- 2020-07-14 20:57:10,952 [19] INFO - function SE637303570309514240() {} SE637303570309514240.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 SE637303570309514240().executeScript(); 2020-07-14 20:57:10,953 [19] INFO - --------- 2020-07-14 20:57:10,959 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,959 [19] INFO - --------- 2020-07-14 20:57:10,959 [19] INFO - function SE637303570309514240() {} SE637303570309514240.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 SE637303570309514240().executeScript(); 2020-07-14 20:57:10,960 [19] INFO - --------- 2020-07-14 20:57:10,960 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 944. 2020-07-14 20:57:10,960 [19] INFO - --------- 2020-07-14 20:57:10,961 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,962 [19] INFO - --------- 2020-07-14 20:57:10,963 [19] INFO - function SE637303570309614246() {} SE637303570309614246.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309614246().executeScript(); 2020-07-14 20:57:10,963 [19] INFO - --------- 2020-07-14 20:57:10,965 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,965 [19] INFO - --------- 2020-07-14 20:57:10,966 [19] INFO - function SE637303570309614246() {} SE637303570309614246.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309614246().executeScript(); 2020-07-14 20:57:10,966 [19] INFO - --------- 2020-07-14 20:57:10,966 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 945. 2020-07-14 20:57:10,967 [19] INFO - --------- 2020-07-14 20:57:10,968 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,968 [19] INFO - --------- 2020-07-14 20:57:10,968 [19] INFO - function SE637303570309464237() {} SE637303570309464237.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309464237().executeScript(); 2020-07-14 20:57:10,969 [19] INFO - --------- 2020-07-14 20:57:10,969 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 946. 2020-07-14 20:57:10,970 [19] INFO - --------- 2020-07-14 20:57:10,973 [19] INFO - Finished executing the following script: 2020-07-14 20:57:10,974 [19] INFO - --------- 2020-07-14 20:57:10,975 [19] INFO - function SE637303570307754139() {} SE637303570307754139.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 SE637303570307754139().executeScript(); 2020-07-14 20:57:10,976 [19] INFO - --------- 2020-07-14 20:57:10,977 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 947. 2020-07-14 20:57:10,977 [19] INFO - --------- 2020-07-14 20:57:10,978 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,978 [19] INFO - --------- 2020-07-14 20:57:10,979 [19] INFO - function SE637303570309784255() {} SE637303570309784255.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu-layout.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!=2 ) { return; } context.write("\r\n\r\n\r\n\t"); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n\t\t\t"); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n\t\t\t "); context.write( system.partial("submenu1.html", p.id, 2) ); context.write("\r\n\t\t\t"); } context.write("\r\n\r\n\t"); } } context.write("\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\submenu-layout.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309784255().executeScript(); 2020-07-14 20:57:10,979 [19] INFO - --------- 2020-07-14 20:57:10,986 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,987 [19] INFO - --------- 2020-07-14 20:57:10,988 [19] INFO - function SE637303570309864260() {} SE637303570309864260.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu1.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\t
      \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-submenu1-aktiv.html", p.id, 2) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu1.html", p.id, 2) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t
    \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\submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309864260().executeScript(); 2020-07-14 20:57:10,988 [19] INFO - --------- 2020-07-14 20:57:10,994 [19] INFO - About to execute the following script: 2020-07-14 20:57:10,995 [19] INFO - --------- 2020-07-14 20:57:10,995 [19] INFO - function SE637303570309944265() {} SE637303570309944265.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1-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"); context.write( system.partial("submenu2.html", p.id) ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309944265().executeScript(); 2020-07-14 20:57:10,996 [19] INFO - --------- 2020-07-14 20:57:11,000 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,000 [19] INFO - --------- 2020-07-14 20:57:11,001 [19] INFO - function SE637303570310004268() {} SE637303570310004268.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu2.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!=3 ) { return; } context.write("\r\n\t\t
      \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-submenu2-aktiv.html", p.id, 3) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu2.html", p.id, 3) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t\t
    \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\submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310004268().executeScript(); 2020-07-14 20:57:11,001 [19] INFO - --------- 2020-07-14 20:57:11,005 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,005 [19] INFO - --------- 2020-07-14 20:57:11,005 [19] INFO - function SE637303570310054271() {} SE637303570310054271.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310054271().executeScript(); 2020-07-14 20:57:11,006 [19] INFO - --------- 2020-07-14 20:57:11,008 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,008 [19] INFO - --------- 2020-07-14 20:57:11,008 [19] INFO - function SE637303570310054271() {} SE637303570310054271.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310054271().executeScript(); 2020-07-14 20:57:11,009 [19] INFO - --------- 2020-07-14 20:57:11,009 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 948. 2020-07-14 20:57:11,009 [19] INFO - --------- 2020-07-14 20:57:11,011 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,012 [19] INFO - --------- 2020-07-14 20:57:11,012 [19] INFO - function SE637303570310114274() {} SE637303570310114274.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310114274().executeScript(); 2020-07-14 20:57:11,013 [19] INFO - --------- 2020-07-14 20:57:11,014 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,015 [19] INFO - --------- 2020-07-14 20:57:11,015 [19] INFO - function SE637303570310114274() {} SE637303570310114274.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310114274().executeScript(); 2020-07-14 20:57:11,015 [19] INFO - --------- 2020-07-14 20:57:11,016 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 949. 2020-07-14 20:57:11,016 [19] INFO - --------- 2020-07-14 20:57:11,019 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,019 [19] INFO - --------- 2020-07-14 20:57:11,019 [19] INFO - function SE637303570310194279() {} SE637303570310194279.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310194279().executeScript(); 2020-07-14 20:57:11,020 [19] INFO - --------- 2020-07-14 20:57:11,022 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,023 [19] INFO - --------- 2020-07-14 20:57:11,024 [19] INFO - function SE637303570310194279() {} SE637303570310194279.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t\t
  • "); 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-submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310194279().executeScript(); 2020-07-14 20:57:11,024 [19] INFO - --------- 2020-07-14 20:57:11,024 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 950. 2020-07-14 20:57:11,025 [19] INFO - --------- 2020-07-14 20:57:11,026 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,027 [19] INFO - --------- 2020-07-14 20:57:11,027 [19] INFO - function SE637303570310264283() {} SE637303570310264283.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2-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"); context.write( system.partial("submenu2.html", p.id) ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310264283().executeScript(); 2020-07-14 20:57:11,027 [19] INFO - --------- 2020-07-14 20:57:11,029 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,030 [19] INFO - --------- 2020-07-14 20:57:11,030 [19] INFO - function SE637303570310294285() {} SE637303570310294285.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu2.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!=3 ) { return; } context.write("\r\n\t\t
      \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-submenu2-aktiv.html", p.id, 3) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu2.html", p.id, 3) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t\t
    \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\submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310294285().executeScript(); 2020-07-14 20:57:11,032 [19] INFO - --------- 2020-07-14 20:57:11,033 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,034 [19] INFO - --------- 2020-07-14 20:57:11,034 [19] INFO - function SE637303570310294285() {} SE637303570310294285.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu2.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!=3 ) { return; } context.write("\r\n\t\t
      \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-submenu2-aktiv.html", p.id, 3) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu2.html", p.id, 3) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t\t
    \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\submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310294285().executeScript(); 2020-07-14 20:57:11,034 [19] INFO - --------- 2020-07-14 20:57:11,035 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 951. 2020-07-14 20:57:11,035 [19] INFO - --------- 2020-07-14 20:57:11,036 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,036 [19] INFO - --------- 2020-07-14 20:57:11,036 [19] INFO - function SE637303570310264283() {} SE637303570310264283.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2-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"); context.write( system.partial("submenu2.html", p.id) ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu2-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310264283().executeScript(); 2020-07-14 20:57:11,038 [19] INFO - --------- 2020-07-14 20:57:11,038 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 952. 2020-07-14 20:57:11,038 [19] INFO - --------- 2020-07-14 20:57:11,039 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,040 [19] INFO - --------- 2020-07-14 20:57:11,040 [19] INFO - function SE637303570310004268() {} SE637303570310004268.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu2.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!=3 ) { return; } context.write("\r\n\t\t
      \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-submenu2-aktiv.html", p.id, 3) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu2.html", p.id, 3) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t\t
    \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\submenu2.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310004268().executeScript(); 2020-07-14 20:57:11,040 [19] INFO - --------- 2020-07-14 20:57:11,041 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 953. 2020-07-14 20:57:11,041 [19] INFO - --------- 2020-07-14 20:57:11,042 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,042 [19] INFO - --------- 2020-07-14 20:57:11,042 [19] INFO - function SE637303570309944265() {} SE637303570309944265.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1-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"); context.write( system.partial("submenu2.html", p.id) ); context.write("
  • \r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1-aktiv.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309944265().executeScript(); 2020-07-14 20:57:11,043 [19] INFO - --------- 2020-07-14 20:57:11,043 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 954. 2020-07-14 20:57:11,043 [19] INFO - --------- 2020-07-14 20:57:11,044 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,044 [19] INFO - --------- 2020-07-14 20:57:11,045 [19] INFO - function SE637303570309864260() {} SE637303570309864260.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu1.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\t
      \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-submenu1-aktiv.html", p.id, 2) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu1.html", p.id, 2) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t
    \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\submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309864260().executeScript(); 2020-07-14 20:57:11,045 [19] INFO - --------- 2020-07-14 20:57:11,045 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 955. 2020-07-14 20:57:11,046 [19] INFO - --------- 2020-07-14 20:57:11,063 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,063 [19] INFO - --------- 2020-07-14 20:57:11,064 [19] INFO - function SE637303570309784255() {} SE637303570309784255.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu-layout.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!=2 ) { return; } context.write("\r\n\r\n\r\n\t"); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n\t\t\t"); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n\t\t\t "); context.write( system.partial("submenu1.html", p.id, 2) ); context.write("\r\n\t\t\t"); } context.write("\r\n\r\n\t"); } } context.write("\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\submenu-layout.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570309784255().executeScript(); 2020-07-14 20:57:11,064 [19] INFO - --------- 2020-07-14 20:57:11,064 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 956. 2020-07-14 20:57:11,065 [19] INFO - --------- 2020-07-14 20:57:11,066 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,067 [19] INFO - --------- 2020-07-14 20:57:11,067 [19] INFO - function SE637303570310664306() {} SE637303570310664306.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 SE637303570310664306().executeScript(); 2020-07-14 20:57:11,069 [19] INFO - --------- 2020-07-14 20:57:11,075 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,076 [19] INFO - --------- 2020-07-14 20:57:11,076 [19] INFO - function SE637303570310664306() {} SE637303570310664306.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 SE637303570310664306().executeScript(); 2020-07-14 20:57:11,079 [19] INFO - --------- 2020-07-14 20:57:11,079 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 957. 2020-07-14 20:57:11,079 [19] INFO - --------- 2020-07-14 20:57:11,080 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,081 [19] INFO - --------- 2020-07-14 20:57:11,081 [19] INFO - function SE637303570310804314() {} SE637303570310804314.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. var args = context.param(0, {}); var wraptag = args["wraptag"] || "div"; var menuid = args["menuid"] || "xmenu"; var menuclass = args["menuclass"] || ""; var listwrapper = args["listwrapper"] || ["",""]; var itemwrapper = args["itemwrapper"] || ["",""]; var areaname = args["areaname"] || "Footer"; context.write("\r\n"); if ( page.attribute("show_extra_menu") ) { var extraMenu = page.extraMenu; context.write("\r\n\t<"); context.write( wraptag ); context.write(" id=\""); context.write( menuid ); context.write("\" class=\""); context.write( menuclass ); context.write("\" "); context.write( system.partial("inline-editing-xmenu.html", areaname) ); context.write(">\r\n\t\t"); context.write( listwrapper[0] ); context.write("\r\n\t\t"); for ( var mi = 0; mi < extraMenu.menuItems.count; ++mi ) { var menuItem = extraMenu.menuItems.item(mi); var rel = ""; if ( menuItem.nofollow ){ rel += "nofollow "; } if ( menuItem.target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } context.write("\r\n\t\t\t"); context.write( itemwrapper[0] ); context.write(""); context.write(menuItem.name); context.write(""); context.write( itemwrapper[1] ); context.write("\r\n\t\t"); } context.write("\r\n\t\t\t"); var output = ""; // Special case for Top Responsive which can add entries via attribute if ( page.attribute("add_extramenu") ) { output += page.attribute("add_extramenu"); } if ( page.attribute("show_language_menu") ){ // language selection var pf = project.projectFolders; if ( pf.count > 0 ){ output += itemwrapper[0] + '' + itemwrapper[1]; } } if ( output !== "" ){ context.write(output); } context.write("\r\n\t\t\t\r\n\t\t"); context.write( listwrapper[1] ); context.write("\r\n\t\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310804314().executeScript(); 2020-07-14 20:57:11,082 [19] INFO - --------- 2020-07-14 20:57:11,083 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,084 [19] INFO - --------- 2020-07-14 20:57:11,084 [19] INFO - function SE637303570310834315() {} SE637303570310834315.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310834315().executeScript(); 2020-07-14 20:57:11,084 [19] INFO - --------- 2020-07-14 20:57:11,086 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,087 [19] INFO - --------- 2020-07-14 20:57:11,087 [19] INFO - function SE637303570310834315() {} SE637303570310834315.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310834315().executeScript(); 2020-07-14 20:57:11,087 [19] INFO - --------- 2020-07-14 20:57:11,088 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 958. 2020-07-14 20:57:11,088 [19] INFO - --------- 2020-07-14 20:57:11,093 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,094 [19] INFO - --------- 2020-07-14 20:57:11,094 [19] INFO - function SE637303570310804314() {} SE637303570310804314.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. var args = context.param(0, {}); var wraptag = args["wraptag"] || "div"; var menuid = args["menuid"] || "xmenu"; var menuclass = args["menuclass"] || ""; var listwrapper = args["listwrapper"] || ["",""]; var itemwrapper = args["itemwrapper"] || ["",""]; var areaname = args["areaname"] || "Footer"; context.write("\r\n"); if ( page.attribute("show_extra_menu") ) { var extraMenu = page.extraMenu; context.write("\r\n\t<"); context.write( wraptag ); context.write(" id=\""); context.write( menuid ); context.write("\" class=\""); context.write( menuclass ); context.write("\" "); context.write( system.partial("inline-editing-xmenu.html", areaname) ); context.write(">\r\n\t\t"); context.write( listwrapper[0] ); context.write("\r\n\t\t"); for ( var mi = 0; mi < extraMenu.menuItems.count; ++mi ) { var menuItem = extraMenu.menuItems.item(mi); var rel = ""; if ( menuItem.nofollow ){ rel += "nofollow "; } if ( menuItem.target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } context.write("\r\n\t\t\t"); context.write( itemwrapper[0] ); context.write(""); context.write(menuItem.name); context.write(""); context.write( itemwrapper[1] ); context.write("\r\n\t\t"); } context.write("\r\n\t\t\t"); var output = ""; // Special case for Top Responsive which can add entries via attribute if ( page.attribute("add_extramenu") ) { output += page.attribute("add_extramenu"); } if ( page.attribute("show_language_menu") ){ // language selection var pf = project.projectFolders; if ( pf.count > 0 ){ output += itemwrapper[0] + '' + itemwrapper[1]; } } if ( output !== "" ){ context.write(output); } context.write("\r\n\t\t\t\r\n\t\t"); context.write( listwrapper[1] ); context.write("\r\n\t\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310804314().executeScript(); 2020-07-14 20:57:11,094 [19] INFO - --------- 2020-07-14 20:57:11,095 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 959. 2020-07-14 20:57:11,095 [19] INFO - --------- 2020-07-14 20:57:11,097 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,097 [19] INFO - --------- 2020-07-14 20:57:11,099 [19] INFO - function SE637303570310974323() {} SE637303570310974323.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310974323().executeScript(); 2020-07-14 20:57:11,100 [19] INFO - --------- 2020-07-14 20:57:11,101 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,101 [19] INFO - --------- 2020-07-14 20:57:11,102 [19] INFO - function SE637303570310974323() {} SE637303570310974323.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570310974323().executeScript(); 2020-07-14 20:57:11,102 [19] INFO - --------- 2020-07-14 20:57:11,102 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 960. 2020-07-14 20:57:11,103 [19] INFO - --------- 2020-07-14 20:57:11,105 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,106 [19] INFO - --------- 2020-07-14 20:57:11,106 [19] INFO - function SE637303570293623331() {} SE637303570293623331.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 SE637303570293623331().executeScript(); 2020-07-14 20:57:11,107 [19] INFO - --------- 2020-07-14 20:57:11,107 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 961. 2020-07-14 20:57:11,107 [19] INFO - --------- 2020-07-14 20:57:11,109 [19] INFO - Closing the script engine. 2020-07-14 20:57:11,110 [19] INFO - --------- 2020-07-14 20:57:11,110 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 961. 2020-07-14 20:57:11,110 [19] INFO - --------- 2020-07-14 20:57:11,274 [19] INFO - Script engine constructed. 2020-07-14 20:57:11,274 [19] INFO - Script engine initialized. 2020-07-14 20:57:11,275 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,275 [19] INFO - --------- 2020-07-14 20:57:11,276 [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:57:11,276 [19] INFO - --------- 2020-07-14 20:57:11,277 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,277 [19] INFO - --------- 2020-07-14 20:57:11,277 [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:57:11,278 [19] INFO - --------- 2020-07-14 20:57:11,278 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 962. 2020-07-14 20:57:11,279 [19] INFO - --------- 2020-07-14 20:57:11,279 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,279 [19] INFO - --------- 2020-07-14 20:57:11,280 [19] INFO - function SE637303570312744425() {} SE637303570312744425.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\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 SE637303570312744425().executeScript(); 2020-07-14 20:57:11,280 [19] INFO - --------- 2020-07-14 20:57:11,282 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,282 [19] INFO - --------- 2020-07-14 20:57:11,282 [19] INFO - function SE637303570312744425() {} SE637303570312744425.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\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 SE637303570312744425().executeScript(); 2020-07-14 20:57:11,283 [19] INFO - --------- 2020-07-14 20:57:11,283 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 963. 2020-07-14 20:57:11,283 [19] INFO - --------- 2020-07-14 20:57:11,284 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,285 [19] INFO - --------- 2020-07-14 20:57:11,285 [19] INFO - function SE637303570312844430() {} SE637303570312844430.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 SE637303570312844430().executeScript(); 2020-07-14 20:57:11,286 [19] INFO - --------- 2020-07-14 20:57:11,308 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,308 [19] INFO - --------- 2020-07-14 20:57:11,309 [19] INFO - function SE637303570313084444() {} SE637303570313084444.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 SE637303570313084444().executeScript(); 2020-07-14 20:57:11,309 [19] INFO - --------- 2020-07-14 20:57:11,310 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,311 [19] INFO - --------- 2020-07-14 20:57:11,311 [19] INFO - function SE637303570313084444() {} SE637303570313084444.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 SE637303570313084444().executeScript(); 2020-07-14 20:57:11,312 [19] INFO - --------- 2020-07-14 20:57:11,312 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 964. 2020-07-14 20:57:11,312 [19] INFO - --------- 2020-07-14 20:57:11,321 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,322 [19] INFO - --------- 2020-07-14 20:57:11,322 [19] INFO - function SE637303570313214452() {} SE637303570313214452.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 SE637303570313214452().executeScript(); 2020-07-14 20:57:11,322 [19] INFO - --------- 2020-07-14 20:57:11,323 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,324 [19] INFO - --------- 2020-07-14 20:57:11,324 [19] INFO - function SE637303570313214452() {} SE637303570313214452.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 SE637303570313214452().executeScript(); 2020-07-14 20:57:11,324 [19] INFO - --------- 2020-07-14 20:57:11,325 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 965. 2020-07-14 20:57:11,325 [19] INFO - --------- 2020-07-14 20:57:11,326 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,326 [19] INFO - --------- 2020-07-14 20:57:11,326 [19] INFO - function SE637303570313264454() {} SE637303570313264454.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 SE637303570313264454().executeScript(); 2020-07-14 20:57:11,327 [19] INFO - --------- 2020-07-14 20:57:11,328 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,328 [19] INFO - --------- 2020-07-14 20:57:11,365 [19] INFO - function SE637303570313264454() {} SE637303570313264454.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 SE637303570313264454().executeScript(); 2020-07-14 20:57:11,365 [19] INFO - --------- 2020-07-14 20:57:11,365 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 966. 2020-07-14 20:57:11,366 [19] INFO - --------- 2020-07-14 20:57:11,368 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,368 [19] INFO - --------- 2020-07-14 20:57:11,369 [19] INFO - function SE637303570313684478() {} SE637303570313684478.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 SE637303570313684478().executeScript(); 2020-07-14 20:57:11,369 [19] INFO - --------- 2020-07-14 20:57:11,370 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,370 [19] INFO - --------- 2020-07-14 20:57:11,372 [19] INFO - function SE637303570313684478() {} SE637303570313684478.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 SE637303570313684478().executeScript(); 2020-07-14 20:57:11,372 [19] INFO - --------- 2020-07-14 20:57:11,372 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 967. 2020-07-14 20:57:11,373 [19] INFO - --------- 2020-07-14 20:57:11,374 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,375 [19] INFO - --------- 2020-07-14 20:57:11,375 [19] INFO - function SE637303570313744482() {} SE637303570313744482.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 SE637303570313744482().executeScript(); 2020-07-14 20:57:11,375 [19] INFO - --------- 2020-07-14 20:57:11,382 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,382 [19] INFO - --------- 2020-07-14 20:57:11,383 [19] INFO - function SE637303570313824486() {} SE637303570313824486.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 SE637303570313824486().executeScript(); 2020-07-14 20:57:11,384 [19] INFO - --------- 2020-07-14 20:57:11,386 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,386 [19] INFO - --------- 2020-07-14 20:57:11,388 [19] INFO - function SE637303570313864489() {} SE637303570313864489.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 SE637303570313864489().executeScript(); 2020-07-14 20:57:11,389 [19] INFO - --------- 2020-07-14 20:57:11,400 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,400 [19] INFO - --------- 2020-07-14 20:57:11,400 [19] INFO - function SE637303570313864489() {} SE637303570313864489.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 SE637303570313864489().executeScript(); 2020-07-14 20:57:11,401 [19] INFO - --------- 2020-07-14 20:57:11,401 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 968. 2020-07-14 20:57:11,401 [19] INFO - --------- 2020-07-14 20:57:11,416 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,417 [19] INFO - --------- 2020-07-14 20:57:11,417 [19] INFO - function SE637303570313824486() {} SE637303570313824486.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 SE637303570313824486().executeScript(); 2020-07-14 20:57:11,418 [19] INFO - --------- 2020-07-14 20:57:11,418 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 969. 2020-07-14 20:57:11,419 [19] INFO - --------- 2020-07-14 20:57:11,420 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,420 [19] INFO - --------- 2020-07-14 20:57:11,421 [19] INFO - function SE637303570313744482() {} SE637303570313744482.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 SE637303570313744482().executeScript(); 2020-07-14 20:57:11,421 [19] INFO - --------- 2020-07-14 20:57:11,421 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 970. 2020-07-14 20:57:11,422 [19] INFO - --------- 2020-07-14 20:57:11,422 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,423 [19] INFO - --------- 2020-07-14 20:57:11,423 [19] INFO - function SE637303570314224509() {} SE637303570314224509.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 SE637303570314224509().executeScript(); 2020-07-14 20:57:11,424 [19] INFO - --------- 2020-07-14 20:57:11,430 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,430 [19] INFO - --------- 2020-07-14 20:57:11,430 [19] INFO - function SE637303570314294513() {} SE637303570314294513.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 SE637303570314294513().executeScript(); 2020-07-14 20:57:11,431 [19] INFO - --------- 2020-07-14 20:57:11,432 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,433 [19] INFO - --------- 2020-07-14 20:57:11,433 [19] INFO - function SE637303570314294513() {} SE637303570314294513.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 SE637303570314294513().executeScript(); 2020-07-14 20:57:11,434 [19] INFO - --------- 2020-07-14 20:57:11,434 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 971. 2020-07-14 20:57:11,434 [19] INFO - --------- 2020-07-14 20:57:11,436 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,436 [19] INFO - --------- 2020-07-14 20:57:11,437 [19] INFO - function SE637303570314364517() {} SE637303570314364517.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 SE637303570314364517().executeScript(); 2020-07-14 20:57:11,437 [19] INFO - --------- 2020-07-14 20:57:11,439 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,439 [19] INFO - --------- 2020-07-14 20:57:11,440 [19] INFO - function SE637303570314364517() {} SE637303570314364517.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 SE637303570314364517().executeScript(); 2020-07-14 20:57:11,440 [19] INFO - --------- 2020-07-14 20:57:11,440 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 972. 2020-07-14 20:57:11,441 [19] INFO - --------- 2020-07-14 20:57:11,450 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,450 [19] INFO - --------- 2020-07-14 20:57:11,451 [19] INFO - function SE637303570314504525() {} SE637303570314504525.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 SE637303570314504525().executeScript(); 2020-07-14 20:57:11,451 [19] INFO - --------- 2020-07-14 20:57:11,453 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,453 [19] INFO - --------- 2020-07-14 20:57:11,453 [19] INFO - function SE637303570314504525() {} SE637303570314504525.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 SE637303570314504525().executeScript(); 2020-07-14 20:57:11,454 [19] INFO - --------- 2020-07-14 20:57:11,454 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 973. 2020-07-14 20:57:11,454 [19] INFO - --------- 2020-07-14 20:57:11,456 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,457 [19] INFO - --------- 2020-07-14 20:57:11,457 [19] INFO - function SE637303570314564529() {} SE637303570314564529.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 SE637303570314564529().executeScript(); 2020-07-14 20:57:11,457 [19] INFO - --------- 2020-07-14 20:57:11,460 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,460 [19] INFO - --------- 2020-07-14 20:57:11,460 [19] INFO - function SE637303570314564529() {} SE637303570314564529.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 SE637303570314564529().executeScript(); 2020-07-14 20:57:11,461 [19] INFO - --------- 2020-07-14 20:57:11,461 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 974. 2020-07-14 20:57:11,461 [19] INFO - --------- 2020-07-14 20:57:11,465 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,465 [19] INFO - --------- 2020-07-14 20:57:11,465 [19] INFO - function SE637303570314654534() {} SE637303570314654534.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 SE637303570314654534().executeScript(); 2020-07-14 20:57:11,466 [19] INFO - --------- 2020-07-14 20:57:11,502 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,502 [19] INFO - --------- 2020-07-14 20:57:11,503 [19] INFO - function SE637303570314654534() {} SE637303570314654534.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 SE637303570314654534().executeScript(); 2020-07-14 20:57:11,503 [19] INFO - --------- 2020-07-14 20:57:11,503 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 975. 2020-07-14 20:57:11,504 [19] INFO - --------- 2020-07-14 20:57:11,505 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,506 [19] INFO - --------- 2020-07-14 20:57:11,506 [19] INFO - function SE637303570315054557() {} SE637303570315054557.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 SE637303570315054557().executeScript(); 2020-07-14 20:57:11,506 [19] INFO - --------- 2020-07-14 20:57:11,509 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,510 [19] INFO - --------- 2020-07-14 20:57:11,510 [19] INFO - function SE637303570315054557() {} SE637303570315054557.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 SE637303570315054557().executeScript(); 2020-07-14 20:57:11,511 [19] INFO - --------- 2020-07-14 20:57:11,511 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 976. 2020-07-14 20:57:11,511 [19] INFO - --------- 2020-07-14 20:57:11,514 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,514 [19] INFO - --------- 2020-07-14 20:57:11,515 [19] INFO - function SE637303570315144562() {} SE637303570315144562.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 SE637303570315144562().executeScript(); 2020-07-14 20:57:11,515 [19] INFO - --------- 2020-07-14 20:57:11,517 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,517 [19] INFO - --------- 2020-07-14 20:57:11,517 [19] INFO - function SE637303570315144562() {} SE637303570315144562.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 SE637303570315144562().executeScript(); 2020-07-14 20:57:11,518 [19] INFO - --------- 2020-07-14 20:57:11,518 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 977. 2020-07-14 20:57:11,518 [19] INFO - --------- 2020-07-14 20:57:11,519 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,519 [19] INFO - --------- 2020-07-14 20:57:11,520 [19] INFO - function SE637303570314224509() {} SE637303570314224509.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 SE637303570314224509().executeScript(); 2020-07-14 20:57:11,520 [19] INFO - --------- 2020-07-14 20:57:11,521 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 978. 2020-07-14 20:57:11,521 [19] INFO - --------- 2020-07-14 20:57:11,522 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,522 [19] INFO - --------- 2020-07-14 20:57:11,523 [19] INFO - function SE637303570315224567() {} SE637303570315224567.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 SE637303570315224567().executeScript(); 2020-07-14 20:57:11,523 [19] INFO - --------- 2020-07-14 20:57:11,524 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,524 [19] INFO - --------- 2020-07-14 20:57:11,525 [19] INFO - function SE637303570315224567() {} SE637303570315224567.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 SE637303570315224567().executeScript(); 2020-07-14 20:57:11,525 [19] INFO - --------- 2020-07-14 20:57:11,525 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 979. 2020-07-14 20:57:11,526 [19] INFO - --------- 2020-07-14 20:57:11,527 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,527 [19] INFO - --------- 2020-07-14 20:57:11,527 [19] INFO - function SE637303570315274569() {} SE637303570315274569.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 SE637303570315274569().executeScript(); 2020-07-14 20:57:11,528 [19] INFO - --------- 2020-07-14 20:57:11,532 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,532 [19] INFO - --------- 2020-07-14 20:57:11,532 [19] INFO - function SE637303570315274569() {} SE637303570315274569.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 SE637303570315274569().executeScript(); 2020-07-14 20:57:11,533 [19] INFO - --------- 2020-07-14 20:57:11,533 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 980. 2020-07-14 20:57:11,534 [19] INFO - --------- 2020-07-14 20:57:11,536 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,536 [19] INFO - --------- 2020-07-14 20:57:11,536 [19] INFO - function SE637303570315354574() {} SE637303570315354574.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 SE637303570315354574().executeScript(); 2020-07-14 20:57:11,539 [19] INFO - --------- 2020-07-14 20:57:11,666 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,666 [19] INFO - --------- 2020-07-14 20:57:11,667 [19] INFO - function SE637303570316664649() {} SE637303570316664649.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 SE637303570316664649().executeScript(); 2020-07-14 20:57:11,667 [19] INFO - --------- 2020-07-14 20:57:11,669 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,669 [19] INFO - --------- 2020-07-14 20:57:11,669 [19] INFO - function SE637303570316694651() {} SE637303570316694651.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 SE637303570316694651().executeScript(); 2020-07-14 20:57:11,670 [19] INFO - --------- 2020-07-14 20:57:11,680 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,681 [19] INFO - --------- 2020-07-14 20:57:11,681 [19] INFO - function SE637303570316694651() {} SE637303570316694651.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 SE637303570316694651().executeScript(); 2020-07-14 20:57:11,681 [19] INFO - --------- 2020-07-14 20:57:11,682 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 981. 2020-07-14 20:57:11,682 [19] INFO - --------- 2020-07-14 20:57:11,683 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,683 [19] INFO - --------- 2020-07-14 20:57:11,684 [19] INFO - function SE637303570316834659() {} SE637303570316834659.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 SE637303570316834659().executeScript(); 2020-07-14 20:57:11,684 [19] INFO - --------- 2020-07-14 20:57:11,688 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,688 [19] INFO - --------- 2020-07-14 20:57:11,688 [19] INFO - function SE637303570316834659() {} SE637303570316834659.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 SE637303570316834659().executeScript(); 2020-07-14 20:57:11,689 [19] INFO - --------- 2020-07-14 20:57:11,689 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 982. 2020-07-14 20:57:11,689 [19] INFO - --------- 2020-07-14 20:57:11,690 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,691 [19] INFO - --------- 2020-07-14 20:57:11,691 [19] INFO - function SE637303570316904663() {} SE637303570316904663.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 SE637303570316904663().executeScript(); 2020-07-14 20:57:11,691 [19] INFO - --------- 2020-07-14 20:57:11,694 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,694 [19] INFO - --------- 2020-07-14 20:57:11,694 [19] INFO - function SE637303570316904663() {} SE637303570316904663.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 SE637303570316904663().executeScript(); 2020-07-14 20:57:11,695 [19] INFO - --------- 2020-07-14 20:57:11,695 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 983. 2020-07-14 20:57:11,695 [19] INFO - --------- 2020-07-14 20:57:11,696 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,697 [19] INFO - --------- 2020-07-14 20:57:11,697 [19] INFO - function SE637303570316964666() {} SE637303570316964666.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 SE637303570316964666().executeScript(); 2020-07-14 20:57:11,697 [19] INFO - --------- 2020-07-14 20:57:11,698 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,699 [19] INFO - --------- 2020-07-14 20:57:11,699 [19] INFO - function SE637303570316964666() {} SE637303570316964666.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 SE637303570316964666().executeScript(); 2020-07-14 20:57:11,699 [19] INFO - --------- 2020-07-14 20:57:11,700 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 984. 2020-07-14 20:57:11,700 [19] INFO - --------- 2020-07-14 20:57:11,702 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,702 [19] INFO - --------- 2020-07-14 20:57:11,703 [19] INFO - function SE637303570316664649() {} SE637303570316664649.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 SE637303570316664649().executeScript(); 2020-07-14 20:57:11,703 [19] INFO - --------- 2020-07-14 20:57:11,703 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 985. 2020-07-14 20:57:11,704 [19] INFO - --------- 2020-07-14 20:57:11,766 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,766 [19] INFO - --------- 2020-07-14 20:57:11,767 [19] INFO - function SE637303570317664706() {} SE637303570317664706.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570317664706().executeScript(); 2020-07-14 20:57:11,767 [19] INFO - --------- 2020-07-14 20:57:11,771 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,771 [19] INFO - --------- 2020-07-14 20:57:11,772 [19] INFO - function SE637303570317714709() {} SE637303570317714709.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 SE637303570317714709().executeScript(); 2020-07-14 20:57:11,772 [19] INFO - --------- 2020-07-14 20:57:11,782 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,782 [19] INFO - --------- 2020-07-14 20:57:11,783 [19] INFO - function SE637303570317714709() {} SE637303570317714709.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 SE637303570317714709().executeScript(); 2020-07-14 20:57:11,783 [19] INFO - --------- 2020-07-14 20:57:11,784 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 986. 2020-07-14 20:57:11,784 [19] INFO - --------- 2020-07-14 20:57:11,785 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,785 [19] INFO - --------- 2020-07-14 20:57:11,785 [19] INFO - function SE637303570317854717() {} SE637303570317854717.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570317854717().executeScript(); 2020-07-14 20:57:11,786 [19] INFO - --------- 2020-07-14 20:57:11,788 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,788 [19] INFO - --------- 2020-07-14 20:57:11,788 [19] INFO - function SE637303570317854717() {} SE637303570317854717.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570317854717().executeScript(); 2020-07-14 20:57:11,789 [19] INFO - --------- 2020-07-14 20:57:11,789 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 987. 2020-07-14 20:57:11,789 [19] INFO - --------- 2020-07-14 20:57:11,791 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,791 [19] INFO - --------- 2020-07-14 20:57:11,791 [19] INFO - function SE637303570317664706() {} SE637303570317664706.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570317664706().executeScript(); 2020-07-14 20:57:11,792 [19] INFO - --------- 2020-07-14 20:57:11,792 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 988. 2020-07-14 20:57:11,793 [19] INFO - --------- 2020-07-14 20:57:11,809 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,810 [19] INFO - --------- 2020-07-14 20:57:11,810 [19] INFO - function SE637303570318094731() {} SE637303570318094731.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318094731().executeScript(); 2020-07-14 20:57:11,811 [19] INFO - --------- 2020-07-14 20:57:11,813 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,813 [19] INFO - --------- 2020-07-14 20:57:11,814 [19] INFO - function SE637303570318134733() {} SE637303570318134733.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 SE637303570318134733().executeScript(); 2020-07-14 20:57:11,814 [19] INFO - --------- 2020-07-14 20:57:11,824 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,824 [19] INFO - --------- 2020-07-14 20:57:11,825 [19] INFO - function SE637303570318134733() {} SE637303570318134733.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 SE637303570318134733().executeScript(); 2020-07-14 20:57:11,825 [19] INFO - --------- 2020-07-14 20:57:11,826 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 989. 2020-07-14 20:57:11,826 [19] INFO - --------- 2020-07-14 20:57:11,827 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,827 [19] INFO - --------- 2020-07-14 20:57:11,827 [19] INFO - function SE637303570318274741() {} SE637303570318274741.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318274741().executeScript(); 2020-07-14 20:57:11,828 [19] INFO - --------- 2020-07-14 20:57:11,833 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,833 [19] INFO - --------- 2020-07-14 20:57:11,834 [19] INFO - function SE637303570318274741() {} SE637303570318274741.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318274741().executeScript(); 2020-07-14 20:57:11,834 [19] INFO - --------- 2020-07-14 20:57:11,834 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 990. 2020-07-14 20:57:11,835 [19] INFO - --------- 2020-07-14 20:57:11,836 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,836 [19] INFO - --------- 2020-07-14 20:57:11,836 [19] INFO - function SE637303570318094731() {} SE637303570318094731.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318094731().executeScript(); 2020-07-14 20:57:11,837 [19] INFO - --------- 2020-07-14 20:57:11,837 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 991. 2020-07-14 20:57:11,837 [19] INFO - --------- 2020-07-14 20:57:11,840 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,840 [19] INFO - --------- 2020-07-14 20:57:11,877 [19] INFO - function SE637303570315354574() {} SE637303570315354574.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 SE637303570315354574().executeScript(); 2020-07-14 20:57:11,878 [19] INFO - --------- 2020-07-14 20:57:11,878 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 992. 2020-07-14 20:57:11,878 [19] INFO - --------- 2020-07-14 20:57:11,878 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,878 [19] INFO - --------- 2020-07-14 20:57:11,879 [19] INFO - function SE637303570318784770() {} SE637303570318784770.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu-layout.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!=2 ) { return; } context.write("\r\n\r\n\r\n\t"); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n\t\t\t"); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n\t\t\t "); context.write( system.partial("submenu1.html", p.id, 2) ); context.write("\r\n\t\t\t"); } context.write("\r\n\r\n\t"); } } context.write("\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\submenu-layout.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318784770().executeScript(); 2020-07-14 20:57:11,879 [19] INFO - --------- 2020-07-14 20:57:11,885 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,886 [19] INFO - --------- 2020-07-14 20:57:11,886 [19] INFO - function SE637303570318854774() {} SE637303570318854774.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu1.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\t
      \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-submenu1-aktiv.html", p.id, 2) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu1.html", p.id, 2) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t
    \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\submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318854774().executeScript(); 2020-07-14 20:57:11,886 [19] INFO - --------- 2020-07-14 20:57:11,889 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,889 [19] INFO - --------- 2020-07-14 20:57:11,889 [19] INFO - function SE637303570318894776() {} SE637303570318894776.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318894776().executeScript(); 2020-07-14 20:57:11,889 [19] INFO - --------- 2020-07-14 20:57:11,891 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,891 [19] INFO - --------- 2020-07-14 20:57:11,891 [19] INFO - function SE637303570318894776() {} SE637303570318894776.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318894776().executeScript(); 2020-07-14 20:57:11,891 [19] INFO - --------- 2020-07-14 20:57:11,891 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 993. 2020-07-14 20:57:11,891 [19] INFO - --------- 2020-07-14 20:57:11,893 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,893 [19] INFO - --------- 2020-07-14 20:57:11,893 [19] INFO - function SE637303570318934779() {} SE637303570318934779.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318934779().executeScript(); 2020-07-14 20:57:11,893 [19] INFO - --------- 2020-07-14 20:57:11,895 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,895 [19] INFO - --------- 2020-07-14 20:57:11,895 [19] INFO - function SE637303570318934779() {} SE637303570318934779.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318934779().executeScript(); 2020-07-14 20:57:11,895 [19] INFO - --------- 2020-07-14 20:57:11,895 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 994. 2020-07-14 20:57:11,895 [19] INFO - --------- 2020-07-14 20:57:11,897 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,897 [19] INFO - --------- 2020-07-14 20:57:11,897 [19] INFO - function SE637303570318974781() {} SE637303570318974781.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318974781().executeScript(); 2020-07-14 20:57:11,897 [19] INFO - --------- 2020-07-14 20:57:11,901 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,901 [19] INFO - --------- 2020-07-14 20:57:11,902 [19] INFO - function SE637303570318974781() {} SE637303570318974781.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318974781().executeScript(); 2020-07-14 20:57:11,902 [19] INFO - --------- 2020-07-14 20:57:11,902 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 995. 2020-07-14 20:57:11,902 [19] INFO - --------- 2020-07-14 20:57:11,903 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,903 [19] INFO - --------- 2020-07-14 20:57:11,904 [19] INFO - function SE637303570319034784() {} SE637303570319034784.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570319034784().executeScript(); 2020-07-14 20:57:11,904 [19] INFO - --------- 2020-07-14 20:57:11,905 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,905 [19] INFO - --------- 2020-07-14 20:57:11,906 [19] INFO - function SE637303570319034784() {} SE637303570319034784.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570319034784().executeScript(); 2020-07-14 20:57:11,906 [19] INFO - --------- 2020-07-14 20:57:11,906 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 996. 2020-07-14 20:57:11,906 [19] INFO - --------- 2020-07-14 20:57:11,906 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,906 [19] INFO - --------- 2020-07-14 20:57:11,907 [19] INFO - function SE637303570318854774() {} SE637303570318854774.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu1.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\t
      \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-submenu1-aktiv.html", p.id, 2) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu1.html", p.id, 2) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t
    \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\submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318854774().executeScript(); 2020-07-14 20:57:11,907 [19] INFO - --------- 2020-07-14 20:57:11,907 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 997. 2020-07-14 20:57:11,907 [19] INFO - --------- 2020-07-14 20:57:11,919 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,920 [19] INFO - --------- 2020-07-14 20:57:11,920 [19] INFO - function SE637303570318784770() {} SE637303570318784770.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu-layout.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!=2 ) { return; } context.write("\r\n\r\n\r\n\t"); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n\t\t\t"); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n\t\t\t "); context.write( system.partial("submenu1.html", p.id, 2) ); context.write("\r\n\t\t\t"); } context.write("\r\n\r\n\t"); } } context.write("\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\submenu-layout.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570318784770().executeScript(); 2020-07-14 20:57:11,920 [19] INFO - --------- 2020-07-14 20:57:11,920 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 998. 2020-07-14 20:57:11,920 [19] INFO - --------- 2020-07-14 20:57:11,921 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,922 [19] INFO - --------- 2020-07-14 20:57:11,922 [19] INFO - function SE637303570319214795() {} SE637303570319214795.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 SE637303570319214795().executeScript(); 2020-07-14 20:57:11,923 [19] INFO - --------- 2020-07-14 20:57:11,930 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,930 [19] INFO - --------- 2020-07-14 20:57:11,930 [19] INFO - function SE637303570319214795() {} SE637303570319214795.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 SE637303570319214795().executeScript(); 2020-07-14 20:57:11,931 [19] INFO - --------- 2020-07-14 20:57:11,931 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 999. 2020-07-14 20:57:11,931 [19] INFO - --------- 2020-07-14 20:57:11,932 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,932 [19] INFO - --------- 2020-07-14 20:57:11,932 [19] INFO - function SE637303570319324801() {} SE637303570319324801.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. var args = context.param(0, {}); var wraptag = args["wraptag"] || "div"; var menuid = args["menuid"] || "xmenu"; var menuclass = args["menuclass"] || ""; var listwrapper = args["listwrapper"] || ["",""]; var itemwrapper = args["itemwrapper"] || ["",""]; var areaname = args["areaname"] || "Footer"; context.write("\r\n"); if ( page.attribute("show_extra_menu") ) { var extraMenu = page.extraMenu; context.write("\r\n\t<"); context.write( wraptag ); context.write(" id=\""); context.write( menuid ); context.write("\" class=\""); context.write( menuclass ); context.write("\" "); context.write( system.partial("inline-editing-xmenu.html", areaname) ); context.write(">\r\n\t\t"); context.write( listwrapper[0] ); context.write("\r\n\t\t"); for ( var mi = 0; mi < extraMenu.menuItems.count; ++mi ) { var menuItem = extraMenu.menuItems.item(mi); var rel = ""; if ( menuItem.nofollow ){ rel += "nofollow "; } if ( menuItem.target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } context.write("\r\n\t\t\t"); context.write( itemwrapper[0] ); context.write(""); context.write(menuItem.name); context.write(""); context.write( itemwrapper[1] ); context.write("\r\n\t\t"); } context.write("\r\n\t\t\t"); var output = ""; // Special case for Top Responsive which can add entries via attribute if ( page.attribute("add_extramenu") ) { output += page.attribute("add_extramenu"); } if ( page.attribute("show_language_menu") ){ // language selection var pf = project.projectFolders; if ( pf.count > 0 ){ output += itemwrapper[0] + '' + itemwrapper[1]; } } if ( output !== "" ){ context.write(output); } context.write("\r\n\t\t\t\r\n\t\t"); context.write( listwrapper[1] ); context.write("\r\n\t\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570319324801().executeScript(); 2020-07-14 20:57:11,932 [19] INFO - --------- 2020-07-14 20:57:11,934 [19] INFO - About to execute the following script: 2020-07-14 20:57:11,934 [19] INFO - --------- 2020-07-14 20:57:11,934 [19] INFO - function SE637303570319344802() {} SE637303570319344802.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570319344802().executeScript(); 2020-07-14 20:57:11,934 [19] INFO - --------- 2020-07-14 20:57:11,935 [19] INFO - Finished executing the following script: 2020-07-14 20:57:11,935 [19] INFO - --------- 2020-07-14 20:57:11,935 [19] INFO - function SE637303570319344802() {} SE637303570319344802.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570319344802().executeScript(); 2020-07-14 20:57:11,935 [19] INFO - --------- 2020-07-14 20:57:11,936 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1000. 2020-07-14 20:57:11,936 [19] INFO - --------- 2020-07-14 20:57:12,002 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,002 [19] INFO - --------- 2020-07-14 20:57:12,002 [19] INFO - function SE637303570319324801() {} SE637303570319324801.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. var args = context.param(0, {}); var wraptag = args["wraptag"] || "div"; var menuid = args["menuid"] || "xmenu"; var menuclass = args["menuclass"] || ""; var listwrapper = args["listwrapper"] || ["",""]; var itemwrapper = args["itemwrapper"] || ["",""]; var areaname = args["areaname"] || "Footer"; context.write("\r\n"); if ( page.attribute("show_extra_menu") ) { var extraMenu = page.extraMenu; context.write("\r\n\t<"); context.write( wraptag ); context.write(" id=\""); context.write( menuid ); context.write("\" class=\""); context.write( menuclass ); context.write("\" "); context.write( system.partial("inline-editing-xmenu.html", areaname) ); context.write(">\r\n\t\t"); context.write( listwrapper[0] ); context.write("\r\n\t\t"); for ( var mi = 0; mi < extraMenu.menuItems.count; ++mi ) { var menuItem = extraMenu.menuItems.item(mi); var rel = ""; if ( menuItem.nofollow ){ rel += "nofollow "; } if ( menuItem.target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } context.write("\r\n\t\t\t"); context.write( itemwrapper[0] ); context.write(""); context.write(menuItem.name); context.write(""); context.write( itemwrapper[1] ); context.write("\r\n\t\t"); } context.write("\r\n\t\t\t"); var output = ""; // Special case for Top Responsive which can add entries via attribute if ( page.attribute("add_extramenu") ) { output += page.attribute("add_extramenu"); } if ( page.attribute("show_language_menu") ){ // language selection var pf = project.projectFolders; if ( pf.count > 0 ){ output += itemwrapper[0] + '' + itemwrapper[1]; } } if ( output !== "" ){ context.write(output); } context.write("\r\n\t\t\t\r\n\t\t"); context.write( listwrapper[1] ); context.write("\r\n\t\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570319324801().executeScript(); 2020-07-14 20:57:12,003 [19] INFO - --------- 2020-07-14 20:57:12,003 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1001. 2020-07-14 20:57:12,003 [19] INFO - --------- 2020-07-14 20:57:12,005 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,005 [19] INFO - --------- 2020-07-14 20:57:12,006 [19] INFO - function SE637303570320054843() {} SE637303570320054843.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570320054843().executeScript(); 2020-07-14 20:57:12,006 [19] INFO - --------- 2020-07-14 20:57:12,007 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,008 [19] INFO - --------- 2020-07-14 20:57:12,008 [19] INFO - function SE637303570320054843() {} SE637303570320054843.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570320054843().executeScript(); 2020-07-14 20:57:12,008 [19] INFO - --------- 2020-07-14 20:57:12,008 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1002. 2020-07-14 20:57:12,009 [19] INFO - --------- 2020-07-14 20:57:12,012 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,013 [19] INFO - --------- 2020-07-14 20:57:12,013 [19] INFO - function SE637303570312844430() {} SE637303570312844430.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 SE637303570312844430().executeScript(); 2020-07-14 20:57:12,015 [19] INFO - --------- 2020-07-14 20:57:12,015 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1003. 2020-07-14 20:57:12,015 [19] INFO - --------- 2020-07-14 20:57:12,015 [19] INFO - Closing the script engine. 2020-07-14 20:57:12,015 [19] INFO - --------- 2020-07-14 20:57:12,016 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1003. 2020-07-14 20:57:12,016 [19] INFO - --------- 2020-07-14 20:57:12,073 [19] INFO - Script engine constructed. 2020-07-14 20:57:12,074 [19] INFO - Script engine initialized. 2020-07-14 20:57:12,074 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,074 [19] INFO - --------- 2020-07-14 20:57:12,075 [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:57:12,075 [19] INFO - --------- 2020-07-14 20:57:12,076 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,076 [19] INFO - --------- 2020-07-14 20:57:12,077 [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:57:12,077 [19] INFO - --------- 2020-07-14 20:57:12,077 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1004. 2020-07-14 20:57:12,078 [19] INFO - --------- 2020-07-14 20:57:12,078 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,078 [19] INFO - --------- 2020-07-14 20:57:12,079 [19] INFO - function SE637303570320734882() {} SE637303570320734882.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\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 SE637303570320734882().executeScript(); 2020-07-14 20:57:12,079 [19] INFO - --------- 2020-07-14 20:57:12,081 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,081 [19] INFO - --------- 2020-07-14 20:57:12,081 [19] INFO - function SE637303570320734882() {} SE637303570320734882.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\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 SE637303570320734882().executeScript(); 2020-07-14 20:57:12,082 [19] INFO - --------- 2020-07-14 20:57:12,082 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1005. 2020-07-14 20:57:12,082 [19] INFO - --------- 2020-07-14 20:57:12,083 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,085 [19] INFO - --------- 2020-07-14 20:57:12,085 [19] INFO - function SE637303570320834887() {} SE637303570320834887.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 SE637303570320834887().executeScript(); 2020-07-14 20:57:12,086 [19] INFO - --------- 2020-07-14 20:57:12,102 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,103 [19] INFO - --------- 2020-07-14 20:57:12,103 [19] INFO - function SE637303570321024898() {} SE637303570321024898.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 SE637303570321024898().executeScript(); 2020-07-14 20:57:12,103 [19] INFO - --------- 2020-07-14 20:57:12,105 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,105 [19] INFO - --------- 2020-07-14 20:57:12,105 [19] INFO - function SE637303570321024898() {} SE637303570321024898.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 SE637303570321024898().executeScript(); 2020-07-14 20:57:12,106 [19] INFO - --------- 2020-07-14 20:57:12,106 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1006. 2020-07-14 20:57:12,106 [19] INFO - --------- 2020-07-14 20:57:12,111 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,111 [19] INFO - --------- 2020-07-14 20:57:12,111 [19] INFO - function SE637303570321104903() {} SE637303570321104903.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 SE637303570321104903().executeScript(); 2020-07-14 20:57:12,112 [19] INFO - --------- 2020-07-14 20:57:12,113 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,113 [19] INFO - --------- 2020-07-14 20:57:12,113 [19] INFO - function SE637303570321104903() {} SE637303570321104903.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 SE637303570321104903().executeScript(); 2020-07-14 20:57:12,114 [19] INFO - --------- 2020-07-14 20:57:12,114 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1007. 2020-07-14 20:57:12,114 [19] INFO - --------- 2020-07-14 20:57:12,115 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,115 [19] INFO - --------- 2020-07-14 20:57:12,116 [19] INFO - function SE637303570321154906() {} SE637303570321154906.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 SE637303570321154906().executeScript(); 2020-07-14 20:57:12,116 [19] INFO - --------- 2020-07-14 20:57:12,117 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,118 [19] INFO - --------- 2020-07-14 20:57:12,118 [19] INFO - function SE637303570321154906() {} SE637303570321154906.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 SE637303570321154906().executeScript(); 2020-07-14 20:57:12,118 [19] INFO - --------- 2020-07-14 20:57:12,118 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1008. 2020-07-14 20:57:12,119 [19] INFO - --------- 2020-07-14 20:57:12,121 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,121 [19] INFO - --------- 2020-07-14 20:57:12,121 [19] INFO - function SE637303570321214909() {} SE637303570321214909.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 SE637303570321214909().executeScript(); 2020-07-14 20:57:12,122 [19] INFO - --------- 2020-07-14 20:57:12,123 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,123 [19] INFO - --------- 2020-07-14 20:57:12,124 [19] INFO - function SE637303570321214909() {} SE637303570321214909.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 SE637303570321214909().executeScript(); 2020-07-14 20:57:12,124 [19] INFO - --------- 2020-07-14 20:57:12,124 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1009. 2020-07-14 20:57:12,124 [19] INFO - --------- 2020-07-14 20:57:12,126 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,126 [19] INFO - --------- 2020-07-14 20:57:12,127 [19] INFO - function SE637303570321264912() {} SE637303570321264912.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 SE637303570321264912().executeScript(); 2020-07-14 20:57:12,127 [19] INFO - --------- 2020-07-14 20:57:12,130 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,130 [19] INFO - --------- 2020-07-14 20:57:12,130 [19] INFO - function SE637303570321294914() {} SE637303570321294914.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 SE637303570321294914().executeScript(); 2020-07-14 20:57:12,131 [19] INFO - --------- 2020-07-14 20:57:12,133 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,133 [19] INFO - --------- 2020-07-14 20:57:12,134 [19] INFO - function SE637303570321334916() {} SE637303570321334916.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 SE637303570321334916().executeScript(); 2020-07-14 20:57:12,134 [19] INFO - --------- 2020-07-14 20:57:12,137 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,138 [19] INFO - --------- 2020-07-14 20:57:12,138 [19] INFO - function SE637303570321334916() {} SE637303570321334916.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 SE637303570321334916().executeScript(); 2020-07-14 20:57:12,138 [19] INFO - --------- 2020-07-14 20:57:12,139 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1010. 2020-07-14 20:57:12,139 [19] INFO - --------- 2020-07-14 20:57:12,151 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,152 [19] INFO - --------- 2020-07-14 20:57:12,152 [19] INFO - function SE637303570321294914() {} SE637303570321294914.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 SE637303570321294914().executeScript(); 2020-07-14 20:57:12,153 [19] INFO - --------- 2020-07-14 20:57:12,153 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1011. 2020-07-14 20:57:12,153 [19] INFO - --------- 2020-07-14 20:57:12,154 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,155 [19] INFO - --------- 2020-07-14 20:57:12,155 [19] INFO - function SE637303570321264912() {} SE637303570321264912.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 SE637303570321264912().executeScript(); 2020-07-14 20:57:12,155 [19] INFO - --------- 2020-07-14 20:57:12,156 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1012. 2020-07-14 20:57:12,156 [19] INFO - --------- 2020-07-14 20:57:12,157 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,157 [19] INFO - --------- 2020-07-14 20:57:12,157 [19] INFO - function SE637303570321574930() {} SE637303570321574930.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 SE637303570321574930().executeScript(); 2020-07-14 20:57:12,158 [19] INFO - --------- 2020-07-14 20:57:12,164 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,165 [19] INFO - --------- 2020-07-14 20:57:12,165 [19] INFO - function SE637303570321644934() {} SE637303570321644934.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 SE637303570321644934().executeScript(); 2020-07-14 20:57:12,165 [19] INFO - --------- 2020-07-14 20:57:12,170 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,171 [19] INFO - --------- 2020-07-14 20:57:12,171 [19] INFO - function SE637303570321644934() {} SE637303570321644934.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 SE637303570321644934().executeScript(); 2020-07-14 20:57:12,172 [19] INFO - --------- 2020-07-14 20:57:12,172 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1013. 2020-07-14 20:57:12,172 [19] INFO - --------- 2020-07-14 20:57:12,174 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,174 [19] INFO - --------- 2020-07-14 20:57:12,174 [19] INFO - function SE637303570321744939() {} SE637303570321744939.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 SE637303570321744939().executeScript(); 2020-07-14 20:57:12,175 [19] INFO - --------- 2020-07-14 20:57:12,176 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,177 [19] INFO - --------- 2020-07-14 20:57:12,177 [19] INFO - function SE637303570321744939() {} SE637303570321744939.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 SE637303570321744939().executeScript(); 2020-07-14 20:57:12,177 [19] INFO - --------- 2020-07-14 20:57:12,178 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1014. 2020-07-14 20:57:12,178 [19] INFO - --------- 2020-07-14 20:57:12,189 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,190 [19] INFO - --------- 2020-07-14 20:57:12,190 [19] INFO - function SE637303570321894948() {} SE637303570321894948.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 SE637303570321894948().executeScript(); 2020-07-14 20:57:12,191 [19] INFO - --------- 2020-07-14 20:57:12,192 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,193 [19] INFO - --------- 2020-07-14 20:57:12,193 [19] INFO - function SE637303570321894948() {} SE637303570321894948.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 SE637303570321894948().executeScript(); 2020-07-14 20:57:12,193 [19] INFO - --------- 2020-07-14 20:57:12,194 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1015. 2020-07-14 20:57:12,194 [19] INFO - --------- 2020-07-14 20:57:12,196 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,196 [19] INFO - --------- 2020-07-14 20:57:12,197 [19] INFO - function SE637303570321964952() {} SE637303570321964952.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 SE637303570321964952().executeScript(); 2020-07-14 20:57:12,197 [19] INFO - --------- 2020-07-14 20:57:12,199 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,199 [19] INFO - --------- 2020-07-14 20:57:12,199 [19] INFO - function SE637303570321964952() {} SE637303570321964952.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 SE637303570321964952().executeScript(); 2020-07-14 20:57:12,200 [19] INFO - --------- 2020-07-14 20:57:12,200 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1016. 2020-07-14 20:57:12,200 [19] INFO - --------- 2020-07-14 20:57:12,203 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,203 [19] INFO - --------- 2020-07-14 20:57:12,204 [19] INFO - function SE637303570322034956() {} SE637303570322034956.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 SE637303570322034956().executeScript(); 2020-07-14 20:57:12,204 [19] INFO - --------- 2020-07-14 20:57:12,206 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,206 [19] INFO - --------- 2020-07-14 20:57:12,206 [19] INFO - function SE637303570322034956() {} SE637303570322034956.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 SE637303570322034956().executeScript(); 2020-07-14 20:57:12,207 [19] INFO - --------- 2020-07-14 20:57:12,207 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1017. 2020-07-14 20:57:12,207 [19] INFO - --------- 2020-07-14 20:57:12,209 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,209 [19] INFO - --------- 2020-07-14 20:57:12,210 [19] INFO - function SE637303570322094959() {} SE637303570322094959.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 SE637303570322094959().executeScript(); 2020-07-14 20:57:12,210 [19] INFO - --------- 2020-07-14 20:57:12,212 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,213 [19] INFO - --------- 2020-07-14 20:57:12,213 [19] INFO - function SE637303570322094959() {} SE637303570322094959.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 SE637303570322094959().executeScript(); 2020-07-14 20:57:12,213 [19] INFO - --------- 2020-07-14 20:57:12,214 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1018. 2020-07-14 20:57:12,214 [19] INFO - --------- 2020-07-14 20:57:12,216 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,216 [19] INFO - --------- 2020-07-14 20:57:12,217 [19] INFO - function SE637303570322164964() {} SE637303570322164964.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 SE637303570322164964().executeScript(); 2020-07-14 20:57:12,217 [19] INFO - --------- 2020-07-14 20:57:12,219 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,219 [19] INFO - --------- 2020-07-14 20:57:12,220 [19] INFO - function SE637303570322164964() {} SE637303570322164964.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 SE637303570322164964().executeScript(); 2020-07-14 20:57:12,220 [19] INFO - --------- 2020-07-14 20:57:12,220 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1019. 2020-07-14 20:57:12,221 [19] INFO - --------- 2020-07-14 20:57:12,221 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,222 [19] INFO - --------- 2020-07-14 20:57:12,222 [19] INFO - function SE637303570321574930() {} SE637303570321574930.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 SE637303570321574930().executeScript(); 2020-07-14 20:57:12,224 [19] INFO - --------- 2020-07-14 20:57:12,224 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1020. 2020-07-14 20:57:12,225 [19] INFO - --------- 2020-07-14 20:57:12,226 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,226 [19] INFO - --------- 2020-07-14 20:57:12,226 [19] INFO - function SE637303570322254969() {} SE637303570322254969.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 SE637303570322254969().executeScript(); 2020-07-14 20:57:12,226 [19] INFO - --------- 2020-07-14 20:57:12,228 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,228 [19] INFO - --------- 2020-07-14 20:57:12,228 [19] INFO - function SE637303570322254969() {} SE637303570322254969.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 SE637303570322254969().executeScript(); 2020-07-14 20:57:12,229 [19] INFO - --------- 2020-07-14 20:57:12,229 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1021. 2020-07-14 20:57:12,229 [19] INFO - --------- 2020-07-14 20:57:12,230 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,231 [19] INFO - --------- 2020-07-14 20:57:12,231 [19] INFO - function SE637303570322304972() {} SE637303570322304972.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 SE637303570322304972().executeScript(); 2020-07-14 20:57:12,231 [19] INFO - --------- 2020-07-14 20:57:12,235 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,236 [19] INFO - --------- 2020-07-14 20:57:12,236 [19] INFO - function SE637303570322304972() {} SE637303570322304972.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 SE637303570322304972().executeScript(); 2020-07-14 20:57:12,237 [19] INFO - --------- 2020-07-14 20:57:12,237 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1022. 2020-07-14 20:57:12,237 [19] INFO - --------- 2020-07-14 20:57:12,240 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,240 [19] INFO - --------- 2020-07-14 20:57:12,240 [19] INFO - function SE637303570322394977() {} SE637303570322394977.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 SE637303570322394977().executeScript(); 2020-07-14 20:57:12,242 [19] INFO - --------- 2020-07-14 20:57:12,257 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,258 [19] INFO - --------- 2020-07-14 20:57:12,258 [19] INFO - function SE637303570322574987() {} SE637303570322574987.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 SE637303570322574987().executeScript(); 2020-07-14 20:57:12,259 [19] INFO - --------- 2020-07-14 20:57:12,260 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,260 [19] INFO - --------- 2020-07-14 20:57:12,261 [19] INFO - function SE637303570322604989() {} SE637303570322604989.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 SE637303570322604989().executeScript(); 2020-07-14 20:57:12,261 [19] INFO - --------- 2020-07-14 20:57:12,267 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,268 [19] INFO - --------- 2020-07-14 20:57:12,268 [19] INFO - function SE637303570322604989() {} SE637303570322604989.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 SE637303570322604989().executeScript(); 2020-07-14 20:57:12,269 [19] INFO - --------- 2020-07-14 20:57:12,269 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1023. 2020-07-14 20:57:12,269 [19] INFO - --------- 2020-07-14 20:57:12,270 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,270 [19] INFO - --------- 2020-07-14 20:57:12,271 [19] INFO - function SE637303570322704994() {} SE637303570322704994.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 SE637303570322704994().executeScript(); 2020-07-14 20:57:12,271 [19] INFO - --------- 2020-07-14 20:57:12,275 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,275 [19] INFO - --------- 2020-07-14 20:57:12,275 [19] INFO - function SE637303570322704994() {} SE637303570322704994.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 SE637303570322704994().executeScript(); 2020-07-14 20:57:12,276 [19] INFO - --------- 2020-07-14 20:57:12,276 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1024. 2020-07-14 20:57:12,276 [19] INFO - --------- 2020-07-14 20:57:12,277 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,278 [19] INFO - --------- 2020-07-14 20:57:12,278 [19] INFO - function SE637303570322774998() {} SE637303570322774998.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 SE637303570322774998().executeScript(); 2020-07-14 20:57:12,279 [19] INFO - --------- 2020-07-14 20:57:12,281 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,281 [19] INFO - --------- 2020-07-14 20:57:12,282 [19] INFO - function SE637303570322774998() {} SE637303570322774998.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 SE637303570322774998().executeScript(); 2020-07-14 20:57:12,282 [19] INFO - --------- 2020-07-14 20:57:12,282 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1025. 2020-07-14 20:57:12,283 [19] INFO - --------- 2020-07-14 20:57:12,283 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,284 [19] INFO - --------- 2020-07-14 20:57:12,285 [19] INFO - function SE637303570322835002() {} SE637303570322835002.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 SE637303570322835002().executeScript(); 2020-07-14 20:57:12,285 [19] INFO - --------- 2020-07-14 20:57:12,286 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,287 [19] INFO - --------- 2020-07-14 20:57:12,287 [19] INFO - function SE637303570322835002() {} SE637303570322835002.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 SE637303570322835002().executeScript(); 2020-07-14 20:57:12,288 [19] INFO - --------- 2020-07-14 20:57:12,288 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1026. 2020-07-14 20:57:12,288 [19] INFO - --------- 2020-07-14 20:57:12,290 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,290 [19] INFO - --------- 2020-07-14 20:57:12,290 [19] INFO - function SE637303570322574987() {} SE637303570322574987.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 SE637303570322574987().executeScript(); 2020-07-14 20:57:12,291 [19] INFO - --------- 2020-07-14 20:57:12,291 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1027. 2020-07-14 20:57:12,291 [19] INFO - --------- 2020-07-14 20:57:12,301 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,301 [19] INFO - --------- 2020-07-14 20:57:12,302 [19] INFO - function SE637303570323015012() {} SE637303570323015012.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323015012().executeScript(); 2020-07-14 20:57:12,302 [19] INFO - --------- 2020-07-14 20:57:12,304 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,305 [19] INFO - --------- 2020-07-14 20:57:12,305 [19] INFO - function SE637303570323045014() {} SE637303570323045014.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 SE637303570323045014().executeScript(); 2020-07-14 20:57:12,306 [19] INFO - --------- 2020-07-14 20:57:12,311 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,311 [19] INFO - --------- 2020-07-14 20:57:12,311 [19] INFO - function SE637303570323045014() {} SE637303570323045014.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 SE637303570323045014().executeScript(); 2020-07-14 20:57:12,313 [19] INFO - --------- 2020-07-14 20:57:12,314 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1028. 2020-07-14 20:57:12,314 [19] INFO - --------- 2020-07-14 20:57:12,315 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,316 [19] INFO - --------- 2020-07-14 20:57:12,316 [19] INFO - function SE637303570323155020() {} SE637303570323155020.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323155020().executeScript(); 2020-07-14 20:57:12,316 [19] INFO - --------- 2020-07-14 20:57:12,320 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,320 [19] INFO - --------- 2020-07-14 20:57:12,320 [19] INFO - function SE637303570323155020() {} SE637303570323155020.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323155020().executeScript(); 2020-07-14 20:57:12,321 [19] INFO - --------- 2020-07-14 20:57:12,321 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1029. 2020-07-14 20:57:12,321 [19] INFO - --------- 2020-07-14 20:57:12,322 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,323 [19] INFO - --------- 2020-07-14 20:57:12,323 [19] INFO - function SE637303570323015012() {} SE637303570323015012.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323015012().executeScript(); 2020-07-14 20:57:12,323 [19] INFO - --------- 2020-07-14 20:57:12,324 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1030. 2020-07-14 20:57:12,324 [19] INFO - --------- 2020-07-14 20:57:12,328 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,329 [19] INFO - --------- 2020-07-14 20:57:12,329 [19] INFO - function SE637303570323285028() {} SE637303570323285028.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323285028().executeScript(); 2020-07-14 20:57:12,329 [19] INFO - --------- 2020-07-14 20:57:12,331 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,332 [19] INFO - --------- 2020-07-14 20:57:12,332 [19] INFO - function SE637303570323315029() {} SE637303570323315029.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 SE637303570323315029().executeScript(); 2020-07-14 20:57:12,333 [19] INFO - --------- 2020-07-14 20:57:12,338 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,338 [19] INFO - --------- 2020-07-14 20:57:12,338 [19] INFO - function SE637303570323315029() {} SE637303570323315029.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 SE637303570323315029().executeScript(); 2020-07-14 20:57:12,339 [19] INFO - --------- 2020-07-14 20:57:12,339 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1031. 2020-07-14 20:57:12,340 [19] INFO - --------- 2020-07-14 20:57:12,340 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,341 [19] INFO - --------- 2020-07-14 20:57:12,341 [19] INFO - function SE637303570323405034() {} SE637303570323405034.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323405034().executeScript(); 2020-07-14 20:57:12,341 [19] INFO - --------- 2020-07-14 20:57:12,343 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,344 [19] INFO - --------- 2020-07-14 20:57:12,344 [19] INFO - function SE637303570323405034() {} SE637303570323405034.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323405034().executeScript(); 2020-07-14 20:57:12,344 [19] INFO - --------- 2020-07-14 20:57:12,344 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1032. 2020-07-14 20:57:12,345 [19] INFO - --------- 2020-07-14 20:57:12,346 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,346 [19] INFO - --------- 2020-07-14 20:57:12,346 [19] INFO - function SE637303570323285028() {} SE637303570323285028.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323285028().executeScript(); 2020-07-14 20:57:12,347 [19] INFO - --------- 2020-07-14 20:57:12,347 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1033. 2020-07-14 20:57:12,348 [19] INFO - --------- 2020-07-14 20:57:12,352 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,352 [19] INFO - --------- 2020-07-14 20:57:12,352 [19] INFO - function SE637303570322394977() {} SE637303570322394977.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 SE637303570322394977().executeScript(); 2020-07-14 20:57:12,354 [19] INFO - --------- 2020-07-14 20:57:12,354 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1034. 2020-07-14 20:57:12,355 [19] INFO - --------- 2020-07-14 20:57:12,355 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,356 [19] INFO - --------- 2020-07-14 20:57:12,356 [19] INFO - function SE637303570323555043() {} SE637303570323555043.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu-layout.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!=2 ) { return; } context.write("\r\n\r\n\r\n\t"); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n\t\t\t"); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n\t\t\t "); context.write( system.partial("submenu1.html", p.id, 2) ); context.write("\r\n\t\t\t"); } context.write("\r\n\r\n\t"); } } context.write("\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\submenu-layout.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323555043().executeScript(); 2020-07-14 20:57:12,356 [19] INFO - --------- 2020-07-14 20:57:12,363 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,364 [19] INFO - --------- 2020-07-14 20:57:12,364 [19] INFO - function SE637303570323635048() {} SE637303570323635048.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu1.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\t
      \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-submenu1-aktiv.html", p.id, 2) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu1.html", p.id, 2) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t
    \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\submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323635048().executeScript(); 2020-07-14 20:57:12,364 [19] INFO - --------- 2020-07-14 20:57:12,368 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,368 [19] INFO - --------- 2020-07-14 20:57:12,369 [19] INFO - function SE637303570323685050() {} SE637303570323685050.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323685050().executeScript(); 2020-07-14 20:57:12,369 [19] INFO - --------- 2020-07-14 20:57:12,371 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,371 [19] INFO - --------- 2020-07-14 20:57:12,371 [19] INFO - function SE637303570323685050() {} SE637303570323685050.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323685050().executeScript(); 2020-07-14 20:57:12,372 [19] INFO - --------- 2020-07-14 20:57:12,372 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1035. 2020-07-14 20:57:12,372 [19] INFO - --------- 2020-07-14 20:57:12,374 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,374 [19] INFO - --------- 2020-07-14 20:57:12,375 [19] INFO - function SE637303570323745054() {} SE637303570323745054.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323745054().executeScript(); 2020-07-14 20:57:12,375 [19] INFO - --------- 2020-07-14 20:57:12,377 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,377 [19] INFO - --------- 2020-07-14 20:57:12,377 [19] INFO - function SE637303570323745054() {} SE637303570323745054.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323745054().executeScript(); 2020-07-14 20:57:12,379 [19] INFO - --------- 2020-07-14 20:57:12,379 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1036. 2020-07-14 20:57:12,379 [19] INFO - --------- 2020-07-14 20:57:12,381 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,381 [19] INFO - --------- 2020-07-14 20:57:12,382 [19] INFO - function SE637303570323815058() {} SE637303570323815058.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323815058().executeScript(); 2020-07-14 20:57:12,382 [19] INFO - --------- 2020-07-14 20:57:12,384 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,384 [19] INFO - --------- 2020-07-14 20:57:12,384 [19] INFO - function SE637303570323815058() {} SE637303570323815058.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323815058().executeScript(); 2020-07-14 20:57:12,385 [19] INFO - --------- 2020-07-14 20:57:12,385 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1037. 2020-07-14 20:57:12,385 [19] INFO - --------- 2020-07-14 20:57:12,387 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,388 [19] INFO - --------- 2020-07-14 20:57:12,388 [19] INFO - function SE637303570323875061() {} SE637303570323875061.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323875061().executeScript(); 2020-07-14 20:57:12,388 [19] INFO - --------- 2020-07-14 20:57:12,390 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,390 [19] INFO - --------- 2020-07-14 20:57:12,391 [19] INFO - function SE637303570323875061() {} SE637303570323875061.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\item-submenu1.html'. var pageId = context.param(0, 0); var p = project.getPage(pageId); context.write("\r\n\r\n\t
  • "); 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-submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323875061().executeScript(); 2020-07-14 20:57:12,391 [19] INFO - --------- 2020-07-14 20:57:12,391 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1038. 2020-07-14 20:57:12,392 [19] INFO - --------- 2020-07-14 20:57:12,392 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,393 [19] INFO - --------- 2020-07-14 20:57:12,393 [19] INFO - function SE637303570323635048() {} SE637303570323635048.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu1.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\t
      \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-submenu1-aktiv.html", p.id, 2) ); context.write("\r\n "); } else { context.write("\r\n "); context.write( system.partial("item-submenu1.html", p.id, 2) ); context.write("\r\n "); } context.write("\r\n\r\n "); } } context.write("\r\n\r\n\t
    \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\submenu1.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323635048().executeScript(); 2020-07-14 20:57:12,393 [19] INFO - --------- 2020-07-14 20:57:12,394 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1039. 2020-07-14 20:57:12,394 [19] INFO - --------- 2020-07-14 20:57:12,406 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,406 [19] INFO - --------- 2020-07-14 20:57:12,407 [19] INFO - function SE637303570323555043() {} SE637303570323555043.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive\templates\partials\submenu-layout.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!=2 ) { return; } context.write("\r\n\r\n\r\n\t"); for ( var i = 0; i < childPages.count; ++i ) { var p = childPages.item(i); if ( p.visible && p.active ) { context.write("\r\n\r\n\t\t\t"); if ( p.id==page.id || hasActiveChildPage(p.id) ) { context.write("\r\n\t\t\t "); context.write( system.partial("submenu1.html", p.id, 2) ); context.write("\r\n\t\t\t"); } context.write("\r\n\r\n\t"); } } context.write("\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\submenu-layout.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570323555043().executeScript(); 2020-07-14 20:57:12,407 [19] INFO - --------- 2020-07-14 20:57:12,407 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1040. 2020-07-14 20:57:12,408 [19] INFO - --------- 2020-07-14 20:57:12,410 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,411 [19] INFO - --------- 2020-07-14 20:57:12,411 [19] INFO - function SE637303570324105074() {} SE637303570324105074.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 SE637303570324105074().executeScript(); 2020-07-14 20:57:12,414 [19] INFO - --------- 2020-07-14 20:57:12,420 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,421 [19] INFO - --------- 2020-07-14 20:57:12,421 [19] INFO - function SE637303570324105074() {} SE637303570324105074.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 SE637303570324105074().executeScript(); 2020-07-14 20:57:12,422 [19] INFO - --------- 2020-07-14 20:57:12,423 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1041. 2020-07-14 20:57:12,423 [19] INFO - --------- 2020-07-14 20:57:12,424 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,424 [19] INFO - --------- 2020-07-14 20:57:12,424 [19] INFO - function SE637303570324245082() {} SE637303570324245082.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. var args = context.param(0, {}); var wraptag = args["wraptag"] || "div"; var menuid = args["menuid"] || "xmenu"; var menuclass = args["menuclass"] || ""; var listwrapper = args["listwrapper"] || ["",""]; var itemwrapper = args["itemwrapper"] || ["",""]; var areaname = args["areaname"] || "Footer"; context.write("\r\n"); if ( page.attribute("show_extra_menu") ) { var extraMenu = page.extraMenu; context.write("\r\n\t<"); context.write( wraptag ); context.write(" id=\""); context.write( menuid ); context.write("\" class=\""); context.write( menuclass ); context.write("\" "); context.write( system.partial("inline-editing-xmenu.html", areaname) ); context.write(">\r\n\t\t"); context.write( listwrapper[0] ); context.write("\r\n\t\t"); for ( var mi = 0; mi < extraMenu.menuItems.count; ++mi ) { var menuItem = extraMenu.menuItems.item(mi); var rel = ""; if ( menuItem.nofollow ){ rel += "nofollow "; } if ( menuItem.target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } context.write("\r\n\t\t\t"); context.write( itemwrapper[0] ); context.write(""); context.write(menuItem.name); context.write(""); context.write( itemwrapper[1] ); context.write("\r\n\t\t"); } context.write("\r\n\t\t\t"); var output = ""; // Special case for Top Responsive which can add entries via attribute if ( page.attribute("add_extramenu") ) { output += page.attribute("add_extramenu"); } if ( page.attribute("show_language_menu") ){ // language selection var pf = project.projectFolders; if ( pf.count > 0 ){ output += itemwrapper[0] + '' + itemwrapper[1]; } } if ( output !== "" ){ context.write(output); } context.write("\r\n\t\t\t\r\n\t\t"); context.write( listwrapper[1] ); context.write("\r\n\t\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570324245082().executeScript(); 2020-07-14 20:57:12,425 [19] INFO - --------- 2020-07-14 20:57:12,427 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,427 [19] INFO - --------- 2020-07-14 20:57:12,427 [19] INFO - function SE637303570324275084() {} SE637303570324275084.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570324275084().executeScript(); 2020-07-14 20:57:12,427 [19] INFO - --------- 2020-07-14 20:57:12,429 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,429 [19] INFO - --------- 2020-07-14 20:57:12,429 [19] INFO - function SE637303570324275084() {} SE637303570324275084.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-xmenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570324275084().executeScript(); 2020-07-14 20:57:12,430 [19] INFO - --------- 2020-07-14 20:57:12,430 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1042. 2020-07-14 20:57:12,430 [19] INFO - --------- 2020-07-14 20:57:12,435 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,436 [19] INFO - --------- 2020-07-14 20:57:12,436 [19] INFO - function SE637303570324245082() {} SE637303570324245082.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. var args = context.param(0, {}); var wraptag = args["wraptag"] || "div"; var menuid = args["menuid"] || "xmenu"; var menuclass = args["menuclass"] || ""; var listwrapper = args["listwrapper"] || ["",""]; var itemwrapper = args["itemwrapper"] || ["",""]; var areaname = args["areaname"] || "Footer"; context.write("\r\n"); if ( page.attribute("show_extra_menu") ) { var extraMenu = page.extraMenu; context.write("\r\n\t<"); context.write( wraptag ); context.write(" id=\""); context.write( menuid ); context.write("\" class=\""); context.write( menuclass ); context.write("\" "); context.write( system.partial("inline-editing-xmenu.html", areaname) ); context.write(">\r\n\t\t"); context.write( listwrapper[0] ); context.write("\r\n\t\t"); for ( var mi = 0; mi < extraMenu.menuItems.count; ++mi ) { var menuItem = extraMenu.menuItems.item(mi); var rel = ""; if ( menuItem.nofollow ){ rel += "nofollow "; } if ( menuItem.target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } context.write("\r\n\t\t\t"); context.write( itemwrapper[0] ); context.write(""); context.write(menuItem.name); context.write(""); context.write( itemwrapper[1] ); context.write("\r\n\t\t"); } context.write("\r\n\t\t\t"); var output = ""; // Special case for Top Responsive which can add entries via attribute if ( page.attribute("add_extramenu") ) { output += page.attribute("add_extramenu"); } if ( page.attribute("show_language_menu") ){ // language selection var pf = project.projectFolders; if ( pf.count > 0 ){ output += itemwrapper[0] + '' + itemwrapper[1]; } } if ( output !== "" ){ context.write(output); } context.write("\r\n\t\t\t\r\n\t\t"); context.write( listwrapper[1] ); context.write("\r\n\t\r\n"); } // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zpextramenu.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570324245082().executeScript(); 2020-07-14 20:57:12,437 [19] INFO - --------- 2020-07-14 20:57:12,437 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1043. 2020-07-14 20:57:12,438 [19] INFO - --------- 2020-07-14 20:57:12,440 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,440 [19] INFO - --------- 2020-07-14 20:57:12,440 [19] INFO - function SE637303570324405092() {} SE637303570324405092.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570324405092().executeScript(); 2020-07-14 20:57:12,440 [19] INFO - --------- 2020-07-14 20:57:12,442 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,442 [19] INFO - --------- 2020-07-14 20:57:12,442 [19] INFO - function SE637303570324405092() {} SE637303570324405092.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. context.write("\r\n"); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\inline-editing-copyright.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570324405092().executeScript(); 2020-07-14 20:57:12,443 [19] INFO - --------- 2020-07-14 20:57:12,443 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1044. 2020-07-14 20:57:12,443 [19] INFO - --------- 2020-07-14 20:57:12,445 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,446 [19] INFO - --------- 2020-07-14 20:57:12,446 [19] INFO - function SE637303570320834887() {} SE637303570320834887.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 SE637303570320834887().executeScript(); 2020-07-14 20:57:12,447 [19] INFO - --------- 2020-07-14 20:57:12,447 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1045. 2020-07-14 20:57:12,448 [19] INFO - --------- 2020-07-14 20:57:12,448 [19] INFO - Closing the script engine. 2020-07-14 20:57:12,449 [19] INFO - --------- 2020-07-14 20:57:12,449 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1045. 2020-07-14 20:57:12,449 [19] INFO - --------- 2020-07-14 20:57:12,530 [19] INFO - Script engine constructed. 2020-07-14 20:57:12,530 [19] INFO - Script engine initialized. 2020-07-14 20:57:12,531 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,531 [19] INFO - --------- 2020-07-14 20:57:12,531 [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:57:12,532 [19] INFO - --------- 2020-07-14 20:57:12,533 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,533 [19] INFO - --------- 2020-07-14 20:57:12,533 [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:57:12,534 [19] INFO - --------- 2020-07-14 20:57:12,534 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1046. 2020-07-14 20:57:12,534 [19] INFO - --------- 2020-07-14 20:57:12,535 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,535 [19] INFO - --------- 2020-07-14 20:57:12,535 [19] INFO - function SE637303570325295143() {} SE637303570325295143.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\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 SE637303570325295143().executeScript(); 2020-07-14 20:57:12,536 [19] INFO - --------- 2020-07-14 20:57:12,538 [19] INFO - Finished executing the following script: 2020-07-14 20:57:12,538 [19] INFO - --------- 2020-07-14 20:57:12,538 [19] INFO - function SE637303570325295143() {} SE637303570325295143.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\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 SE637303570325295143().executeScript(); 2020-07-14 20:57:12,539 [19] INFO - --------- 2020-07-14 20:57:12,539 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1047. 2020-07-14 20:57:12,539 [19] INFO - --------- 2020-07-14 20:57:12,540 [19] INFO - About to execute the following script: 2020-07-14 20:57:12,541 [19] INFO - --------- 2020-07-14 20:57:12,541 [19] INFO - function SE637303570325405149() {} SE637303570325405149.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 SE637303570325405149().executeScript(); 2020-07-14 20:57:12,542 [19] INFO - --------- 2020-07-14 20:57:14,358 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,359 [19] INFO - --------- 2020-07-14 20:57:14,359 [19] INFO - function SE637303570343586189() {} SE637303570343586189.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 SE637303570343586189().executeScript(); 2020-07-14 20:57:14,360 [19] INFO - --------- 2020-07-14 20:57:14,361 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,362 [19] INFO - --------- 2020-07-14 20:57:14,362 [19] INFO - function SE637303570343586189() {} SE637303570343586189.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 SE637303570343586189().executeScript(); 2020-07-14 20:57:14,363 [19] INFO - --------- 2020-07-14 20:57:14,363 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1048. 2020-07-14 20:57:14,363 [19] INFO - --------- 2020-07-14 20:57:14,378 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,379 [19] INFO - --------- 2020-07-14 20:57:14,379 [19] INFO - function SE637303570343786200() {} SE637303570343786200.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 SE637303570343786200().executeScript(); 2020-07-14 20:57:14,379 [19] INFO - --------- 2020-07-14 20:57:14,381 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,381 [19] INFO - --------- 2020-07-14 20:57:14,381 [19] INFO - function SE637303570343786200() {} SE637303570343786200.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 SE637303570343786200().executeScript(); 2020-07-14 20:57:14,382 [19] INFO - --------- 2020-07-14 20:57:14,382 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1049. 2020-07-14 20:57:14,382 [19] INFO - --------- 2020-07-14 20:57:14,383 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,384 [19] INFO - --------- 2020-07-14 20:57:14,384 [19] INFO - function SE637303570343836203() {} SE637303570343836203.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 SE637303570343836203().executeScript(); 2020-07-14 20:57:14,384 [19] INFO - --------- 2020-07-14 20:57:14,386 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,386 [19] INFO - --------- 2020-07-14 20:57:14,387 [19] INFO - function SE637303570343836203() {} SE637303570343836203.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 SE637303570343836203().executeScript(); 2020-07-14 20:57:14,387 [19] INFO - --------- 2020-07-14 20:57:14,388 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1050. 2020-07-14 20:57:14,388 [19] INFO - --------- 2020-07-14 20:57:14,401 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,401 [19] INFO - --------- 2020-07-14 20:57:14,401 [19] INFO - function SE637303570344016213() {} SE637303570344016213.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 SE637303570344016213().executeScript(); 2020-07-14 20:57:14,402 [19] INFO - --------- 2020-07-14 20:57:14,403 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,403 [19] INFO - --------- 2020-07-14 20:57:14,404 [19] INFO - function SE637303570344016213() {} SE637303570344016213.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 SE637303570344016213().executeScript(); 2020-07-14 20:57:14,404 [19] INFO - --------- 2020-07-14 20:57:14,404 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1051. 2020-07-14 20:57:14,405 [19] INFO - --------- 2020-07-14 20:57:14,406 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,407 [19] INFO - --------- 2020-07-14 20:57:14,407 [19] INFO - function SE637303570344066216() {} SE637303570344066216.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 SE637303570344066216().executeScript(); 2020-07-14 20:57:14,407 [19] INFO - --------- 2020-07-14 20:57:14,415 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,415 [19] INFO - --------- 2020-07-14 20:57:14,415 [19] INFO - function SE637303570344156221() {} SE637303570344156221.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 SE637303570344156221().executeScript(); 2020-07-14 20:57:14,416 [19] INFO - --------- 2020-07-14 20:57:14,418 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,419 [19] INFO - --------- 2020-07-14 20:57:14,419 [19] INFO - function SE637303570344186223() {} SE637303570344186223.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 SE637303570344186223().executeScript(); 2020-07-14 20:57:14,419 [19] INFO - --------- 2020-07-14 20:57:14,430 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,431 [19] INFO - --------- 2020-07-14 20:57:14,431 [19] INFO - function SE637303570344186223() {} SE637303570344186223.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 SE637303570344186223().executeScript(); 2020-07-14 20:57:14,432 [19] INFO - --------- 2020-07-14 20:57:14,432 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1052. 2020-07-14 20:57:14,432 [19] INFO - --------- 2020-07-14 20:57:14,455 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,455 [19] INFO - --------- 2020-07-14 20:57:14,456 [19] INFO - function SE637303570344156221() {} SE637303570344156221.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 SE637303570344156221().executeScript(); 2020-07-14 20:57:14,457 [19] INFO - --------- 2020-07-14 20:57:14,458 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1053. 2020-07-14 20:57:14,458 [19] INFO - --------- 2020-07-14 20:57:14,461 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,461 [19] INFO - --------- 2020-07-14 20:57:14,462 [19] INFO - function SE637303570344066216() {} SE637303570344066216.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 SE637303570344066216().executeScript(); 2020-07-14 20:57:14,463 [19] INFO - --------- 2020-07-14 20:57:14,463 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1054. 2020-07-14 20:57:14,464 [19] INFO - --------- 2020-07-14 20:57:14,465 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,465 [19] INFO - --------- 2020-07-14 20:57:14,465 [19] INFO - function SE637303570344656250() {} SE637303570344656250.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 SE637303570344656250().executeScript(); 2020-07-14 20:57:14,466 [19] INFO - --------- 2020-07-14 20:57:14,472 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,472 [19] INFO - --------- 2020-07-14 20:57:14,472 [19] INFO - function SE637303570344726254() {} SE637303570344726254.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 SE637303570344726254().executeScript(); 2020-07-14 20:57:14,473 [19] INFO - --------- 2020-07-14 20:57:14,474 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,475 [19] INFO - --------- 2020-07-14 20:57:14,475 [19] INFO - function SE637303570344726254() {} SE637303570344726254.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 SE637303570344726254().executeScript(); 2020-07-14 20:57:14,476 [19] INFO - --------- 2020-07-14 20:57:14,476 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1055. 2020-07-14 20:57:14,476 [19] INFO - --------- 2020-07-14 20:57:14,479 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,479 [19] INFO - --------- 2020-07-14 20:57:14,479 [19] INFO - function SE637303570344796258() {} SE637303570344796258.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 SE637303570344796258().executeScript(); 2020-07-14 20:57:14,480 [19] INFO - --------- 2020-07-14 20:57:14,481 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,482 [19] INFO - --------- 2020-07-14 20:57:14,482 [19] INFO - function SE637303570344796258() {} SE637303570344796258.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 SE637303570344796258().executeScript(); 2020-07-14 20:57:14,482 [19] INFO - --------- 2020-07-14 20:57:14,483 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1056. 2020-07-14 20:57:14,483 [19] INFO - --------- 2020-07-14 20:57:14,492 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,493 [19] INFO - --------- 2020-07-14 20:57:14,493 [19] INFO - function SE637303570344926265() {} SE637303570344926265.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 SE637303570344926265().executeScript(); 2020-07-14 20:57:14,494 [19] INFO - --------- 2020-07-14 20:57:14,496 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,496 [19] INFO - --------- 2020-07-14 20:57:14,496 [19] INFO - function SE637303570344926265() {} SE637303570344926265.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 SE637303570344926265().executeScript(); 2020-07-14 20:57:14,497 [19] INFO - --------- 2020-07-14 20:57:14,497 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1057. 2020-07-14 20:57:14,497 [19] INFO - --------- 2020-07-14 20:57:14,499 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,500 [19] INFO - --------- 2020-07-14 20:57:14,500 [19] INFO - function SE637303570344996269() {} SE637303570344996269.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 SE637303570344996269().executeScript(); 2020-07-14 20:57:14,500 [19] INFO - --------- 2020-07-14 20:57:14,502 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,502 [19] INFO - --------- 2020-07-14 20:57:14,503 [19] INFO - function SE637303570344996269() {} SE637303570344996269.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 SE637303570344996269().executeScript(); 2020-07-14 20:57:14,503 [19] INFO - --------- 2020-07-14 20:57:14,503 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1058. 2020-07-14 20:57:14,504 [19] INFO - --------- 2020-07-14 20:57:14,506 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,507 [19] INFO - --------- 2020-07-14 20:57:14,507 [19] INFO - function SE637303570345066273() {} SE637303570345066273.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 SE637303570345066273().executeScript(); 2020-07-14 20:57:14,508 [19] INFO - --------- 2020-07-14 20:57:14,509 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,510 [19] INFO - --------- 2020-07-14 20:57:14,511 [19] INFO - function SE637303570345066273() {} SE637303570345066273.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 SE637303570345066273().executeScript(); 2020-07-14 20:57:14,511 [19] INFO - --------- 2020-07-14 20:57:14,511 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1059. 2020-07-14 20:57:14,512 [19] INFO - --------- 2020-07-14 20:57:14,514 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,514 [19] INFO - --------- 2020-07-14 20:57:14,514 [19] INFO - function SE637303570345146278() {} SE637303570345146278.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 SE637303570345146278().executeScript(); 2020-07-14 20:57:14,515 [19] INFO - --------- 2020-07-14 20:57:14,517 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,517 [19] INFO - --------- 2020-07-14 20:57:14,517 [19] INFO - function SE637303570345146278() {} SE637303570345146278.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 SE637303570345146278().executeScript(); 2020-07-14 20:57:14,518 [19] INFO - --------- 2020-07-14 20:57:14,518 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1060. 2020-07-14 20:57:14,518 [19] INFO - --------- 2020-07-14 20:57:14,520 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,521 [19] INFO - --------- 2020-07-14 20:57:14,521 [19] INFO - function SE637303570345206281() {} SE637303570345206281.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 SE637303570345206281().executeScript(); 2020-07-14 20:57:14,523 [19] INFO - --------- 2020-07-14 20:57:14,525 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,526 [19] INFO - --------- 2020-07-14 20:57:14,527 [19] INFO - function SE637303570345206281() {} SE637303570345206281.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 SE637303570345206281().executeScript(); 2020-07-14 20:57:14,527 [19] INFO - --------- 2020-07-14 20:57:14,527 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1061. 2020-07-14 20:57:14,528 [19] INFO - --------- 2020-07-14 20:57:14,529 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,529 [19] INFO - --------- 2020-07-14 20:57:14,529 [19] INFO - function SE637303570344656250() {} SE637303570344656250.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 SE637303570344656250().executeScript(); 2020-07-14 20:57:14,530 [19] INFO - --------- 2020-07-14 20:57:14,530 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1062. 2020-07-14 20:57:14,530 [19] INFO - --------- 2020-07-14 20:57:14,531 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,532 [19] INFO - --------- 2020-07-14 20:57:14,532 [19] INFO - function SE637303570345316288() {} SE637303570345316288.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 SE637303570345316288().executeScript(); 2020-07-14 20:57:14,532 [19] INFO - --------- 2020-07-14 20:57:14,533 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,534 [19] INFO - --------- 2020-07-14 20:57:14,534 [19] INFO - function SE637303570345316288() {} SE637303570345316288.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 SE637303570345316288().executeScript(); 2020-07-14 20:57:14,534 [19] INFO - --------- 2020-07-14 20:57:14,535 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1063. 2020-07-14 20:57:14,536 [19] INFO - --------- 2020-07-14 20:57:14,537 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,538 [19] INFO - --------- 2020-07-14 20:57:14,539 [19] INFO - function SE637303570345376291() {} SE637303570345376291.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 SE637303570345376291().executeScript(); 2020-07-14 20:57:14,539 [19] INFO - --------- 2020-07-14 20:57:14,545 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,545 [19] INFO - --------- 2020-07-14 20:57:14,545 [19] INFO - function SE637303570345376291() {} SE637303570345376291.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 SE637303570345376291().executeScript(); 2020-07-14 20:57:14,546 [19] INFO - --------- 2020-07-14 20:57:14,546 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1064. 2020-07-14 20:57:14,546 [19] INFO - --------- 2020-07-14 20:57:14,548 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,549 [19] INFO - --------- 2020-07-14 20:57:14,549 [19] INFO - function SE637303570345486297() {} SE637303570345486297.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 SE637303570345486297().executeScript(); 2020-07-14 20:57:14,551 [19] INFO - --------- 2020-07-14 20:57:14,678 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,678 [19] INFO - --------- 2020-07-14 20:57:14,678 [19] INFO - function SE637303570346786372() {} SE637303570346786372.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 SE637303570346786372().executeScript(); 2020-07-14 20:57:14,679 [19] INFO - --------- 2020-07-14 20:57:14,680 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,681 [19] INFO - --------- 2020-07-14 20:57:14,681 [19] INFO - function SE637303570346806373() {} SE637303570346806373.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 SE637303570346806373().executeScript(); 2020-07-14 20:57:14,681 [19] INFO - --------- 2020-07-14 20:57:14,693 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,694 [19] INFO - --------- 2020-07-14 20:57:14,694 [19] INFO - function SE637303570346806373() {} SE637303570346806373.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 SE637303570346806373().executeScript(); 2020-07-14 20:57:14,695 [19] INFO - --------- 2020-07-14 20:57:14,695 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1065. 2020-07-14 20:57:14,695 [19] INFO - --------- 2020-07-14 20:57:14,696 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,696 [19] INFO - --------- 2020-07-14 20:57:14,697 [19] INFO - function SE637303570346966382() {} SE637303570346966382.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 SE637303570346966382().executeScript(); 2020-07-14 20:57:14,697 [19] INFO - --------- 2020-07-14 20:57:14,700 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,701 [19] INFO - --------- 2020-07-14 20:57:14,701 [19] INFO - function SE637303570346966382() {} SE637303570346966382.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 SE637303570346966382().executeScript(); 2020-07-14 20:57:14,702 [19] INFO - --------- 2020-07-14 20:57:14,702 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1066. 2020-07-14 20:57:14,702 [19] INFO - --------- 2020-07-14 20:57:14,703 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,703 [19] INFO - --------- 2020-07-14 20:57:14,704 [19] INFO - function SE637303570347036386() {} SE637303570347036386.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 SE637303570347036386().executeScript(); 2020-07-14 20:57:14,704 [19] INFO - --------- 2020-07-14 20:57:14,707 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,707 [19] INFO - --------- 2020-07-14 20:57:14,707 [19] INFO - function SE637303570347036386() {} SE637303570347036386.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 SE637303570347036386().executeScript(); 2020-07-14 20:57:14,708 [19] INFO - --------- 2020-07-14 20:57:14,708 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1067. 2020-07-14 20:57:14,708 [19] INFO - --------- 2020-07-14 20:57:14,709 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,709 [19] INFO - --------- 2020-07-14 20:57:14,710 [19] INFO - function SE637303570347096389() {} SE637303570347096389.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 SE637303570347096389().executeScript(); 2020-07-14 20:57:14,710 [19] INFO - --------- 2020-07-14 20:57:14,711 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,711 [19] INFO - --------- 2020-07-14 20:57:14,713 [19] INFO - function SE637303570347096389() {} SE637303570347096389.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 SE637303570347096389().executeScript(); 2020-07-14 20:57:14,713 [19] INFO - --------- 2020-07-14 20:57:14,713 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1068. 2020-07-14 20:57:14,713 [19] INFO - --------- 2020-07-14 20:57:14,715 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,715 [19] INFO - --------- 2020-07-14 20:57:14,716 [19] INFO - function SE637303570346786372() {} SE637303570346786372.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 SE637303570346786372().executeScript(); 2020-07-14 20:57:14,716 [19] INFO - --------- 2020-07-14 20:57:14,716 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1069. 2020-07-14 20:57:14,717 [19] INFO - --------- 2020-07-14 20:57:14,748 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,749 [19] INFO - --------- 2020-07-14 20:57:14,749 [19] INFO - function SE637303570347486412() {} SE637303570347486412.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 SE637303570347486412().executeScript(); 2020-07-14 20:57:14,751 [19] INFO - --------- 2020-07-14 20:57:14,768 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,768 [19] INFO - --------- 2020-07-14 20:57:14,769 [19] INFO - function SE637303570347686423() {} SE637303570347686423.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 SE637303570347686423().executeScript(); 2020-07-14 20:57:14,769 [19] INFO - --------- 2020-07-14 20:57:14,778 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,779 [19] INFO - --------- 2020-07-14 20:57:14,779 [19] INFO - function SE637303570347686423() {} SE637303570347686423.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 SE637303570347686423().executeScript(); 2020-07-14 20:57:14,779 [19] INFO - --------- 2020-07-14 20:57:14,780 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1070. 2020-07-14 20:57:14,780 [19] INFO - --------- 2020-07-14 20:57:14,781 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,781 [19] INFO - --------- 2020-07-14 20:57:14,782 [19] INFO - function SE637303570347816431() {} SE637303570347816431.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 SE637303570347816431().executeScript(); 2020-07-14 20:57:14,782 [19] INFO - --------- 2020-07-14 20:57:14,786 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,790 [19] INFO - --------- 2020-07-14 20:57:14,791 [19] INFO - function SE637303570347816431() {} SE637303570347816431.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 SE637303570347816431().executeScript(); 2020-07-14 20:57:14,791 [19] INFO - --------- 2020-07-14 20:57:14,791 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1071. 2020-07-14 20:57:14,792 [19] INFO - --------- 2020-07-14 20:57:14,849 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,849 [19] INFO - --------- 2020-07-14 20:57:14,850 [19] INFO - function SE637303570347486412() {} SE637303570347486412.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 SE637303570347486412().executeScript(); 2020-07-14 20:57:14,852 [19] INFO - --------- 2020-07-14 20:57:14,852 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1072. 2020-07-14 20:57:14,853 [19] INFO - --------- 2020-07-14 20:57:14,881 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,881 [19] INFO - --------- 2020-07-14 20:57:14,882 [19] INFO - function SE637303570348816488() {} SE637303570348816488.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 SE637303570348816488().executeScript(); 2020-07-14 20:57:14,882 [19] INFO - --------- 2020-07-14 20:57:14,884 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,884 [19] INFO - --------- 2020-07-14 20:57:14,884 [19] INFO - function SE637303570348836489() {} SE637303570348836489.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 SE637303570348836489().executeScript(); 2020-07-14 20:57:14,885 [19] INFO - --------- 2020-07-14 20:57:14,895 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,895 [19] INFO - --------- 2020-07-14 20:57:14,896 [19] INFO - function SE637303570348836489() {} SE637303570348836489.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 SE637303570348836489().executeScript(); 2020-07-14 20:57:14,896 [19] INFO - --------- 2020-07-14 20:57:14,897 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1073. 2020-07-14 20:57:14,897 [19] INFO - --------- 2020-07-14 20:57:14,898 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,898 [19] INFO - --------- 2020-07-14 20:57:14,899 [19] INFO - function SE637303570348986498() {} SE637303570348986498.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 SE637303570348986498().executeScript(); 2020-07-14 20:57:14,899 [19] INFO - --------- 2020-07-14 20:57:14,902 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,902 [19] INFO - --------- 2020-07-14 20:57:14,902 [19] INFO - function SE637303570348986498() {} SE637303570348986498.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 SE637303570348986498().executeScript(); 2020-07-14 20:57:14,903 [19] INFO - --------- 2020-07-14 20:57:14,903 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1074. 2020-07-14 20:57:14,904 [19] INFO - --------- 2020-07-14 20:57:14,904 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,905 [19] INFO - --------- 2020-07-14 20:57:14,905 [19] INFO - function SE637303570349046501() {} SE637303570349046501.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 SE637303570349046501().executeScript(); 2020-07-14 20:57:14,906 [19] INFO - --------- 2020-07-14 20:57:14,908 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,908 [19] INFO - --------- 2020-07-14 20:57:14,909 [19] INFO - function SE637303570349046501() {} SE637303570349046501.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 SE637303570349046501().executeScript(); 2020-07-14 20:57:14,909 [19] INFO - --------- 2020-07-14 20:57:14,909 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1075. 2020-07-14 20:57:14,910 [19] INFO - --------- 2020-07-14 20:57:14,911 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,911 [19] INFO - --------- 2020-07-14 20:57:14,911 [19] INFO - function SE637303570349116505() {} SE637303570349116505.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 SE637303570349116505().executeScript(); 2020-07-14 20:57:14,912 [19] INFO - --------- 2020-07-14 20:57:14,913 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,913 [19] INFO - --------- 2020-07-14 20:57:14,914 [19] INFO - function SE637303570349116505() {} SE637303570349116505.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 SE637303570349116505().executeScript(); 2020-07-14 20:57:14,914 [19] INFO - --------- 2020-07-14 20:57:14,914 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1076. 2020-07-14 20:57:14,915 [19] INFO - --------- 2020-07-14 20:57:14,916 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,916 [19] INFO - --------- 2020-07-14 20:57:14,916 [19] INFO - function SE637303570348816488() {} SE637303570348816488.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 SE637303570348816488().executeScript(); 2020-07-14 20:57:14,917 [19] INFO - --------- 2020-07-14 20:57:14,917 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1077. 2020-07-14 20:57:14,918 [19] INFO - --------- 2020-07-14 20:57:14,949 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,949 [19] INFO - --------- 2020-07-14 20:57:14,949 [19] INFO - function SE637303570349496527() {} SE637303570349496527.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\buttonv12\standard.html'. var cssClass = article.cssClass || ""; var inlineCss = article.inlineCss || ""; if ( cssClass ) { cssClass = "button " + cssClass; } else { cssClass = "button"; } if ( inlineCss ) { inlineCss = ' style="' + inlineCss + '"'; } var borderRadius = article.value('borderRadius', -1); var bgcolorInactive = article.value('bgcolor-inactive', ''); var textcolorInactive = article.value('textcolor-inactive', ''); var bordercolorInactive = article.value('bordercolor-inactive', ''); var fontweightInactive = article.value('fontweight-inactive', 'default'); var bgcolorHover = article.value('bgcolor-hover', ''); var textcolorHover = article.value('textcolor-hover', ''); var bordercolorHover = article.value('bordercolor-hover', ''); var fontweightHover = article.value('fontweight-hover', 'default'); var borderWidthInactive = article.value('borderWidthInactive', -1); var borderWidthActive = article.value('borderWidthActive', -1); var cssselector = '#a' + article.id + '.zpwButton '; var headstyle = cssselector + "p{text-align: " + article.value('align') + ";}\n"; if ( parseInt(borderWidthInactive) >= 0 ){ headstyle += cssselector + "a.button{border-style: solid; border-width: " + borderWidthInactive + "px !important;}\n"; } if ( parseInt(borderWidthActive) >= 0 ){ headstyle += cssselector + "a.button:hover{border-style: solid; border-width: " + borderWidthActive + "px !important;}\n"; } if ( parseInt(borderRadius) >= 0 ){ headstyle += cssselector + "a.button{border-radius: " + borderRadius + "px !important;}\n"; } if ( bgcolorInactive !== "" ){ headstyle += cssselector + "a.button{background: " + bgcolorInactive + " !important;}\n"; } if ( textcolorInactive !== "" ){ headstyle += cssselector + "a.button{color: " + textcolorInactive + " !important;}\n"; } if ( bordercolorInactive !== "" ){ headstyle += cssselector + "a.button{border-color: " + bordercolorInactive + " !important;}\n"; } if ( fontweightInactive !== "" && fontweightInactive !== "default" ){ headstyle += cssselector + "a.button{font-weight: " + fontweightInactive + " !important;}\n"; } if ( bgcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{background: " + bgcolorHover + " !important;}\n"; } if ( textcolorHover !== "" ){ headstyle += cssselector + "a.button:hover{color: " + textcolorHover + " !important;}\n"; } if ( bordercolorHover !== "" ){ headstyle += cssselector + "a.button:hover{border-color: " + bordercolorHover + " !important;}\n"; } if ( fontweightHover !== "" && fontweightHover !== "default" ){ headstyle += cssselector + "a.button:hover{font-weight: " + fontweightHover + " !important;}\n"; } system.addHtmlHeadElement("\n" + headstyle + "\n"); context.write("\r\n"); context.write( system.partial("article-begin.html", "", "", "", false) ); context.write("\r\n\t

    \r\n\t\t\r\n\t\t\t"); context.write( article.value('text') ); context.write("\r\n\t\t\r\n\t

    \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\buttonv12\standard.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570349496527().executeScript(); 2020-07-14 20:57:14,950 [19] INFO - --------- 2020-07-14 20:57:14,953 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,953 [19] INFO - --------- 2020-07-14 20:57:14,953 [19] INFO - function SE637303570349526528() {} SE637303570349526528.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 SE637303570349526528().executeScript(); 2020-07-14 20:57:14,954 [19] INFO - --------- 2020-07-14 20:57:14,966 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,966 [19] INFO - --------- 2020-07-14 20:57:14,966 [19] INFO - function SE637303570349526528() {} SE637303570349526528.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 SE637303570349526528().executeScript(); 2020-07-14 20:57:14,967 [19] INFO - --------- 2020-07-14 20:57:14,968 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 1078. 2020-07-14 20:57:14,968 [19] INFO - --------- 2020-07-14 20:57:14,969 [19] INFO - About to execute the following script: 2020-07-14 20:57:14,969 [19] INFO - --------- 2020-07-14 20:57:14,970 [19] INFO - function SE637303570349696538() {} SE637303570349696538.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570349696538().executeScript(); 2020-07-14 20:57:14,970 [19] INFO - --------- 2020-07-14 20:57:14,972 [19] INFO - Finished executing the following script: 2020-07-14 20:57:14,972 [19] INFO - --------- 2020-07-14 20:57:14,972 [19] INFO - function SE637303570349696538() {} SE637303570349696538.prototype.executeScript = function(){ // Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. var fieldName = context.param(0, "url"); var target = context.param(1, article.value(fieldName + '_target')); var nofollow = context.param(2, article.value(fieldName + '_nofollow')); var rel = ""; if ( nofollow ){ rel += "nofollow "; } if ( target == "_blank"){ rel += "noopener "; } rel = rel.trim(); if ( rel !== "" ){ rel = ' rel="' + rel + '"'; } // fix links in case someone uses an anchor (only) as additional url parameter var finalUrl = article.valueExpanded(fieldName).replace('?#', '#'); context.write("href=\""); context.write( finalUrl ); context.write("\""); context.write( target.length > 0 ? ' target="' + target + '"' : '' ); context.write( rel ); // End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\zplink-expanded.html'. }; /* Shortcuts. */ article = context.article; page = context.page; projectFolder = context.projectFolder; project = context.project; system = context.system; new SE637303570349696538().executeScript(); ----------------------------------------