Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
Hello,
We're testing 6.0, hopfully implementing soon. There's one thing that bugs me that I can't find a setting for. By default, Arbortext is now collapsing the metadata tag and its sub tags for DITA maps and bookmaps, <topicmeta> and <bookmeta>.
Does anyone know how I can disable this? My users need to fill in several metadata tags, making them expand all of these tags each time they need to change something will be a headache for them, and will probably cause them to forget or not bother.
Thanks.
Thanks, Ed. I'll have to try getting that ACL to work. My first attempt wasn't successful, but I haven't had a lot of time for it so far today. I forgot to mention this is for the tag view.
I was hoping this was a configurable item since 5.4 didn't behave this way. Oh well, hopefully I can get the behavior I want through the ACL.
In Reply to Ed Benton:
You could try using some ACL. This might work:
i = arr[1];
if (oid_find_children(i, arr, "metadata"))
{
for (i in arr) { oid_expose(arr[i], 0); oid_expose(arr[i], 1); }
}
I haven't tried it, so no guarantees.
oid_expose(oid[, newval[, descend]])
This function returns 1 (True) if the content for the element identified by oid are displayed
in the Document Map window. Otherwise, it returns 0.
If newval is specified, it changes the state of the content display for oid. If 0, the content is
collapsed. If non-zero, the content lines for the element are displayed.
If descend is specified and non-zero, then oid_expose changes the exposed state of all
children of oid, recursively.
Note, the effect of this function is visible in the Document Map and Column view only.
The expose bit is independent of detailing, which is shown only in non-Document Map or
Column views.
Thanks, Dave. That fixed it. Though, it does seem more like a bug than an expected behavior that it does that when the sync is turned on. Is there an SPR to address this?