We have some people at the office that use Microsoft
Publisher to quickly put together some webpage ideas.
I'm trying to incorporate into OFBiz without having to
retemplate what they've done. Everything works fine
except for displaying images. The convention that
Publisher uses is to store all embeded images in
/index_files (ie image1.gif = /index_files/image1.gif)
When it outputs through OFBiz it naturaly displays
this link as being
domainname/webappname/control/index_files/image1.gif
So, I created a request uri named "index_files"
Because of the final foreslash, the RequestHandler
treats image1.gif as non existing page request.
Any ideas? I've also considered running ?replace in
freemarker but my syntax was wrong there...
${${screens.render("component://xyz/webapp/xyz/publisher.abc.ftl")}?replace("string1",
"string2")}