Chris Bowditch | 1 Mar 2012 12:48
Picon
Favicon

Re: Event "feedback" logging

On 24/02/2012 15:03, Steve Ebersole wrote:

Hi Stevem
> I develop a library (jDocBook) that does DocBook related tasks as part 
> of Maven or Gradle builds.  Initially, the output from FOP was so 
> verbose that I ended up redirecting all console output to a file for a 
> variety of reasons.
>
> On recently upgrading to 1.0 I noticed that some logging was again 
> appearing in the build console.  Which led me to discover the addition 
> of feedback events in 1.0 and that these were (at least some of) the 
> messages showing up in the console.  So I whipped up a custom 
> org.apache.fop.events.EventListener based on the well detailed 
> http://xmlgraphics.apache.org/fop/1.0/events.html page and some of the 
> messages were again gone from the console and showing up in the 
> redirection file again.  Yaay!
>
> But others are still showing up in the console.  I'd like to know how 
> to get these messages to show up only in the redirection file.  The 
> messages still showing up in the console were:

Yeah thats a bug bear I have about FOP too. When the event system was 
introduced a number of warning and informational messages were left 
using the old logging framework, which means some important warnings are 
not captured by the event framework and by efault end up on stdout. It 
will be a big job to get all messages routed into the Event Framework.

> 1) Defined font directory [...] is not exist or is not a directory
> 2) Couldn't find hyphenation pattern en
> 3) span="inherit" on fo:block, but no explicit value found on the 
(Continue reading)

Chris Bowditch | 1 Mar 2012 13:08
Picon
Favicon

Re: Shipping fop with complex script support

On 27/02/2012 18:34, Jonathan Levinson wrote:
Hi Jonathon,

> We are looking to bundle fop with its new complex script support with 
> a reporting package that will be deployed at many institutions and 
> many hospitals. We support many hospitals in the Middle East and they 
> will be affected.
>
> I’m looking for advice on when I should take a time-slice of the 
> trunk. Or is it the case that a new version of FOP will be available 
> soon, and it would be better (and still preserve timeliness) to wait 
> for that?
>
> What is the schedule for the next FOP release? At what point is the 
> trunk stable enough to ship?
>
> I’m not asking a scientifically precise question that has a 
> scientifically precise answer, but I’m looking for pragmatic advice.
>

I believe Glenn Adams is planning to work on a release of FOP in the 
near term. Exactly when I don't know. First of all we need to discuss it 
on fop-dev. Typically a release candidate would be buolt first and the 
community allowed to test it. During which time we can iron out any 
instabilities before building the final release.

Thanks,

Chris
>
(Continue reading)

Alexios Giotis | 1 Mar 2012 21:03
Picon
Gravatar

Distribution of AFP outline & raster fonts with FOP

Hi,

