\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 SE637303570962241574().executeScript();
2020-07-14 20:58:16,267 [19] INFO - ---------
2020-07-14 20:58:16,267 [19] INFO - Information: 0 :
2020-07-14 20:58:16,267 [19] INFO - ---------
2020-07-14 20:58:16,267 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2167.
2020-07-14 20:58:16,267 [19] INFO - Information: 0 :
2020-07-14 20:58:16,267 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2167.
2020-07-14 20:58:16,267 [19] INFO - ---------
2020-07-14 20:58:16,268 [19] INFO - Information: 0 :
2020-07-14 20:58:16,268 [19] INFO - ---------
2020-07-14 20:58:16,269 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:16,304 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:16,310 [19] INFO - Finished executing the following script:
2020-07-14 20:58:16,310 [19] INFO - Information: 0 :
2020-07-14 20:58:16,311 [19] INFO - Finished executing the following script:
2020-07-14 20:58:16,311 [19] INFO - ---------
2020-07-14 20:58:16,311 [19] INFO - Information: 0 :
2020-07-14 20:58:16,311 [19] INFO - ---------
2020-07-14 20:58:16,311 [19] INFO - function SE637303570823723651() {}
SE637303570823723651.prototype.executeScript = function(){
// Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\area.html'.
var areaName = context.param(0, "Standard");
var areaNameLc = areaName.toLowerCase();
var maxColumns = context.param(1, "0");
var cssRowClass = context.param(2, "");
var displayNumColumns = context.param(3, "12"); // number of columns to display. We always calculate with 12, but can display less
var cssAreaClass = context.param(4, "");
var noBreakoutWithNews = context.param(5, true);
var hideIeForArea = context.param(6, false);
var canContainer = project.canContainer;
var showEmptyArticleAreas = (system.preview && system.showEmptyPreviewAreas);
var hasNews = page.hasArea("News") && (page.anyAreaArticles("News") || showEmptyArticleAreas);
var hasNonSymlinkContainer = false;
var lastContainerIsSymlink = false;
if ( maxColumns == "1" ){
if ( cssRowClass == "" || cssRowClass == "noresize" ){
cssRowClass = "noresize";
}
else{
cssRowClass += " noresize";
}
}
var intPreviewData = '';
if ( system.preview ){
// if internal preview, we add some additional data-attributes to the area
// for access in JS (non internal scripting)
intPreviewData += ' data-showemptyarticleareas="' + showEmptyArticleAreas + '"';
}
context.write("\n\n
\n\t");
var containers = page.containers(areaName);
var firstC = 0;
var lastC = containers.count-1;
//system.log("last: " + lastC + " of " + containers.count);
if ( lastC > firstC && !containers.item(lastC).hasArticles ){
// last container has no articles and is not rendered, so find last visible one
for ( var ilcon = lastC; ilcon > 1; --ilcon ){
var lastContainer = containers.item(ilcon);
if ( lastContainer.hasArticles ){
lastC = ilcon;
break;
}
}
}
for ( var icon = 0; icon < containers.count; ++icon ){
var container = containers.item(icon);
// if current container doesn't contain any articles, we skip this loop
// we do not skip when on impressum page and the container ist the last one, as we need to insert freeware content
if ( !container.hasArticles && !(icon == containers.count-1 && page.isSpecialPage("legal")) ){
firstC++;
continue;
}
// append container styles to head via css
var cid = container.id;
var output = "";
var isSection = container.value("issection") == "1";
var isStyled = false;
if ( container.value("fontcolor", "") !== "" && container.value("fontcolor") !== "transparent" ){
var cssSelector = "#container_" + cid;
output = cssSelector;
output += ", " + cssSelector + " p";
output += ", " + cssSelector + " h1";
output += ", " + cssSelector + " h2";
output += ", " + cssSelector + " h3{";
output += "color: " + container.value("fontcolor") + ";";
output += "}\n";
}
if ( container.value("linkcolor", "") !== "" && container.value("linkcolor") !== "transparent" ){
var cssSelector = "#container_" + cid;
output += "\n\n" + cssSelector + " a:not(.button):not(.fancybox):not(.zpSO-Uplink-Flat):not(.zpnolayoutlinkstyles)";
output += ", " + cssSelector + " a:not(.button):not(.fancybox):not(.zpSO-Uplink-Flat):not(.zpnolayoutlinkstyles):hover{";
output += "color: " + container.value("linkcolor") + ";";
output += "}\n";
}
if ( container.value("margin", "") !== "" ){
var cssSelector = "#container_" + cid;
output += cssSelector + "{";
if ( container.value("margin-top") ){
output += "margin-top: " + container.value("margin-top") + " !important;";
}
if ( container.value("margin-bottom") ){
output += "margin-bottom: " + container.value("margin-bottom") + " !important;" ;
}
output += "}\n";
}
if ( container.value("padding", "") !== "" ){
var cssSelector = "#container_" + cid;
output += cssSelector + "{";
if ( container.value("padding-top") ){
output += "padding-top: " + container.value("padding-top") + " !important;";
}
if ( container.value("padding-bottom") ){
output += "padding-bottom: " + container.value("padding-bottom") + " !important;";
}
if ( container.value("padding-left") ){
output += "padding-left: " + container.value("padding-left") + " !important;";
}
if ( container.value("padding-right") ){
output += "padding-right: " + container.value("padding-right") + " !important;";
}
output += "}\n";
}
if ( container.value("bgcolor", "") !== "" && container.value("bgcolor", "") !== "transparent" ){
isStyled = true;
var cssSelector = "#container_" + cid;
output += cssSelector + "{";
output += "background-color: " + container.value("bgcolor") + " !important;";
output += "}\n";
}
var image = container.cssBackgroundImage("bgimage");
if ( image.imageUrl ){
isStyled = true;
var cssSelector = "#container_" + cid;
output += cssSelector + "{";
output += "background-image: url(" + image.imageUrl + ") !important;";
output += "background-repeat: " + image.repeat + " !important;";
output += "background-size: " + image.size + " !important;";
output += "background-position: " + (image.position !== "" ? image.position : "center center") + " !important;";
output += "background-attachment: " + (image.attachment !== "" ? image.attachment : "scroll") + ";";
output += "}\n";
}
if ( output !== "" ){
system.addHtmlHeadElement("\n" + output.replace(/^\s+|\s+$/gm,'') + "\n");
}
var containerstyle = container.inlineCss || "";
containerstyle = containerstyle.toString().replace(/^\s+|\s+$/gm,''); // trim()
// make sure the users inlineCss properly ends with a semicolon as we attach more styles later below
if ( containerstyle && containerstyle.slice(-1) !== ";" ){
containerstyle += ";";
}
var initialContainerstyle = containerstyle;
containerstyle = containerstyle.replace(/^\s+|\s+$/gm,''); // trim()
if ( containerstyle ){
containerstyle = ' style="' + containerstyle + '"';
}
if ( noBreakoutWithNews && system.preview && container.value("breakout") == "1" && hasNews ){
system.warn("Die 'Randlos-Option' für einen Container kann nicht berücksichtigt werden, weil der 'Einfügen-Schalter' auf an steht oder die Seite auch Artikel im News-Bereich enthält.");
}
var containerTag = "div";
if ( isSection ){
containerTag = "section";
}
var containerIsSymlink = container.symlink ? true : false;
if ( !containerIsSymlink ){
hasNonSymlinkContainer = true;
}
else if ( icon == containers.count-1 ){
lastContainerIsSymlink = true;
}
context.write("\n\t\t\t<");
context.write( containerTag );
context.write(" id=\"container_");
context.write( container.id );
context.write("\" class=\"zpContainer");
if (icon==firstC){
context.write(" first");
}
if (icon==lastC){
context.write(" last");
}
if( container.value("animate", "") !== "" && container.value("animate") !== "off" ){
context.write(" zpanimate ");
context.write( container.value("animate"));
}
if( isStyled ){
context.write(" styled");
}
context.write(" ");
if ( container.value("breakout") == "1" ){
context.write("zpBreakout ");
}
if( noBreakoutWithNews && hasNews ) {
context.write(" hasNews");
}
context.write(" ");
context.write( container.cssClass );
context.write("\"");
context.write( containerstyle );
context.write(" \n\t\t\t\t data-zpeleel=\"container\" data-zpleid=\"");
context.write( container.id );
context.write("\">\n\t\t\t");
var paragraphs = container.paragraphs;
for ( var ipar = 0; ipar < paragraphs.count; ++ipar ){
var additionalRowClass = "";
var paragraph = paragraphs.item(ipar);
var columns = paragraph.columns;
// if current paragraph doesn't contain articles, we skip the loop, so we don't print empty paragraphs
// we do not skip when on impressum page and the container ist the last one, as we need to insert freeware content
var articleCount = paragraph.articles.count;
if ( articleCount < 1 && !(icon == containers.count-1 && page.isSpecialPage("legal")) ){
continue;
}
else if ( articleCount > 0 ){
// set special rowClass for Articles which are not visible, so we can remove any margins which might not be desired
var firstWidgetName = paragraph.articles.item(0).widgetName;
switch(firstWidgetName) {
case "Info-Banner":
additionalRowClass = " alertbanner";
break;
case "Quelltext":
additionalRowClass = " quelltext";
break;
case "Slider":
additionalRowClass = " zpwSlider";
break;
case "Carousel":
additionalRowClass = " zpwCarousel";
break;
case "Navigationsmenü":
if ( paragraph.articles.item(0).value("menufixed") ){
additionalRowClass = " zpwNavmenu zpwNavmenuFixed";
}
else{
additionalRowClass = " zpwNavmenu";
}
break;
case "Navigationsmenü manuell":
if ( paragraph.articles.item(0).value("menufixed") ){
additionalRowClass = " zpwNavmenu zpwNavmenuFixed";
}
else{
additionalRowClass = " zpwNavmenu";
}
break;
case "Video-Hintergrund":
additionalRowClass = " zpvideobg";
break;
}
// append row styles to head via css
var rid = paragraph.id;
var output = "";
if ( paragraph.value("margin", "") !== "" ){
var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]";
output += cssSelector + "{";
if ( paragraph.value("margin-top") ){
output += "margin-top: " + paragraph.value("margin-top", "initial") + " !important;";
}
if ( paragraph.value("margin-bottom") ){
output += "margin-bottom: " + paragraph.value("margin-bottom", "initial") + " !important;" ;
}
output += "}\n";
}
if ( paragraph.value("padding", "") !== "" ){
var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]";
output += cssSelector + "{";
if ( paragraph.value("padding-top") ){
output += "padding-top: " + paragraph.value("padding-top") + " !important;";
}
if ( paragraph.value("padding-bottom") ){
output += "padding-bottom: " + paragraph.value("padding-bottom") + " !important;";
}
if ( paragraph.value("padding-left") ){
output += "padding-left: " + paragraph.value("padding-left") + " !important;";
}
if ( paragraph.value("padding-right") ){
output += "padding-right: " + paragraph.value("padding-right") + " !important;";
}
output += "}\n";
}
if ( paragraph.value("bgcolor", "") !== "" && paragraph.value("bgcolor", "") !== "transparent" ){
var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]";
output += cssSelector + "{";
output += "background-color: " + paragraph.value("bgcolor") + " !important;";
output += "}\n";
}
var pimage = paragraph.cssBackgroundImage("bgimage");
if ( pimage.imageUrl ){
var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]";
output += cssSelector + "{";
output += "background-image: url(" + pimage.imageUrl + ") !important;";
output += "background-repeat: " + pimage.repeat + " !important;";
output += "background-size: " + pimage.size + " !important;";
output += "background-position: " + (pimage.position !== "" ? pimage.position : "center center") + " !important;";
output += "background-attachment: " + (pimage.attachment !== "" ? pimage.attachment : "scroll") + ";";
output += "}\n";
}
if ( paragraph.value("justifycontent", "") !== "" ){
var cssSelector = ".zpRow[data-row-id=\"" + rid + "\"]";
output += cssSelector + "{";
output += "justify-content: " + paragraph.value("justifycontent") + ";";
output += "}\n";
}
if ( output !== "" ){
system.addHtmlHeadElement("\n" + output.replace(/^\s+|\s+$/gm,'') + "\n");
}
// paragraph styles
var rowstyle = paragraph.inlineCss || "";
rowstyle = rowstyle.toString().replace(/^\s+|\s+$/gm,''); // trim();
// make sure the users inlineCss properly ends with a semicolon as we attach more styles later below
if ( rowstyle && rowstyle.slice(-1) !== ";" ){
rowstyle += ";";
}
context.write("\n\t\t\n\t\t\t\t\t");
if ( paragraph.value("breakout") == "1" ){
context.write("\n\t\t\t\t\t\t
\n\t\t\t\t\t>\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>\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\n");
// insert overlay on startpage
if ( !system.preview && system.isFreeware && areaName.toLowerCase() == "standard" && projectFolder.startPage && projectFolder.startPage.id == page.id ){
context.write("\n\t\t");
context.write( system.partial("zpinfooverlay.html") );
context.write("\n\t\t");
}
// End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\_shared\templates\partials\area.html'.
};
/* Shortcuts. */
article = context.article;
page = context.page;
projectFolder = context.projectFolder;
project = context.project;
system = context.system;
new SE637303570823723651().executeScript();
2020-07-14 20:58:16,314 [19] INFO - ---------
2020-07-14 20:58:16,314 [19] INFO - Information: 0 :
2020-07-14 20:58:16,314 [19] INFO - ---------
2020-07-14 20:58:16,314 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2168.
2020-07-14 20:58:16,314 [19] INFO - Information: 0 :
2020-07-14 20:58:16,314 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2168.
2020-07-14 20:58:16,314 [19] INFO - ---------
2020-07-14 20:58:16,314 [19] INFO - Information: 0 :
2020-07-14 20:58:16,314 [19] INFO - ---------
2020-07-14 20:58:16,317 [19] INFO - [system.partial] „area.html“ 13945 ms „[0, Standard]','[1, 0]','[2, ]','[3, ]','[4, zpgrid]“
2020-07-14 20:58:16,317 [19] INFO - Information: 0 :
2020-07-14 20:58:16,317 [19] INFO - [system.partial] „area.html“ 13945 ms „[0, Standard]','[1, 0]','[2, ]','[3, ]','[4, zpgrid]“
2020-07-14 20:58:16,320 [19] INFO - About to execute the following script:
2020-07-14 20:58:16,320 [19] INFO - Information: 0 :
2020-07-14 20:58:16,320 [19] INFO - About to execute the following script:
2020-07-14 20:58:16,321 [19] INFO - ---------
2020-07-14 20:58:16,321 [19] INFO - Information: 0 :
2020-07-14 20:58:16,321 [19] INFO - ---------
2020-07-14 20:58:16,321 [19] INFO - function SE637303570963201629() {}
SE637303570963201629.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 SE637303570963201629().executeScript();
2020-07-14 20:58:16,321 [19] INFO - Information: 0 :
2020-07-14 20:58:16,321 [19] INFO - function SE637303570963201629() {}
SE637303570963201629.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 SE637303570963201629().executeScript();
2020-07-14 20:58:16,321 [19] INFO - ---------
2020-07-14 20:58:16,321 [19] INFO - Information: 0 :
2020-07-14 20:58:16,322 [19] INFO - ---------
2020-07-14 20:58:16,332 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:16,334 [19] INFO - About to execute the following script:
2020-07-14 20:58:16,334 [19] INFO - Information: 0 :
2020-07-14 20:58:16,334 [19] INFO - About to execute the following script:
2020-07-14 20:58:16,334 [19] INFO - ---------
2020-07-14 20:58:16,334 [19] INFO - Information: 0 :
2020-07-14 20:58:16,334 [19] INFO - ---------
2020-07-14 20:58:16,334 [19] INFO - function SE637303570963341637() {}
SE637303570963341637.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 SE637303570963341637().executeScript();
2020-07-14 20:58:16,335 [19] INFO - Information: 0 :
2020-07-14 20:58:16,335 [19] INFO - function SE637303570963341637() {}
SE637303570963341637.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 SE637303570963341637().executeScript();
2020-07-14 20:58:16,335 [19] INFO - ---------
2020-07-14 20:58:16,335 [19] INFO - Information: 0 :
2020-07-14 20:58:16,335 [19] INFO - ---------
2020-07-14 20:58:16,340 [19] INFO - About to execute the following script:
2020-07-14 20:58:16,340 [19] INFO - Information: 0 :
2020-07-14 20:58:16,340 [19] INFO - About to execute the following script:
2020-07-14 20:58:16,340 [19] INFO - ---------
2020-07-14 20:58:16,341 [19] INFO - Information: 0 :
2020-07-14 20:58:16,341 [19] INFO - ---------
2020-07-14 20:58:16,341 [19] INFO - function SE637303570963401640() {}
SE637303570963401640.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
\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>\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>\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>\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
\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 SE637303570969962015().executeScript();
2020-07-14 20:58:16,998 [19] INFO - ---------
2020-07-14 20:58:16,998 [19] INFO - Information: 0 :
2020-07-14 20:58:16,998 [19] INFO - ---------
2020-07-14 20:58:17,000 [19] INFO - About to execute the following script:
2020-07-14 20:58:17,000 [19] INFO - Information: 0 :
2020-07-14 20:58:17,000 [19] INFO - About to execute the following script:
2020-07-14 20:58:17,000 [19] INFO - ---------
2020-07-14 20:58:17,000 [19] INFO - Information: 0 :
2020-07-14 20:58:17,000 [19] INFO - ---------
2020-07-14 20:58:17,001 [19] INFO - function SE637303570970002018() {}
SE637303570970002018.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 SE637303570970002018().executeScript();
2020-07-14 20:58:17,001 [19] INFO - Information: 0 :
2020-07-14 20:58:17,001 [19] INFO - function SE637303570970002018() {}
SE637303570970002018.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 SE637303570970002018().executeScript();
2020-07-14 20:58:17,001 [19] INFO - ---------
2020-07-14 20:58:17,001 [19] INFO - Information: 0 :
2020-07-14 20:58:17,001 [19] INFO - ---------
2020-07-14 20:58:17,004 [19] INFO - Information: 0 :
2020-07-14 20:58:17,004 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:17,006 [19] INFO - Information: 0 :
2020-07-14 20:58:17,006 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:17,006 [19] INFO - Information: 0 :
2020-07-14 20:58:17,006 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:17,007 [19] INFO - Finished executing the following script:
2020-07-14 20:58:17,007 [19] INFO - Information: 0 :
2020-07-14 20:58:17,007 [19] INFO - Finished executing the following script:
2020-07-14 20:58:17,007 [19] INFO - ---------
2020-07-14 20:58:17,007 [19] INFO - Information: 0 :
2020-07-14 20:58:17,007 [19] INFO - ---------
2020-07-14 20:58:17,007 [19] INFO - function SE637303570970002018() {}
SE637303570970002018.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 SE637303570970002018().executeScript();
2020-07-14 20:58:17,007 [19] INFO - Information: 0 :
2020-07-14 20:58:17,007 [19] INFO - function SE637303570970002018() {}
SE637303570970002018.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 SE637303570970002018().executeScript();
2020-07-14 20:58:17,007 [19] INFO - ---------
2020-07-14 20:58:17,008 [19] INFO - Information: 0 :
2020-07-14 20:58:17,008 [19] INFO - ---------
2020-07-14 20:58:17,008 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2192.
2020-07-14 20:58:17,008 [19] INFO - Information: 0 :
2020-07-14 20:58:17,008 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2192.
2020-07-14 20:58:17,008 [19] INFO - ---------
2020-07-14 20:58:17,008 [19] INFO - Information: 0 :
2020-07-14 20:58:17,008 [19] INFO - ---------
2020-07-14 20:58:17,008 [19] INFO - [system.partial] „inline-editing-header.html“ 8 ms „“
2020-07-14 20:58:17,009 [19] INFO - Information: 0 :
2020-07-14 20:58:17,009 [19] INFO - [system.partial] „inline-editing-header.html“ 8 ms „“
2020-07-14 20:58:17,009 [19] INFO - Information: 0 :
2020-07-14 20:58:17,009 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:17,011 [19] INFO - Information: 0 :
2020-07-14 20:58:17,011 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:17,011 [19] INFO - Information: 0 :
2020-07-14 20:58:17,011 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:17,012 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:17,012 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 531.
2020-07-14 20:58:17,012 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 531.
2020-07-14 20:58:17,013 [19] INFO - Information: 0 :
2020-07-14 20:58:17,013 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:17,015 [19] INFO - Information: 0 :
2020-07-14 20:58:17,015 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:17,015 [19] INFO - Information: 0 :
2020-07-14 20:58:17,015 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:17,015 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:17,015 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 531.
2020-07-14 20:58:17,017 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:17,017 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 503.
2020-07-14 20:58:17,017 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 503.
2020-07-14 20:58:17,017 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:17,018 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 503.
2020-07-14 20:58:17,018 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:17,019 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 342.
2020-07-14 20:58:17,019 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 342.
2020-07-14 20:58:17,019 [19] INFO - Information: 0 :
2020-07-14 20:58:17,019 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:17,021 [19] INFO - Information: 0 :
2020-07-14 20:58:17,021 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:17,021 [19] INFO - Information: 0 :
2020-07-14 20:58:17,021 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:17,021 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:17,021 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 342.
2020-07-14 20:58:17,023 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,023 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:17,024 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 504.
2020-07-14 20:58:17,024 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 504.
2020-07-14 20:58:17,025 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:17,025 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 504.
2020-07-14 20:58:17,026 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:17,026 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 505.
2020-07-14 20:58:17,026 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 505.
2020-07-14 20:58:17,027 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:17,027 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 505.
2020-07-14 20:58:17,028 [19] INFO - Information: 0 :
2020-07-14 20:58:17,028 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:17,031 [19] INFO - Information: 0 :
2020-07-14 20:58:17,031 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:17,031 [19] INFO - Information: 0 :
2020-07-14 20:58:17,032 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:17,032 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:17,032 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 569.
2020-07-14 20:58:17,032 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 569.
2020-07-14 20:58:17,033 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:17,033 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 569.
2020-07-14 20:58:17,035 [19] INFO - Finished executing the following script:
2020-07-14 20:58:17,035 [19] INFO - Information: 0 :
2020-07-14 20:58:17,035 [19] INFO - Finished executing the following script:
2020-07-14 20:58:17,035 [19] INFO - ---------
2020-07-14 20:58:17,035 [19] INFO - Information: 0 :
2020-07-14 20:58:17,035 [19] INFO - ---------
2020-07-14 20:58:17,035 [19] INFO - function SE637303570969962015() {}
SE637303570969962015.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\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 SE637303570969962015().executeScript();
2020-07-14 20:58:17,036 [19] INFO - ---------
2020-07-14 20:58:17,036 [19] INFO - Information: 0 :
2020-07-14 20:58:17,036 [19] INFO - ---------
2020-07-14 20:58:17,037 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2193.
2020-07-14 20:58:17,037 [19] INFO - Information: 0 :
2020-07-14 20:58:17,037 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2193.
2020-07-14 20:58:17,037 [19] INFO - ---------
2020-07-14 20:58:17,037 [19] INFO - Information: 0 :
2020-07-14 20:58:17,037 [19] INFO - ---------
2020-07-14 20:58:17,050 [19] INFO - Finished executing the following script:
2020-07-14 20:58:17,050 [19] INFO - Information: 0 :
2020-07-14 20:58:17,050 [19] INFO - Finished executing the following script:
2020-07-14 20:58:17,050 [19] INFO - ---------
2020-07-14 20:58:17,050 [19] INFO - Information: 0 :
2020-07-14 20:58:17,050 [19] INFO - ---------
2020-07-14 20:58:17,051 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,051 [19] INFO - function SE637303570969862010() {}
SE637303570969862010.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 SE637303570969862010().executeScript();
2020-07-14 20:58:17,052 [19] INFO - Information: 0 :
2020-07-14 20:58:17,052 [19] INFO - function SE637303570969862010() {}
SE637303570969862010.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 SE637303570969862010().executeScript();
2020-07-14 20:58:17,052 [19] INFO - ---------
2020-07-14 20:58:17,052 [19] INFO - Information: 0 :
2020-07-14 20:58:17,052 [19] INFO - ---------
2020-07-14 20:58:17,052 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2194.
2020-07-14 20:58:17,052 [19] INFO - Information: 0 :
2020-07-14 20:58:17,052 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2194.
2020-07-14 20:58:17,052 [19] INFO - ---------
2020-07-14 20:58:17,053 [19] INFO - Information: 0 :
2020-07-14 20:58:17,053 [19] INFO - ---------
2020-07-14 20:58:17,053 [19] INFO - [system.partial] „header.html“ 66 ms „“
2020-07-14 20:58:17,053 [19] INFO - Information: 0 :
2020-07-14 20:58:17,053 [19] INFO - [system.partial] „header.html“ 66 ms „“
2020-07-14 20:58:17,053 [19] INFO - About to execute the following script:
2020-07-14 20:58:17,054 [19] INFO - Information: 0 :
2020-07-14 20:58:17,055 [19] INFO - About to execute the following script:
2020-07-14 20:58:17,055 [19] INFO - ---------
2020-07-14 20:58:17,055 [19] INFO - Information: 0 :
2020-07-14 20:58:17,055 [19] INFO - ---------
2020-07-14 20:58:17,055 [19] INFO - function SE637303570970532048() {}
SE637303570970532048.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 SE637303570970532048().executeScript();
2020-07-14 20:58:17,056 [19] INFO - Information: 0 :
2020-07-14 20:58:17,056 [19] INFO - function SE637303570970532048() {}
SE637303570970532048.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 SE637303570970532048().executeScript();
2020-07-14 20:58:17,056 [19] INFO - ---------
2020-07-14 20:58:17,056 [19] INFO - Information: 0 :
2020-07-14 20:58:17,056 [19] INFO - ---------
2020-07-14 20:58:17,062 [19] INFO - About to execute the following script:
2020-07-14 20:58:17,062 [19] INFO - Information: 0 :
2020-07-14 20:58:17,062 [19] INFO - About to execute the following script:
2020-07-14 20:58:17,062 [19] INFO - ---------
2020-07-14 20:58:17,062 [19] INFO - Information: 0 :
2020-07-14 20:58:17,062 [19] INFO - ---------
2020-07-14 20:58:17,062 [19] INFO - function SE637303570970622053() {}
SE637303570970622053.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
\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 SE637303570971072079().executeScript();
2020-07-14 20:58:17,111 [19] INFO - ---------
2020-07-14 20:58:17,111 [19] INFO - Information: 0 :
2020-07-14 20:58:17,112 [19] INFO - ---------
2020-07-14 20:58:17,112 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2201.
2020-07-14 20:58:17,112 [19] INFO - Information: 0 :
2020-07-14 20:58:17,113 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2201.
2020-07-14 20:58:17,113 [19] INFO - ---------
2020-07-14 20:58:17,113 [19] INFO - Information: 0 :
2020-07-14 20:58:17,113 [19] INFO - ---------
2020-07-14 20:58:17,113 [19] INFO - [system.partial] „item-hauptmenu.html“ 5 ms „[0, 491]','[1, 1]“
2020-07-14 20:58:17,113 [19] INFO - Information: 0 :
2020-07-14 20:58:17,113 [19] INFO - [system.partial] „item-hauptmenu.html“ 5 ms „[0, 491]','[1, 1]“
2020-07-14 20:58:17,113 [19] INFO - Finished executing the following script:
2020-07-14 20:58:17,113 [19] INFO - Information: 0 :
2020-07-14 20:58:17,114 [19] INFO - Finished executing the following script:
2020-07-14 20:58:17,114 [19] INFO - ---------
2020-07-14 20:58:17,114 [19] INFO - Information: 0 :
2020-07-14 20:58:17,114 [19] INFO - ---------
2020-07-14 20:58:17,114 [19] INFO - function SE637303570970532048() {}
SE637303570970532048.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 SE637303570970532048().executeScript();
2020-07-14 20:58:17,114 [19] INFO - Information: 0 :
2020-07-14 20:58:17,114 [19] INFO - function SE637303570970532048() {}
SE637303570970532048.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 SE637303570970532048().executeScript();
2020-07-14 20:58:17,115 [19] INFO - ---------
2020-07-14 20:58:17,115 [19] INFO - Information: 0 :
2020-07-14 20:58:17,115 [19] INFO - ---------
2020-07-14 20:58:17,115 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2202.
2020-07-14 20:58:17,115 [19] INFO - Information: 0 :
2020-07-14 20:58:17,115 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2202.
2020-07-14 20:58:17,115 [19] INFO - ---------
2020-07-14 20:58:17,115 [19] INFO - Information: 0 :
2020-07-14 20:58:17,115 [19] INFO - ---------
2020-07-14 20:58:17,116 [19] INFO - [system.partial] „hauptmenu.html“ 62 ms „“
2020-07-14 20:58:17,116 [19] INFO - Information: 0 :
2020-07-14 20:58:17,116 [19] INFO - [system.partial] „hauptmenu.html“ 62 ms „“
2020-07-14 20:58:17,116 [19] INFO - About to execute the following script:
2020-07-14 20:58:17,116 [19] INFO - Information: 0 :
2020-07-14 20:58:17,116 [19] INFO - About to execute the following script:
2020-07-14 20:58:17,116 [19] INFO - ---------
2020-07-14 20:58:17,117 [19] INFO - Information: 0 :
2020-07-14 20:58:17,117 [19] INFO - ---------
2020-07-14 20:58:17,117 [19] INFO - function SE637303570971162084() {}
SE637303570971162084.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 SE637303570971162084().executeScript();
2020-07-14 20:58:17,117 [19] INFO - Information: 0 :
2020-07-14 20:58:17,117 [19] INFO - function SE637303570971162084() {}
SE637303570971162084.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 SE637303570971162084().executeScript();
2020-07-14 20:58:17,117 [19] INFO - ---------
2020-07-14 20:58:17,117 [19] INFO - Information: 0 :
2020-07-14 20:58:17,117 [19] INFO - ---------
2020-07-14 20:58:17,118 [19] INFO - Finished executing the following script:
2020-07-14 20:58:17,118 [19] INFO - Information: 0 :
2020-07-14 20:58:17,119 [19] INFO - Finished executing the following script:
2020-07-14 20:58:17,119 [19] INFO - ---------
2020-07-14 20:58:17,119 [19] INFO - Information: 0 :
2020-07-14 20:58:17,119 [19] INFO - ---------
2020-07-14 20:58:17,119 [19] INFO - function SE637303570971162084() {}
SE637303570971162084.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 SE637303570971162084().executeScript();
2020-07-14 20:58:17,119 [19] INFO - Information: 0 :
2020-07-14 20:58:17,120 [19] INFO - function SE637303570971162084() {}
SE637303570971162084.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 SE637303570971162084().executeScript();
2020-07-14 20:58:17,152 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,182 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,210 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,242 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,270 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,299 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,333 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,362 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,400 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,428 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,460 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,490 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,519 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,551 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,580 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,611 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,651 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,675 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,704 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,742 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,773 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,803 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,831 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,860 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,899 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,928 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,958 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,990 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,019 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,048 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,088 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,114 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,143 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,175 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,207 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,239 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,269 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,298 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,332 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,361 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,391 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,425 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,455 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,492 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,520 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,552 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:17,120 [19] INFO - ---------
2020-07-14 20:58:18,576 [19] INFO - Information: 0 :
2020-07-14 20:58:18,576 [19] INFO - ---------
2020-07-14 20:58:18,576 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2203.
2020-07-14 20:58:18,577 [19] INFO - Information: 0 :
2020-07-14 20:58:18,577 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2203.
2020-07-14 20:58:18,577 [19] INFO - ---------
2020-07-14 20:58:18,577 [19] INFO - Information: 0 :
2020-07-14 20:58:18,577 [19] INFO - ---------
2020-07-14 20:58:18,577 [19] INFO - [system.partial] „inline-editing-breadcrumb.html“ 1461 ms „“
2020-07-14 20:58:18,577 [19] INFO - Information: 0 :
2020-07-14 20:58:18,577 [19] INFO - [system.partial] „inline-editing-breadcrumb.html“ 1461 ms „“
2020-07-14 20:58:18,578 [19] INFO - About to execute the following script:
2020-07-14 20:58:18,578 [19] INFO - Information: 0 :
2020-07-14 20:58:18,578 [19] INFO - About to execute the following script:
2020-07-14 20:58:18,578 [19] INFO - ---------
2020-07-14 20:58:18,578 [19] INFO - Information: 0 :
2020-07-14 20:58:18,579 [19] INFO - ---------
2020-07-14 20:58:18,579 [19] INFO - function SE637303570985782920() {}
SE637303570985782920.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
\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 SE637303570985782920().executeScript();
2020-07-14 20:58:18,580 [19] INFO - Information: 0 :
2020-07-14 20:58:18,580 [19] INFO - function SE637303570985782920() {}
SE637303570985782920.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
\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 SE637303570985782920().executeScript();
2020-07-14 20:58:18,580 [19] INFO - ---------
2020-07-14 20:58:18,580 [19] INFO - Information: 0 :
2020-07-14 20:58:18,580 [19] INFO - ---------
2020-07-14 20:58:18,582 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,586 [19] INFO - Finished executing the following script:
2020-07-14 20:58:18,586 [19] INFO - Information: 0 :
2020-07-14 20:58:18,586 [19] INFO - Finished executing the following script:
2020-07-14 20:58:18,586 [19] INFO - ---------
2020-07-14 20:58:18,586 [19] INFO - Information: 0 :
2020-07-14 20:58:18,586 [19] INFO - ---------
2020-07-14 20:58:18,586 [19] INFO - function SE637303570985782920() {}
SE637303570985782920.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
\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 SE637303570985782920().executeScript();
2020-07-14 20:58:18,586 [19] INFO - Information: 0 :
2020-07-14 20:58:18,587 [19] INFO - function SE637303570985782920() {}
SE637303570985782920.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
\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>\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\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 SE637303570985902927().executeScript();
2020-07-14 20:58:18,593 [19] INFO - ---------
2020-07-14 20:58:18,593 [19] INFO - Information: 0 :
2020-07-14 20:58:18,593 [19] INFO - ---------
2020-07-14 20:58:18,609 [19] INFO - Information: 0 :
2020-07-14 20:58:18,610 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,611 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,611 [19] INFO - Information: 0 :
2020-07-14 20:58:18,612 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,612 [19] INFO - Information: 0 :
2020-07-14 20:58:18,612 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,612 [19] INFO - Information: 0 :
2020-07-14 20:58:18,613 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,622 [19] INFO - Information: 0 :
2020-07-14 20:58:18,622 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,622 [19] INFO - Information: 0 :
2020-07-14 20:58:18,622 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,638 [19] INFO - Information: 0 :
2020-07-14 20:58:18,638 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,639 [19] INFO - Information: 0 :
2020-07-14 20:58:18,639 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,639 [19] INFO - Information: 0 :
2020-07-14 20:58:18,639 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,643 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,646 [19] INFO - Information: 0 :
2020-07-14 20:58:18,646 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,648 [19] INFO - Information: 0 :
2020-07-14 20:58:18,648 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,648 [19] INFO - Information: 0 :
2020-07-14 20:58:18,648 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,651 [19] INFO - Information: 0 :
2020-07-14 20:58:18,653 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,655 [19] INFO - Information: 0 :
2020-07-14 20:58:18,655 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,655 [19] INFO - Information: 0 :
2020-07-14 20:58:18,655 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,656 [19] INFO - Information: 0 :
2020-07-14 20:58:18,656 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,658 [19] INFO - Information: 0 :
2020-07-14 20:58:18,659 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,659 [19] INFO - Information: 0 :
2020-07-14 20:58:18,659 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,659 [19] INFO - Information: 0 :
2020-07-14 20:58:18,663 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,664 [19] INFO - Information: 0 :
2020-07-14 20:58:18,664 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,664 [19] INFO - Information: 0 :
2020-07-14 20:58:18,664 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,668 [19] INFO - About to execute the following script:
2020-07-14 20:58:18,668 [19] INFO - Information: 0 :
2020-07-14 20:58:18,668 [19] INFO - About to execute the following script:
2020-07-14 20:58:18,668 [19] INFO - ---------
2020-07-14 20:58:18,668 [19] INFO - Information: 0 :
2020-07-14 20:58:18,668 [19] INFO - ---------
2020-07-14 20:58:18,668 [19] INFO - function SE637303570986682972() {}
SE637303570986682972.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\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 SE637303570987823037().executeScript();
2020-07-14 20:58:18,785 [19] INFO - ---------
2020-07-14 20:58:18,785 [19] INFO - Information: 0 :
2020-07-14 20:58:18,785 [19] INFO - ---------
2020-07-14 20:58:18,800 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,802 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:18,802 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:18,802 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:18,802 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:18,803 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:18,803 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:18,805 [19] INFO - About to execute the following script:
2020-07-14 20:58:18,805 [19] INFO - Information: 0 :
2020-07-14 20:58:18,805 [19] INFO - About to execute the following script:
2020-07-14 20:58:18,805 [19] INFO - ---------
2020-07-14 20:58:18,805 [19] INFO - Information: 0 :
2020-07-14 20:58:18,805 [19] INFO - ---------
2020-07-14 20:58:18,805 [19] INFO - function SE637303570988053050() {}
SE637303570988053050.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 SE637303570988053050().executeScript();
2020-07-14 20:58:18,806 [19] INFO - Information: 0 :
2020-07-14 20:58:18,806 [19] INFO - function SE637303570988053050() {}
SE637303570988053050.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 SE637303570988053050().executeScript();
2020-07-14 20:58:18,806 [19] INFO - ---------
2020-07-14 20:58:18,806 [19] INFO - Information: 0 :
2020-07-14 20:58:18,806 [19] INFO - ---------
2020-07-14 20:58:18,810 [19] INFO - Information: 0 :
2020-07-14 20:58:18,810 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,813 [19] INFO - Information: 0 :
2020-07-14 20:58:18,813 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,813 [19] INFO - Information: 0 :
2020-07-14 20:58:18,814 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,814 [19] INFO - Finished executing the following script:
2020-07-14 20:58:18,815 [19] INFO - Information: 0 :
2020-07-14 20:58:18,815 [19] INFO - Finished executing the following script:
2020-07-14 20:58:18,815 [19] INFO - ---------
2020-07-14 20:58:18,815 [19] INFO - Information: 0 :
2020-07-14 20:58:18,815 [19] INFO - ---------
2020-07-14 20:58:18,815 [19] INFO - function SE637303570988053050() {}
SE637303570988053050.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 SE637303570988053050().executeScript();
2020-07-14 20:58:18,815 [19] INFO - Information: 0 :
2020-07-14 20:58:18,815 [19] INFO - function SE637303570988053050() {}
SE637303570988053050.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 SE637303570988053050().executeScript();
2020-07-14 20:58:18,816 [19] INFO - ---------
2020-07-14 20:58:18,816 [19] INFO - Information: 0 :
2020-07-14 20:58:18,816 [19] INFO - ---------
2020-07-14 20:58:18,816 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2215.
2020-07-14 20:58:18,816 [19] INFO - Information: 0 :
2020-07-14 20:58:18,816 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2215.
2020-07-14 20:58:18,816 [19] INFO - ---------
2020-07-14 20:58:18,816 [19] INFO - Information: 0 :
2020-07-14 20:58:18,817 [19] INFO - ---------
2020-07-14 20:58:18,817 [19] INFO - [system.partial] „article-begin.html“ 12 ms „“
2020-07-14 20:58:18,817 [19] INFO - Information: 0 :
2020-07-14 20:58:18,817 [19] INFO - [system.partial] „article-begin.html“ 12 ms „“
2020-07-14 20:58:18,817 [19] INFO - About to execute the following script:
2020-07-14 20:58:18,817 [19] INFO - Information: 0 :
2020-07-14 20:58:18,817 [19] INFO - About to execute the following script:
2020-07-14 20:58:18,817 [19] INFO - ---------
2020-07-14 20:58:18,818 [19] INFO - Information: 0 :
2020-07-14 20:58:18,818 [19] INFO - ---------
2020-07-14 20:58:18,818 [19] INFO - function SE637303570988173057() {}
SE637303570988173057.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("");
context.write( article.headlineLevel );
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 SE637303570988173057().executeScript();
2020-07-14 20:58:18,818 [19] INFO - Information: 0 :
2020-07-14 20:58:18,818 [19] INFO - function SE637303570988173057() {}
SE637303570988173057.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("");
context.write( article.headlineLevel );
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 SE637303570988173057().executeScript();
2020-07-14 20:58:18,818 [19] INFO - ---------
2020-07-14 20:58:18,818 [19] INFO - Information: 0 :
2020-07-14 20:58:18,818 [19] INFO - ---------
2020-07-14 20:58:18,822 [19] INFO - Finished executing the following script:
2020-07-14 20:58:18,822 [19] INFO - Information: 0 :
2020-07-14 20:58:18,822 [19] INFO - Finished executing the following script:
2020-07-14 20:58:18,822 [19] INFO - ---------
2020-07-14 20:58:18,822 [19] INFO - Information: 0 :
2020-07-14 20:58:18,822 [19] INFO - ---------
2020-07-14 20:58:18,822 [19] INFO - function SE637303570988173057() {}
SE637303570988173057.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("");
context.write( article.headlineLevel );
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 SE637303570988173057().executeScript();
2020-07-14 20:58:18,823 [19] INFO - Information: 0 :
2020-07-14 20:58:18,823 [19] INFO - function SE637303570988173057() {}
SE637303570988173057.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("");
context.write( article.headlineLevel );
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 SE637303570988173057().executeScript();
2020-07-14 20:58:18,823 [19] INFO - ---------
2020-07-14 20:58:18,823 [19] INFO - Information: 0 :
2020-07-14 20:58:18,823 [19] INFO - ---------
2020-07-14 20:58:18,823 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2216.
2020-07-14 20:58:18,823 [19] INFO - Information: 0 :
2020-07-14 20:58:18,823 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2216.
2020-07-14 20:58:18,823 [19] INFO - ---------
2020-07-14 20:58:18,824 [19] INFO - Information: 0 :
2020-07-14 20:58:18,824 [19] INFO - ---------
2020-07-14 20:58:18,824 [19] INFO - [system.partial] „article-headline.html“ 6 ms „“
2020-07-14 20:58:18,824 [19] INFO - Information: 0 :
2020-07-14 20:58:18,824 [19] INFO - [system.partial] „article-headline.html“ 6 ms „“
2020-07-14 20:58:18,824 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 393.
2020-07-14 20:58:18,824 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 393.
2020-07-14 20:58:18,825 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:18,825 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 393.
2020-07-14 20:58:18,826 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:18,826 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\af727add8c294e4393ea125173b632ae.jpg“ (22.01.2019 19:23:30) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6574-920.jpg“ (15.05.2019 20:35:28). Delta last write time is -9767518 seconds. Is source file newer: False.
2020-07-14 20:58:18,826 [19] INFO - Information: 0 :
2020-07-14 20:58:18,827 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,829 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,833 [19] INFO - Information: 0 :
2020-07-14 20:58:18,833 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,833 [19] INFO - Information: 0 :
2020-07-14 20:58:18,833 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,833 [19] INFO - Information: 0 :
2020-07-14 20:58:18,833 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,839 [19] INFO - Information: 0 :
2020-07-14 20:58:18,839 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,839 [19] INFO - Information: 0 :
2020-07-14 20:58:18,839 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,849 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:18,850 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 394.
2020-07-14 20:58:18,850 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 394.
2020-07-14 20:58:18,851 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:18,851 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 394.
2020-07-14 20:58:18,852 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:18,852 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\8702e4a483fa4bb2838ef70072da89c8.jpg“ (22.01.2019 19:23:20) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6576-920.jpg“ (15.05.2019 20:35:30). Delta last write time is -9767530 seconds. Is source file newer: False.
2020-07-14 20:58:18,852 [19] INFO - Information: 0 :
2020-07-14 20:58:18,853 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,858 [19] INFO - Information: 0 :
2020-07-14 20:58:18,858 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,858 [19] INFO - Information: 0 :
2020-07-14 20:58:18,859 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,859 [19] INFO - Information: 0 :
2020-07-14 20:58:18,859 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,864 [19] INFO - Information: 0 :
2020-07-14 20:58:18,864 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,864 [19] INFO - Information: 0 :
2020-07-14 20:58:18,864 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,865 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,873 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:18,874 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 395.
2020-07-14 20:58:18,874 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 395.
2020-07-14 20:58:18,875 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:18,875 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 395.
2020-07-14 20:58:18,875 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:18,876 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\886d0445243a450095552838ea957884.jpg“ (22.01.2019 19:23:24) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6577-920.jpg“ (15.05.2019 20:35:32). Delta last write time is -9767528 seconds. Is source file newer: False.
2020-07-14 20:58:18,876 [19] INFO - Information: 0 :
2020-07-14 20:58:18,876 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,882 [19] INFO - Information: 0 :
2020-07-14 20:58:18,882 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,882 [19] INFO - Information: 0 :
2020-07-14 20:58:18,882 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,882 [19] INFO - Information: 0 :
2020-07-14 20:58:18,882 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,887 [19] INFO - Information: 0 :
2020-07-14 20:58:18,887 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,888 [19] INFO - Information: 0 :
2020-07-14 20:58:18,888 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,894 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,898 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:18,899 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 396.
2020-07-14 20:58:18,899 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 396.
2020-07-14 20:58:18,900 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:18,900 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 396.
2020-07-14 20:58:18,901 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:18,901 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\c9c76b9cc038494780f9e5544cb57543.jpg“ (22.01.2019 19:23:30) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6578-920.jpg“ (15.05.2019 20:35:31). Delta last write time is -9767521 seconds. Is source file newer: False.
2020-07-14 20:58:18,902 [19] INFO - Information: 0 :
2020-07-14 20:58:18,902 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,908 [19] INFO - Information: 0 :
2020-07-14 20:58:18,908 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,908 [19] INFO - Information: 0 :
2020-07-14 20:58:18,908 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,908 [19] INFO - Information: 0 :
2020-07-14 20:58:18,908 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,913 [19] INFO - Information: 0 :
2020-07-14 20:58:18,913 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,913 [19] INFO - Information: 0 :
2020-07-14 20:58:18,913 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,921 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:18,922 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 397.
2020-07-14 20:58:18,922 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 397.
2020-07-14 20:58:18,923 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:18,923 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 397.
2020-07-14 20:58:18,924 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:18,924 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\e4ad4274901f4edc814b83faa64f2224.jpg“ (22.01.2019 19:23:26) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6579-920.jpg“ (15.05.2019 20:35:33). Delta last write time is -9767527 seconds. Is source file newer: False.
2020-07-14 20:58:18,924 [19] INFO - Information: 0 :
2020-07-14 20:58:18,925 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,930 [19] INFO - Information: 0 :
2020-07-14 20:58:18,930 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,930 [19] INFO - Information: 0 :
2020-07-14 20:58:18,930 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,931 [19] INFO - Information: 0 :
2020-07-14 20:58:18,931 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,936 [19] INFO - Information: 0 :
2020-07-14 20:58:18,936 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,936 [19] INFO - Information: 0 :
2020-07-14 20:58:18,936 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,945 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:18,946 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 398.
2020-07-14 20:58:18,946 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 398.
2020-07-14 20:58:18,947 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:18,947 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 398.
2020-07-14 20:58:18,948 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:18,948 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\b307ae2db8dc478486a51f0d821db519.jpg“ (22.01.2019 19:23:20) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6580-920.jpg“ (15.05.2019 20:35:36). Delta last write time is -9767536 seconds. Is source file newer: False.
2020-07-14 20:58:18,948 [19] INFO - Information: 0 :
2020-07-14 20:58:18,948 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,952 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:18,954 [19] INFO - Information: 0 :
2020-07-14 20:58:18,954 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,955 [19] INFO - Information: 0 :
2020-07-14 20:58:18,955 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,955 [19] INFO - Information: 0 :
2020-07-14 20:58:18,955 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,960 [19] INFO - Information: 0 :
2020-07-14 20:58:18,960 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,960 [19] INFO - Information: 0 :
2020-07-14 20:58:18,960 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,971 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:18,972 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 393.
2020-07-14 20:58:18,972 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 393.
2020-07-14 20:58:18,973 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:18,973 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 393.
2020-07-14 20:58:18,974 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:18,974 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\af727add8c294e4393ea125173b632ae.jpg“ (22.01.2019 19:23:30) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6574-920.jpg“ (15.05.2019 20:35:28). Delta last write time is -9767518 seconds. Is source file newer: False.
2020-07-14 20:58:18,975 [19] INFO - Information: 0 :
2020-07-14 20:58:18,975 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,980 [19] INFO - Information: 0 :
2020-07-14 20:58:18,980 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,981 [19] INFO - Information: 0 :
2020-07-14 20:58:18,981 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,981 [19] INFO - Information: 0 :
2020-07-14 20:58:18,981 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,986 [19] INFO - Information: 0 :
2020-07-14 20:58:18,986 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,986 [19] INFO - Information: 0 :
2020-07-14 20:58:18,986 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,987 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:18,988 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 394.
2020-07-14 20:58:18,988 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 394.
2020-07-14 20:58:18,989 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:18,989 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 394.
2020-07-14 20:58:18,990 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:18,991 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\8702e4a483fa4bb2838ef70072da89c8.jpg“ (22.01.2019 19:23:20) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6576-920.jpg“ (15.05.2019 20:35:30). Delta last write time is -9767530 seconds. Is source file newer: False.
2020-07-14 20:58:18,991 [19] INFO - Information: 0 :
2020-07-14 20:58:18,991 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:18,996 [19] INFO - Information: 0 :
2020-07-14 20:58:18,996 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,997 [19] INFO - Information: 0 :
2020-07-14 20:58:18,997 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:18,997 [19] INFO - Information: 0 :
2020-07-14 20:58:18,997 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,002 [19] INFO - Information: 0 :
2020-07-14 20:58:19,002 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,002 [19] INFO - Information: 0 :
2020-07-14 20:58:19,002 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,003 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,005 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 395.
2020-07-14 20:58:19,005 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 395.
2020-07-14 20:58:19,005 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,005 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 395.
2020-07-14 20:58:19,006 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,007 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\886d0445243a450095552838ea957884.jpg“ (22.01.2019 19:23:24) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6577-920.jpg“ (15.05.2019 20:35:32). Delta last write time is -9767528 seconds. Is source file newer: False.
2020-07-14 20:58:19,007 [19] INFO - Information: 0 :
2020-07-14 20:58:19,007 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,013 [19] INFO - Information: 0 :
2020-07-14 20:58:19,013 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,013 [19] INFO - Information: 0 :
2020-07-14 20:58:19,013 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,014 [19] INFO - Information: 0 :
2020-07-14 20:58:19,014 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,018 [19] INFO - Information: 0 :
2020-07-14 20:58:19,018 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,019 [19] INFO - Information: 0 :
2020-07-14 20:58:19,019 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,020 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,021 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 396.
2020-07-14 20:58:19,021 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 396.
2020-07-14 20:58:19,022 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,022 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 396.
2020-07-14 20:58:19,023 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,024 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\c9c76b9cc038494780f9e5544cb57543.jpg“ (22.01.2019 19:23:30) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6578-920.jpg“ (15.05.2019 20:35:31). Delta last write time is -9767521 seconds. Is source file newer: False.
2020-07-14 20:58:19,024 [19] INFO - Information: 0 :
2020-07-14 20:58:19,024 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,029 [19] INFO - Information: 0 :
2020-07-14 20:58:19,030 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,030 [19] INFO - Information: 0 :
2020-07-14 20:58:19,030 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,030 [19] INFO - Information: 0 :
2020-07-14 20:58:19,030 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,035 [19] INFO - Information: 0 :
2020-07-14 20:58:19,035 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,035 [19] INFO - Information: 0 :
2020-07-14 20:58:19,035 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,037 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,038 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 397.
2020-07-14 20:58:19,038 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 397.
2020-07-14 20:58:19,039 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,039 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 397.
2020-07-14 20:58:19,040 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,040 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\e4ad4274901f4edc814b83faa64f2224.jpg“ (22.01.2019 19:23:26) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6579-920.jpg“ (15.05.2019 20:35:33). Delta last write time is -9767527 seconds. Is source file newer: False.
2020-07-14 20:58:19,041 [19] INFO - Information: 0 :
2020-07-14 20:58:19,041 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,046 [19] INFO - Information: 0 :
2020-07-14 20:58:19,046 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,046 [19] INFO - Information: 0 :
2020-07-14 20:58:19,047 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,047 [19] INFO - Information: 0 :
2020-07-14 20:58:19,047 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,051 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,052 [19] INFO - Information: 0 :
2020-07-14 20:58:19,052 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,052 [19] INFO - Information: 0 :
2020-07-14 20:58:19,052 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,053 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,054 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 398.
2020-07-14 20:58:19,054 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 398.
2020-07-14 20:58:19,055 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,055 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 398.
2020-07-14 20:58:19,056 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,057 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\b307ae2db8dc478486a51f0d821db519.jpg“ (22.01.2019 19:23:20) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6580-920.jpg“ (15.05.2019 20:35:36). Delta last write time is -9767536 seconds. Is source file newer: False.
2020-07-14 20:58:19,057 [19] INFO - Information: 0 :
2020-07-14 20:58:19,057 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,063 [19] INFO - Information: 0 :
2020-07-14 20:58:19,063 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,063 [19] INFO - Information: 0 :
2020-07-14 20:58:19,063 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,063 [19] INFO - Information: 0 :
2020-07-14 20:58:19,064 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,068 [19] INFO - Information: 0 :
2020-07-14 20:58:19,068 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,068 [19] INFO - Information: 0 :
2020-07-14 20:58:19,069 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,070 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,071 [19] INFO - [system.partial] „article-end.html“ 0 ms „“
2020-07-14 20:58:19,071 [19] INFO - Information: 0 :
2020-07-14 20:58:19,071 [19] INFO - [system.partial] „article-end.html“ 0 ms „“
2020-07-14 20:58:19,071 [19] INFO - Finished executing the following script:
2020-07-14 20:58:19,071 [19] INFO - Information: 0 :
2020-07-14 20:58:19,071 [19] INFO - Finished executing the following script:
2020-07-14 20:58:19,072 [19] INFO - ---------
2020-07-14 20:58:19,072 [19] INFO - Information: 0 :
2020-07-14 20:58:19,072 [19] INFO - ---------
2020-07-14 20:58:19,072 [19] INFO - function SE637303570987823037() {}
SE637303570987823037.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
\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 SE637303570991573251().executeScript();
2020-07-14 20:58:19,160 [19] INFO - ---------
2020-07-14 20:58:19,160 [19] INFO - Information: 0 :
2020-07-14 20:58:19,160 [19] INFO - ---------
2020-07-14 20:58:19,163 [19] INFO - Information: 0 :
2020-07-14 20:58:19,163 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,164 [19] INFO - Information: 0 :
2020-07-14 20:58:19,164 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,164 [19] INFO - Information: 0 :
2020-07-14 20:58:19,164 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,175 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,178 [19] INFO - Information: 0 :
2020-07-14 20:58:19,178 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,179 [19] INFO - Information: 0 :
2020-07-14 20:58:19,179 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,179 [19] INFO - Information: 0 :
2020-07-14 20:58:19,180 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,180 [19] INFO - Information: 0 :
2020-07-14 20:58:19,180 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,183 [19] INFO - Information: 0 :
2020-07-14 20:58:19,184 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,184 [19] INFO - Information: 0 :
2020-07-14 20:58:19,184 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,184 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:19,184 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:19,184 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:19,184 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:19,185 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:19,185 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:19,185 [19] INFO - [SetContentCopyImageSizeInPixel] 0 x 0 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:19,187 [19] INFO - About to execute the following script:
2020-07-14 20:58:19,187 [19] INFO - Information: 0 :
2020-07-14 20:58:19,187 [19] INFO - About to execute the following script:
2020-07-14 20:58:19,187 [19] INFO - ---------
2020-07-14 20:58:19,187 [19] INFO - Information: 0 :
2020-07-14 20:58:19,187 [19] INFO - ---------
2020-07-14 20:58:19,187 [19] INFO - function SE637303570991873269() {}
SE637303570991873269.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 SE637303570991873269().executeScript();
2020-07-14 20:58:19,188 [19] INFO - Information: 0 :
2020-07-14 20:58:19,188 [19] INFO - function SE637303570991873269() {}
SE637303570991873269.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 SE637303570991873269().executeScript();
2020-07-14 20:58:19,188 [19] INFO - ---------
2020-07-14 20:58:19,188 [19] INFO - Information: 0 :
2020-07-14 20:58:19,188 [19] INFO - ---------
2020-07-14 20:58:19,192 [19] INFO - Information: 0 :
2020-07-14 20:58:19,193 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,195 [19] INFO - Information: 0 :
2020-07-14 20:58:19,195 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,195 [19] INFO - Information: 0 :
2020-07-14 20:58:19,195 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,196 [19] INFO - Finished executing the following script:
2020-07-14 20:58:19,196 [19] INFO - Information: 0 :
2020-07-14 20:58:19,196 [19] INFO - Finished executing the following script:
2020-07-14 20:58:19,196 [19] INFO - ---------
2020-07-14 20:58:19,196 [19] INFO - Information: 0 :
2020-07-14 20:58:19,196 [19] INFO - ---------
2020-07-14 20:58:19,197 [19] INFO - function SE637303570991873269() {}
SE637303570991873269.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 SE637303570991873269().executeScript();
2020-07-14 20:58:19,197 [19] INFO - Information: 0 :
2020-07-14 20:58:19,197 [19] INFO - function SE637303570991873269() {}
SE637303570991873269.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 SE637303570991873269().executeScript();
2020-07-14 20:58:19,197 [19] INFO - ---------
2020-07-14 20:58:19,197 [19] INFO - Information: 0 :
2020-07-14 20:58:19,197 [19] INFO - ---------
2020-07-14 20:58:19,197 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2223.
2020-07-14 20:58:19,197 [19] INFO - Information: 0 :
2020-07-14 20:58:19,198 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2223.
2020-07-14 20:58:19,198 [19] INFO - ---------
2020-07-14 20:58:19,198 [19] INFO - Information: 0 :
2020-07-14 20:58:19,198 [19] INFO - ---------
2020-07-14 20:58:19,198 [19] INFO - [system.partial] „article-begin.html“ 11 ms „“
2020-07-14 20:58:19,198 [19] INFO - Information: 0 :
2020-07-14 20:58:19,198 [19] INFO - [system.partial] „article-begin.html“ 11 ms „“
2020-07-14 20:58:19,198 [19] INFO - About to execute the following script:
2020-07-14 20:58:19,199 [19] INFO - Information: 0 :
2020-07-14 20:58:19,199 [19] INFO - About to execute the following script:
2020-07-14 20:58:19,199 [19] INFO - ---------
2020-07-14 20:58:19,199 [19] INFO - Information: 0 :
2020-07-14 20:58:19,199 [19] INFO - ---------
2020-07-14 20:58:19,199 [19] INFO - function SE637303570991983275() {}
SE637303570991983275.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("");
context.write( article.headlineLevel );
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 SE637303570991983275().executeScript();
2020-07-14 20:58:19,199 [19] INFO - Information: 0 :
2020-07-14 20:58:19,199 [19] INFO - function SE637303570991983275() {}
SE637303570991983275.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("");
context.write( article.headlineLevel );
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 SE637303570991983275().executeScript();
2020-07-14 20:58:19,200 [19] INFO - ---------
2020-07-14 20:58:19,200 [19] INFO - Information: 0 :
2020-07-14 20:58:19,200 [19] INFO - ---------
2020-07-14 20:58:19,201 [19] INFO - Finished executing the following script:
2020-07-14 20:58:19,202 [19] INFO - Information: 0 :
2020-07-14 20:58:19,202 [19] INFO - Finished executing the following script:
2020-07-14 20:58:19,202 [19] INFO - ---------
2020-07-14 20:58:19,202 [19] INFO - Information: 0 :
2020-07-14 20:58:19,202 [19] INFO - ---------
2020-07-14 20:58:19,202 [19] INFO - function SE637303570991983275() {}
SE637303570991983275.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("");
context.write( article.headlineLevel );
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 SE637303570991983275().executeScript();
2020-07-14 20:58:19,202 [19] INFO - Information: 0 :
2020-07-14 20:58:19,202 [19] INFO - function SE637303570991983275() {}
SE637303570991983275.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("");
context.write( article.headlineLevel );
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 SE637303570991983275().executeScript();
2020-07-14 20:58:19,202 [19] INFO - ---------
2020-07-14 20:58:19,203 [19] INFO - Information: 0 :
2020-07-14 20:58:19,203 [19] INFO - ---------
2020-07-14 20:58:19,203 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2224.
2020-07-14 20:58:19,203 [19] INFO - Information: 0 :
2020-07-14 20:58:19,203 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2224.
2020-07-14 20:58:19,203 [19] INFO - ---------
2020-07-14 20:58:19,203 [19] INFO - Information: 0 :
2020-07-14 20:58:19,203 [19] INFO - ---------
2020-07-14 20:58:19,203 [19] INFO - [system.partial] „article-headline.html“ 5 ms „“
2020-07-14 20:58:19,203 [19] INFO - Information: 0 :
2020-07-14 20:58:19,204 [19] INFO - [system.partial] „article-headline.html“ 5 ms „“
2020-07-14 20:58:19,204 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 401.
2020-07-14 20:58:19,204 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 401.
2020-07-14 20:58:19,205 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,205 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 401.
2020-07-14 20:58:19,205 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,206 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\841040bb42834543aa1cf0597d523157.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6545-920.jpg“ (15.05.2019 20:35:38). Delta last write time is -9767536 seconds. Is source file newer: False.
2020-07-14 20:58:19,206 [19] INFO - Information: 0 :
2020-07-14 20:58:19,206 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,207 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,212 [19] INFO - Information: 0 :
2020-07-14 20:58:19,212 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,212 [19] INFO - Information: 0 :
2020-07-14 20:58:19,212 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,213 [19] INFO - Information: 0 :
2020-07-14 20:58:19,213 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,218 [19] INFO - Information: 0 :
2020-07-14 20:58:19,218 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,218 [19] INFO - Information: 0 :
2020-07-14 20:58:19,218 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,230 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,231 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 402.
2020-07-14 20:58:19,231 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 402.
2020-07-14 20:58:19,232 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,232 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 402.
2020-07-14 20:58:19,233 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,233 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\b27525fe4efc478dbe4ddecac69430db.jpg“ (22.01.2019 19:23:26) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6546-920.jpg“ (15.05.2019 20:35:40). Delta last write time is -9767534 seconds. Is source file newer: False.
2020-07-14 20:58:19,233 [19] INFO - Information: 0 :
2020-07-14 20:58:19,234 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,235 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,239 [19] INFO - Information: 0 :
2020-07-14 20:58:19,239 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,239 [19] INFO - Information: 0 :
2020-07-14 20:58:19,240 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,240 [19] INFO - Information: 0 :
2020-07-14 20:58:19,240 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,244 [19] INFO - Information: 0 :
2020-07-14 20:58:19,245 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,245 [19] INFO - Information: 0 :
2020-07-14 20:58:19,245 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,256 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,257 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 403.
2020-07-14 20:58:19,257 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 403.
2020-07-14 20:58:19,258 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,258 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 403.
2020-07-14 20:58:19,258 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,259 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\95e0ba7a2cb64a9185502c381c685954.jpg“ (22.01.2019 19:23:24) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6547-920.jpg“ (15.05.2019 20:35:39). Delta last write time is -9767535 seconds. Is source file newer: False.
2020-07-14 20:58:19,259 [19] INFO - Information: 0 :
2020-07-14 20:58:19,259 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,264 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,265 [19] INFO - Information: 0 :
2020-07-14 20:58:19,265 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,265 [19] INFO - Information: 0 :
2020-07-14 20:58:19,265 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,265 [19] INFO - Information: 0 :
2020-07-14 20:58:19,265 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,270 [19] INFO - Information: 0 :
2020-07-14 20:58:19,270 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,270 [19] INFO - Information: 0 :
2020-07-14 20:58:19,271 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,281 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,282 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 404.
2020-07-14 20:58:19,282 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 404.
2020-07-14 20:58:19,283 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,283 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 404.
2020-07-14 20:58:19,283 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,284 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\01874cf5c59d4145932a25537892f361.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6548-920.jpg“ (15.05.2019 20:35:41). Delta last write time is -9767539 seconds. Is source file newer: False.
2020-07-14 20:58:19,284 [19] INFO - Information: 0 :
2020-07-14 20:58:19,284 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,290 [19] INFO - Information: 0 :
2020-07-14 20:58:19,290 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,290 [19] INFO - Information: 0 :
2020-07-14 20:58:19,290 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,290 [19] INFO - Information: 0 :
2020-07-14 20:58:19,291 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,295 [19] INFO - Information: 0 :
2020-07-14 20:58:19,295 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,295 [19] INFO - Information: 0 :
2020-07-14 20:58:19,296 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,296 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,305 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,306 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 406.
2020-07-14 20:58:19,306 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 406.
2020-07-14 20:58:19,307 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,307 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 406.
2020-07-14 20:58:19,307 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,308 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\eda36855c46b4dd580aa2156fa1f886d.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6550-920.jpg“ (15.05.2019 20:35:44). Delta last write time is -9767542 seconds. Is source file newer: False.
2020-07-14 20:58:19,308 [19] INFO - Information: 0 :
2020-07-14 20:58:19,308 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,314 [19] INFO - Information: 0 :
2020-07-14 20:58:19,314 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,314 [19] INFO - Information: 0 :
2020-07-14 20:58:19,314 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,314 [19] INFO - Information: 0 :
2020-07-14 20:58:19,314 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,319 [19] INFO - Information: 0 :
2020-07-14 20:58:19,319 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,320 [19] INFO - Information: 0 :
2020-07-14 20:58:19,320 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,328 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,329 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,330 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 407.
2020-07-14 20:58:19,330 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 407.
2020-07-14 20:58:19,331 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,331 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 407.
2020-07-14 20:58:19,332 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,332 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\f466f49feeee46228532d477c908042d.jpg“ (22.01.2019 19:23:26) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6556-920.jpg“ (15.05.2019 20:35:46). Delta last write time is -9767540 seconds. Is source file newer: False.
2020-07-14 20:58:19,332 [19] INFO - Information: 0 :
2020-07-14 20:58:19,333 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,338 [19] INFO - Information: 0 :
2020-07-14 20:58:19,338 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,338 [19] INFO - Information: 0 :
2020-07-14 20:58:19,338 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,339 [19] INFO - Information: 0 :
2020-07-14 20:58:19,339 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,344 [19] INFO - Information: 0 :
2020-07-14 20:58:19,344 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,344 [19] INFO - Information: 0 :
2020-07-14 20:58:19,344 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,353 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,354 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 400.
2020-07-14 20:58:19,354 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 400.
2020-07-14 20:58:19,355 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,355 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 400.
2020-07-14 20:58:19,356 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,356 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\f27470cc7c0348f7a1bdf55076095d53.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6557-920.jpg“ (15.05.2019 20:35:48). Delta last write time is -9767546 seconds. Is source file newer: False.
2020-07-14 20:58:19,357 [19] INFO - Information: 0 :
2020-07-14 20:58:19,357 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,358 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,363 [19] INFO - Information: 0 :
2020-07-14 20:58:19,363 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,363 [19] INFO - Information: 0 :
2020-07-14 20:58:19,363 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,363 [19] INFO - Information: 0 :
2020-07-14 20:58:19,363 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,368 [19] INFO - Information: 0 :
2020-07-14 20:58:19,368 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,368 [19] INFO - Information: 0 :
2020-07-14 20:58:19,368 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,376 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,378 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 401.
2020-07-14 20:58:19,378 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 401.
2020-07-14 20:58:19,378 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,379 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 401.
2020-07-14 20:58:19,380 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,380 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\841040bb42834543aa1cf0597d523157.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6545-920.jpg“ (15.05.2019 20:35:38). Delta last write time is -9767536 seconds. Is source file newer: False.
2020-07-14 20:58:19,380 [19] INFO - Information: 0 :
2020-07-14 20:58:19,381 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,386 [19] INFO - Information: 0 :
2020-07-14 20:58:19,386 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,386 [19] INFO - Information: 0 :
2020-07-14 20:58:19,386 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,386 [19] INFO - Information: 0 :
2020-07-14 20:58:19,387 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,394 [19] INFO - Information: 0 :
2020-07-14 20:58:19,394 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,394 [19] INFO - Information: 0 :
2020-07-14 20:58:19,394 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,395 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,396 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,396 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 402.
2020-07-14 20:58:19,397 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 402.
2020-07-14 20:58:19,397 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,397 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 402.
2020-07-14 20:58:19,398 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,399 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\b27525fe4efc478dbe4ddecac69430db.jpg“ (22.01.2019 19:23:26) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6546-920.jpg“ (15.05.2019 20:35:40). Delta last write time is -9767534 seconds. Is source file newer: False.
2020-07-14 20:58:19,399 [19] INFO - Information: 0 :
2020-07-14 20:58:19,399 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,405 [19] INFO - Information: 0 :
2020-07-14 20:58:19,405 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,405 [19] INFO - Information: 0 :
2020-07-14 20:58:19,405 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,405 [19] INFO - Information: 0 :
2020-07-14 20:58:19,405 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,410 [19] INFO - Information: 0 :
2020-07-14 20:58:19,410 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,410 [19] INFO - Information: 0 :
2020-07-14 20:58:19,411 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,412 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,413 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 403.
2020-07-14 20:58:19,413 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 403.
2020-07-14 20:58:19,414 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,414 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 403.
2020-07-14 20:58:19,415 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,415 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\95e0ba7a2cb64a9185502c381c685954.jpg“ (22.01.2019 19:23:24) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6547-920.jpg“ (15.05.2019 20:35:39). Delta last write time is -9767535 seconds. Is source file newer: False.
2020-07-14 20:58:19,416 [19] INFO - Information: 0 :
2020-07-14 20:58:19,416 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,421 [19] INFO - Information: 0 :
2020-07-14 20:58:19,421 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,421 [19] INFO - Information: 0 :
2020-07-14 20:58:19,421 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,422 [19] INFO - Information: 0 :
2020-07-14 20:58:19,422 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,426 [19] INFO - Information: 0 :
2020-07-14 20:58:19,426 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,426 [19] INFO - Information: 0 :
2020-07-14 20:58:19,427 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,428 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,428 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,429 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 404.
2020-07-14 20:58:19,429 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 404.
2020-07-14 20:58:19,430 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,430 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 404.
2020-07-14 20:58:19,431 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,431 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\01874cf5c59d4145932a25537892f361.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6548-920.jpg“ (15.05.2019 20:35:41). Delta last write time is -9767539 seconds. Is source file newer: False.
2020-07-14 20:58:19,432 [19] INFO - Information: 0 :
2020-07-14 20:58:19,432 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,437 [19] INFO - Information: 0 :
2020-07-14 20:58:19,438 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,438 [19] INFO - Information: 0 :
2020-07-14 20:58:19,438 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,438 [19] INFO - Information: 0 :
2020-07-14 20:58:19,438 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,443 [19] INFO - Information: 0 :
2020-07-14 20:58:19,443 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,443 [19] INFO - Information: 0 :
2020-07-14 20:58:19,443 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,444 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,445 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 406.
2020-07-14 20:58:19,446 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 406.
2020-07-14 20:58:19,446 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,446 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 406.
2020-07-14 20:58:19,447 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,448 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\eda36855c46b4dd580aa2156fa1f886d.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6550-920.jpg“ (15.05.2019 20:35:44). Delta last write time is -9767542 seconds. Is source file newer: False.
2020-07-14 20:58:19,448 [19] INFO - Information: 0 :
2020-07-14 20:58:19,448 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,453 [19] INFO - Information: 0 :
2020-07-14 20:58:19,453 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,454 [19] INFO - Information: 0 :
2020-07-14 20:58:19,454 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,454 [19] INFO - Information: 0 :
2020-07-14 20:58:19,454 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,456 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,460 [19] INFO - Information: 0 :
2020-07-14 20:58:19,460 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,460 [19] INFO - Information: 0 :
2020-07-14 20:58:19,460 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,462 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,463 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 407.
2020-07-14 20:58:19,463 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 407.
2020-07-14 20:58:19,464 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,464 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 407.
2020-07-14 20:58:19,465 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,465 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\f466f49feeee46228532d477c908042d.jpg“ (22.01.2019 19:23:26) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6556-920.jpg“ (15.05.2019 20:35:46). Delta last write time is -9767540 seconds. Is source file newer: False.
2020-07-14 20:58:19,466 [19] INFO - Information: 0 :
2020-07-14 20:58:19,466 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,471 [19] INFO - Information: 0 :
2020-07-14 20:58:19,471 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,472 [19] INFO - Information: 0 :
2020-07-14 20:58:19,472 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,472 [19] INFO - Information: 0 :
2020-07-14 20:58:19,472 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,476 [19] INFO - Information: 0 :
2020-07-14 20:58:19,477 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,477 [19] INFO - Information: 0 :
2020-07-14 20:58:19,477 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,478 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,479 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 400.
2020-07-14 20:58:19,479 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 400.
2020-07-14 20:58:19,480 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:19,480 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 400.
2020-07-14 20:58:19,481 [19] INFO - Entering WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail(output flavor: „Output“, is rebuild: „True“, thumbnail width: „920“, thumbnail height: „0“, return full info: „True“).
2020-07-14 20:58:19,482 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\f27470cc7c0348f7a1bdf55076095d53.jpg“ (22.01.2019 19:23:22) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\thumbnails\dscn6557-920.jpg“ (15.05.2019 20:35:48). Delta last write time is -9767546 seconds. Is source file newer: False.
2020-07-14 20:58:19,482 [19] INFO - Information: 0 :
2020-07-14 20:58:19,482 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,488 [19] INFO - Information: 0 :
2020-07-14 20:58:19,488 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,488 [19] INFO - Information: 0 :
2020-07-14 20:58:19,488 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,488 [19] INFO - Information: 0 :
2020-07-14 20:58:19,488 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,493 [19] INFO - Information: 0 :
2020-07-14 20:58:19,493 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,493 [19] INFO - Information: 0 :
2020-07-14 20:58:19,493 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,495 [19] INFO - Leaving WebImageAssetThumbnailController.CheckCreateImageAssetThumbnail() => was thumbnail created: „False“, thumbnail width: „920“, thumbnail height: „690“).
2020-07-14 20:58:19,496 [19] INFO - [system.partial] „article-end.html“ 0 ms „“
2020-07-14 20:58:19,496 [19] INFO - Information: 0 :
2020-07-14 20:58:19,496 [19] INFO - [system.partial] „article-end.html“ 0 ms „“
2020-07-14 20:58:19,496 [19] INFO - Finished executing the following script:
2020-07-14 20:58:19,496 [19] INFO - Information: 0 :
2020-07-14 20:58:19,496 [19] INFO - Finished executing the following script:
2020-07-14 20:58:19,496 [19] INFO - ---------
2020-07-14 20:58:19,497 [19] INFO - Information: 0 :
2020-07-14 20:58:19,497 [19] INFO - ---------
2020-07-14 20:58:19,497 [19] INFO - function SE637303570991573251() {}
SE637303570991573251.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
\r\n\t\t");
context.write( system.partial("article-end.html") );
context.write("\r\n\t");
} else if ( lightBox == "off" ) {
context.write("\r\n\t\t");
context.write( system.partial("article-begin.html") );
context.write("\r\n\t\t\t");
if ( image.isSvgImage ){
context.write("\r\n\t\t\t\r\n\t\t\t");
} else if ( image.isAnimatedGif ) {
context.write("\r\n\t\t\t\r\n\t\t\t");
} else {
context.write("\r\n\t\t\t\r\n\t\t\t");
}
context.write("\r\n\r\n\t\t\t");
if ( showCaption == "1" && description ) {
context.write("\r\n\t\t\t\t");
context.write( description );
context.write("\r\n\t\t\t");
}
context.write("\r\n\t\t");
context.write( system.partial("article-end.html") );
context.write("\r\n\t");
} else {
context.write("\r\n\t\t");
context.write( system.partial("article-begin.html") );
context.write("\r\n\t\t\t");
if ( clickURL !== "" ) {
context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t");
if ( image.isSvgImage ){
context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t");
} else if ( image.isAnimatedGif ) {
context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t");
} else {
context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t");
}
context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t");
} else {
context.write("\r\n\t\t\t\t\r\n\t\t\t");
}
context.write("\r\n\r\n\t\t\t");
if ( showCaption == "1" && description ) {
context.write("\r\n\t\t\t\t");
context.write( description );
context.write("\r\n\t\t\t");
}
context.write("\r\n\t\t");
context.write( system.partial("article-end.html") );
context.write("\r\n\t");
}
context.write("\r\n");
}
// End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'.
};
/* Shortcuts. */
article = context.article;
page = context.page;
projectFolder = context.projectFolder;
project = context.project;
system = context.system;
new SE637303570995203459().executeScript();
2020-07-14 20:58:19,521 [19] INFO - ---------
2020-07-14 20:58:19,522 [19] INFO - Information: 0 :
2020-07-14 20:58:19,522 [19] INFO - ---------
2020-07-14 20:58:19,523 [19] INFO - Information: 0 :
2020-07-14 20:58:19,523 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:19,526 [19] INFO - Information: 0 :
2020-07-14 20:58:19,526 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,526 [19] INFO - Information: 0 :
2020-07-14 20:58:19,526 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:19,526 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 668 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:19,527 [19] INFO - Entering 'ensureContentCopy' for image 412, article 1423, size 890.
2020-07-14 20:58:19,527 [19] INFO - Called 'createContentCopy' scripting function with article ID = 1423, image ID = 412, maxWidthInPixel = 890.
2020-07-14 20:58:19,527 [19] INFO - [CreateContentCopy] Create content copy für Asset ID 412, max. Breite 890. Vorlage „C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive“, Output „Output“.
2020-07-14 20:58:19,528 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\830d3caf3178454799b0390728f98dd8.jpg“ (22.01.2019 19:23:24) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6569.jpg“ (22.01.2019 19:23:24). Delta last write time is 0 seconds. Is source file newer: False.
2020-07-14 20:58:19,548 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,576 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,614 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,646 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,676 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,699 [19] INFO - About to save image to file path 'C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-56572d4873e643f6b4fbe58ac992853b\ad35ba3fe9b14740b95875c0ce36173d.png'...
2020-07-14 20:58:19,704 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,736 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,765 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,800 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,831 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,860 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,888 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,926 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,957 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:19,987 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,015 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,044 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,068 [19] INFO - Successfully saved image to file path 'C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-56572d4873e643f6b4fbe58ac992853b\ad35ba3fe9b14740b95875c0ce36173d.png'.
2020-07-14 20:58:20,071 [19] INFO - About to call app 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\Applications\zpix.exe' with parameters 'reduce-image-size --source-file-path="C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-56572d4873e643f6b4fbe58ac992853b\ad35ba3fe9b14740b95875c0ce36173d.png" --destination-file-path="C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-56572d4873e643f6b4fbe58ac992853b\720c1296b8b948f2ad3e605ae0ed8263.png" --ecm="false" --width=890 --height=0 --mode="prop-x"'
2020-07-14 20:58:20,083 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,112 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,142 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,174 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,202 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,231 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,271 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,303 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,331 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,359 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,391 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,424 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,453 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,482 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,514 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,543 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,583 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,607 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,645 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,673 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,703 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,735 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,765 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,794 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,826 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,855 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,895 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,900 [19] INFO - Returning exit code 0.
2020-07-14 20:58:20,901 [19] INFO -
2020-07-14 20:58:20,904 [19] INFO - Exit code of '0' for call app 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\Applications\zpix.exe' with parameters 'reduce-image-size --source-file-path="C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-56572d4873e643f6b4fbe58ac992853b\ad35ba3fe9b14740b95875c0ce36173d.png" --destination-file-path="C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-56572d4873e643f6b4fbe58ac992853b\720c1296b8b948f2ad3e605ae0ed8263.png" --ecm="false" --width=890 --height=0 --mode="prop-x"'
2020-07-14 20:58:20,922 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,943 [19] INFO - Information: 0 :
2020-07-14 20:58:20,943 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:20,945 [19] INFO - Information: 0 :
2020-07-14 20:58:20,945 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:20,945 [19] INFO - Information: 0 :
2020-07-14 20:58:20,945 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:20,945 [19] INFO - About to save image to file path 'C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6569.jpg'...
2020-07-14 20:58:20,952 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,981 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:20,983 [19] INFO - Successfully saved image to file path 'C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6569.jpg'.
2020-07-14 20:58:21,004 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 668 pixels for output flavor „Output“. Innerhalb von [CreateContentCopy] (1). Reason: source file „830d3caf3178454799b0390728f98dd8.jpg“ exists. ? 1 output flavour(s). ? output flavour Output. ? settings previously used max content copy width to 0 pixels, because it was created by this article ID „1423“. ? need = no, because source „830d3caf3178454799b0390728f98dd8.jpg“ (22.01.2019 19:23:24) is older or equal age than dst „dscn6569.jpg“ (22.01.2019 19:23:24). ? width of 2048 pixels must be reduced to match 890 pixels. Image loaded from „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6569.jpg“. ? need create. ? actually sizing to „890“. ? remembering content copy size of 890×668 pixels because output flavor is Output.
2020-07-14 20:58:21,004 [19] INFO - Information: 0 :
2020-07-14 20:58:21,004 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:21,013 [19] INFO - Information: 0 :
2020-07-14 20:58:21,013 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:21,013 [19] INFO - Information: 0 :
2020-07-14 20:58:21,014 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:21,014 [19] INFO - Information: 0 :
2020-07-14 20:58:21,014 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:21,019 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,020 [19] INFO - Information: 0 :
2020-07-14 20:58:21,020 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:21,020 [19] INFO - Information: 0 :
2020-07-14 20:58:21,020 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:21,020 [19] INFO - Information: 0 :
2020-07-14 20:58:21,021 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:21,026 [19] INFO - Information: 0 :
2020-07-14 20:58:21,026 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:21,026 [19] INFO - Information: 0 :
2020-07-14 20:58:21,026 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:21,026 [19] INFO - [CreateContentCopy] Finished creating content copy für Asset ID 412, max. Breite 890. Vorlage „C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive“, Output „Output“. Anything created: „True“. Anything pseudo-created: „False“. Reasons während des Vorgangs: source file „830d3caf3178454799b0390728f98dd8.jpg“ exists. ? 1 output flavour(s). ? output flavour Output. ? settings previously used max content copy width to 0 pixels, because it was created by this article ID „1423“. ? need = no, because source „830d3caf3178454799b0390728f98dd8.jpg“ (22.01.2019 19:23:24) is older or equal age than dst „dscn6569.jpg“ (22.01.2019 19:23:24). ? width of 2048 pixels must be reduced to match 890 pixels. Image loaded from „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6569.jpg“. ? need create. ? actually sizing to „890“. ? remembering content copy size of 890×668 pixels because output flavor is Output. ? remembering previously used max content copy width 890 pixels because output flavor is Output. ? something created. ? nothing pseudo-created..
2020-07-14 20:58:21,026 [19] INFO - 'createContentCopy': Content copy WAS created (source file „830d3caf3178454799b0390728f98dd8.jpg“ exists. ? 1 output flavour(s). ? output flavour Output. ? settings previously used max content copy width to 0 pixels, because it was created by this article ID „1423“. ? need = no, because source „830d3caf3178454799b0390728f98dd8.jpg“ (22.01.2019 19:23:24) is older or equal age than dst „dscn6569.jpg“ (22.01.2019 19:23:24). ? width of 2048 pixels must be reduced to match 890 pixels. Image loaded from „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6569.jpg“. ? need create. ? actually sizing to „890“. ? remembering content copy size of 890×668 pixels because output flavor is Output. ? remembering previously used max content copy width 890 pixels because output flavor is Output. ? something created. ? nothing pseudo-created.).
2020-07-14 20:58:21,026 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 412.
2020-07-14 20:58:21,027 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 412.
2020-07-14 20:58:21,027 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:21,027 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:21,027 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 412.
2020-07-14 20:58:21,028 [19] INFO - Leaving 'ensureContentCopy' for image 412, article 1423, size „890“, reason = created (source file „830d3caf3178454799b0390728f98dd8.jpg“ exists. ? 1 output flavour(s). ? output flavour Output. ? settings previously used max content copy width to 0 pixels, because it was created by this article ID „1423“. ? need = no, because source „830d3caf3178454799b0390728f98dd8.jpg“ (22.01.2019 19:23:24) is older or equal age than dst „dscn6569.jpg“ (22.01.2019 19:23:24). ? width of 2048 pixels must be reduced to match 890 pixels. Image loaded from „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6569.jpg“. ? need create. ? actually sizing to „890“. ? remembering content copy size of 890×668 pixels because output flavor is Output. ? remembering previously used max content copy width 890 pixels because output flavor is Output. ? something created. ? nothing pseudo-created.)
2020-07-14 20:58:21,028 [19] INFO - [GetImageSizeInPixel - C] getting image size 890x668 for predefined content copy size (working copy image „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\830d3caf3178454799b0390728f98dd8.jpg“).
2020-07-14 20:58:21,028 [19] INFO - Returning live-calculated image size for image with ID 412, file version „ContentCopy“ of 890×668 pixels.
2020-07-14 20:58:21,028 [19] INFO - Returning cached image size for image with ID 412, file version „ContentCopy“ of 890×668 pixels.
2020-07-14 20:58:21,030 [19] INFO - About to execute the following script:
2020-07-14 20:58:21,030 [19] INFO - Information: 0 :
2020-07-14 20:58:21,030 [19] INFO - About to execute the following script:
2020-07-14 20:58:21,030 [19] INFO - ---------
2020-07-14 20:58:21,030 [19] INFO - Information: 0 :
2020-07-14 20:58:21,030 [19] INFO - ---------
2020-07-14 20:58:21,030 [19] INFO - function SE637303571010304323() {}
SE637303571010304323.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 SE637303571010304323().executeScript();
2020-07-14 20:58:21,031 [19] INFO - Information: 0 :
2020-07-14 20:58:21,031 [19] INFO - function SE637303571010304323() {}
SE637303571010304323.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 SE637303571010304323().executeScript();
2020-07-14 20:58:21,031 [19] INFO - ---------
2020-07-14 20:58:21,031 [19] INFO - Information: 0 :
2020-07-14 20:58:21,031 [19] INFO - ---------
2020-07-14 20:58:21,036 [19] INFO - Finished executing the following script:
2020-07-14 20:58:21,037 [19] INFO - Information: 0 :
2020-07-14 20:58:21,037 [19] INFO - Finished executing the following script:
2020-07-14 20:58:21,037 [19] INFO - ---------
2020-07-14 20:58:21,037 [19] INFO - Information: 0 :
2020-07-14 20:58:21,037 [19] INFO - ---------
2020-07-14 20:58:21,037 [19] INFO - function SE637303571010304323() {}
SE637303571010304323.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 SE637303571010304323().executeScript();
2020-07-14 20:58:21,037 [19] INFO - Information: 0 :
2020-07-14 20:58:21,038 [19] INFO - function SE637303571010304323() {}
SE637303571010304323.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 SE637303571010304323().executeScript();
2020-07-14 20:58:21,038 [19] INFO - ---------
2020-07-14 20:58:21,038 [19] INFO - Information: 0 :
2020-07-14 20:58:21,038 [19] INFO - ---------
2020-07-14 20:58:21,038 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2226.
2020-07-14 20:58:21,038 [19] INFO - Information: 0 :
2020-07-14 20:58:21,038 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2226.
2020-07-14 20:58:21,038 [19] INFO - ---------
2020-07-14 20:58:21,038 [19] INFO - Information: 0 :
2020-07-14 20:58:21,039 [19] INFO - ---------
2020-07-14 20:58:21,039 [19] INFO - [system.partial] „article-begin.html“ 9 ms „[0, popupimage]“
2020-07-14 20:58:21,039 [19] INFO - Information: 0 :
2020-07-14 20:58:21,039 [19] INFO - [system.partial] „article-begin.html“ 9 ms „[0, popupimage]“
2020-07-14 20:58:21,041 [19] INFO - [system.partial] „article-end.html“ 0 ms „“
2020-07-14 20:58:21,041 [19] INFO - Information: 0 :
2020-07-14 20:58:21,041 [19] INFO - [system.partial] „article-end.html“ 0 ms „“
2020-07-14 20:58:21,041 [19] INFO - Finished executing the following script:
2020-07-14 20:58:21,041 [19] INFO - Information: 0 :
2020-07-14 20:58:21,041 [19] INFO - Finished executing the following script:
2020-07-14 20:58:21,041 [19] INFO - ---------
2020-07-14 20:58:21,041 [19] INFO - Information: 0 :
2020-07-14 20:58:21,041 [19] INFO - ---------
2020-07-14 20:58:21,042 [19] INFO - function SE637303570995203459() {}
SE637303570995203459.prototype.executeScript = function(){
// Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'.
var image = project.getImage(article.value("image"));
var contentImageWidth = "890";
var defaultImageWidth = 960;
var cssClass = article.cssClass || "";
var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false;
// Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen.
contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth;
var gridCols = article.column.cssClass;
if ( gridCols ){
gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", ""));
}
else{
gridCols = 12;
}
var columnMargin = 30;
var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols;
// minimum width needed for 100% width display on 1-column breakpoint
var minwidth = parseInt(479 - columnMargin);
var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth;
if ( minwidth > contentCopyWidth ){
contentCopyWidth = minwidth;
}
//system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")");
var imageError = false;
if ( !isNull(image) ) {
if ( isBreakout ){
contentCopyWidth = image.workingCopyWidth;
}
try {
var iresult = image.ensureContentCopy(article, contentCopyWidth);
var thumbImageWidth = image.contentCopyWidth;
var thumbImageHeight = image.contentCopyHeight;
var description = image.description;
var altText = system.htmlEncode(system.removeHtmlTags(image.altText));
var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", "")));
if ( altText == "" && oldAltText !== "" ){
altText = oldAltText;
}
var encodedDescription = system.htmlEncode(image.description);
var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description));
// strip
-Tags from description as
is not valid inside SPAN
description = description.toString().replace(/
/g,"");
description = description.toString().replace(/<\/p>/g," ");
//system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult);
}
catch(err) {
imageError = true;
}
}
if ( stripDescription !== "" ) {
var showCaption = "1";
}
else {
var showCaption = "0";
}
var lightBox = article.value("lightbox", "lightbox");
var clickURL = article.value("clickurl");
var effect = article.value("effect", "none");
var effectClass = "";
switch ( effect ) {
case "hoverzoom":
effectClass = " zpeffect zphoverscale";
break;
default:
effectClass = "";
}
context.write("\r\n\r\n");
if ( isNull(image) || imageError ) {
context.write("\r\n\t");
if ( system.preview ) {
context.write("\r\n\t\t
\r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t\r\n\t\t
\r\n\t\t");
context.write( system.partial("article-end.html") );
context.write("\r\n\t");
} else if ( lightBox == "off" ) {
context.write("\r\n\t\t");
context.write( system.partial("article-begin.html") );
context.write("\r\n\t\t\t");
if ( image.isSvgImage ){
context.write("\r\n\t\t\t\r\n\t\t\t");
} else if ( image.isAnimatedGif ) {
context.write("\r\n\t\t\t\r\n\t\t\t");
} else {
context.write("\r\n\t\t\t\r\n\t\t\t");
}
context.write("\r\n\r\n\t\t\t");
if ( showCaption == "1" && description ) {
context.write("\r\n\t\t\t\t");
context.write( description );
context.write("\r\n\t\t\t");
}
context.write("\r\n\t\t");
context.write( system.partial("article-end.html") );
context.write("\r\n\t");
} else {
context.write("\r\n\t\t");
context.write( system.partial("article-begin.html") );
context.write("\r\n\t\t\t");
if ( clickURL !== "" ) {
context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t");
if ( image.isSvgImage ){
context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t");
} else if ( image.isAnimatedGif ) {
context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t");
} else {
context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t");
}
context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t");
} else {
context.write("\r\n\t\t\t\t\r\n\t\t\t");
}
context.write("\r\n\r\n\t\t\t");
if ( showCaption == "1" && description ) {
context.write("\r\n\t\t\t\t");
context.write( description );
context.write("\r\n\t\t\t");
}
context.write("\r\n\t\t");
context.write( system.partial("article-end.html") );
context.write("\r\n\t");
}
context.write("\r\n");
}
// End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'.
};
/* Shortcuts. */
article = context.article;
page = context.page;
projectFolder = context.projectFolder;
project = context.project;
system = context.system;
new SE637303571010444331().executeScript();
2020-07-14 20:58:21,047 [19] INFO - ---------
2020-07-14 20:58:21,047 [19] INFO - Information: 0 :
2020-07-14 20:58:21,047 [19] INFO - ---------
2020-07-14 20:58:21,049 [19] INFO - Information: 0 :
2020-07-14 20:58:21,049 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:21,051 [19] INFO - Information: 0 :
2020-07-14 20:58:21,051 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:21,052 [19] INFO - Information: 0 :
2020-07-14 20:58:21,052 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:21,052 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 501 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:21,053 [19] INFO - Entering 'ensureContentCopy' for image 416, article 1426, size 890.
2020-07-14 20:58:21,053 [19] INFO - Called 'createContentCopy' scripting function with article ID = 1426, image ID = 416, maxWidthInPixel = 890.
2020-07-14 20:58:21,053 [19] INFO - [CreateContentCopy] Create content copy für Asset ID 416, max. Breite 890. Vorlage „C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive“, Output „Output“.
2020-07-14 20:58:21,054 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\e107311c561e4a32914633c1e308018d.jpg“ (22.01.2019 19:23:28) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\img_20180115_172909.jpg“ (22.01.2019 19:23:28). Delta last write time is 0 seconds. Is source file newer: False.
2020-07-14 20:58:21,073 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,078 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,107 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,137 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,175 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,186 [19] INFO - About to save image to file path 'C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-cdf7dc963f2249b4afcab3eb20abab30\6cc3077bf93c458885846a94964e523b.png'...
2020-07-14 20:58:21,205 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,235 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,263 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,292 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,330 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,355 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,393 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,421 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,450 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,483 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,489 [19] INFO - Successfully saved image to file path 'C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-cdf7dc963f2249b4afcab3eb20abab30\6cc3077bf93c458885846a94964e523b.png'.
2020-07-14 20:58:21,491 [19] INFO - About to call app 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\Applications\zpix.exe' with parameters 'reduce-image-size --source-file-path="C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-cdf7dc963f2249b4afcab3eb20abab30\6cc3077bf93c458885846a94964e523b.png" --destination-file-path="C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-cdf7dc963f2249b4afcab3eb20abab30\6ebf269d262c49468e05ff26bc25fe75.png" --ecm="false" --width=890 --height=0 --mode="prop-x"'
2020-07-14 20:58:21,512 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,542 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,580 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,612 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,640 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,672 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,703 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,732 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,760 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,798 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,830 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,860 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,888 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,916 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,954 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:21,983 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,013 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,043 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,072 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,110 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,134 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,170 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,184 [19] INFO - Returning exit code 0.
2020-07-14 20:58:22,184 [19] INFO -
2020-07-14 20:58:22,187 [19] INFO - Exit code of '0' for call app 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\Applications\zpix.exe' with parameters 'reduce-image-size --source-file-path="C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-cdf7dc963f2249b4afcab3eb20abab30\6cc3077bf93c458885846a94964e523b.png" --destination-file-path="C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-cdf7dc963f2249b4afcab3eb20abab30\6ebf269d262c49468e05ff26bc25fe75.png" --ecm="false" --width=890 --height=0 --mode="prop-x"'
2020-07-14 20:58:22,199 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,224 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,228 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,240 [19] INFO - About to save image to file path 'C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\img_20180115_172909.jpg'...
2020-07-14 20:58:22,267 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,296 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,323 [19] INFO - Successfully saved image to file path 'C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\img_20180115_172909.jpg'.
2020-07-14 20:58:22,326 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,351 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 501 pixels for output flavor „Output“. Innerhalb von [CreateContentCopy] (1). Reason: source file „e107311c561e4a32914633c1e308018d.jpg“ exists. ? 1 output flavour(s). ? output flavour Output. ? settings previously used max content copy width to 0 pixels, because it was created by this article ID „1426“. ? need = no, because source „e107311c561e4a32914633c1e308018d.jpg“ (22.01.2019 19:23:28) is older or equal age than dst „img_20180115_172909.jpg“ (22.01.2019 19:23:28). ? width of 2048 pixels must be reduced to match 890 pixels. Image loaded from „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\img_20180115_172909.jpg“. ? need create. ? actually sizing to „890“. ? remembering content copy size of 890×501 pixels because output flavor is Output.
2020-07-14 20:58:22,352 [19] INFO - Information: 0 :
2020-07-14 20:58:22,352 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:22,358 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,360 [19] INFO - Information: 0 :
2020-07-14 20:58:22,360 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:22,360 [19] INFO - Information: 0 :
2020-07-14 20:58:22,360 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:22,361 [19] INFO - Information: 0 :
2020-07-14 20:58:22,361 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:22,367 [19] INFO - Information: 0 :
2020-07-14 20:58:22,367 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:22,367 [19] INFO - Information: 0 :
2020-07-14 20:58:22,367 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:22,367 [19] INFO - Information: 0 :
2020-07-14 20:58:22,367 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:22,372 [19] INFO - Information: 0 :
2020-07-14 20:58:22,372 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:22,373 [19] INFO - Information: 0 :
2020-07-14 20:58:22,373 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:22,373 [19] INFO - [CreateContentCopy] Finished creating content copy für Asset ID 416, max. Breite 890. Vorlage „C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive“, Output „Output“. Anything created: „True“. Anything pseudo-created: „False“. Reasons während des Vorgangs: source file „e107311c561e4a32914633c1e308018d.jpg“ exists. ? 1 output flavour(s). ? output flavour Output. ? settings previously used max content copy width to 0 pixels, because it was created by this article ID „1426“. ? need = no, because source „e107311c561e4a32914633c1e308018d.jpg“ (22.01.2019 19:23:28) is older or equal age than dst „img_20180115_172909.jpg“ (22.01.2019 19:23:28). ? width of 2048 pixels must be reduced to match 890 pixels. Image loaded from „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\img_20180115_172909.jpg“. ? need create. ? actually sizing to „890“. ? remembering content copy size of 890×501 pixels because output flavor is Output. ? remembering previously used max content copy width 890 pixels because output flavor is Output. ? something created. ? nothing pseudo-created..
2020-07-14 20:58:22,373 [19] INFO - 'createContentCopy': Content copy WAS created (source file „e107311c561e4a32914633c1e308018d.jpg“ exists. ? 1 output flavour(s). ? output flavour Output. ? settings previously used max content copy width to 0 pixels, because it was created by this article ID „1426“. ? need = no, because source „e107311c561e4a32914633c1e308018d.jpg“ (22.01.2019 19:23:28) is older or equal age than dst „img_20180115_172909.jpg“ (22.01.2019 19:23:28). ? width of 2048 pixels must be reduced to match 890 pixels. Image loaded from „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\img_20180115_172909.jpg“. ? need create. ? actually sizing to „890“. ? remembering content copy size of 890×501 pixels because output flavor is Output. ? remembering previously used max content copy width 890 pixels because output flavor is Output. ? something created. ? nothing pseudo-created.).
2020-07-14 20:58:22,373 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 416.
2020-07-14 20:58:22,373 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 416.
2020-07-14 20:58:22,374 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:22,374 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:22,374 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 416.
2020-07-14 20:58:22,375 [19] INFO - Leaving 'ensureContentCopy' for image 416, article 1426, size „890“, reason = created (source file „e107311c561e4a32914633c1e308018d.jpg“ exists. ? 1 output flavour(s). ? output flavour Output. ? settings previously used max content copy width to 0 pixels, because it was created by this article ID „1426“. ? need = no, because source „e107311c561e4a32914633c1e308018d.jpg“ (22.01.2019 19:23:28) is older or equal age than dst „img_20180115_172909.jpg“ (22.01.2019 19:23:28). ? width of 2048 pixels must be reduced to match 890 pixels. Image loaded from „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\img_20180115_172909.jpg“. ? need create. ? actually sizing to „890“. ? remembering content copy size of 890×501 pixels because output flavor is Output. ? remembering previously used max content copy width 890 pixels because output flavor is Output. ? something created. ? nothing pseudo-created.)
2020-07-14 20:58:22,375 [19] INFO - [GetImageSizeInPixel - C] getting image size 890x501 for predefined content copy size (working copy image „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\e107311c561e4a32914633c1e308018d.jpg“).
2020-07-14 20:58:22,375 [19] INFO - Returning live-calculated image size for image with ID 416, file version „ContentCopy“ of 890×501 pixels.
2020-07-14 20:58:22,375 [19] INFO - Returning cached image size for image with ID 416, file version „ContentCopy“ of 890×501 pixels.
2020-07-14 20:58:22,377 [19] INFO - About to execute the following script:
2020-07-14 20:58:22,377 [19] INFO - Information: 0 :
2020-07-14 20:58:22,377 [19] INFO - About to execute the following script:
2020-07-14 20:58:22,377 [19] INFO - ---------
2020-07-14 20:58:22,377 [19] INFO - Information: 0 :
2020-07-14 20:58:22,377 [19] INFO - ---------
2020-07-14 20:58:22,377 [19] INFO - function SE637303571023775093() {}
SE637303571023775093.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 SE637303571023775093().executeScript();
2020-07-14 20:58:22,377 [19] INFO - Information: 0 :
2020-07-14 20:58:22,378 [19] INFO - function SE637303571023775093() {}
SE637303571023775093.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 SE637303571023775093().executeScript();
2020-07-14 20:58:22,378 [19] INFO - ---------
2020-07-14 20:58:22,378 [19] INFO - Information: 0 :
2020-07-14 20:58:22,378 [19] INFO - ---------
2020-07-14 20:58:22,384 [19] INFO - Information: 0 :
2020-07-14 20:58:22,384 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:22,386 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,386 [19] INFO - Information: 0 :
2020-07-14 20:58:22,387 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:22,387 [19] INFO - Information: 0 :
2020-07-14 20:58:22,387 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:22,388 [19] INFO - Finished executing the following script:
2020-07-14 20:58:22,388 [19] INFO - Information: 0 :
2020-07-14 20:58:22,388 [19] INFO - Finished executing the following script:
2020-07-14 20:58:22,388 [19] INFO - ---------
2020-07-14 20:58:22,388 [19] INFO - Information: 0 :
2020-07-14 20:58:22,388 [19] INFO - ---------
2020-07-14 20:58:22,388 [19] INFO - function SE637303571023775093() {}
SE637303571023775093.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 SE637303571023775093().executeScript();
2020-07-14 20:58:22,388 [19] INFO - Information: 0 :
2020-07-14 20:58:22,389 [19] INFO - function SE637303571023775093() {}
SE637303571023775093.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 SE637303571023775093().executeScript();
2020-07-14 20:58:22,389 [19] INFO - ---------
2020-07-14 20:58:22,389 [19] INFO - Information: 0 :
2020-07-14 20:58:22,389 [19] INFO - ---------
2020-07-14 20:58:22,389 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2228.
2020-07-14 20:58:22,389 [19] INFO - Information: 0 :
2020-07-14 20:58:22,389 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2228.
2020-07-14 20:58:22,389 [19] INFO - ---------
2020-07-14 20:58:22,389 [19] INFO - Information: 0 :
2020-07-14 20:58:22,390 [19] INFO - ---------
2020-07-14 20:58:22,390 [19] INFO - [system.partial] „article-begin.html“ 13 ms „[0, popupimage]“
2020-07-14 20:58:22,390 [19] INFO - Information: 0 :
2020-07-14 20:58:22,390 [19] INFO - [system.partial] „article-begin.html“ 13 ms „[0, popupimage]“
2020-07-14 20:58:22,391 [19] INFO - [system.partial] „article-end.html“ 0 ms „“
2020-07-14 20:58:22,392 [19] INFO - Information: 0 :
2020-07-14 20:58:22,392 [19] INFO - [system.partial] „article-end.html“ 0 ms „“
2020-07-14 20:58:22,392 [19] INFO - Finished executing the following script:
2020-07-14 20:58:22,392 [19] INFO - Information: 0 :
2020-07-14 20:58:22,392 [19] INFO - Finished executing the following script:
2020-07-14 20:58:22,392 [19] INFO - ---------
2020-07-14 20:58:22,392 [19] INFO - Information: 0 :
2020-07-14 20:58:22,392 [19] INFO - ---------
2020-07-14 20:58:22,392 [19] INFO - function SE637303571010444331() {}
SE637303571010444331.prototype.executeScript = function(){
// Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'.
var image = project.getImage(article.value("image"));
var contentImageWidth = "890";
var defaultImageWidth = 960;
var cssClass = article.cssClass || "";
var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false;
// Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen.
contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth;
var gridCols = article.column.cssClass;
if ( gridCols ){
gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", ""));
}
else{
gridCols = 12;
}
var columnMargin = 30;
var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols;
// minimum width needed for 100% width display on 1-column breakpoint
var minwidth = parseInt(479 - columnMargin);
var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth;
if ( minwidth > contentCopyWidth ){
contentCopyWidth = minwidth;
}
//system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")");
var imageError = false;
if ( !isNull(image) ) {
if ( isBreakout ){
contentCopyWidth = image.workingCopyWidth;
}
try {
var iresult = image.ensureContentCopy(article, contentCopyWidth);
var thumbImageWidth = image.contentCopyWidth;
var thumbImageHeight = image.contentCopyHeight;
var description = image.description;
var altText = system.htmlEncode(system.removeHtmlTags(image.altText));
var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", "")));
if ( altText == "" && oldAltText !== "" ){
altText = oldAltText;
}
var encodedDescription = system.htmlEncode(image.description);
var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description));
// strip
-Tags from description as
is not valid inside SPAN
description = description.toString().replace(/
/g,"");
description = description.toString().replace(/<\/p>/g," ");
//system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult);
}
catch(err) {
imageError = true;
}
}
if ( stripDescription !== "" ) {
var showCaption = "1";
}
else {
var showCaption = "0";
}
var lightBox = article.value("lightbox", "lightbox");
var clickURL = article.value("clickurl");
var effect = article.value("effect", "none");
var effectClass = "";
switch ( effect ) {
case "hoverzoom":
effectClass = " zpeffect zphoverscale";
break;
default:
effectClass = "";
}
context.write("\r\n\r\n");
if ( isNull(image) || imageError ) {
context.write("\r\n\t");
if ( system.preview ) {
context.write("\r\n\t\t
\r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t\r\n\t\t
\r\n\t\t");
context.write( system.partial("article-end.html") );
context.write("\r\n\t");
} else if ( lightBox == "off" ) {
context.write("\r\n\t\t");
context.write( system.partial("article-begin.html") );
context.write("\r\n\t\t\t");
if ( image.isSvgImage ){
context.write("\r\n\t\t\t\r\n\t\t\t");
} else if ( image.isAnimatedGif ) {
context.write("\r\n\t\t\t\r\n\t\t\t");
} else {
context.write("\r\n\t\t\t\r\n\t\t\t");
}
context.write("\r\n\r\n\t\t\t");
if ( showCaption == "1" && description ) {
context.write("\r\n\t\t\t\t");
context.write( description );
context.write("\r\n\t\t\t");
}
context.write("\r\n\t\t");
context.write( system.partial("article-end.html") );
context.write("\r\n\t");
} else {
context.write("\r\n\t\t");
context.write( system.partial("article-begin.html") );
context.write("\r\n\t\t\t");
if ( clickURL !== "" ) {
context.write("\r\n\t\t\t\t\r\n\t\t\t\t\t");
if ( image.isSvgImage ){
context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t");
} else if ( image.isAnimatedGif ) {
context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t");
} else {
context.write("\r\n\t\t\t\t\t\r\n\t\t\t\t\t");
}
context.write("\r\n\t\t\t\t\tGehe zu URL (go to url).\r\n\t\t\t\t\r\n\t\t\t");
} else {
context.write("\r\n\t\t\t\t\r\n\t\t\t");
}
context.write("\r\n\r\n\t\t\t");
if ( showCaption == "1" && description ) {
context.write("\r\n\t\t\t\t");
context.write( description );
context.write("\r\n\t\t\t");
}
context.write("\r\n\t\t");
context.write( system.partial("article-end.html") );
context.write("\r\n\t");
}
context.write("\r\n");
}
// End source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'.
};
/* Shortcuts. */
article = context.article;
page = context.page;
projectFolder = context.projectFolder;
project = context.project;
system = context.system;
new SE637303571024045109().executeScript();
2020-07-14 20:58:22,408 [19] INFO - ---------
2020-07-14 20:58:22,408 [19] INFO - Information: 0 :
2020-07-14 20:58:22,408 [19] INFO - ---------
2020-07-14 20:58:22,410 [19] INFO - Information: 0 :
2020-07-14 20:58:22,410 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:22,412 [19] INFO - Information: 0 :
2020-07-14 20:58:22,413 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:22,413 [19] INFO - Information: 0 :
2020-07-14 20:58:22,413 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:22,413 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 668 pixels for output flavor „Output“. Laden von Bild-Asset.
2020-07-14 20:58:22,414 [19] INFO - Entering 'ensureContentCopy' for image 414, article 1425, size 890.
2020-07-14 20:58:22,414 [19] INFO - Called 'createContentCopy' scripting function with article ID = 1425, image ID = 414, maxWidthInPixel = 890.
2020-07-14 20:58:22,414 [19] INFO - [CreateContentCopy] Create content copy für Asset ID 414, max. Breite 890. Vorlage „C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive“, Output „Output“.
2020-07-14 20:58:22,415 [19] INFO - [IsSourceFileNewerThanDestinationFile] Comparing source file „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\92c41d522b244fbfabfefebe13f02ce3.jpg“ (22.01.2019 19:23:30) with destination „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6570.jpg“ (22.01.2019 19:23:30). Delta last write time is 0 seconds. Is source file newer: False.
2020-07-14 20:58:22,415 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,456 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,487 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,515 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,544 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,575 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,607 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,643 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,644 [19] INFO - About to save image to file path 'C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-2322462e9af4409aae906c144318c161\156682853a9c4765822feddb72c21a8a.png'...
2020-07-14 20:58:22,671 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,703 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,731 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,761 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,795 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,823 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,852 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,890 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,919 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,950 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:22,979 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,011 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,015 [19] INFO - Successfully saved image to file path 'C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-2322462e9af4409aae906c144318c161\156682853a9c4765822feddb72c21a8a.png'.
2020-07-14 20:58:23,021 [19] INFO - About to call app 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\Applications\zpix.exe' with parameters 'reduce-image-size --source-file-path="C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-2322462e9af4409aae906c144318c161\156682853a9c4765822feddb72c21a8a.png" --destination-file-path="C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-2322462e9af4409aae906c144318c161\ae6245dffeae4d9e8545fb7c71d6881c.png" --ecm="false" --width=890 --height=0 --mode="prop-x"'
2020-07-14 20:58:23,040 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,070 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,105 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,135 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,164 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,196 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,233 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,262 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,291 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,320 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,358 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,383 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,420 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,448 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,477 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,507 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,545 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,575 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,603 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,632 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,666 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,696 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,734 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,762 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,794 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,823 [19] INFO - Returning exit code 0.
2020-07-14 20:58:23,824 [19] INFO -
2020-07-14 20:58:23,824 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,827 [19] INFO - Exit code of '0' for call app 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\Applications\zpix.exe' with parameters 'reduce-image-size --source-file-path="C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-2322462e9af4409aae906c144318c161\156682853a9c4765822feddb72c21a8a.png" --destination-file-path="C:\Users\DieGohliser\AppData\Local\Temp\zp-temp-2322462e9af4409aae906c144318c161\ae6245dffeae4d9e8545fb7c71d6881c.png" --ecm="false" --width=890 --height=0 --mode="prop-x"'
2020-07-14 20:58:23,856 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,870 [19] INFO - About to save image to file path 'C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6570.jpg'...
2020-07-14 20:58:23,884 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,909 [19] INFO - Successfully saved image to file path 'C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6570.jpg'.
2020-07-14 20:58:23,913 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,928 [19] INFO - [SetContentCopyImageSizeInPixel] 890 x 668 pixels for output flavor „Output“. Innerhalb von [CreateContentCopy] (1). Reason: source file „92c41d522b244fbfabfefebe13f02ce3.jpg“ exists. ? 1 output flavour(s). ? output flavour Output. ? settings previously used max content copy width to 0 pixels, because it was created by this article ID „1425“. ? need = no, because source „92c41d522b244fbfabfefebe13f02ce3.jpg“ (22.01.2019 19:23:30) is older or equal age than dst „dscn6570.jpg“ (22.01.2019 19:23:30). ? width of 2048 pixels must be reduced to match 890 pixels. Image loaded from „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6570.jpg“. ? need create. ? actually sizing to „890“. ? remembering content copy size of 890×668 pixels because output flavor is Output.
2020-07-14 20:58:23,928 [19] INFO - Information: 0 :
2020-07-14 20:58:23,928 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:23,936 [19] INFO - Information: 0 :
2020-07-14 20:58:23,936 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:23,936 [19] INFO - Information: 0 :
2020-07-14 20:58:23,936 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:23,937 [19] INFO - Information: 0 :
2020-07-14 20:58:23,937 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:23,942 [19] INFO - Information: 0 :
2020-07-14 20:58:23,942 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:23,942 [19] INFO - Information: 0 :
2020-07-14 20:58:23,943 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:23,943 [19] INFO - Information: 0 :
2020-07-14 20:58:23,943 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:23,944 [Zeta Producer 15 main thread] INFO - [CheckEnqueuePing] Ping is not allowed because of reason „Server backend mode is not active.“.
2020-07-14 20:58:23,948 [19] INFO - Information: 0 :
2020-07-14 20:58:23,948 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:23,948 [19] INFO - Information: 0 :
2020-07-14 20:58:23,948 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:23,948 [19] INFO - [CreateContentCopy] Finished creating content copy für Asset ID 414, max. Breite 890. Vorlage „C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\layouts\Simple Responsive“, Output „Output“. Anything created: „True“. Anything pseudo-created: „False“. Reasons während des Vorgangs: source file „92c41d522b244fbfabfefebe13f02ce3.jpg“ exists. ? 1 output flavour(s). ? output flavour Output. ? settings previously used max content copy width to 0 pixels, because it was created by this article ID „1425“. ? need = no, because source „92c41d522b244fbfabfefebe13f02ce3.jpg“ (22.01.2019 19:23:30) is older or equal age than dst „dscn6570.jpg“ (22.01.2019 19:23:30). ? width of 2048 pixels must be reduced to match 890 pixels. Image loaded from „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6570.jpg“. ? need create. ? actually sizing to „890“. ? remembering content copy size of 890×668 pixels because output flavor is Output. ? remembering previously used max content copy width 890 pixels because output flavor is Output. ? something created. ? nothing pseudo-created..
2020-07-14 20:58:23,948 [19] INFO - 'createContentCopy': Content copy WAS created (source file „92c41d522b244fbfabfefebe13f02ce3.jpg“ exists. ? 1 output flavour(s). ? output flavour Output. ? settings previously used max content copy width to 0 pixels, because it was created by this article ID „1425“. ? need = no, because source „92c41d522b244fbfabfefebe13f02ce3.jpg“ (22.01.2019 19:23:30) is older or equal age than dst „dscn6570.jpg“ (22.01.2019 19:23:30). ? width of 2048 pixels must be reduced to match 890 pixels. Image loaded from „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6570.jpg“. ? need create. ? actually sizing to „890“. ? remembering content copy size of 890×668 pixels because output flavor is Output. ? remembering previously used max content copy width 890 pixels because output flavor is Output. ? something created. ? nothing pseudo-created.).
2020-07-14 20:58:23,948 [19] INFO - Called 'skipContentCopy' scripting function with image ID = 414.
2020-07-14 20:58:23,949 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 414.
2020-07-14 20:58:23,949 [19] INFO - Removing 1 job in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:23,949 [19] INFO - Adding again 1 working-copy-only jobs in 'NotifyImageAssetContentCopyCreated'.
2020-07-14 20:58:23,949 [19] INFO - Called 'NotifyImageAssetContentCopyCreated' with image ID = 414.
2020-07-14 20:58:23,950 [19] INFO - Leaving 'ensureContentCopy' for image 414, article 1425, size „890“, reason = created (source file „92c41d522b244fbfabfefebe13f02ce3.jpg“ exists. ? 1 output flavour(s). ? output flavour Output. ? settings previously used max content copy width to 0 pixels, because it was created by this article ID „1425“. ? need = no, because source „92c41d522b244fbfabfefebe13f02ce3.jpg“ (22.01.2019 19:23:30) is older or equal age than dst „dscn6570.jpg“ (22.01.2019 19:23:30). ? width of 2048 pixels must be reduced to match 890 pixels. Image loaded from „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\output\media\images\dscn6570.jpg“. ? need create. ? actually sizing to „890“. ? remembering content copy size of 890×668 pixels because output flavor is Output. ? remembering previously used max content copy width 890 pixels because output flavor is Output. ? something created. ? nothing pseudo-created.)
2020-07-14 20:58:23,950 [19] INFO - [GetImageSizeInPixel - C] getting image size 890x668 for predefined content copy size (working copy image „C:\Users\DieGohliser\OneDrive\OneDriveDaten\Projects\Willi\content\media\images\92c41d522b244fbfabfefebe13f02ce3.jpg“).
2020-07-14 20:58:23,950 [19] INFO - Returning live-calculated image size for image with ID 414, file version „ContentCopy“ of 890×668 pixels.
2020-07-14 20:58:23,950 [19] INFO - Returning cached image size for image with ID 414, file version „ContentCopy“ of 890×668 pixels.
2020-07-14 20:58:23,952 [19] INFO - About to execute the following script:
2020-07-14 20:58:23,952 [19] INFO - Information: 0 :
2020-07-14 20:58:23,952 [19] INFO - About to execute the following script:
2020-07-14 20:58:23,952 [19] INFO - ---------
2020-07-14 20:58:23,952 [19] INFO - Information: 0 :
2020-07-14 20:58:23,952 [19] INFO - ---------
2020-07-14 20:58:23,952 [19] INFO - function SE637303571039525994() {}
SE637303571039525994.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 SE637303571039525994().executeScript();
2020-07-14 20:58:23,953 [19] INFO - Information: 0 :
2020-07-14 20:58:23,953 [19] INFO - function SE637303571039525994() {}
SE637303571039525994.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 SE637303571039525994().executeScript();
2020-07-14 20:58:23,953 [19] INFO - ---------
2020-07-14 20:58:23,953 [19] INFO - Information: 0 :
2020-07-14 20:58:23,953 [19] INFO - ---------
2020-07-14 20:58:23,957 [19] INFO - Information: 0 :
2020-07-14 20:58:23,958 [19] INFO - [LockGuard] Entering locking for lock with hash '35528341', from thread #19 ('').
2020-07-14 20:58:23,960 [19] INFO - Information: 0 :
2020-07-14 20:58:23,960 [19] INFO - [LockGuard] Disposing for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:23,960 [19] INFO - Information: 0 :
2020-07-14 20:58:23,960 [19] INFO - [LockGuard] Exiting locking for lock with hash '35528341', from thread #19 (''). Initial thread was #19 ('').
2020-07-14 20:58:23,962 [19] INFO - Finished executing the following script:
2020-07-14 20:58:23,962 [19] INFO - Information: 0 :
2020-07-14 20:58:23,962 [19] INFO - Finished executing the following script:
2020-07-14 20:58:23,962 [19] INFO - ---------
2020-07-14 20:58:23,962 [19] INFO - Information: 0 :
2020-07-14 20:58:23,962 [19] INFO - ---------
2020-07-14 20:58:23,963 [19] INFO - function SE637303571039525994() {}
SE637303571039525994.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 SE637303571039525994().executeScript();
2020-07-14 20:58:23,963 [19] INFO - Information: 0 :
2020-07-14 20:58:23,963 [19] INFO - function SE637303571039525994() {}
SE637303571039525994.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 SE637303571039525994().executeScript();
2020-07-14 20:58:23,963 [19] INFO - ---------
2020-07-14 20:58:23,963 [19] INFO - Information: 0 :
2020-07-14 20:58:23,963 [19] INFO - ---------
2020-07-14 20:58:23,963 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2230.
2020-07-14 20:58:23,964 [19] INFO - Information: 0 :
2020-07-14 20:58:23,964 [19] INFO - Statistiken — Gesamte Skript-Aufrufe: 2230.
2020-07-14 20:58:23,964 [19] INFO - ---------
2020-07-14 20:58:23,964 [19] INFO - Information: 0 :
2020-07-14 20:58:23,964 [19] INFO - ---------
2020-07-14 20:58:23,964 [19] INFO - [system.partial] „article-begin.html“ 12 ms „[0, popupimage]“
2020-07-14 20:58:23,964 [19] INFO - Information: 0 :
2020-07-14 20:58:23,964 [19] INFO - [system.partial] „article-begin.html“ 12 ms „[0, popupimage]“
2020-07-14 20:58:23,966 [19] INFO - [system.partial] „article-end.html“ 0 ms „“
2020-07-14 20:58:23,966 [19] INFO - Information: 0 :
2020-07-14 20:58:23,966 [19] INFO - [system.partial] „article-end.html“ 0 ms „“
2020-07-14 20:58:23,966 [19] INFO - Finished executing the following script:
2020-07-14 20:58:23,966 [19] INFO - Information: 0 :
2020-07-14 20:58:23,966 [19] INFO - Finished executing the following script:
2020-07-14 20:58:23,967 [19] INFO - ---------
2020-07-14 20:58:23,967 [19] INFO - Information: 0 :
2020-07-14 20:58:23,967 [19] INFO - ---------
2020-07-14 20:58:23,967 [19] INFO - function SE637303571024045109() {}
SE637303571024045109.prototype.executeScript = function(){
// Start source file: 'C:\Users\DieGohliser\AppData\Local\Zeta Producer 15\packaging\widgets\singleimage\standard.html'.
var image = project.getImage(article.value("image"));
var contentImageWidth = "890";
var defaultImageWidth = 960;
var cssClass = article.cssClass || "";
var isBreakout = cssClass.indexOf("zpBreakout") !== -1 ? true : false;
// Kann auch "700px" sein, deshalb mit parseInt nur die Zahl holen und trimmen - falls leer, auf default 960 setzen.
contentImageWidth = parseInt(contentImageWidth) || defaultImageWidth;
var gridCols = article.column.cssClass;
if ( gridCols ){
gridCols = parseInt((gridCols.match(/\bc[1-9][0-2]?\b\s?/) || 12).toString().replace("c", ""));
}
else{
gridCols = 12;
}
var columnMargin = 30;
var columnWidth = ((contentImageWidth + columnMargin) / 12) * gridCols;
// minimum width needed for 100% width display on 1-column breakpoint
var minwidth = parseInt(479 - columnMargin);
var contentCopyWidth = parseInt(columnWidth - columnMargin) || defaultImageWidth;
if ( minwidth > contentCopyWidth ){
contentCopyWidth = minwidth;
}
//system.log("contentCopyWidth: " + contentCopyWidth + " - image: " + image.name + "( Page " + article.page.name +")");
var imageError = false;
if ( !isNull(image) ) {
if ( isBreakout ){
contentCopyWidth = image.workingCopyWidth;
}
try {
var iresult = image.ensureContentCopy(article, contentCopyWidth);
var thumbImageWidth = image.contentCopyWidth;
var thumbImageHeight = image.contentCopyHeight;
var description = image.description;
var altText = system.htmlEncode(system.removeHtmlTags(image.altText));
var oldAltText = system.htmlEncode(system.removeHtmlTags(article.valueExpanded("alt", "")));
if ( altText == "" && oldAltText !== "" ){
altText = oldAltText;
}
var encodedDescription = system.htmlEncode(image.description);
var stripDescription = system.htmlEncode(system.removeHtmlTags(image.description));
// strip
-Tags from description as
is not valid inside SPAN
description = description.toString().replace(/
/g,"");
description = description.toString().replace(/<\/p>/g," ");
//system.log(" Image Width: " + contentCopyWidth +" / Returned contentCopyWidth:" + thumbImageWidth + " / Image Result: " + iresult);
}
catch(err) {
imageError = true;
}
}
if ( stripDescription !== "" ) {
var showCaption = "1";
}
else {
var showCaption = "0";
}
var lightBox = article.value("lightbox", "lightbox");
var clickURL = article.value("clickurl");
var effect = article.value("effect", "none");
var effectClass = "";
switch ( effect ) {
case "hoverzoom":
effectClass = " zpeffect zphoverscale";
break;
default:
effectClass = "";
}
context.write("\r\n\r\n");
if ( isNull(image) || imageError ) {
context.write("\r\n\t");
if ( system.preview ) {
context.write("\r\n\t\t
\r\n\t\t\t\tDas gewählte Bild ist anscheinend gelöscht worden. Bearbeiten Sie diesen Artikel und wählen Sie erneut ein Bild aus.\r\n\t\t\t\r\n\t\t