font-family font list compliance

2007-06-27 Thread Loran Kary
The FOP compliance page for the common font property font-family says  
that for 0.93, font-family lists are allowed but glyph based font  
selection is not supported.


What exactly does that mean, glyph based font selection?

Can I specify a fall-back list of font families, and have the font  
selection on a character-by-character basis?  I see that font- 
selection-strategy has no support.


Is glyph based font selection the same as character-by-character?  If  
not, what do you get with a list of fonts in the font-family?  All or  
nothing?


I hope someone can tell me what it is possible to do with 0.93.

Thanks,
Loran Kary

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



RE: font-family font list compliance

2007-06-27 Thread Pascal Sancho
Hi Loran,

Unfortunately, FOP 0.93 does not have any support to a character by character 
font selection.
If you want such strategy, you have to make it yourself (in the XSLT stage).

When you specify a font list, the FO processor (FOP, in your case) should use 
the first that is available in your system ou FOP configuration.

HTH,

Pascal

 -Message d'origine-
 De : Loran Kary [mailto:[EMAIL PROTECTED] 
 Envoyé : mercredi 27 juin 2007 02:56
 
 The FOP compliance page for the common font property 
 font-family says that for 0.93, font-family lists are allowed 
 but glyph based font selection is not supported.
 
 What exactly does that mean, glyph based font selection?
 
 Can I specify a fall-back list of font families, and have the 
 font selection on a character-by-character basis?  I see that 
 font- selection-strategy has no support.
 
 Is glyph based font selection the same as 
 character-by-character?  If not, what do you get with a list 
 of fonts in the font-family?  All or nothing?
 
 I hope someone can tell me what it is possible to do with 0.93.
 
 Thanks,
 Loran Kary


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



Re: font-family font list compliance

2007-06-27 Thread Jeremias Maerki
FOP does not yet support font selection on a character-by-character
basis. What's supported is simply a fallback: font-family=Arial,Helvetica
If Arial is not configured in FOP, FOP will use Helvetica.

On 27.06.2007 02:55:58 Loran Kary wrote:
 The FOP compliance page for the common font property font-family says  
 that for 0.93, font-family lists are allowed but glyph based font  
 selection is not supported.
 
 What exactly does that mean, glyph based font selection?
 
 Can I specify a fall-back list of font families, and have the font  
 selection on a character-by-character basis?  I see that font- 
 selection-strategy has no support.
 
 Is glyph based font selection the same as character-by-character?  If  
 not, what do you get with a list of fonts in the font-family?  All or  
 nothing?
 
 I hope someone can tell me what it is possible to do with 0.93.
 
 Thanks,
 Loran Kary


Jeremias Maerki


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



Call for Papers Opens for OS Summit Asia 2007

2007-06-27 Thread Jeremias Maerki
Call for Papers Opens for OS Summit Asia 2007

The call for papers is now open for OS Summit Asia, to be held
November 26-30 at the Cyberport in Hong Kong.  This joint conference
between the Apache Software Foundation and the Eclipse Foundation will
be consist of two days of tutorials (Nov 26-27) and three days of
regular conference sessions (Nov 28-30).

The paper submission deadline is Friday, 13 July, 2007, Midnight PDT.

You may log in to the ApacheCon submission site to submit your
proposals.  Further details about the conference, submissions, and
fees can be found at:

  http://www.ossummit.com/cfp.html

Topics appropriate for submission include, but are not restricted to,
the following:

 * ASF-wide projects such as Apache HTTP server, Tomcat, Struts,
   Geronimo, mod_perl and XML Web Services
 
 * Eclipse-wide projects such as BI and Reporting Tools (BIRT), Web
   Tools Platform (WTP), Eclipse Modeling Framework (EMF), Data Tools
   Platform (DTP), Equinox and the Rich Client Platform (RCP)

 * Programming languages such as Java, Perl, Python, Ruby and PHP

 * Web development technologies and techniques including security,
   performance tuning, e-commerce and J2EE

 * New technologies and trends such as Web Services and Web 2.0

 * Open source community and business models, legal and marketing
   issues
 
 * Open source projects and activities in Asia, local efforts and case
   studies

Thanks and we hope to hear from you, and see you in Hong Kong!

-- 
The OSSummit Planners
[EMAIL PROTECTED]


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



Forcing a new line

2007-06-27 Thread Trevor Keast

Hi,

I have a table with column headings.  Sometimes the headings are quite 
long and I want to force a carrige return and display the heading text 
on two lines, for example:


Currently looks like this:

--

Portfolio Start Value

33
44
55

--

But I want it like this:

--

Portfolio
Start Value





--

I also want to be able to force a blank line between the heading and the 
table body.


Any advice would be greatly appreciated!

Regards,

Trevor.
--
Trevor Keast
Client Server Specialists Inc.

Email: [EMAIL PROTECTED]

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



Re: Forcing a new line

2007-06-27 Thread Adrian Cumiskey

Hi Trevor,

For your table/column headings - if you wrap the textual content of your 
fo:table-cell/ within a block it should by default wrap the text 
within it since the wrap-option attribute of fo:block/ defaults to 
wrap.


The blank line between your table headings and table rows can be 
achieved by adding a extra row at the beginning of your table body which 
contains a fo:leader/ wrapped within an fo:block/.  See my example 
FO below.


---

?xml version=1.0 encoding=UTF-8?
fo:root xmlns:fo=http://www.w3.org/1999/XSL/Format; 
xmlns:test=http://xmlgraphics.apache.org/fop/test;

  fo:layout-master-set
fo:simple-page-master master-name=normal page-width=2in 
page-height=2in

  fo:region-body/
/fo:simple-page-master
  /fo:layout-master-set
  fo:page-sequence master-reference=normal
fo:flow flow-name=xsl-region-body
  fo:table table-layout=fixed width=auto
fo:table-column column-width=60pt/
fo:table-header
  fo:table-row
fo:table-cell
  fo:blockStart Value Portfolio/fo:block
/fo:table-cell
  /fo:table-row
/fo:table-header
fo:table-body
  fo:table-row
fo:table-cell
  fo:block
fo:leader/
  /fo:block
/fo:table-cell
  /fo:table-row
  fo:table-row
fo:table-cell
  fo:block33/fo:block
/fo:table-cell
  /fo:table-row
  fo:table-row
fo:table-cell
  fo:block44/fo:block
/fo:table-cell
  /fo:table-row
  fo:table-row
fo:table-cell
  fo:block55/fo:block
/fo:table-cell
  /fo:table-row
/fo:table-body
  /fo:table
/fo:flow
  /fo:page-sequence
/fo:root

---

If this above example doesn't solve your problems then please attach 
your FO file that you are having the problem with.


Adrian.

Trevor Keast wrote:

Hi,

I have a table with column headings.  Sometimes the headings are quite 
long and I want to force a carrige return and display the heading text 
on two lines, for example:


Currently looks like this:

--

Portfolio Start Value

33
44
55

--

But I want it like this:

--

Portfolio
Start Value





--

I also want to be able to force a blank line between the heading and the 
table body.


Any advice would be greatly appreciated!

Regards,

Trevor.



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



Re: Forcing a new line

2007-06-27 Thread Andreas L Delmelle

On Jun 27, 2007, at 16:17, Trevor Keast wrote:

Hi,

I have a table with column headings.  Sometimes the headings are  
quite long and I want to force a carrige return and display the  
heading text on two lines, for example:


On top of what Adrian already mentioned, you could also use simply:

fo:block linefeed-treatment=preservePortfolio
Start Value/fo:block

Should work in 0.93


snip /
I also want to be able to force a blank line between the heading  
and the table body.


Not sure if I understand this issue correctly, but maybe you could  
achieve that effect by adding an extra row to your table-header:


fo:table-row
  fo:table-cell number-columns-spanned={nr_of_columns_here}
fo:block /
  /fo:table-cell
/fo:table-row


HTH!

Cheers

Andreas


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