Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Won't Fix
-
Affects Version/s: 1.0-alpha-5, 1.0-alpha-6, 1.0-alpha-7, 1.0-alpha-8
-
Fix Version/s: 1.1
-
Component/s: Module - Apt
-
Labels:None
-
Number of attachments :
Description
Figures require extension in APT and they should not.
For example, http://ehcache.sourceforge.net/nameandlogo.html shows a broken image. The APT for this page is:
[images/ehcache_logo]
Now, if I change it to [images/ehcache_logo.gif] it works. However this breaks aptconvert. The reason is that it is illegal in APT to specify the figure extension. I use aptconvert to create a pdf and single HTML page.
I checked the source code. The relevant bit is
XhtmlSink#figureGraphics
/**
*/
public void figureGraphics( String name ) { write( " src=\"" + name + "\"" ); }
I do not see it writing an extension. I think that might be the problem.