Expand my Community achievements bar.

SOLVED

Core components - Download - adds .coredownload to the filename

Avatar

Level 2

Why core Download component (https://docs.adobe.com/content/help/en/experience-manager-core-components/using/components/download....) adds .coredownload to the end of filename (before the extension)?

e.g. link to any /content/dam/.../filename.pdf file is rendered as /content/dam/.../filename.coredownload.pdf

 

Is there a way to remove it ?

Why doesn't it reference an asset by using a direct asset path in DAM (fileReference property) ?

 

 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Core components added coredownload selector to path to trigger https://github.com/adobe/aem-core-wcm-components/blob/master/bundles/core/src/main/java/com/adobe/cq...

which prepare the assets and deliver as an attachment otherwise the assets will be open in new page. Like creating any other link using RTE or other component.

 

If you will remove it from the URL then servlet will not be triggering to prepare assets.

 



Arun Patidar

View solution in original post

3 Replies

Avatar

Correct answer by
Community Advisor

Core components added coredownload selector to path to trigger https://github.com/adobe/aem-core-wcm-components/blob/master/bundles/core/src/main/java/com/adobe/cq...

which prepare the assets and deliver as an attachment otherwise the assets will be open in new page. Like creating any other link using RTE or other component.

 

If you will remove it from the URL then servlet will not be triggering to prepare assets.

 



Arun Patidar

Avatar

Level 2

IMHO thats a bad design decision.

Having a different URL is bad for all CDNs like Akamai.
Now since the path is different in the URL, the CDN considers it a different asset.
This means the asset is cached twice, which is a waste of resources, it can also be transmitted twice with different URLs, which again is inefficient in terms of caching browser-side.

On top of this, using a CDN typically requires a flush agent for the CDN. Now if an editor updates the original asset in place in DAM (say a PDF), the flush agent for Akamai must take that into account and flush two URLs:
/content/dam/site/myproduct.pdf
and
/content/dam/site/myproduct.pdf.coredownload.pdf

A core component should be smarter AND more flexible and at least make this behaviour configurable.
If someone from the Adobe product team reads this: please improve this as a feature request.

Avatar

Level 2

how to configure to remove the coredownload.inline.pdf from the file path