<!-- 
RSS generated by JIRA (9.4.2#940002-sha1:46d1a51de284217efdcb32434eab47a99af2938b) at Sun Feb 11 23:58:30 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>[CELUM-43] Cannot select CELUM assets from CK-Editor</title>
                <link>https://jira.magnolia-cms.com/browse/CELUM-43</link>
                <project id="17110" key="CELUM">Celum DAM Connector </project>
                    <description>&lt;p&gt;When picking assets from CK Editor, since Magnolia 6.2.18, we expect to be able to see &amp;amp; pick both Magnolia DAM assets as well as CELUM assets.&lt;/p&gt;

&lt;p&gt;However, only Magnolia DAM assets are shown.&lt;/p&gt;

&lt;p&gt;Here is our ckeditor configuration from ui-module-core/src/main/resources/ui-module-core/webresources/ckeditor/config/ui-ckeditor-linking.js:&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;
/**
 * Used &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; UI CKEditor variants &lt;span class=&quot;code-quote&quot;&gt;&quot;ui-ckeditor-1-basic-field&quot;&lt;/span&gt; and &lt;span class=&quot;code-quote&quot;&gt;&quot;ui-ckeditor-3-basic-area&quot;&lt;/span&gt;.
 *
 * Noteworthy places of CK Editor in magnolia:
 * CK Editor is defined in: magnolia-ui-vaadin-common-widgets-6.2.jar!/VAADIN/js/ckeditor
 * The &lt;span class=&quot;code-keyword&quot;&gt;default&lt;/span&gt; magnolia config is in: magnolia-ui-framework-6.2.jar!/mgnl-resources/ckeditor/config-magnolia.js
 * The &lt;span class=&quot;code-keyword&quot;&gt;class &lt;/span&gt;info.magnolia.ui.field.factory.RichTextFieldFactory handles the initialisation of the CK Editor
 *
 * Developers Info: When developing changes are only applied &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; you logout from admincentral and login again.
 */
&lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; basePath = window.location.href.replace(/^[a-zA-Z]{3,5}\:\/{2}[a-zA-Z0-9_.:-]+\&lt;span class=&quot;code-comment&quot;&gt;//, &lt;span class=&quot;code-quote&quot;&gt;&apos;/&apos;&lt;/span&gt;).replace(/\.magnolia.*/, &lt;span class=&quot;code-quote&quot;&gt;&apos;.resources/&apos;&lt;/span&gt;);
&lt;/span&gt;
CKEDITOR.plugins.addExternal(&lt;span class=&quot;code-quote&quot;&gt;&quot;magnoliaFileBrowser&quot;&lt;/span&gt;, CKEDITOR.vaadinDirUrl + &lt;span class=&quot;code-quote&quot;&gt;&quot;js/filebrowser/&quot;&lt;/span&gt;);


CKEDITOR.editorConfig = function (config) {

    &lt;span class=&quot;code-comment&quot;&gt;//Remove unused plugins
&lt;/span&gt;    config.removePlugins = &lt;span class=&quot;code-quote&quot;&gt;&apos;list,elementspath,filebrowser&apos;&lt;/span&gt;;

    &lt;span class=&quot;code-comment&quot;&gt;//Add additional plugins
&lt;/span&gt;    config.extraPlugins = &lt;span class=&quot;code-quote&quot;&gt;&apos;magnolialink,magnoliaFileBrowser&apos;&lt;/span&gt;;

    &lt;span class=&quot;code-comment&quot;&gt;//Toolbar Layout
&lt;/span&gt;    &lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; toolbar = [
        {name: &lt;span class=&quot;code-quote&quot;&gt;&quot;basicstyles&quot;&lt;/span&gt;, items: [&lt;span class=&quot;code-quote&quot;&gt;&quot;Bold&quot;&lt;/span&gt;]},
        {name: &lt;span class=&quot;code-quote&quot;&gt;&quot;links&quot;&lt;/span&gt;, items: [&lt;span class=&quot;code-quote&quot;&gt;&quot;Link&quot;&lt;/span&gt;, &lt;span class=&quot;code-quote&quot;&gt;&quot;InternalLink&quot;&lt;/span&gt;, &lt;span class=&quot;code-quote&quot;&gt;&quot;DamLink&quot;&lt;/span&gt;, &lt;span class=&quot;code-quote&quot;&gt;&quot;Unlink&quot;&lt;/span&gt;]},
        {name: &lt;span class=&quot;code-quote&quot;&gt;&quot;actions&quot;&lt;/span&gt;, items: [&lt;span class=&quot;code-quote&quot;&gt;&quot;SpecialChar&quot;&lt;/span&gt;, &lt;span class=&quot;code-quote&quot;&gt;&quot;Superscript&quot;&lt;/span&gt;]},
    ];

    config.toolbar = &lt;span class=&quot;code-quote&quot;&gt;&quot;linking&quot;&lt;/span&gt;;
    config.toolbar_linking = toolbar;

    &lt;span class=&quot;code-comment&quot;&gt;//Other configs
&lt;/span&gt;    config.disableNativeSpellChecker = &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;;
    config.enterMode = CKEDITOR.ENTER_P;
    config.shiftEnterMode = CKEDITOR.ENTER_BR;
    config.removeDialogTabs = &lt;span class=&quot;code-quote&quot;&gt;&apos;link:advanced&apos;&lt;/span&gt;;
    config.pasteFromWordRemoveStyles = &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;;
    config.pasteFromWordRemoveFontStyles = &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;;
    config.resize_enabled = &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;;
    config.autoParagraph = &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;;
};

&lt;span class=&quot;code-comment&quot;&gt;//Remove HTML Comments when pasting
&lt;/span&gt;CKEDITOR.on(&lt;span class=&quot;code-quote&quot;&gt;&apos;instanceReady&apos;&lt;/span&gt;, function (ev) {
    ev.editor.on(&lt;span class=&quot;code-quote&quot;&gt;&apos;paste&apos;&lt;/span&gt;, function (evt) {
        &lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; regex = /&amp;lt;\!--.*--&amp;gt;/g;
        &lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt; cleaned = evt.data.dataValue.replace(regex, &apos;&apos;);
        evt.data.dataValue = cleaned;
    }, &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;, &lt;span class=&quot;code-keyword&quot;&gt;null&lt;/span&gt;, 9);
});

&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Here is our dialog definition using that CKEditor-Definition&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;
$type: uiRichTextField
height: 250
configJsFile: /.resources/ui-module-core/webresources/ckeditor/config/ui-ckeditor-linking.js
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Also, really weird technical nodes are listed when I click on List View.&lt;/p&gt;

&lt;p&gt;No errors / no output are shown in log.&lt;/p&gt;

&lt;p&gt; &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;95378_thumb&quot; href=&quot;https://jira.magnolia-cms.com/secure/attachment/95378/95378_screenshot-2.png&quot; title=&quot;screenshot-2.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;95378&quot; file-preview-title=&quot;screenshot-2.png&quot;&gt;&lt;img src=&quot;https://jira.magnolia-cms.com/secure/thumbnail/95378/_thumb_95378.png&quot; style=&quot;border: 0px solid black&quot; role=&quot;presentation&quot;/&gt;&lt;/a&gt;&lt;/span&gt; &lt;/p&gt;

&lt;p&gt; &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;95377_thumb&quot; href=&quot;https://jira.magnolia-cms.com/secure/attachment/95377/95377_screenshot-1.png&quot; title=&quot;screenshot-1.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;95377&quot; file-preview-title=&quot;screenshot-1.png&quot;&gt;&lt;img src=&quot;https://jira.magnolia-cms.com/secure/thumbnail/95377/_thumb_95377.png&quot; style=&quot;border: 0px solid black&quot; role=&quot;presentation&quot;/&gt;&lt;/a&gt;&lt;/span&gt; &lt;/p&gt;

&lt;p&gt; &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;a id=&quot;95379_thumb&quot; href=&quot;https://jira.magnolia-cms.com/secure/attachment/95379/95379_screenshot-3.png&quot; title=&quot;screenshot-3.png&quot; file-preview-type=&quot;image&quot; file-preview-id=&quot;95379&quot; file-preview-title=&quot;screenshot-3.png&quot;&gt;&lt;img src=&quot;https://jira.magnolia-cms.com/secure/thumbnail/95379/_thumb_95379.png&quot; style=&quot;border: 0px solid black&quot; role=&quot;presentation&quot;/&gt;&lt;/a&gt;&lt;/span&gt; &lt;/p&gt;</description>
                <environment></environment>
        <key id="112436">CELUM-43</key>
            <summary>Cannot select CELUM assets from CK-Editor</summary>
                <type id="1" iconUrl="https://jira.magnolia-cms.com/secure/viewavatar?size=xsmall&amp;avatarId=10883&amp;avatarType=issuetype">Bug</type>
                                            <priority id="1" iconUrl="https://jira.magnolia-cms.com/images/icons/priorities/blocker.svg">Blocker</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="2">Won&apos;t Fix</resolution>
                                        <assignee username="rfalvo">Raphael Falvo</assignee>
                                    <reporter username="cchard">Christopher Chard</reporter>
                        <labels>
                    </labels>
                <created>Mon, 30 May 2022 16:29:02 +0200</created>
                <updated>Wed, 8 Jun 2022 16:08:53 +0200</updated>
                            <resolved>Thu, 2 Jun 2022 14:36:13 +0200</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>2</watches>
                                                                                                                <comments>
                            <comment id="308936" author="JIRAUSER22286" created="Tue, 31 May 2022 10:18:28 +0200"  >&lt;p&gt;Hello &lt;a href=&quot;https://jira.magnolia-cms.com/secure/ViewProfile.jspa?name=cchard&quot; class=&quot;user-hover&quot; rel=&quot;cchard&quot;&gt;cchard&lt;/a&gt; ,&lt;/p&gt;

&lt;p&gt;&lt;em&gt;uiRichTextField&lt;/em&gt; seems to be a custom field in your project.&lt;/p&gt;

&lt;p&gt;I&apos;ve tried with your ckeditor config together with a standard richTextField&#160; ($type: richTextField) and link chooser is displaying both JCR and Celum assets.&lt;/p&gt;

&lt;p&gt;I don&apos;t know the background and why you are using a custom field here, but in order to try identifying the root cause and making sure it&apos;s not the guilty one, could you please try using a regular richTextField and see how it goes ?&lt;/p&gt;

&lt;p&gt;Thanks. Rapha&#235;l&lt;/p&gt;</comment>
                            <comment id="308973" author="cchard" created="Tue, 31 May 2022 11:17:29 +0200"  >&lt;p&gt;Great advice! I overlooked that we are using sthg custom here.&lt;/p&gt;

&lt;p&gt;It works with vanilla $type: richTextField !&lt;br/&gt;
However, no paging and it iterates over all sub-nodes which makes everything very slow... Should I open another ticket for this aspect?&lt;/p&gt;</comment>
                            <comment id="309450" author="JIRAUSER22286" created="Thu, 2 Jun 2022 14:33:56 +0200"  >&lt;p&gt;Hi &lt;a href=&quot;https://jira.magnolia-cms.com/secure/ViewProfile.jspa?name=cchard&quot; class=&quot;user-hover&quot; rel=&quot;cchard&quot;&gt;cchard&lt;/a&gt;&#160;&lt;/p&gt;

&lt;p&gt;Thanks for your feedback. Yes please create another one for this aspect, as current one looks to be fixed.&lt;/p&gt;

&lt;p&gt;You are right nevertheless, pagination was not in scope for the richText links. We will see what we can do there&lt;/p&gt;</comment>
                            <comment id="309451" author="JIRAUSER22286" created="Thu, 2 Jun 2022 14:36:13 +0200"  >&lt;p&gt;Works with regular RichTextField, but without pagination. Customer will create another ticket for this feature&lt;/p&gt;</comment>
                            <comment id="310460" author="cchard" created="Wed, 8 Jun 2022 16:08:53 +0200"  >&lt;p&gt;See &lt;a href=&quot;https://jira.magnolia-cms.com/browse/CELUM-44&quot; title=&quot;Rich-Text-Links to external DAM do not use pagination / picking remains slow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;CELUM-44&quot;&gt;&lt;del&gt;CELUM-44&lt;/del&gt;&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                            <attachment id="95377" name="screenshot-1.png" size="47291" author="cchard" created="Mon, 30 May 2022 16:36:01 +0200"/>
                            <attachment id="95378" name="screenshot-2.png" size="7061" author="cchard" created="Mon, 30 May 2022 16:36:23 +0200"/>
                            <attachment id="95379" name="screenshot-3.png" size="76793" author="cchard" created="Mon, 30 May 2022 16:36:59 +0200"/>
                            <attachment id="95429" name="screenshot-4.png" size="12378" author="cchard" created="Tue, 31 May 2022 12:44:20 +0200"/>
                    </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>union-investment.de</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10031" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of First Response</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Tue, 31 May 2022 10:18:28 +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>cchard</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_13136" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            1 year, 35 weeks, 4 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10020" key="com.atlassian.jira.toolkit:attachments">
                        <customfieldname>Number of attachments</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>4.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10150" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname>Number of comments</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>5.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10011" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>cchard</customfieldvalue>
            <customfieldvalue>rfalvo</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_10833" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|y06uei:</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_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>
                                                                                                                                                                                                            <customfield id="customfield_13933" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Urgency (resolution)</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="15724"><![CDATA[Normal]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>