I am generally interested in producing AFP with FOP and actually I am in the process of doing so for a big
project with complex layouts that already uses FOP to produce PDF files. Unfortunately, there are
several problems that came up and I am investigating (but don't want to mention in this thread). 

While I am in that process, I am using AFP outline & raster fonts as it is generally required by printing
houses to embed in an AFP all the referenced resources. The FOP project supports embedding AFP fonts, but
has none in it's distribution. I think it would be very helpful to have some fonts for development, for
automated testing and for the users. With the help of a colleague that owns a license for a commercial tool,
we could convert truetype or opentype fonts to AFP raster and outline fonts. 

Since I am not an expert in legal issues, has anybody checked the licensing schemes ? 

For example, if we convert this font [1]  to an AFP font, could it be distributed with FOP ? Any pointers to
other free fonts ?

[1] http://www.gnu.org/software/freefont/license.html

Alex Giotis
Wegmann Frank | 2 Mar 2012 10:59
Picon

PCL output compliance

Hi <at> all,

I've got a problem migrationg my application from 0.20.5 to 1.0.
I'm processing a fop-document to PCL with the old version and the printer of my customer
is able to handle the output. Unfortunately I don't have any direct access to
this printer. If I try the new fop version it fails. I tried to change the mime type from
MimeConstants.MIME_PCL to MimeConstants.MIME_PCL_ALT, but without success.
If I try to open this document with OpenPCL an exception is thrown, as there
are decimals used for positioning an "+-" relative positioning, although it seems to be compliant
to the standard. I don't know, if there is any relationship between the problem
of printing and opening it with OpenPCL.
Does anyone have similar problems and  could figure out the reason and a possible solution?
What kind of changes have been made between those versions for rendering PCL?

Cheers,
Frank

Dan Piccolo | 2 Mar 2012 19:52
Picon

Question re: dynamic table rendering

Hi there,

Perhaps it's already in a thread somewhere, but I couldn't find it,
and if someone knows of the thread to look for it'd be appreciated,
but anyway, I better ask this question.

I have dynamic XML being generated tables (this is a web application).

However, depending on the user's query structure, they may have more
columns and data than a standard 11x8.5 in landscape page.

Is there any built in functionality, or technique I could use to make
this output print like an Excel worksheet?

I know this is asking for a lot, but I'm wondering if anyone has come
across this problem and got a work around.

(even if it's something like calculating page widths based on content,
and making multiple layouts).

Thanks in advance guys.
Rob Sargent | 2 Mar 2012 20:07
Favicon

Re: Question re: dynamic table rendering

Take a look at the thread Vincent and I had under heading "flow 
sideways".  tricks with printing first half, then second half by 
doubling the declared size of the page.

On 03/02/2012 11:52 AM, Dan Piccolo wrote:
> Hi there,
>
> Perhaps it's already in a thread somewhere, but I couldn't find it,
> and if someone knows of the thread to look for it'd be appreciated,
> but anyway, I better ask this question.
>
> I have dynamic XML being generated tables (this is a web application).
>
> However, depending on the user's query structure, they may have more
> columns and data than a standard 11x8.5 in landscape page.
>
> Is there any built in functionality, or technique I could use to make
> this output print like an Excel worksheet?
>
> I know this is asking for a lot, but I'm wondering if anyone has come
> across this problem and got a work around.
>
> (even if it's something like calculating page widths based on content,
> and making multiple layouts).
>
> Thanks in advance guys.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: fop-users-unsubscribe <at> xmlgraphics.apache.org
> For additional commands, e-mail: fop-users-help <at> xmlgraphics.apache.org
>
Dan Piccolo | 2 Mar 2012 20:19
Picon

Re: Question re: dynamic table rendering

Thanks Robert, I'll look into it.

On Fri, Mar 2, 2012 at 3:37 PM, Rob Sargent <rsargent <at> xmission.com> wrote:
> Take a look at the thread Vincent and I had under heading "flow sideways".
>  tricks with printing first half, then second half by doubling the declared
> size of the page.
>
>
>
>
> On 03/02/2012 11:52 AM, Dan Piccolo wrote:
>>
>> Hi there,
>>
>> Perhaps it's already in a thread somewhere, but I couldn't find it,
>> and if someone knows of the thread to look for it'd be appreciated,
>> but anyway, I better ask this question.
>>
>> I have dynamic XML being generated tables (this is a web application).
>>
>> However, depending on the user's query structure, they may have more
>> columns and data than a standard 11x8.5 in landscape page.
>>
>> Is there any built in functionality, or technique I could use to make
>> this output print like an Excel worksheet?
>>
>> I know this is asking for a lot, but I'm wondering if anyone has come
>> across this problem and got a work around.
>>
>> (even if it's something like calculating page widths based on content,
>> and making multiple layouts).
>>
>> Thanks in advance guys.
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: fop-users-unsubscribe <at> xmlgraphics.apache.org
>> For additional commands, e-mail: fop-users-help <at> xmlgraphics.apache.org
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: fop-users-unsubscribe <at> xmlgraphics.apache.org
> For additional commands, e-mail: fop-users-help <at> xmlgraphics.apache.org
>
bonekrusher | 3 Mar 2012 21:32
Picon
Favicon
Gravatar

WARNING: 1 link target could not be fully resolved and was now point to the top of the page or is dysfunctional.


Hi,

I am using FOP 0.95 and get the below error. I am using a somewhat
complicated page-sequence-master. I narrowed the area of the FO that is for
some reason not printing out. 

WARNING: 1 link target could not be fully resolved and was now point to the
top of the page or is dysfunctional.

What does this mean?

I can prepare a repo of the problem if needed.

Thx

--

-- 
View this message in context: http://old.nabble.com/WARNING%3A-1-link-target-could-not-be-fully-resolved-and-was-now-point-to-the-top-of-the-page-or-is-dysfunctional.-tp33435771p33435771.html
Sent from the FOP - Users mailing list archive at Nabble.com.
Luis Bernardo | 4 Mar 2012 00:22
Picon

Re: WARNING: 1 link target could not be fully resolved and was now point to the top of the page or is dysfunctional.


First you should test with FOP 1.0. If the problem is also present there 
please provide a (slimmed down if possible) example fo file that shows 
the issue and then it will be easier to help.

On 3/3/12 8:48 PM, bonekrusher wrote:
> Hi,
>
> I am using FOP 0.95 and get the below error. I am using a somewhat
> complicated page-sequence-master. I narrowed the area of the FO that is for
> some reason not printing out.
>
> WARNING: 1 link target could not be fully resolved and was now point to the
> top of the page or is dysfunctional.
>
> What does this mean?
>
> I can prepare a repo of the problem if needed.
>
> Edit: Some additional info - The page-sequence is 2 column. The fo:blocks
> that are not showing up when I use  <at> span="all"
>
> Thx
>
>
bonekrusher | 4 Mar 2012 02:38
Picon
Favicon
Gravatar

Re: WARNING: 1 link target could not be fully resolved and was now point to the top of the page or is dysfunctional.


Thanks. I confirmed that this does not happen in 1.0. I think I found a
work-a-around for 0.95. If I have any issues, I will post back. thx for the
help.

lmpmbernardo wrote:
> 
> 
> First you should test with FOP 1.0. If the problem is also present there 
> please provide a (slimmed down if possible) example fo file that shows 
> the issue and then it will be easier to help.
> 
> 
--

-- 
View this message in context: http://old.nabble.com/WARNING%3A-1-link-target-could-not-be-fully-resolved-and-was-now-point-to-the-top-of-the-page-or-is-dysfunctional.-tp33435771p33436690.html
Sent from the FOP - Users mailing list archive at Nabble.com.

Gmane