RE: Centering a table

2003-01-21 Thread Jon Steeves
It worked (with some slight modifications).

Thanks very much to everyone who helped me solve this problem.

For those who are interested, here's the working code:

 



 
   
 


   
 
 
 
   
   
   
   

   
   
  
   
 
   
 
   

 



Cheers

Jon

-Original Message-
From: Clay Leeds [mailto:[EMAIL PROTECTED]
Sent: Monday, January 20, 2003 3:29 PM
To: [EMAIL PROTECTED]
Subject: Re: Centering a table


Jon,

Here's what I think J. meant to send you:

> You can use blind table columns with proportional column width
> for centering. The following will appear to center a 5cm
> column:
>   
> 
> 
> 
> 
>   
> 
> ...
> 
>   
>...
> Depending on your problem you can add the two columns for
> centering to the table you want to have centered, or you
> can use the code above and put the inner table into the
> cell with the content.
> 
> J.Pietschmann

In any case, the bottom line is that FOP doesn't really "center" tables. 
The workaround is that you'll need to nest the table you want "centered" 
in another table, and place table-columns to the left & right of the 
table-column which has the table you want centered. NOTE: I don't know 
the details on "proportional-column-width(1)" but if it does what I 
think it does, then that's pretty bitchin'!

Something like this:

   
 
 

 
 
   
 
 
 


   
   
   
   
   
   
  

 
   
 
   
 
   

Of course, if you were going to be cool, you'd make this a template... :-)

Hope this helps!

Web Maestro Clay

Jon Steeves wrote:
> Hello.  Here's a newbie question:
> 
> Does anyone know how to center this table on a page.  I've tried a bunch of 
> stuff and nothing works.  Here's the code:
> 
>
>
>
>
>
>
>
>   
>  
> 
> Jon Steeves
> Technical Communications
> [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: what's wrong with this?

2003-01-21 Thread joni santoso
yes it works. but is it possible to use something like 
attribute?

because when working in a large doc, it seems strange to 
write a script or cut and paste the doc.

thx
On Mon, 20 Jan 2003 12:35:08 +0530
 <[EMAIL PROTECTED]> wrote:
just reverse the page-sequence nodes and check it..
-Original Message-
From: joni santoso [mailto:[EMAIL PROTECTED]
Sent: Monday, January 20, 2003 12:15 PM
To: [EMAIL PROTECTED]
Subject: what's wrong with this?
hi,
below is my fo file. when i transform it using apache fop 
the result is a pdf  that the content of "other" is shown 
first.

is it possible to make apache fop display the contents by 
setting some attributes.

thx

===
Meriahkan Tahun Baru Imlek dengan mengirimkan Kartu 
Elektronik PlasaCom kepada kerabat dan teman Anda
KSI PlasaCom - Reuni Alumni STTTelkom 
http://www.plasa.com/belajar/reuni.html 
===

-
To unsubscribe, e-mail: 
[EMAIL PROTECTED]
For additional commands, e-mail: 
[EMAIL PROTECTED]

-
To unsubscribe, e-mail: 
[EMAIL PROTECTED]
For additional commands, e-mail: 
[EMAIL PROTECTED]

Regards,
Joni
===
Meriahkan Tahun Baru Imlek dengan mengirimkan Kartu Elektronik PlasaCom kepada kerabat dan teman Anda
KSI PlasaCom - Reuni Alumni STTTelkom http://www.plasa.com/belajar/reuni.html 
===

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Solution for finding images in a WAR file

2003-01-21 Thread Johan Åbrandt
This "solution" may or may not work in existing servers, but it may also 
break. The problem is that ServletContext->getRealPath() is allowed to 
return null, for example if the content is served from a WAR.

Rakesh Patel wrote:
Hi,
I have found a solution that I think works (have not got access to a Unix 
environment to confirm this) but I did not hard-code any window/unix specific 
paths.
Here's a snippet of code I used:
ServletContext scntxt = this.getServletContext();
String pathToFile = scntxt.getRealPath("/WEB-INF"); // or whatever relative to 
web app root eg /images
String imagePath = "file:" + pathToFile;
org.apache.fop.configuration.Configuration.put("baseDir",imagePath);
as you can see, all my images are in web_app_root/WEB-INF.
The corresponding xml data file looks like this:
centurion
I hope this saves others the problem of finding the solution across many posts!
Thanks
Rakesh
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


--
Johan Åbrandt
Technical Project Manager
(Tekninen projektipäällikkö)
Tel. +358 9 6817 3342
Mobile. +358 40 848 8068
[EMAIL PROTECTED]
Profit Software Oy
Meritullinkatu 11 C
00170 Helsinki, Finland
__
This message and its attachments have been found clean from known viruses 
with three different antivirus programs.
__

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Solution for finding images in a WAR file

2003-01-21 Thread Johan Åbrandt
(1) Where is the ContextClassloader?
(2) Why do you assume that the ResourceLoader is loaded by the same 
classloader as the calling class?

Sharma, Siddharth wrote:
Try using this file for loading resources.
Currently it loads only as properties and String but you may choose to
return anyway you want.
import java.util.Properties;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream; 
import java.io.ByteArrayOutputStream;

/**
 * Uses the classloader to load resources from the file system
 */
public class ResourceLoader 
{
	
	/**
	 * Useful int to define a buffer size
	 */
	private static final int aBuffSize = 123123;
	
	/**
	 * inputstream reader int
	 */
	private static int k; 
		
	/**
	 * Useful array for copying data
	 */
	private static byte[] buff = new byte[aBuffSize]; 
	
	/**
	 * The XML String to return
	 */
	private static String strXml;
	
	
	/**
	 * Returns the resource as a java.util.Properties object
	 * @param resourceBundleName String
	 * @param strPath String
	 * @throws IOException
	 * @return Properties
	 */
	public static final Properties getPropertiesFromResourceBundle( 
		String resourceBundleName,
		String strPath )
		throws IOException 
	{
		
		InputStream inputStream = null;
		Properties properties = null;
		
		try 
		{
			
			// fetch the properties file as a stream
			
			try 
			{
inputStream = getResourceAsStream(
resourceBundleName,
	
strPath );
			}
			catch ( IOException objIoe ) 
			{
throw objIoe;
			}

			// if the resource was found, load it into the
result Properties object
			if( inputStream != null )
			{
try
{
	properties = new Properties();
	properties.load( inputStream );
}
catch( IOException e )
{
	StringBuffer strBuff = new
StringBuffer(
	
"CPSConfigurationManager.getPropertiesFromResourceBundle() caught
IOException when trying to load properties file " );
	strBuff.append( resourceBundleName
);
	strBuff.append( ": " );
	strBuff.append( e.getMessage() );

	
	throw new IOException(
strBuff.toString() );
}
			}
		}
		catch(IOException ioe) 
		{			
			throw ioe;
		}
		finally {
			try 
			{
if(inputStream != null)
{
	inputStream.close();
}
			}
			catch( IOException ex ) 
			{	
throw ex;
			}
		}
		return properties;
	} // end of method getPropertiesFromResourceBundle()
	
	
	
	/**
	 * Returns the resource as a String object
	 * @param resourceBundleName String
	 * @param strPath String
	 * @throws IOException
	 * @return String
	 */
	public static final String getXmlFromResourceBundle( 
		String resourceBundleName, 
		String strPath ) throws IOException 
	{
		
		OutputStream outputStream = null;
		InputStream inputStream = null;		
		
	
		
		try {
			
			// fetch the xml file as a stream

			try {
inputStream = getResourceAsStream(
resourceBundleName,
	
strPath );
			}
			catch ( IOException objIoe ) 
			{
throw objIoe;
			}

			// if the resource was found, load it 
			if( inputStream != null )
			{
try
{
	  // I wish I could just do this:
strXml = inputStream.toString();
  outputStream = new
ByteArrayOutputStream(aBuffSize);
  
  synchronized ( outputStream ) 
  {
	  while (
(k=inputStream.read(buff) ) != -1) 
	  {
	  		outputStream.write(
buff, 0, k);
	  }
	  	
	  // I can now grab the string I
want
	  strXml =
outputStream.toString(); 
	  outputStream.close();
	  return strXml;
  } // end of synchronized block
  
  // That was a lot of work to pull a
String out of an inputStream.

}
catch( IOException e ) 
{

	throw new IOException(
"PSConfigurationManager.getPropertiesFromResourceBundle() caught IOException
when trying to load properties file " + e.getMessage() );
}		

			}
		}
		catch( IOException ioe ) 
		{			
			throw ioe;
		}
		finally 
		{
			try 
			{
inputStream.close();
			}
			catch( IOException ex ) 
			{	
throw ex;			
			}
			
		}
		return "";
	} // end of method getPropertiesFromResourceBundle()
	
	
	
	/**
	 *  Returns the resource as a stream. Uses this class classloader to
find the resource
	 *  relative to this class. Since this class is loaded by the
classloader of the 
	 *  calling class (say servlet), the resource will be searched
realtive to the calling
	 *  class
	 */
	private static final InputStream getResourceAsStream( String
resourceBundleName,
String strPath )
		throws IOException 
	{
		InputStream inputStream = null;
		try {
		// null safety check
			if( resourceBundleName == null || strPath == null)
			{
throw new IOException(
	
"ResourceLoader.getResourceAsStream() called with null filename" );
			}
			
			StringBuffer resourceBundlePath = new
StringBuffer(strPath);
			resourceBundlePath.append("/");
			resourceBundlePath.append( resourceBundleName );
			
			ClassLoader loader =
ResourceLoader.class.getClassLoader();		
			
			i

Re: Line spaces when different font sizes are used

2003-01-21 Thread Ramon Maria Gallart








>
FOP doesn't support mixing different font sizes within one line.

>


>
J.Pietschmann

 

 

Ok. But although FOP
doesn’t support this feature, is there any kind of solution to solve
that? I don’t think about me to be the first one havig this kind of
problem. Usually the text comes from a HTML-like text, one possible solution
could be parse the text looking for ‘size’ tags referred to the
font used. But surely there would be a lot of searching making it an
inefficient way to solve the problem.

 

Any suggerence is
welcome.

 

Thanks.

 

Ramon
 Maria Gallart








How to dynamically set src attribute

2003-01-21 Thread Jiri_Nejedly

I want to place picture to the pdf file, but the file name is not given in
advance , it is stored in XML .
For example

XML:
picture.bmp

XSL

 


Can I dynamically change the src attribute to the value , which is in XML
and can be retrieved by   ? Thanks.




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Line spaces when different font sizes are used

2003-01-21 Thread Jeremias Maerki
Try the line-height property on fo:block.

On 21.01.2003 08:56:32 Ramon Maria Gallart wrote:
> > FOP doesn't support mixing different font sizes within one line.
> > 
> > J.Pietschmann
>  
>  
> Ok. But although FOP doesn't support this feature, is there any kind of
> solution to solve that? I don't think about me to be the first one havig
> this kind of problem. Usually the text comes from a HTML-like text, one
> possible solution could be parse the text looking for 'size' tags
> referred to the font used. But surely there would be a lot of searching
> making it an inefficient way to solve the problem.
>  
> Any suggerence is welcome.


Jeremias Maerki


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: How to dynamically set src attribute

2003-01-21 Thread Jeremias Maerki
Not really a FOP-related question, but anyway:


 



 



On 21.01.2003 09:05:47 Jiri_Nejedly wrote:
> 
> I want to place picture to the pdf file, but the file name is not given in
> advance , it is stored in XML .
> For example
> 
> XML:
> picture.bmp
> 
> XSL
> 
>  
> 
> 
> Can I dynamically change the src attribute to the value , which is in XML
> and can be retrieved by   ? Thanks.


Jeremias Maerki


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: How to dynamically set src attribute

2003-01-21 Thread vinod.nayak
Try it.. it may be possible.

Or if the SRC value can vary in the range around 1..5
you can apply the selecting criteria in the xsl itself.

e.g.,



  


  
 
---

  





-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 21, 2003 1:36 PM
To: [EMAIL PROTECTED]
Subject: How to dynamically set src attribute



I want to place picture to the pdf file, but the file name is not given in
advance , it is stored in XML .
For example

XML:
picture.bmp

XSL

 


Can I dynamically change the src attribute to the value , which is in XML
and can be retrieved by   ? Thanks.




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[Fwd: reference-orientation implemented yet?]

2003-01-21 Thread Thorsten Scherler
 --- Begin Message ---
Hello group,
I tried to implemente the following:
+++
The reference-orientation property 
(http://www.ibiblio.org/xml/books/bible2/chapters/ch18.html)

The reference-orientation property allows you to specify that the 
content of a box is rotated relative to its normal orientation. The only 
valid values are 90-degree increments, which are measured 
counterclockwise, that is 0, 90, 180, and 270. You can also specify -90, 
-180, and -270. For example, here's a 90-degree rotation:


  Bottom to Top

+++
Is that possible or not yet

--- End Message ---
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: reference-orientation implemented yet?

2003-01-21 Thread Jeremias Maerki
No. It has been started in the redesign (available through CVS) but I
don't think you will already get happy with it.

In the meantime you can try if using SVG for rotated text works for you.

Please don't crosspost and use the correct mailing list adress when
posting questions. Instructions are here:
http://xml.apache.org/fop/resources.html#N10015

On 21.01.2003 09:59:58 Thorsten Scherler wrote:
> Hello group,
> 
> I tried to implemente the following:
> 
> +++
> The reference-orientation property 
> (http://www.ibiblio.org/xml/books/bible2/chapters/ch18.html)


> +++
> 
> 
> Is that possible or not yet
> 
> 



Jeremias Maerki


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: How to dynamically set src attribute

2003-01-21 Thread Sven Taeymans


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] 
Sent: dinsdag 21 januari 2003 9:31
To: [EMAIL PROTECTED]
Subject: RE: How to dynamically set src attribute

Try it.. it may be possible.

Or if the SRC value can vary in the range around 1..5
you can apply the selecting criteria in the xsl itself.

e.g.,



  


  
 
---

  






I guess that in this case you also could you use something like this:





smime.p7s
Description: S/MIME cryptographic signature


Re: AW: AW: page-break in block

2003-01-21 Thread Oleg Tkachenko
Zieseniß, Markus wrote:
I've to generate a .pdf-letter (up to 3 pages) . The flow text is brought by
xml-file.
So the text on a page is variable. Some text-sections (fo:blocks) are not
allowed to be separated
by a page-break, they have to be written on the next page. I heard of the
"page-break-inside"-attribute, which should do it, but up to now it doesn't
work ("page-break-inside is not implemented yet").
No, what you need is keep-together property. Put your blocks into a blind 
table and set keep-together="always" on appropriate table rows.

--
Oleg Tkachenko
eXperanto team
Multiconn Technologies, Israel
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: [Fwd: reference-orientation implemented yet?]

2003-01-21 Thread Oleg Tkachenko
Thorsten Scherler wrote:
Is that possible or not yet
Thank you for help, but afaik reference-orientation is implemented already in 
the trunk. If you wanna help, dive into the redesign.

PS. And please, don't send messages in html format to apache mail lists, it's 
explicitly forbidden.
--
Oleg Tkachenko
eXperanto team
Multiconn Technologies, Israel

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: what's wrong with this?

2003-01-21 Thread Oleg Tkachenko
joni santoso wrote:
yes it works. but is it possible to use something like attribute?
because when working in a large doc, it seems strange to write a script 
or cut and paste the doc.
You don't understand main idea - order of flow formatting objects determines 
order of generating areas and finally pages. And whether you prefer 
copy-n-paste or xslt - your choice, it's you (stylesheet author) 
responsibility to place fo in desired order.
--
Oleg Tkachenko
eXperanto team
Multiconn Technologies, Israel

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


arial font

2003-01-21 Thread MARTIN Franck
What font can be used with fop? Does the arial font work fine with FOP?

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: arial font

2003-01-21 Thread Balaji Loganathan
Its depends on what sort of characters you want to
display, for example for french, russian characters
needs a different font than the default one.
Regards
Balaji

 --- MARTIN Franck <[EMAIL PROTECTED]> wrote: >
What font can be used with fop? Does the arial font
> work fine with FOP?
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
>  

http://movies.yahoo.com.au - Yahoo! Movies
- What's on at your local cinema?

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: arial font

2003-01-21 Thread MARTIN Franck
I want to use french characters. what is the default font?
- Original Message - 
From: "Balaji Loganathan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 21, 2003 5:08 PM
Subject: Re: arial font


> Its depends on what sort of characters you want to
> display, for example for french, russian characters
> needs a different font than the default one.
> Regards
> Balaji
> 
>  --- MARTIN Franck <[EMAIL PROTECTED]> wrote: >
> What font can be used with fop? Does the arial font
> > work fine with FOP?
> > 
> >
> -
> > To unsubscribe, e-mail:
> > [EMAIL PROTECTED]
> > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> >  
> 
> http://movies.yahoo.com.au - Yahoo! Movies
> - What's on at your local cinema?
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Creating own font file

2003-01-21 Thread Balaji Loganathan
Hi,
   I'm involved in displaying some
mathematical/scientific characters like reciprocal per
meter, square per meter etc., in PDF and HTML format
   
   I can able to display most of them without problem
in the browser window with the help of unicode, but
some characters were not appearing correctly.
   
   So I would like know how to create my own unicode
font file   
For example: & # x207b; ==> superscript minus
symbol  
 & # x2126; ==> Ohm symbol   
 
   Can anyone tell me how to create my own unicode
font file, any reference or links could be really
appreciated.
   
Regards
Balaji

http://movies.yahoo.com.au - Yahoo! Movies
- What's on at your local cinema?

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



fonts

2003-01-21 Thread MARTIN Franck
I'd like to get some advice about fonts used with fops.
Is the fop Helvetica supported font very similar to Arial font?

Is it easy to use additional font with fop (as described at fop/fonts.html)
?

Thanks


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: arial font

2003-01-21 Thread Balaji Loganathan
To my knowledge you don't need any special font for
the french character, just try to find the equivalent
unicode for the french  characters like é à .. from
the http://www.unicode.org and the replace these
character with their unicode.
  The another trick is using Editor which supports
unicode(XMLSPY does) as your XML editor, in this can
you don't need to replace the french characters with
unicode representation. XMLSPY will take care of this.

Regards
Balaji

 --- MARTIN Franck <[EMAIL PROTECTED]> wrote: > I
want to use french characters. what is the default
> font?
> - Original Message - 
> From: "Balaji Loganathan" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, January 21, 2003 5:08 PM
> Subject: Re: arial font
> 
> 
> > Its depends on what sort of characters you want to
> > display, for example for french, russian
> characters
> > needs a different font than the default one.
> > Regards
> > Balaji
> > 
> >  --- MARTIN Franck <[EMAIL PROTECTED]> wrote: >
> > What font can be used with fop? Does the arial
> font
> > > work fine with FOP?
> > > 
> > >
> >
>
-
> > > To unsubscribe, e-mail:
> > > [EMAIL PROTECTED]
> > > For additional commands, e-mail:
> > > [EMAIL PROTECTED]
> > >  
> > 
> > http://movies.yahoo.com.au - Yahoo! Movies
> > - What's on at your local cinema?
> > 
> >
>
-
> > To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> > For additional commands, e-mail:
> [EMAIL PROTECTED]
> > 
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
>  

http://movies.yahoo.com.au - Yahoo! Movies
- What's on at your local cinema?

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: arial font

2003-01-21 Thread MARTIN Franck
I want to use french characters with the arial font...
is helevetica close enough to arial or should i create my own font?
is it easy and convenient to create one's own font?
- Original Message -
From: "Balaji Loganathan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 21, 2003 5:23 PM
Subject: Re: arial font


> To my knowledge you don't need any special font for
> the french character, just try to find the equivalent
> unicode for the french  characters like é à .. from
> the http://www.unicode.org and the replace these
> character with their unicode.
>   The another trick is using Editor which supports
> unicode(XMLSPY does) as your XML editor, in this can
> you don't need to replace the french characters with
> unicode representation. XMLSPY will take care of this.
>
> Regards
> Balaji
>
>  --- MARTIN Franck <[EMAIL PROTECTED]> wrote: > I
> want to use french characters. what is the default
> > font?
> > - Original Message -
> > From: "Balaji Loganathan" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, January 21, 2003 5:08 PM
> > Subject: Re: arial font
> >
> >
> > > Its depends on what sort of characters you want to
> > > display, for example for french, russian
> > characters
> > > needs a different font than the default one.
> > > Regards
> > > Balaji
> > >
> > >  --- MARTIN Franck <[EMAIL PROTECTED]> wrote: >
> > > What font can be used with fop? Does the arial
> > font
> > > > work fine with FOP?
> > > >
> > > >
> > >
> >
> -
> > > > To unsubscribe, e-mail:
> > > > [EMAIL PROTECTED]
> > > > For additional commands, e-mail:
> > > > [EMAIL PROTECTED]
> > > >
> > >
> > > http://movies.yahoo.com.au - Yahoo! Movies
> > > - What's on at your local cinema?
> > >
> > >
> >
> -
> > > To unsubscribe, e-mail:
> > [EMAIL PROTECTED]
> > > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> > >
> >
> >
> -
> > To unsubscribe, e-mail:
> > [EMAIL PROTECTED]
> > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> >
>
> http://movies.yahoo.com.au - Yahoo! Movies
> - What's on at your local cinema?
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: arial font

2003-01-21 Thread Ramon Maria Gallart
I just guess arial font has all the characters you could need to write in 
almost any european language.

Ramon Maria Gallart.

-Mensaje original-
De: MARTIN Franck [mailto:[EMAIL PROTECTED] 
Enviado el: dimarts, 21 / gener / 2003 17:28
Para: [EMAIL PROTECTED]
Asunto: Re: arial font

I want to use french characters with the arial font...
is helevetica close enough to arial or should i create my own font?
is it easy and convenient to create one's own font?
- Original Message -
From: "Balaji Loganathan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 21, 2003 5:23 PM
Subject: Re: arial font


> To my knowledge you don't need any special font for
> the french character, just try to find the equivalent
> unicode for the french  characters like é à .. from
> the http://www.unicode.org and the replace these
> character with their unicode.
>   The another trick is using Editor which supports
> unicode(XMLSPY does) as your XML editor, in this can
> you don't need to replace the french characters with
> unicode representation. XMLSPY will take care of this.
>
> Regards
> Balaji
>
>  --- MARTIN Franck <[EMAIL PROTECTED]> wrote: > I
> want to use french characters. what is the default
> > font?
> > - Original Message -
> > From: "Balaji Loganathan" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, January 21, 2003 5:08 PM
> > Subject: Re: arial font
> >
> >
> > > Its depends on what sort of characters you want to
> > > display, for example for french, russian
> > characters
> > > needs a different font than the default one.
> > > Regards
> > > Balaji
> > >
> > >  --- MARTIN Franck <[EMAIL PROTECTED]> wrote: >
> > > What font can be used with fop? Does the arial
> > font
> > > > work fine with FOP?
> > > >
> > > >
> > >
> >
> -
> > > > To unsubscribe, e-mail:
> > > > [EMAIL PROTECTED]
> > > > For additional commands, e-mail:
> > > > [EMAIL PROTECTED]
> > > >
> > >
> > > http://movies.yahoo.com.au - Yahoo! Movies
> > > - What's on at your local cinema?
> > >
> > >
> >
> -
> > > To unsubscribe, e-mail:
> > [EMAIL PROTECTED]
> > > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> > >
> >
> >
> -
> > To unsubscribe, e-mail:
> > [EMAIL PROTECTED]
> > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> >
>
> http://movies.yahoo.com.au - Yahoo! Movies
> - What's on at your local cinema?
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: arial font

2003-01-21 Thread MARTIN Franck
yes but arial is not implemented with fop!
- Original Message -
From: "Ramon Maria Gallart" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 21, 2003 5:30 PM
Subject: RE: arial font


I just guess arial font has all the characters you could need to write in
almost any european language.

Ramon Maria Gallart.

-Mensaje original-
De: MARTIN Franck [mailto:[EMAIL PROTECTED]
Enviado el: dimarts, 21 / gener / 2003 17:28
Para: [EMAIL PROTECTED]
Asunto: Re: arial font

I want to use french characters with the arial font...
is helevetica close enough to arial or should i create my own font?
is it easy and convenient to create one's own font?
- Original Message -
From: "Balaji Loganathan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 21, 2003 5:23 PM
Subject: Re: arial font


> To my knowledge you don't need any special font for
> the french character, just try to find the equivalent
> unicode for the french  characters like é à .. from
> the http://www.unicode.org and the replace these
> character with their unicode.
>   The another trick is using Editor which supports
> unicode(XMLSPY does) as your XML editor, in this can
> you don't need to replace the french characters with
> unicode representation. XMLSPY will take care of this.
>
> Regards
> Balaji
>
>  --- MARTIN Franck <[EMAIL PROTECTED]> wrote: > I
> want to use french characters. what is the default
> > font?
> > - Original Message -
> > From: "Balaji Loganathan" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, January 21, 2003 5:08 PM
> > Subject: Re: arial font
> >
> >
> > > Its depends on what sort of characters you want to
> > > display, for example for french, russian
> > characters
> > > needs a different font than the default one.
> > > Regards
> > > Balaji
> > >
> > >  --- MARTIN Franck <[EMAIL PROTECTED]> wrote: >
> > > What font can be used with fop? Does the arial
> > font
> > > > work fine with FOP?
> > > >
> > > >
> > >
> >
> -
> > > > To unsubscribe, e-mail:
> > > > [EMAIL PROTECTED]
> > > > For additional commands, e-mail:
> > > > [EMAIL PROTECTED]
> > > >
> > >
> > > http://movies.yahoo.com.au - Yahoo! Movies
> > > - What's on at your local cinema?
> > >
> > >
> >
> -
> > > To unsubscribe, e-mail:
> > [EMAIL PROTECTED]
> > > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> > >
> >
> >
> -
> > To unsubscribe, e-mail:
> > [EMAIL PROTECTED]
> > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> >
>
> http://movies.yahoo.com.au - Yahoo! Movies
> - What's on at your local cinema?
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: arial font

2003-01-21 Thread Ramon Maria Gallart
Try to set the font family to something like (i just don't remember now the 
exact syntax) 'sans-serif'. Arial, Helvetica (or Swiss), Verdana, etc. All are 
from this same family.

Ramon Maria Gallart

-Mensaje original-
De: MARTIN Franck [mailto:[EMAIL PROTECTED] 
Enviado el: dimarts, 21 / gener / 2003 17:34
Para: [EMAIL PROTECTED]
Asunto: Re: arial font

yes but arial is not implemented with fop!
- Original Message -
From: "Ramon Maria Gallart" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 21, 2003 5:30 PM
Subject: RE: arial font


I just guess arial font has all the characters you could need to write in
almost any european language.

Ramon Maria Gallart.

-Mensaje original-
De: MARTIN Franck [mailto:[EMAIL PROTECTED]
Enviado el: dimarts, 21 / gener / 2003 17:28
Para: [EMAIL PROTECTED]
Asunto: Re: arial font

I want to use french characters with the arial font...
is helevetica close enough to arial or should i create my own font?
is it easy and convenient to create one's own font?
- Original Message -
From: "Balaji Loganathan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, January 21, 2003 5:23 PM
Subject: Re: arial font


> To my knowledge you don't need any special font for
> the french character, just try to find the equivalent
> unicode for the french  characters like é à .. from
> the http://www.unicode.org and the replace these
> character with their unicode.
>   The another trick is using Editor which supports
> unicode(XMLSPY does) as your XML editor, in this can
> you don't need to replace the french characters with
> unicode representation. XMLSPY will take care of this.
>
> Regards
> Balaji
>
>  --- MARTIN Franck <[EMAIL PROTECTED]> wrote: > I
> want to use french characters. what is the default
> > font?
> > - Original Message -
> > From: "Balaji Loganathan" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, January 21, 2003 5:08 PM
> > Subject: Re: arial font
> >
> >
> > > Its depends on what sort of characters you want to
> > > display, for example for french, russian
> > characters
> > > needs a different font than the default one.
> > > Regards
> > > Balaji
> > >
> > >  --- MARTIN Franck <[EMAIL PROTECTED]> wrote: >
> > > What font can be used with fop? Does the arial
> > font
> > > > work fine with FOP?
> > > >
> > > >
> > >
> >
> -
> > > > To unsubscribe, e-mail:
> > > > [EMAIL PROTECTED]
> > > > For additional commands, e-mail:
> > > > [EMAIL PROTECTED]
> > > >
> > >
> > > http://movies.yahoo.com.au - Yahoo! Movies
> > > - What's on at your local cinema?
> > >
> > >
> >
> -
> > > To unsubscribe, e-mail:
> > [EMAIL PROTECTED]
> > > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> > >
> >
> >
> -
> > To unsubscribe, e-mail:
> > [EMAIL PROTECTED]
> > For additional commands, e-mail:
> > [EMAIL PROTECTED]
> >
>
> http://movies.yahoo.com.au - Yahoo! Movies
> - What's on at your local cinema?
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Escape sequences and fop

2003-01-21 Thread Rakesh Patel
Hi,

I am seeing some strange behaviour with FOP in an embedded servlet environment 
and also within my (XML Spy) development environment.

I have an XML file and and XSL file. I process the files producing an fo 
document which is rendered by FOP.

There is one tag which needs embedded fo tags but only to be rendered fop and 
passed as is by the XSL transformation. Here's a snippit from my XML file:


example text
Please read our Risks 
Warnings document


and the XSL file:





The embedded directives are only processed by FOP when I do this:

1. Run the xslt saving the output to a file
2. Pass the file to FOP for processing.

However, if I do it all together, either by using XMLSpy or in my servlet, the 
output ALL comes out as text.

Please help!!!

Thanks

Rakesh



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: arial font

2003-01-21 Thread Oleg Tkachenko
MARTIN Franck wrote:
yes but arial is not implemented with fop!
Hey, FOP doesn't try to implement fonts :) There are predefined fonts: 
Helvetica, Times, Courier, Symbol and ZapfDingbats. Any other font have to be 
added to FOP, see http://xml.apache.org/fop/fonts how to do it.

--
Oleg Tkachenko
eXperanto team
Multiconn Technologies, Israel
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Creating own font file

2003-01-21 Thread Oleg Tkachenko
Balaji Loganathan wrote:
   Can anyone tell me how to create my own unicode
font file, any reference or links could be really
appreciated.
There are a lot of font editors, e.g. look at http://www.font.to.
--
Oleg Tkachenko
eXperanto team
Multiconn Technologies, Israel
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Escape sequences and fop

2003-01-21 Thread Oleg Tkachenko
Rakesh Patel wrote:

example text
Please read our Risks 
Warnings document

and the XSL file:



The embedded directives are only processed by FOP when I do this:
1. Run the xslt saving the output to a file
2. Pass the file to FOP for processing.
However, if I do it all together, either by using XMLSpy or in my servlet, the output ALL comes out as text.
XML Spy process it exactly as you are saying - transform into a file and run 
FOP.bat on this file.
By it's nature disable-output-escaping assumes that result of the 
transformation is serialized and reparsed again, that's why it doesn't work in 
FOP as in any SAX streaming environment.
Remember gold rule of xslt - don't use d-o-e unless you are generating 
non-XML. Why do you need it?

--
Oleg Tkachenko
eXperanto team
Multiconn Technologies, Israel
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Escape sequences and fop

2003-01-21 Thread Rakesh Patel
Hi Oleg,

the reason I need to use disable-output-escaping is because at present the xml 
data (the  tags) sometimes contains html tags. I need to replace 
these with their fo equivalents. If you know how else to do this, please let me 
know. I am going to go back to some previous code that generated an 
intermediate file and then pass that to fop.

Cheers

Rakesh



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: reference-orientation implemented yet?

2003-01-21 Thread Thorsten Scherler
Thanks Jeremias,
...and sorry for crosspost.
Jeremias Maerki wrote:
No. It has been started in the redesign (available through CVS) but I
don't think you will already get happy with it.
In the meantime you can try if using SVG for rotated text works for you.
Please don't crosspost and use the correct mailing list adress when
posting questions. Instructions are here:
http://xml.apache.org/fop/resources.html#N10015
On 21.01.2003 09:59:58 Thorsten Scherler wrote:
Hello group,
I tried to implemente the following:
+++
The reference-orientation property 
(http://www.ibiblio.org/xml/books/bible2/chapters/ch18.html)


+++
Is that possible or not yet



Jeremias Maerki
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: arial font

2003-01-21 Thread Thorsten Scherler
When following the tutorial:
java -cp 
build\fop.jar;lib\xercesImpl-2.0.1.jar;lib\xml-apis.jar;lib\xalan-2.3.1.jar;lib\batik.jar

BEWARE: That can be different with your local setting. (took me 1 hour 
to figure it out that I used a different version ;-)

e.g.:
replace:
xercesImpl-2.0.1.jar
with:
xercesImpl-Version.which.you.use.jar
Oleg Tkachenko wrote:
MARTIN Franck wrote:
yes but arial is not implemented with fop!
Hey, FOP doesn't try to implement fonts :) There are predefined fonts: 
Helvetica, Times, Courier, Symbol and ZapfDingbats. Any other font have 
to be added to FOP, see http://xml.apache.org/fop/fonts how to do it.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Escape sequences and fop

2003-01-21 Thread Oleg Tkachenko
Rakesh Patel wrote:
the reason I need to use disable-output-escaping is because at present the
xml data (the  tags) sometimes contains html tags. I need to
replace these with their fo equivalents. If you know how else to do this,
please let me know. I am going to go back to some previous code that
generated an intermediate file and then pass that to fop.
What do you mean by "replace these with their fo equivalents"? If html code is 
well-formed you can process it by xslt as usual, if not - how can you match it 
to replace, by string matching?

--
Oleg Tkachenko
eXperanto team
Multiconn Technologies, Israel
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: fonts

2003-01-21 Thread Thorsten Scherler
Hello Frank,
MARTIN Franck wrote:
I'd like to get some advice about fonts used with fops.
Is the fop Helvetica supported font very similar to Arial font?
No! I think not even close!
Is it easy to use additional font with fop (as described at fop/fonts.html)
?
I had my problems with it but now it more or less runnig fine!
When following the tutorial http://xml.apache.org/fop/fonts:
java -cp 
build\fop.jar;lib\xercesImpl-2.0.1.jar;lib\xml-apis.jar;lib\xalan-2.3.1.jar;lib\batik.jar

BEWARE: That can be different with your local setting. (took me 1 hour 
to figure it out that I used a different version ;-)

e.g.:
replace:
xercesImpl-2.0.1.jar
with:
xercesImpl-Version.which.you.use.jar
Do you use cocoon?
then don't forget to register the user.config with your sitemap!
LIKE that:

	



Thanks
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: footnote-problem

2003-01-21 Thread Wolle
Hi!

I have one note and one other question:

*> i tried to use footnotes in my double-sided layout. i also have on the
*> bottom of each page a page-number and/or text. i did exactly the same as
*> in the
*> columns.fo (examples/footnotes directory). in the example the footnotes
*> are above the page-number. in my file the footnotes are under my
*> page-number/text.
*> 
*> what am i doing wrong?
*
*You have probably the body region overlapping the footer region.
*Unfortunately, up to the 0.20.4 release the FOP examples are a bad
*in this respect. See also
*  http://xml.apache.org/fop/faq.html#faq-N10542
*

1. note: I used 0.20.5rc and it worked without doing anything.


*
*> i also wanted the footnote to be a external-link. this does not work
*> either?
*Probably the link area is misplaced, this often happened with
*FOP 0.20.4, There has been recent fixes, try 0.20.5rc.
*


2. question: Using 0.20.5 has made no progress in solving the problem. I
tried all varieties of using fo:block and so on, but using a link inside a
footnote surrounded by a list does not work for me.

does anybody has a hint for another solution??

bye for now

wolfgang


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: arial font

2003-01-21 Thread J.Pietschmann
MARTIN Franck wrote:
I want to use french characters with the arial font...
is helevetica close enough to arial or should i create my own font?
Do you see a difference? If not, it is close enough, I'd think.
is it easy and convenient to create one's own font?
There are instructions in the documentation, also referred
to by the FOP FAQ:
 http://xml.apache.org/fop/faq.html

- Original Message -
Golly, another endquote chain which went out of control.
Would you *please* snip old quotes?
J.Pietschmann
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


problem with justified headers

2003-01-21 Thread Jon Steeves
Hello:

Another neophyte question:

I'm trying to do a running header that consists of a .gif on the left and some 
text right justified on the same line.  Here's the latest code that doesn't 
work:

   
 
  

   Some text header info  
   
  


The result of this is that the gif image appears with the header text right 
beside it, not right justified; can anyone tell me what I'm doing wrong?


Jon Steeves

[EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: problem with justified headers

2003-01-21 Thread Roland Neilands
You could try to put the block in a block container with a defined width
attribute.

or failing that a single row borderless table (I know this works):

  
  
  
  

  

  


  
right-aligned text

  
  


Cheers,
Roland

> -Original Message-
> From: Jon Steeves [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, 22 January 2003 9:11 AM
> To: [EMAIL PROTECTED]
> Subject: problem with justified headers
>
>
> Hello:
>
> Another neophyte question:
>
> I'm trying to do a running header that consists of a .gif on
> the left and some text right justified on the same line.
> Here's the latest code that doesn't work:
>
>  
>  
> src="C:\drb\xsl\Logo2001_black.gif" />
> font-weight="bold" color="black">
>Some text header info
>  
>   
> 
>
> The result of this is that the gif image appears with the
> header text right beside it, not right justified; can anyone
> tell me what I'm doing wrong?
>
>
> Jon Steeves
>
> [EMAIL PROTECTED]
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: problem with justified headers

2003-01-21 Thread Jon Steeves
Thanks Roland:

It works like a charm.  For anyone who is interested, here's the complete 
working code:

C:\path\Logo2001.gif


 
  
  
  
  

  

  


  
Put right side text for header here

  
  



Cheers

Jon

-Original Message-
From: Roland Neilands [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 21, 2003 2:31 PM
To: [EMAIL PROTECTED]
Subject: RE: problem with justified headers


You could try to put the block in a block container with a defined width
attribute.

or failing that a single row borderless table (I know this works):

  
  
  
  

  

  


  
right-aligned text

  
  


Cheers,
Roland

> -Original Message-
> From: Jon Steeves [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, 22 January 2003 9:11 AM
> To: [EMAIL PROTECTED]
> Subject: problem with justified headers
>
>
> Hello:
>
> Another neophyte question:
>
> I'm trying to do a running header that consists of a .gif on
> the left and some text right justified on the same line.
> Here's the latest code that doesn't work:
>
>  
>  
> src="C:\drb\xsl\Logo2001_black.gif" />
> font-weight="bold" color="black">
>Some text header info
>  
>   
> 
>
> The result of this is that the gif image appears with the
> header text right beside it, not right justified; can anyone
> tell me what I'm doing wrong?
>
>
> Jon Steeves
>
> [EMAIL PROTECTED]
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



question

2003-01-21 Thread Koes, Derrick

The fop processor puts content in  elements on a new line (also
indents).
Shouldn't the purpose of this tag be to actually put something in line with
something else?
I don't think I understand the purpose of fo:inline.   Can someone explain?
Also, can someone explain how to actually put text inline?

Thanks,
Derrick

This electronic transmission is strictly confidential to Smith & Nephew and
intended solely for the addressee.  It may contain information which is
covered by legal, professional or other privilege.  If you are not the
intended addressee, or someone authorized by the intended addressee to
receive transmissions on behalf of the addressee, you must not retain,
disclose in any form, copy or take any action in reliance on this
transmission.  If you have received this transmission in error, please
notify the sender as soon as possible and destroy this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: inline> question

2003-01-21 Thread Roland Neilands
> The fop processor puts content in  elements on a
> new line (also
> indents).
> Shouldn't the purpose of this tag be to actually put
> something in line with
> something else?
> I don't think I understand the purpose of fo:inline.   Can
> someone explain?
> Also, can someone explain how to actually put text inline?
This should be more than you need:
http://www.zvon.org/HowTo/codes.php?query=inline&typ=elements&ns=any&order=l
ocalname

If this doesn't help, show us an example.

Cheers,
Roland


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



question

2003-01-21 Thread Koes, Derrick

The fop processor puts content in  elements on a new line (also
indents). Shouldn't the purpose of this tag be to actually put something in
line with something else?
I don't think I understand the purpose of fo:inline.   Can someone explain?
Also, can someone explain how to actually put text inline?

Thanks,
Derrick

This electronic transmission is strictly confidential to Smith & Nephew and
intended solely for the addressee.  It may contain information which is
covered by legal, professional or other privilege.  If you are not the
intended addressee, or someone authorized by the intended addressee to
receive transmissions on behalf of the addressee, you must not retain,
disclose in any form, copy or take any action in reliance on this
transmission.  If you have received this transmission in error, please
notify the sender as soon as possible and destroy this message.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]