Ok, here's what I've got; there's something going on with the drop-site command
that I don't understand.
When I form my CSS like this:
chapter:before[navtitle]{
content: paragraph(content(item-collapser(), " ",
attr(navtitle), " ",
drop-site(icon, icon(drop),
command, "setObject",
parameter, "href anyURI - '%{value}'"),
" ",
xpath("if(substring-after(substring-after(substring-after(substring-after(@href,'/Content/'),
'/'), '/'), '/'),
substring-after(substring-after(substring-after(substring-after(@href,'/Content/'),'/'),'/'),'/'),
substring-after(substring-after(substring-after(@href,'/Content/'), '/'), '/'),
substring-after(substring-after(substring-after(@href,'/Content/'),'/'),'/'),
substring-after(substring-after(@href,'/Content/'),'/'),
substring-after(substring-after(@href,'/Content/'),'/'), substring-after(@href,'//')
)"
),
" "
),
topicref-format());
}
When I open the document the abbreviated path created by the xpath command is displayed
correctly. When I drop a new target on the drop-site, however, the path fails to redraw.
When I insert an extra " attr(href)," between the parameter and the xpath
command, however, it behaves differently. When the document is first opened both the full
path (the result of the attr(href), command) and xpath output are displayed. When I drop
a new target on the drop-site, the output of the attr(href), command disappears and the
xpath output is redrawn correctly.
I can't see any reason for this behavior in the documentation of the drop-site
command. Does this make any sense to you?
chapter:before[navtitle]{
content: paragraph(content(item-collapser(), " ",
attr(navtitle), " ",
drop-site(icon, icon(drop),
command, "setObject",
parameter, "href anyURI - '%{value}'"),
" ",
attr(href),
xpath("if(substring-after(substring-after(substring-after(substring-after(@href,'/Content/'),
'/'), '/'), '/'),
substring-after(substring-after(substring-after(substring-after(@href,'/Content/'),'/'),'/'),'/'),
substring-after(substring-after(substring-after(@href,'/Content/'), '/'), '/'),
substring-after(substring-after(substring-after(@href,'/Content/'),'/'),'/'),
substring-after(substring-after(@href,'/Content/'),'/'),
substring-after(substring-after(@href,'/Content/'),'/'), substring-after(@href,'//')
)"
),
" "
),
topicref-format());
}