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.
Issue Links
Activity
Jason van Zyl
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Assignee | Jason van Zyl [ jason ] |
Lukas Theussl
made changes -
| Component/s | Module - Apt [ 12814 ] |
Lukas Theussl
made changes -
| Fix Version/s | 1.0-beta-1 [ 13617 ] |
Lukas Theussl
made changes -
Lukas Theussl
made changes -
Lukas Theussl
made changes -
| Assignee | Jason van Zyl [ jason ] | Lukas Theussl [ lukas ] |
| Resolution | Won't Fix [ 2 ] | |
| Status | Open [ 1 ] | Closed [ 6 ] |
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.