Originally posted by Bear Bibeault:
I assume you mean "within" rather than "from".
That's what I mean.
Is there a reason you want to use tag files for this -- or is that choice merely to avoid Classic tag handlers?
tag files are easy.
[ March 24, 2006: Message edited by: Bear Bibeault ]
It made it using dynamic attributes and a tokenized value (delim is "|").
<a:m4 id="myEventsTabs" bundle="${resBundle}"
selectedId="MyHistory"
MyCalendar="label.myCalendar|#"
MyHistory="label.myHistory|#"
></a:m4>
In the tag file, the undeclared attributes end up in the map, The map is iterated over.
Each entry.key is a tab id, the entry.value is split. The first part is the resource-bundle key, the second key is the href (just "#" for now).
I don't actually like using | to delimit data. It's obvious w/o explanation. It works. It could be cleaner.