<!-- 
RSS generated by JIRA (9.4.2#940002-sha1:46d1a51de284217efdcb32434eab47a99af2938b) at Mon Feb 12 04:18:36 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>[MAGNOLIA-6868] TemplatingFunctions for fetching content in templating: Prevent flooding logs of non resolvable JCR items</title>
                <link>https://jira.magnolia-cms.com/browse/MAGNOLIA-6868</link>
                <project id="10000" key="MAGNOLIA">Magnolia</project>
                    <description>&lt;p&gt;The cmsfn provides:&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;
cmsfn.contentByPath(path, workspace)]
cmsfn.nodeByPath(path, workspace)]
cmsfn.contentById(id, workspace)]
cmsfn.nodeById(id, workspace)]
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Two problems (1. &amp;amp; 2.) when the target node does not exists because of:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;path outdated/invalid&lt;/li&gt;
	&lt;li&gt;id outdated/invalid&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;b&gt;1. Floods the logs&lt;/b&gt; with the thrown exceptions of trying to fetch the content.&lt;br/&gt;
The templater ha no way to prevent the throwing of the exceptions, even he knows it is absolute valid an item does not exists.&lt;br/&gt;
There are methods in jcr session to actually know if it exists before requesting it:&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;
jcrSession.nodeExists(&lt;span class=&quot;code-quote&quot;&gt;&quot;pathToCheck&quot;&lt;/span&gt;);
jcrSession.itemExists(&lt;span class=&quot;code-quote&quot;&gt;&quot;pathToCheck&quot;&lt;/span&gt;);
jcrSession.propertyExists(&lt;span class=&quot;code-quote&quot;&gt;&quot;pathToCheck&quot;&lt;/span&gt;);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;There is no jcr method for checking if an id exists -&amp;gt; needs to catch the  ItemNotFoundException&lt;/p&gt;

&lt;p&gt;&lt;b&gt;2. Too many unnecessary if checks needed:&lt;/b&gt;&lt;br/&gt;
-&lt;del&gt;It would be nice for the templater to be able to check if a path or an id exists within a workspace, BEFORE trying to fetch the content of it.&lt;/del&gt;- ?hasContent in an if statement might be used instead&lt;/p&gt;

&lt;p&gt;-&lt;del&gt;I added the needed Methods to &lt;tt&gt;info.magnolia.templating.functions.TemplatingFunctions&lt;/tt&gt; and &lt;tt&gt;info.magnolia.jcr.util.SessionUtil&lt;/tt&gt; as a patch.&lt;/del&gt;-&lt;/p&gt;

