<!-- 
RSS generated by JIRA (9.4.2#940002-sha1:46d1a51de284217efdcb32434eab47a99af2938b) at Mon Feb 12 06:15:06 CET 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Magnolia - Issue tracker</title>
    <link>https://jira.magnolia-cms.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-uk</language>    <build-info>
        <version>9.4.2</version>
        <build-number>940002</build-number>
        <build-date>19-01-2023</build-date>
    </build-info>


<item>
            <title>[PAGES-47] Page-editor: Notify users about broken page template, e.g. missing html head&amp;body markup</title>
                <link>https://jira.magnolia-cms.com/browse/PAGES-47</link>
                <project id="12087" key="PAGES">Magnolia pages module</project>
                    <description>&lt;p&gt;Problem:&lt;br/&gt;
Sometimes on freemarker errors in page/component scripts the right hand ActionBar has no Actions anymore.&lt;/p&gt;

&lt;p&gt;I have seen this also in trainings.&lt;br/&gt;
Also other support cases were opened with this problem.&lt;br/&gt;
But we were never able to break it down into a reproducible situation to investigate into the bug.&lt;/p&gt;

&lt;p&gt;Now a customer was able to provide an exact situation and code to reproduce it.&lt;br/&gt;
I can&apos;t add it here as it is customer code (SUPPORT-4885).&lt;br/&gt;
His example is working on missing html head&amp;amp;body markup.&lt;br/&gt;
But it also happens on certain freemarker errors, most likely having the same root cause.&lt;/p&gt;

&lt;p&gt;I tried also with no html head&amp;amp;body markup and producing errors, but the bar didn&apos;t disappear.&lt;br/&gt;
So its some sort of combination triggering it. Its not just not having &quot;html head&amp;amp;body markup&quot;.&lt;/p&gt;

&lt;p&gt;See linked support issue.&lt;/p&gt;</description>
                <environment></environment>
        <key id="46822">PAGES-47</key>
            <summary>Page-editor: Notify users about broken page template, e.g. missing html head&amp;body markup</summary>
                <type id="1" iconUrl="https://jira.magnolia-cms.com/secure/viewavatar?size=xsmall&amp;avatarId=10883&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.magnolia-cms.com/images/icons/priorities/major.svg">Major</priority>
                        <status id="6" iconUrl="https://jira.magnolia-cms.com/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are not closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="sang.ngo">Sang Ngo Huu</assignee>
                                    <reporter username="cringele">Christian Ringele</reporter>
                        <labels>
                            <label>support</label>
                    </labels>
                <created>Thu, 23 Jul 2015 14:35:35 +0200</created>
                <updated>Mon, 11 Apr 2016 13:21:45 +0200</updated>
                            <resolved>Fri, 27 Nov 2015 07:59:56 +0100</resolved>
                                    <version>5.4</version>
                                    <fixVersion>5.4.3</fixVersion>
                                        <due></due>
                            <votes>1</votes>
                                    <watches>9</watches>
                                    <workratio workratioPercent="178"/>
                                    <progress percentage="100">
                                    <originalProgress>
                                                    <row percentage="56" backgroundColor="#89afd7"/>
                                                    <row percentage="44" backgroundColor="transparent"/>
                                            </originalProgress>
                                                    <currentProgress>
                                                    <row percentage="100" backgroundColor="#51a825"/>
                                                    <row percentage="0" backgroundColor="#ec8e00"/>
                                            </currentProgress>
                            </progress>
                                    <aggregateprogress percentage="100">
                                    <originalProgress>
                                                    <row percentage="56" backgroundColor="#89afd7"/>
                                                    <row percentage="44" backgroundColor="transparent"/>
                                            </originalProgress>
                                                    <currentProgress>
                                                    <row percentage="100" backgroundColor="#51a825"/>
                                                    <row percentage="0" backgroundColor="#ec8e00"/>
                                            </currentProgress>
                            </aggregateprogress>
                                    <timeoriginalestimate seconds="115200">4d</timeoriginalestimate>
                            <timeestimate seconds="0">0d</timeestimate>
                            <timespent seconds="205200">7d 1h</timespent>
                                <comments>
                            <comment id="116655" author="fuchs.florian" created="Mon, 9 Nov 2015 12:46:32 +0100"  >&lt;p&gt;Not only freemarker errors can cause this issue - Wrong HTML-markups in templates (too many closed elements, or too less) can cause the loss of the actionbar.&lt;/p&gt;</comment>
                            <comment id="116844" author="sang.ngo" created="Thu, 12 Nov 2015 12:11:09 +0100"  >&lt;p&gt;I will create template without &lt;b&gt;html&lt;/b&gt; and &lt;b&gt;body&lt;/b&gt; tag, just have text and freemarker. And the issue can reproduce.&lt;/p&gt;

&lt;p&gt;There is my investigate:&lt;br/&gt;
Page editor will load and parse the html of a page, if a page just have text, not have html and body tag, &lt;tt&gt;model.getRootPage()&lt;/tt&gt; will &lt;tt&gt;null&lt;/tt&gt;&lt;/p&gt;

&lt;p&gt;See &lt;tt&gt;PageEditorConnector&lt;/tt&gt;, when the page in frame loaded, page is selected :&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
eventBus.addHandler(FrameLoadedEvent.TYPE, &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; FrameLoadedEvent.Handler() {
            @Override
            &lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; void handle(FrameLoadedEvent event) {
               ...
                    } &lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt; {
                        focusModel.select(model.getRootPage());
                    }
                }
            }
        });
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;And NullPointException will throw at:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
FocusModelImpl.java:234
 @Override
    &lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; void select(MgnlElement mgnlElement) {
        mgnlElement = (mgnlElement != &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;) ? mgnlElement : model.getRootPage();
        eventBus.fireEvent(&lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; SelectElementEvent(mgnlElement.getTypedElement()));
    }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Then &lt;tt&gt;info.magnolia.pages.app.editor.PagesEditorSubApp#updateActionbar()&lt;/tt&gt; is not called&lt;/p&gt;

