I am trying to include some images in a Genshi template for my Trac plugin, but it always shows only the alternative text because it cannot find the images.
I have the following (X)HTML code:
<div>
<img src="file://c:/path/to/image.png" alt="asdf" />
</div>
When I use this code with a simple html file and open it in the browser, the image is displayed correctly, which means that both the path and syntax are correct.
But when I insert the code snippet into a Genshi template and use it within Trac, the image cannot be found. However, when I look at the HTML source code in the web browser and copy the URLs into a new browser tab, it is again displayed correctly. This means that only the server cannot find the image.
The images are in a directory inside the python-egg file, and the path points directly to the directory created by Trac, which also contains my CSS and HTML files, both of which are loaded correctly. The images are correctly referenced in the setup script which creates the egg.
How do I have to reference images in (X)HTML documents when using them with a server?
Is there a special way to include images in Genshi documents? (I haven't found one.)
Thanks to the comment of RjOllos and this site I was able to fix it by trying all of the URL types. Although it says for a plugin to be /chrome/<pluginname>
, it was actually just /chrome
that worked. See the edit below! So the full URL is then <ip>:<port>/chrome/path/to/image.png
.
EDIT: I discovered I actually used the /chrome/pluginname
version, just that I did not use the name of my plugin as "pluginname". See my comment below. It seems like /chrome/pluginname
should actually be /chrome/htdocsname
or something like that, in case you use a different name rather than the plugin name when implementing the ITemplateProvider. In my case I called it images
, which was the same name as the folder. END OF EDIT
Another mistake I made was forgetting the initial slash (chrome/path/to/image.png
), which caused Trac to assemble the URL to <ip>:<port>/<current page>/chrome/path/to/image.png
.