scenario parms from command line

november
Posts: 7
Joined: Mon May 23, 2011 9:14 pm

scenario parms from command line

Post by november »

Hi,

I've set the profile.condition (Docbook 5) parameter for graphics like this:
imageobject condition="print"

(or "web" for help) to set the scale value.

When I try building the PDF from the command line (using Saxon 6.5), I use the following:

-dprofile.condition=print

but the value is ignored. Graphics are all scaled to 100% which is not what I want.

My question is: how do I get Saxon to recognize scenario parameters?
sorin_ristache
Posts: 4141
Joined: Fri Mar 28, 2003 2:12 pm

Re: scenario parms from command line

Post by sorin_ristache »

Hello,

The parameter is passed to the stylesheet in the form paramName=paramValue, that is without -d, for example:

Code: Select all

java -cp saxon.jar com.icl.saxon.StyleSheet source.xml stylesheet.xsl profile.condition=print

Regards,
Sorin
Post Reply