&lt;p&gt;That why the action bar is empty.&lt;/p&gt;</comment>
                            <comment id="117002" author="ejervidalo" created="Mon, 16 Nov 2015 17:35:50 +0100"  >&lt;p&gt;The behavior is correct. If it fails to parse the document due to the underlying template being broken, we should not show actions for the page, but inform the user, that their template is broken. Silently ignoring that will just encourage people to continue working with broken templates, instead of fixing it right away. Plus if the cms-comment for the page is missing, there&apos;s no way to tell what actions should be available, because the page-editor would not know which page it is editing. &lt;/p&gt;</comment>
                            <comment id="117013" author="sang.ngo" created="Tue, 17 Nov 2015 08:40:30 +0100"  >&lt;p&gt;&lt;a href=&quot;https://jira.magnolia-cms.com/secure/ViewProfile.jspa?name=ejervidalo&quot; class=&quot;user-hover&quot; rel=&quot;ejervidalo&quot;&gt;ejervidalo&lt;/a&gt; Yes, I agree. I tried to add &lt;tt&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;cms.page /&amp;#93;&lt;/span&gt;&lt;/tt&gt; into template, the action bar still not display. But when I wrap it with &lt;tt&gt;html&lt;/tt&gt; and &lt;tt&gt;body&lt;/tt&gt; tag, it works. Because we use Dom parser to parse HTML, if template does not follow the HTML standard, it will not work.&lt;/p&gt;</comment>
                            <comment id="117264" author="breun" created="Mon, 23 Nov 2015 11:21:21 +0100"  >&lt;p&gt;After enabling super dev mode for GWT according to the instructions on &lt;a href=&quot;https://wiki.magnolia-cms.com/display/DEV/GWT+debugging+with+super+dev+mode&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://wiki.magnolia-cms.com/display/DEV/GWT+debugging+with+super+dev+mode&lt;/a&gt; the action bar starts working on our broken test page! But after stopping the codeserver, cleaning the browser cache and restarting Magnolia the action bar is broken again. Maybe JavaScript minification/obfuscation/uglification causes this issue and maybe super dev mode doesn&apos;t do that, so that&apos;s why it works then?&lt;/p&gt;</comment>
                            <comment id="117383" author="sang.ngo" created="Tue, 24 Nov 2015 13:44:36 +0100"  >&lt;p&gt;&lt;a href=&quot;https://jira.magnolia-cms.com/secure/ViewProfile.jspa?name=breun&quot; class=&quot;user-hover&quot; rel=&quot;breun&quot;&gt;breun&lt;/a&gt; Thanks for your input, I think the javascript has been cached or not updated when you switch between a worked page and an error page.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://jira.magnolia-cms.com/secure/ViewProfile.jspa?name=mgeljic&quot; class=&quot;user-hover&quot; rel=&quot;mgeljic&quot;&gt;mgeljic&lt;/a&gt; &lt;a href=&quot;https://jira.magnolia-cms.com/secure/ViewProfile.jspa?name=ejervidalo&quot; class=&quot;user-hover&quot; rel=&quot;ejervidalo&quot;&gt;ejervidalo&lt;/a&gt; There is my investigation:&lt;br/&gt;
