You are not logged in.
I have xinha running using the ImageManager plugin. I would like to have it insert the images using a relative path rather than a full http://www... path. Is there a way to get ImageManager to do that? I can post process the data to take out the full path but I would prefer to do this the "right" way.
Offline
Humm, if you want only ImageManager's links to be relative instead of absolute, i dont know if there is a way. However, there is a configuration variable in Xinha to do it, but that's will affects *all* links on your document.
config.stripBaseHref = true;
config.baseHref = 'http://www.yourDomain.com';
If you creating Xinha instances using the way explained in newbie guide, it will be something like this
xinha_config = new HTMLArea.Config();
xinha_config.stripBaseHref = true;
xinha_config.baseHref = 'http://www.yourDomain.com';
Offline