DO NOT REPLY [Bug 39608] NullPointerException when redering .fo file in TableLayoutManager.initialize

2012-04-01 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=39608

Glenn Adams gl...@skynav.com changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

--- Comment #5 from Glenn Adams gl...@skynav.com 2012-04-01 06:26:53 UTC ---
batch transition pre-FOP1.0 resolved+fixed bugs to closed+fixed

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


DO NOT REPLY [Bug 39608] - NullPointerException when redering .fo file in TableLayoutManager.initialize

2006-07-11 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=39608.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39608


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2006-07-11 12:47 ---
Should be fixed now: http://svn.apache.org/viewvc?rev=420824view=rev

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


DO NOT REPLY [Bug 39608] - NullPointerException when redering .fo file in TableLayoutManager.initialize

2006-06-08 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=39608.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39608


[EMAIL PROTECTED] changed:

   What|Removed |Added

  Attachment #18313|application/octet-stream|text/xml
  mime type||




-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


DO NOT REPLY [Bug 39608] - NullPointerException when redering .fo file in TableLayoutManager.initialize

2006-05-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=39608.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39608





--- Additional Comments From [EMAIL PROTECTED]  2006-05-19 13:41 ---
Here are my 2cts

- If a length is 0 it shouldn't matter which dimension it is.

- Most parts of the XSL-Fo spec try to mimic the common xhtml and css 
standards. In these the default 
for non-unit measurements is pixels. I'd therefore recommed using pixels if 
nothing is specified, and 
output a warning, something like measurement given without unit, pixels 
assumed.

- i don't know if fop already specifies pixels, if not, they could be 1/72 
(5.9.13.1)

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


DO NOT REPLY [Bug 39608] - NullPointerException when redering .fo file in TableLayoutManager.initialize

2006-05-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=39608.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39608





--- Additional Comments From [EMAIL PROTECTED]  2006-05-18 12:25 ---
Created an attachment (id=18313)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=18313action=view)
Letter  rendered using fop0.92beta


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.


DO NOT REPLY [Bug 39608] - NullPointerException when redering .fo file in TableLayoutManager.initialize

2006-05-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=39608.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39608


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




--- Additional Comments From [EMAIL PROTECTED]  2006-05-18 13:08 ---
The reason for the NullPointerException is your omitting the length unit. I went
into the spec and it suggests that the unit is optional but I didn't find any
hint what unit to use in case it's not specified. So the work-around for now is
to specify 0pt instead of 0 for the border-spacing property. The NPE is
certainly not nice so we need to do something.

What happens is the the value 0 is internally represented by a NumberProperty
which does not override Property's getLength() method which returns null. The
interesting thing is that specifying padding=0 doesn't produce such an error,
but then the values are represented as CondLengthProperty. Ideas, anyone?

http://www.w3.org/TR/xsl11/#numbers

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.