1. For the page with error on whole template, we don&apos;t have &lt;tt&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;cms.page&amp;#93;&lt;/span&gt;&lt;/tt&gt;  comment, and the action bar is not displayed&lt;br/&gt;
2. For the page with error on a part (in template file of components or areas) it still works&lt;br/&gt;
3. For the template without &lt;tt&gt;html&lt;/tt&gt; &amp;amp; &lt;tt&gt;body&lt;/tt&gt;. Finally, the browser will add these tags automatically, but the comment &lt;tt&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;cms.page&amp;#93;&lt;/span&gt;&lt;/tt&gt; is wrapped to top &amp;amp; outside of &lt;tt&gt;html&lt;/tt&gt; tag. And our script for getting the document in iframe cannot get the comment. So, the action bar is not updated.&lt;br/&gt;
------------&lt;br/&gt;
&lt;b&gt;Template:&lt;/b&gt;&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
[#assign title = content.title!&lt;span class=&quot;code-quote&quot;&gt;&quot;Hello Magnolia :-)&quot;&lt;/span&gt;]
[@cms.page /]
&amp;lt;h1&amp;gt;${title}&amp;lt;/h1&amp;gt;
[@cms.area name=&lt;span class=&quot;code-quote&quot;&gt;&quot;main&quot;&lt;/span&gt; /]
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;b&gt;And result: Action bar is not displayed&lt;/b&gt;&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
&amp;lt;!-- cms:page content=&lt;span class=&quot;code-quote&quot;&gt;&quot;website:/yyy&quot;&lt;/span&gt; dialog=&lt;span class=&quot;code-quote&quot;&gt;&quot;hello-magnolia:pages/hello&quot;&lt;/span&gt; --&amp;gt;
&amp;lt;!-- /cms:page --&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;h1&amp;gt;Hello Magnolia :-)&amp;lt;/h1&amp;gt;
&amp;lt;!-- cms:area content=&lt;span class=&quot;code-quote&quot;&gt;&quot;website:/yyy/main&quot;&lt;/span&gt; name=&lt;span class=&quot;code-quote&quot;&gt;&quot;main&quot;&lt;/span&gt; availableComponents=&lt;span class=&quot;code-quote&quot;&gt;&quot;hello-magnolia:components/quotation&quot;&lt;/span&gt; type=&lt;span class=&quot;code-quote&quot;&gt;&quot;list&quot;&lt;/span&gt; label=&lt;span class=&quot;code-quote&quot;&gt;&quot;Main&quot;&lt;/span&gt; inherit=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;&quot;&lt;/span&gt; optional=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;&quot;&lt;/span&gt; createAreaNode=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&quot;&lt;/span&gt; showAddButton=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&quot;&lt;/span&gt; showNewComponentArea=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&quot;&lt;/span&gt; activationStatus=&lt;span class=&quot;code-quote&quot;&gt;&quot;0&quot;&lt;/span&gt; --&amp;gt;
&amp;lt;!-- /cms:area --&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt; 
&lt;p&gt;-----------&lt;br/&gt;
&lt;b&gt;Template:&lt;/b&gt;&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
[#assign title = content.title!&lt;span class=&quot;code-quote&quot;&gt;&quot;Hello Magnolia :-)&quot;&lt;/span&gt;]
[@cms.page /]
&amp;lt;h1&amp;gt;${title}&amp;lt;/h1&amp;gt;
[@cms.area name=&lt;span class=&quot;code-quote&quot;&gt;&quot;main&quot;&lt;/span&gt; /]
&amp;lt;html&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;b&gt;And result: Action bar is not displayed&lt;/b&gt;&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
&amp;lt;!-- cms:page content=&lt;span class=&quot;code-quote&quot;&gt;&quot;website:/yyy&quot;&lt;/span&gt; dialog=&lt;span class=&quot;code-quote&quot;&gt;&quot;hello-magnolia:pages/hello&quot;&lt;/span&gt; --&amp;gt;
&amp;lt;!-- /cms:page --&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;h1&amp;gt;Hello Magnolia :-)&amp;lt;/h1&amp;gt;
&amp;lt;!-- cms:area content=&lt;span class=&quot;code-quote&quot;&gt;&quot;website:/yyy/main&quot;&lt;/span&gt; name=&lt;span class=&quot;code-quote&quot;&gt;&quot;main&quot;&lt;/span&gt; availableComponents=&lt;span class=&quot;code-quote&quot;&gt;&quot;hello-magnolia:components/quotation&quot;&lt;/span&gt; type=&lt;span class=&quot;code-quote&quot;&gt;&quot;list&quot;&lt;/span&gt; label=&lt;span class=&quot;code-quote&quot;&gt;&quot;Main&quot;&lt;/span&gt; inherit=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;&quot;&lt;/span&gt; optional=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;&quot;&lt;/span&gt; createAreaNode=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&quot;&lt;/span&gt; showAddButton=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&quot;&lt;/span&gt; showNewComponentArea=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&quot;&lt;/span&gt; activationStatus=&lt;span class=&quot;code-quote&quot;&gt;&quot;0&quot;&lt;/span&gt; --&amp;gt;
&amp;lt;!-- /cms:area --&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt; 
&lt;p&gt;-----------&lt;br/&gt;
&lt;b&gt;Template:&lt;/b&gt;&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
[#assign title = content.title!&lt;span class=&quot;code-quote&quot;&gt;&quot;Hello Magnolia :-)&quot;&lt;/span&gt;]
&amp;lt;h1&amp;gt;${title}&amp;lt;/h1&amp;gt;
[@cms.page /]
[@cms.area name=&lt;span class=&quot;code-quote&quot;&gt;&quot;main&quot;&lt;/span&gt; /]
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;b&gt;And result: Action bar is displayed&lt;/b&gt;&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
&amp;lt;html&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;h1&amp;gt;Hello Magnolia :-)&amp;lt;/h1&amp;gt;
&amp;lt;!-- cms:page content=&lt;span class=&quot;code-quote&quot;&gt;&quot;website:/yyy&quot;&lt;/span&gt; dialog=&lt;span class=&quot;code-quote&quot;&gt;&quot;hello-magnolia:pages/hello&quot;&lt;/span&gt; --&amp;gt;
&amp;lt;!-- /cms:page --&amp;gt;
&amp;lt;!-- cms:area content=&lt;span class=&quot;code-quote&quot;&gt;&quot;website:/yyy/main&quot;&lt;/span&gt; name=&lt;span class=&quot;code-quote&quot;&gt;&quot;main&quot;&lt;/span&gt; availableComponents=&lt;span class=&quot;code-quote&quot;&gt;&quot;hello-magnolia:components/quotation&quot;&lt;/span&gt; type=&lt;span class=&quot;code-quote&quot;&gt;&quot;list&quot;&lt;/span&gt; label=&lt;span class=&quot;code-quote&quot;&gt;&quot;Main&quot;&lt;/span&gt; inherit=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;&quot;&lt;/span&gt; optional=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;&quot;&lt;/span&gt; createAreaNode=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&quot;&lt;/span&gt; showAddButton=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&quot;&lt;/span&gt; showNewComponentArea=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&quot;&lt;/span&gt; activationStatus=&lt;span class=&quot;code-quote&quot;&gt;&quot;0&quot;&lt;/span&gt; --&amp;gt;
&amp;lt;!-- /cms:area --&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt; 

