Features added or updated for Web Content Integrator (WCI) in 6.1.0.5

Following features are added or updated for Web Content Integrator in 6.1.0.5

1. Added tags to allow inheritance to be enabled or disabled for an item in a feed
2. Reference Elements using their Name and Library instead of GUID (using GUID still supports)
3. Added supportl for handling the content with missing publish Date(empty , invalid)
4. Added support for creating Link Elements (earlier version supported only the upate)
5. Corrected the handling of missing Workflows content (earlier it simply thrown Null pointer but Handled to throw proper exception as this is anyhow a error scenario).


1. Following new tags will enable to allow inheritance to be enabled or disabled for an item in a feed.

Enable user inheritance:
<ibmwcm:access type="user" ibmwcm:inheritance="enabled"/>

Disable user inheritance:
<ibmwcm:access type="user" ibmwcm:inheritance="disabled"/>

Enable contributor inheritance:
<ibmwcm:access type="contributor"
ibmwcm:inheritance="enabled"/>

Disable contributor inheritance:
<ibmwcm:access type="contributor"
ibmwcm:inheritance="disabled"/>

Enable editor inheritance:
<ibmwcm:access type="editor" ibmwcm:inheritance="enabled"/>

Disable editor inheritance:
<ibmwcm:access type="editor" ibmwcm:inheritance="disabled"/>

Enable manager inheritance:
<ibmwcm:access type="manager" ibmwcm:inheritance="enabled"/>

Disable manager inheritance:
<ibmwcm:access type="manager" ibmwcm:inheritance="disabled"/>

2. The WCI, Reference Element is only able to reference components by GUID.
But with most recent update(PM26035) you can also Reference Elements using their Name and Library as below.

Option 1: Component in another Library:
<ibmwcm:element name="Reference-to-component-in-other-library">
<ibmwcm:type>reference</ibmwcm:type>
<ibmwcm:path library="Shared">DefaultHeader</ibmwcm:path>
</ibmwcm:element>

Option 2: Component in the feed library:
<ibmwcm:element name="Reference-to-component-feed-library">
<ibmwcm:type>reference</ibmwcm:type>
<ibmwcm:path>DefaultHeader</ibmwcm:path>
</ibmwcm:element>

No comments:

Post a Comment