&lt;p&gt;-&lt;del&gt;Here an example of how easy the code becomes, and no unnescessary exception is logged:&lt;/del&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;
    [#-- By Path (will produce logs): From --]
    [#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; eventPath?has_content]
        [#assign eventNode = cmsfn.contentByPath(eventPath, &lt;span class=&quot;code-quote&quot;&gt;&quot;events&quot;&lt;/span&gt;)]
        [#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; !eventNode?has_content]
            [#-- Reacting on non resolvable path --]
        [/#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt;]
    [/#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt;]

    [#-- By Path: To --]
    [#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; cmsfn.contentExists(eventPath, &lt;span class=&quot;code-quote&quot;&gt;&quot;events&quot;&lt;/span&gt;)]
        [#assign eventNode = cmsfn.contentByPath(eventPath, &lt;span class=&quot;code-quote&quot;&gt;&quot;events&quot;&lt;/span&gt;)]
    [#&lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt;]
        [#-- How ever to react on non existing path. But no need to check eventNode?has_content to get into the logical &lt;span class=&quot;code-quote&quot;&gt;&apos;&lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt;&apos;&lt;/span&gt; --]
    [/#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt;]
    
    
    [#-- By Id (will produce logs): From --]
    [#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; eventId?has_content]
        [#assign eventNode = cmsfn.contentById(eventId, &lt;span class=&quot;code-quote&quot;&gt;&quot;events&quot;&lt;/span&gt;)]
        [#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; !eventNode?has_content]
            [#-- Reacting on non resolvable path --]
        [/#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt;]
    [/#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt;]
    
    [#-- By &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt;: To --]
    [#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; cmsfn.idExists(eventId, &lt;span class=&quot;code-quote&quot;&gt;&quot;events&quot;&lt;/span&gt;)]
        [#assign eventNode = cmsfn.contentById(eventId, &lt;span class=&quot;code-quote&quot;&gt;&quot;events&quot;&lt;/span&gt;)]
    [#&lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt;]
        [#-- How ever to react on non existing id. But no need to check eventNode?has_content to get into the logical &lt;span class=&quot;code-quote&quot;&gt;&apos;&lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt;&apos;&lt;/span&gt; --]
    [/#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt;]
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="55951">MAGNOLIA-6868</key>
            <summary>TemplatingFunctions for fetching content in templating: Prevent flooding logs of non resolvable JCR items</summary>
                <type id="4" iconUrl="https://jira.magnolia-cms.com/secure/viewavatar?size=xsmall&amp;avatarId=10890&amp;avatarType=issuetype">Improvement</type>
                                            <priority id="6" iconUrl="https://jira.magnolia-cms.com/images/icons/priorities/neutral.gif">Neutral</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="rkovarik">Roman Kova&#345;&#237;k</assignee>
                                    <reporter username="cringele">Christian Ringele</reporter>
                        <labels>
                    </labels>
                <created>Thu, 10 Nov 2016 13:13:04 +0100</created>
                <updated>Thu, 7 Jun 2018 13:34:12 +0200</updated>
                            <resolved>Thu, 5 Jan 2017 15:39:40 +0100</resolved>
                                                    <fixVersion>5.5.1</fixVersion>
                                    <component>core</component>
                    <component>templating</component>
                        <due></due>
                            <votes>1</votes>
                                    <watches>3</watches>
                                                                                                                <comments>
                            <comment id="134756" author="tgregovsky" created="Thu, 10 Nov 2016 13:18:58 +0100"  >&lt;p&gt;&lt;img class=&quot;emoticon&quot; src=&quot;https://jira.magnolia-cms.com/images/icons/emoticons/thumbs_up.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;</comment>
                            <comment id="136276" author="rkovarik" created="Wed, 14 Dec 2016 13:08:06 +0100"  >&lt;p&gt;We don&apos;t see a benefit from these new methods. The only think we can improve is to not log the error in &lt;tt&gt;info.magnolia.jcr.util.SessionUtil#getNodeByIdentifier&lt;/tt&gt;.&lt;br/&gt;
For the exist checks...why don&apos;t you do &lt;tt&gt;cmsfn.nodeByPath(&quot;xxx&quot;, &quot;xxx&quot;)?has_content&lt;/tt&gt; and you don&apos;t need the 20 new methods?&lt;/p&gt;</comment>
                            <comment id="136306" author="rkovarik" created="Thu, 15 Dec 2016 09:58:46 +0100"  >&lt;p&gt;&lt;a href=&quot;https://jira.magnolia-cms.com/secure/ViewProfile.jspa?name=jsimak&quot; class=&quot;user-hover&quot; rel=&quot;jsimak&quot;&gt;jsimak&lt;/a&gt; The same code without any new method:&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;
[#-- By Path (will produce logs): From --]
[#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; eventPath?has_content &amp;amp;&amp;amp; cmsfn.contentByPath(eventPath, &lt;span class=&quot;code-quote&quot;&gt;&quot;events&quot;&lt;/span&gt;)?has_content]
&#8194;&#8194;&#8194;&#8194;[#assign eventNode = cmsfn.contentByPath(eventPath, &lt;span class=&quot;code-quote&quot;&gt;&quot;events&quot;&lt;/span&gt;)]
[#&lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt;]
xxxx
[/#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt;]

[#-- By Path: To --]
[#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; cmsfn.contentExists(eventPath, &lt;span class=&quot;code-quote&quot;&gt;&quot;events&quot;&lt;/span&gt;)]
&#8194;&#8194;&#8194;&#8194;[#assign eventNode = cmsfn.contentByPath(eventPath, &lt;span class=&quot;code-quote&quot;&gt;&quot;events&quot;&lt;/span&gt;)]
[#&lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt;]
&#8194;&#8194;&#8194;&#8194;[#-- How ever to react on non existing path. But no need to check eventNode?has_content to get into the logical &lt;span class=&quot;code-quote&quot;&gt;&apos;&lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt;&apos;&lt;/span&gt; --]
[/#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt;]
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="136325" author="rkovarik" created="Thu, 15 Dec 2016 12:02:50 +0100"  >&lt;p&gt;Architecture decision: &lt;a href=&quot;https://wiki.magnolia-cms.com/display/ARCHI/2016-12-15+Meeting+notes&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://wiki.magnolia-cms.com/display/ARCHI/2016-12-15+Meeting+notes&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="137038" author="cringele" created="Tue, 3 Jan 2017 13:50:10 +0100"  >&lt;p&gt;There is a huge difference of getting twice the same content, just to find out if the value/path is valid. The code you say is equivalent:&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;
[#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; eventPath?has_content &amp;amp;&amp;amp; cmsfn.contentByPath(eventPath, &lt;span class=&quot;code-quote&quot;&gt;&quot;events&quot;&lt;/span&gt;)?has_content]
&#8194;&#8194;&#8194;&#8194;[#assign eventNode = cmsfn.contentByPath(eventPath, &lt;span class=&quot;code-quote&quot;&gt;&quot;events&quot;&lt;/span&gt;)]
[#&lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt;]
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;But its not.&lt;br/&gt;
1. You get the same content twice, first in the if itself, and then within the if.&lt;br/&gt;
This is just stupid and bad for performance.&lt;br/&gt;
This would be like in Java working with the try&amp;amp;catch instead of writing a proper if check.&lt;br/&gt;
And if you really want to check it properly over one assign, that you don&apos;t get the same content twice, then there is now way around the inner double if check.&lt;/p&gt;

&lt;p&gt;2. Its not the same, as when the front end dev gets into the else he does not know if eventPath variable itself was null or the eventPath was not resolvable. There is not easy way to differentiate between the two possibilities. &lt;/p&gt;

&lt;p&gt;3. Also be aware that if in &lt;tt&gt;&lt;a href=&quot;#assign eventNode = cmsfn.contentByPath(eventPath, &amp;quot;events&amp;quot;)&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;assign eventNode = cmsfn.contentByPath(eventPath, &quot;events&quot;)&lt;/a&gt;&lt;/tt&gt;  the eventPath is a null String, then the freemarker script will not work, as the null passing into the cmsfn.contentByPath( is not catche-able with an &quot;&lt;span class=&quot;error&quot;&gt;Unable to render embedded object: File (&amp;quot; like this {{[#assign eventNode = cmsfn.contentByPath(eventPath, &amp;quot;events&amp;quot;)) not found.&lt;/span&gt;]}} (exclamation mark). &lt;br/&gt;
These little differences make front end developers crazy!!&lt;br/&gt;
If he needs to know if a path exists, its cumbersome and the code of Roman will not work for the described situation.&lt;/p&gt;

&lt;p&gt;Tomas had this problems with it, him self and in teaching front end devs.&lt;br/&gt;
I did also and many templates I spoke with.&lt;/p&gt;

&lt;p&gt;All the arguments I read from the Architecture board and in this ticket is:&lt;br/&gt;
We don&apos;t see a benefit... how about you do once some proper templating in a project real world or listen to those who do. You guys only argue from the Java perspective.&lt;/p&gt;
</comment>
                            <comment id="137172" author="had" created="Thu, 5 Jan 2017 15:39:40 +0100"  >&lt;p&gt;Sry, but the code changes described and agreed upon were already integrated, so in order to keep clean history, I&apos;m closing the ticket again. It would have been great if you contributed your point already back in December just after link to discussion happening in architecture have been provided. &lt;/p&gt;


&lt;p&gt;The solution implemented removes the cause of the issue (flooding of the log), what you describe is improvement in how to work w/ content in templates. I would suggest to create new ticket with info you describe if this is what you really want to push forward.&lt;/p&gt;</comment>
                            <comment id="137447" author="cringele" created="Thu, 12 Jan 2017 11:30:12 +0100"  >&lt;p&gt;&lt;a href=&quot;https://jira.magnolia-cms.com/secure/ViewProfile.jspa?name=had&quot; class=&quot;user-hover&quot; rel=&quot;had&quot;&gt;had&lt;/a&gt; regarding  &lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;It would have been great if you contributed your point already back in December&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;I would have loved to, but it is out of my view impossible to know when you guys suddenly discuss/take care of a ticket (this is no critics).&lt;br/&gt;
Sometimes tickets are not touched over months, sometimes they are suddenly taken into account within days.&lt;/p&gt;

&lt;p&gt;If not working every day based with Jira &amp;amp; projects, its almost impossible to keep track of all the tickets that might be relevant:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;especially if ever helped out in support -&amp;gt; over-flood of mails (all cross tickets worked on etc.)&lt;/li&gt;
	&lt;li&gt;maybe gave a week of training or something alike (holidays) -&amp;gt; impossible to detect over hundreds of mails that the one ticket changed.&lt;/li&gt;
	&lt;li&gt;the more tickets created, the harder to track them -&amp;gt; I can show you tickets I created 3 years ago that are still untouched.&lt;/li&gt;
	&lt;li&gt;There is no good mail filter possibility to really filter your own created when being changed out of the mail floods.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;What I&apos;m trying to say is:&lt;br/&gt;
It would be nice if the (magnolia) person, that created an issue, is actively quickly informed &quot;that a ticket is now in discussion&quot;.&lt;br/&gt;
That would cost 10 seconds for the one starting the process.&lt;br/&gt;
Where scanning them all all the time for the creator is very time consuming to do.&lt;br/&gt;
That&apos;s why I missed the whole debate about this ticket which is really a pitty.&lt;/p&gt;

&lt;p&gt;One creates a ticket, takes the time to create patches etc, but is not informed when his ticket is discussed.&lt;br/&gt;
O know you guys have to manage it with Jira, but you do it on daily bases in a PD process with duties and scoped.&lt;br/&gt;
In other teams its much much harder to keep up track as one is not involved in all these processes.&lt;br/&gt;
So I really try to ask nicely:&lt;br/&gt;
It would be great, instead of the simple answer &quot;just check your jira issues&quot; (which I did but it was already to late), to get quickly actively informed when a ticket is discussed. Especially the once somebody takes time to write a bigger text and provide patches. Otherwise its just lost invested time.&lt;/p&gt;</comment>
                            <comment id="137454" author="had" created="Thu, 12 Jan 2017 12:43:38 +0100"  >&lt;blockquote&gt;&lt;p&gt;It would be nice if the (magnolia) person, that created an issue, is actively quickly informed &quot;that a ticket is now in discussion&quot;.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;That would cost 10 seconds for the one starting the process.&lt;/p&gt;

&lt;p&gt;It is being done, and doesn&apos;t take even 10 seconds, as soon as ticket status is changed, jira notification is sent by mail to the creator of the ticket. &lt;br/&gt;
If you have missed that one, my guess would be that most likely, at some point, you were getting too many of those and decided to create mail filter to delete them automatically (or put in a place you don&apos;t really look anymore). So, if that is the case, I&apos;d suggest to either reconfigure such filter or go to jira settings for your account and change there what notifications you want to be getting. It is hard, I&apos;m not saying it is easy, but finding right pattern for yourself to filter out information that is sent your way it is only way to keep sanity when working with project as big as Magnolia is. Having someone else than jira to drop you mail just so you don&apos;t need to modify your overzealous mail filter is not.&lt;/p&gt;


&lt;p&gt;BTW, the note about mentioning it back in December was not a complain, merely part of explanation why now it was too late to change description and scope of the ticket as we can&apos;t manipulate history in git and code for original scope have been already merged there. I have no issue following up on separate ticket.&lt;/p&gt;</comment>
                            <comment id="139725" author="cringele" created="Mon, 27 Feb 2017 16:58:39 +0100"  >&lt;p&gt;Yes, BUT:&lt;br/&gt;
What if somebody is giving a training, on vacation or otherwise not able to scan all the tickets mails in general?&lt;br/&gt;
In addition I receive about 150 mails a day from Jira, from all projects and so on.&lt;br/&gt;
I have about 50 mail filter set, helps only partially.&lt;br/&gt;
We create in various projects tickets, which sometimes are not touched for months, and then suddenly they are.&lt;br/&gt;
So you really suggest that I keeps an eye on all projects I ever created a ticket, just to fetch the mail then suddenly an issue is discussed by you guys.&lt;/p&gt;

&lt;p&gt;Sorry, I think this whole argument / facts from you side are very weak. It is supper bound to the way the PD team works.&lt;br/&gt;
One is responsible for a project in jira, a module or something alike, they have a constrained scope.&lt;br/&gt;
OR their duty is scanning all the new and open ticket.&lt;br/&gt;
Ours is not, we see things, open a ticket.&lt;/p&gt;

&lt;p&gt;If you guys manage to change, that tickets are dead sometimes for months, then it could work.&lt;br/&gt;
But as long this is not the case its just a cheap excuse....&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10022">
                    <name>supersession</name>
                                            <outwardlinks description="supersedes">
                                        <issuelink>
            <issuekey id="26380">MAGNOLIA-4671</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="36424" name="SessionUtil.patch" size="4320" author="cringele" created="Thu, 10 Nov 2016 13:12:56 +0100"/>
                            <attachment id="36423" name="TemplatingFunctions.patch" size="2510" author="cringele" created="Thu, 10 Nov 2016 13:12:56 +0100"/>
                    </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_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>Thu, 10 Nov 2016 13:18:58 +0100</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>
                            6 years, 50 weeks, 6 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10020" key="com.atlassian.jira.toolkit:attachments">
                        <customfieldname>Number of attachments</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2.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>had</customfieldvalue>
            <customfieldvalue>rkovarik</customfieldvalue>
            <customfieldvalue>tgregovsky</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
                        <customfieldname>Patch included</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10100"><![CDATA[Yes]]></customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_10833" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|hzzzzn:9a90vhlzy9004zy7ie</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_10245" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="390">Kromeriz 75</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10242" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Story Points</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>3.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>