&lt;p&gt;The approach:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;I agreed with idea displaying the action bar when page is loaded, evenwhen the error on template. At current, there is an event from client side send to server side to update the action bar. The page is selected by default. Now we can do it in server side, we have enough information &lt;tt&gt;nodePath&lt;/tt&gt;, &lt;tt&gt;previewMode&lt;/tt&gt;&lt;/li&gt;
	&lt;li&gt;Resolve all the exceptions in client, such as:
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
info.magnolia.ui.vaadin.gwt.client.editor.model.focus.FocusModelImpl#select

@Override
&lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; void select(MgnlElement mgnlElement) {
        mgnlElement = (mgnlElement != &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;) ? mgnlElement : model.getRootPage();
        eventBus.fireEvent(&lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; SelectElementEvent(mgnlElement.getTypedElement()));&lt;span class=&quot;code-comment&quot;&gt;//NullPointException here
&lt;/span&gt;}
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;I will try to implement this approach and let you know the result.&lt;/p&gt;</comment>
                            <comment id="117397" author="breun" created="Tue, 24 Nov 2015 15:38:28 +0100"  >&lt;blockquote&gt;
&lt;p&gt;I think the javascript has been cached or not updated when you switch between a worked page and an error page.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;We have a reproducable error in our setup. We get the following JavaScript error in the browser console and the action bar does not display:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
Thu Nov 19 13:53:03 GMT+100 2015 com.vaadin.client.ApplicationConfiguration
SEVERE: Exception caught: (TypeError) : undefined is not an object (evaluating &lt;span class=&quot;code-quote&quot;&gt;&apos;a.$e&apos;&lt;/span&gt;)com.google.web.bindery.event.shared.UmbrellaException: Exception caught: (TypeError) : undefined is not an object (evaluating &lt;span class=&quot;code-quote&quot;&gt;&apos;a.$e&apos;&lt;/span&gt;)
	at Unknown.Ac(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.qs(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.vs(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.vy(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.jy(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.uo(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.anonymous(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.anonymous(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.apply(Unknown)
	at Unknown.o(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral/APP/PUBLISHED/jquery-1.7.2.min.js)
&lt;/span&gt;	at Unknown.add(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral/APP/PUBLISHED/jquery-1.7.2.min.js)
&lt;/span&gt;	at Unknown.ready(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral/APP/PUBLISHED/jquery-1.7.2.min.js)
&lt;/span&gt;	at Unknown.ajb(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.Od(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.wd(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.ud(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.jy(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.by(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.ED(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.be(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.pra(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.GD(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.Ee(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.OB(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.SC(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.Fua(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.anonymous(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;Caused by: com.google.gwt.core.client.JavaScriptException: (TypeError) : undefined is not an object (evaluating &lt;span class=&quot;code-quote&quot;&gt;&apos;a.$e&apos;&lt;/span&gt;)
	at Unknown.bD(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.Uhb(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.ud(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.jy(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.uo(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.anonymous(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.anonymous(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.apply(Unknown)
	at Unknown.o(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral/APP/PUBLISHED/jquery-1.7.2.min.js)
&lt;/span&gt;	at Unknown.add(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral/APP/PUBLISHED/jquery-1.7.2.min.js)
&lt;/span&gt;	at Unknown.ready(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral/APP/PUBLISHED/jquery-1.7.2.min.js)
&lt;/span&gt;	at Unknown.ajb(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.Od(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.wd(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.ud(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.jy(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.by(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.ED(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.be(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.pra(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.GD(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.Ee(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.OB(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.SC(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.Fua(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)
&lt;/span&gt;	at Unknown.anonymous(http:&lt;span class=&quot;code-comment&quot;&gt;//localhost:8085/.magnolia/admincentral)&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;When we setup GWT super dev mode to investigate the JavaScript error disappears and the action bar works. When we stop the GWT codeserver, clear the browser cache and restart Magnolia the JavaScript error is back and the action bar is again not displayed.&lt;/p&gt;

&lt;p&gt;When we comment out a specific component the JavaScript error also disappears and the action bar displays. We stripped the component&apos;s template so far that it is actually only a &lt;tt&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;@cms.component component=component editable=editable /&amp;#93;&lt;/span&gt;&lt;/tt&gt; with an empty FreeMarker template for that component, and even that triggers the JavaScript error and breaks the action bar (only HTML comments are output for the component). But it all works when using GWT super dev mode.&lt;/p&gt;</comment>
                            <comment id="117595" author="breun" created="Thu, 26 Nov 2015 15:06:02 +0100"  >&lt;p&gt;A colleague of mine found out that the cause in our case was that a component was rendered outside the context of an area.&lt;/p&gt;</comment>
                            <comment id="118860" author="mgeljic" created="Mon, 4 Jan 2016 17:28:13 +0100"  >&lt;p&gt;Final statement here, for the sake of completeness:&lt;/p&gt;
&lt;blockquote&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;b&gt;The page-editor now reports broken templates&lt;/b&gt; in case edit-bars cannot be injected (e.g. missing or misplaced &lt;tt&gt;@cms&lt;/tt&gt; tags).
	&lt;ul&gt;
		&lt;li&gt;We acknowledge an API change in &lt;tt&gt;PageEditorListener&lt;/tt&gt; and &lt;tt&gt;PageEditorServerRpc&lt;/tt&gt; to support that.&lt;/li&gt;
		&lt;li&gt;This should only affect you if you use a custom page-editor presenter AND it does not extend our default implementation (&lt;tt&gt;info.magnolia.pages.app.editor.PageEditorPresenter&lt;/tt&gt;).&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10030">
                    <name>Cloners</name>
                                                                <inwardlinks description="is cloned by">
                                        <issuelink>
            <issuekey id="49101">MGNLUI-3679</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10160">
                    <name>Relates</name>
                                                                <inwardlinks description="relates to">
                                                        </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10021">
                    <name>duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="49742">PAGES-71</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10010">
                    <name>relation</name>
                                            <outwardlinks description="is related to">
                                                        </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                            <customfield id="customfield_14166" key="com.okapya.jira.checklist:checklist">
                        <customfieldname>Acceptance criteria</customfieldname>
                        <customfieldvalues>
                            
        <checklist>
        <![CDATA[
                            




                
                                    <div class="o-completion" style="display: flex; flex-shrink: 0;"><span  class="aui-lozenge aui-lozenge-complete" style="font-size: 12px; font-weight: normal; display: flex; flex-direction: row; align-items: center;" ><span style="padding-right: 4px; vertical-align: middle;"><svg width="15" height="15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" fill="white"><path clip-rule="evenodd" d="m10.41037,3.42544l-7.86501,0c-0.72395,0 -1.31084,0.58688 -1.31084,1.31084l0,7.86508c0,0.7239 0.58689,1.3108 1.31084,1.3108l7.86501,0c0.724,0 1.3109,-0.5869 1.3109,-1.3108l0,-7.86508c0,-0.72396 -0.5869,-1.31084 -1.3109,-1.31084zm-7.86501,-0.65542c-1.08593,0 -1.96626,0.88032 -1.96626,1.96626l0,7.86508c0,1.0859 0.88033,1.9662 1.96626,1.9662l7.86501,0c1.086,0 1.9663,-0.8803 1.9663,-1.9662l0,-7.86508c0,-1.08594 -0.8803,-1.96626 -1.9663,-1.96626l-7.86501,0z" fill-rule="evenodd"/><path d="m5.09049,10.18526l-1.82767,-1.82766l-0.78479,0.78479l2.61246,2.61246l5.38758,-5.38754l-0.78483,-0.78479l-4.60275,4.60274z"/></svg></span><span>Empty</span></span></div>
                        ]]>
    </checklist>


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_14169" key="com.okapya.jira.checklist:checklist">
                        <customfieldname>Bug DoR</customfieldname>
                        <customfieldvalues>
                            
        <checklist>
        <![CDATA[
                            




                
                        
        <div style="margin-bottom: 8px;">
                            <div class="o-completion" style="display: flex; flex-shrink: 0;"><span  class="aui-lozenge" style="font-size: 12px; font-weight: normal; display: flex; flex-direction: row; align-items: center;" ><span style="padding-right: 4px; vertical-align: middle;"><svg width="15" height="15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" fill="white"><path clip-rule="evenodd" d="m10.41037,3.42544l-7.86501,0c-0.72395,0 -1.31084,0.58688 -1.31084,1.31084l0,7.86508c0,0.7239 0.58689,1.3108 1.31084,1.3108l7.86501,0c0.724,0 1.3109,-0.5869 1.3109,-1.3108l0,-7.86508c0,-0.72396 -0.5869,-1.31084 -1.3109,-1.31084zm-7.86501,-0.65542c-1.08593,0 -1.96626,0.88032 -1.96626,1.96626l0,7.86508c0,1.0859 0.88033,1.9662 1.96626,1.9662l7.86501,0c1.086,0 1.9663,-0.8803 1.9663,-1.9662l0,-7.86508c0,-1.08594 -0.8803,-1.96626 -1.9663,-1.96626l-7.86501,0z" fill-rule="evenodd"/><path d="m5.09049,10.18526l-1.82767,-1.82766l-0.78479,0.78479l2.61246,2.61246l5.38758,-5.38754l-0.78483,-0.78479l-4.60275,4.60274z"/></svg></span><span>0/2</span></span></div>
                    
            <div class="checklist-progress-bar-wrapper" style="">
        <div class="checklist-progress-bar" style="position: relative; width: 100%; background-color: #cccccc; margin-bottom: 2px; margin-top: 5px;">
                        <div class="checklist-progress" style="display: block; float: none; width: 0%; height: 2px; background: #14892c;">
                            </div>
        </div>
    </div>
        </div>
    
                                    <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Steps to reproduce, expected, and actual results filled</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Affected version filled</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                            ]]>
    </checklist>


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10111" key="com.atlassian.jira.toolkit:reporterdomain">
                        <customfieldname>Company</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>magnolia-cms.com</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10031" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of First Response</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Fri, 18 Sep 2015 14:56:08 +0200</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_12730" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_14151" key="com.atlassian.jira.toolkit:message">
                        <customfieldname>Docu info</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10061" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comm is not jira-dev</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10071" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last participant</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>mgeljic</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_13136" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            8 years, 6 weeks, 6 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10020" key="com.atlassian.jira.toolkit:attachments">
                        <customfieldname>Number of attachments</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10150" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname>Number of comments</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10011" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>cringele</customfieldvalue>
            <customfieldvalue>ejervidalo</customfieldvalue>
            <customfieldvalue>fuchs.florian</customfieldvalue>
            <customfieldvalue>mgeljic</customfieldvalue>
            <customfieldvalue>breun</customfieldvalue>
            <customfieldvalue>sang.ngo</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_10833" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|hzzzzn:9a90vhmi212yki3v0iz2i0m03d0zx00002m</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10244" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10220" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
                        <customfieldname>Release notes required</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10490"><![CDATA[Yes]]></customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10245" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="163">Saigon 25</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10242" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Story Points</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>5.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_14168" key="com.okapya.jira.checklist:checklist">
                        <customfieldname>Task DoD</customfieldname>
                        <customfieldvalues>
                            
        <checklist>
        <![CDATA[
                            




                
                        
        <div style="margin-bottom: 8px;">
                            <div class="o-completion" style="display: flex; flex-shrink: 0;"><span  class="aui-lozenge" style="font-size: 12px; font-weight: normal; display: flex; flex-direction: row; align-items: center;" ><span style="padding-right: 4px; vertical-align: middle;"><svg width="15" height="15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" fill="white"><path clip-rule="evenodd" d="m10.41037,3.42544l-7.86501,0c-0.72395,0 -1.31084,0.58688 -1.31084,1.31084l0,7.86508c0,0.7239 0.58689,1.3108 1.31084,1.3108l7.86501,0c0.724,0 1.3109,-0.5869 1.3109,-1.3108l0,-7.86508c0,-0.72396 -0.5869,-1.31084 -1.3109,-1.31084zm-7.86501,-0.65542c-1.08593,0 -1.96626,0.88032 -1.96626,1.96626l0,7.86508c0,1.0859 0.88033,1.9662 1.96626,1.9662l7.86501,0c1.086,0 1.9663,-0.8803 1.9663,-1.9662l0,-7.86508c0,-1.08594 -0.8803,-1.96626 -1.9663,-1.96626l-7.86501,0z" fill-rule="evenodd"/><path d="m5.09049,10.18526l-1.82767,-1.82766l-0.78479,0.78479l2.61246,2.61246l5.38758,-5.38754l-0.78483,-0.78479l-4.60275,4.60274z"/></svg></span><span>0/6</span></span></div>
                    
            <div class="checklist-progress-bar-wrapper" style="">
        <div class="checklist-progress-bar" style="position: relative; width: 100%; background-color: #cccccc; margin-bottom: 2px; margin-top: 5px;">
                        <div class="checklist-progress" style="display: block; float: none; width: 0%; height: 2px; background: #14892c;">
                            </div>
        </div>
    </div>
        </div>
    
                                    <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Doc/release notes changes? Comment present?</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Downstream builds green?</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Solution information and context easily available?</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span><strong>Tests</strong></span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span><strong>FixVersion</strong> filled and not yet released</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><rect fill="#EFF4FB" height="17.5" rx="2.5" stroke="#ADBBD0" width="18" x="0.44141" y="3.94141"/></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Architecture Decision Record (<strong>ADR</strong>)</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                            ]]>
    </checklist>


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                    <customfield id="customfield_14145" key="com.intenso.jira.issue-templates:issue-templates-customfield">
                        <customfieldname>Template</customfieldname>
                        <customfieldvalues>
                            


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_15131" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Time in Discovery</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10032" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>Time in Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        </customfields>
    </item>
</channel>
</rss>