Re: [VOTE] Conversion from src/org.. to src/java/org..

2003-03-11 Thread Bertrand Delacretaz
Le Vendredi, 7 mars 2003, à 17:39 Europe/Zurich, Jeremias Maerki a 
écrit :

...My main motivations for the move as such:
- Easier handling of FOP in IDEs
- Best practices confirmance
- Finish what we (I) started
+0.5, the IDE thing might be useful.

As an option, we can also agree to do the same in the maintenance 
branch,
-0, I don't see a need here.

-Bertrand

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


cvs commit: xml-fop/src/org/apache/fop/render/ps PSTextPainter.java PSXMLHandler.java PSRenderer.java PSProcSets.java PSGraphics2D.java

2003-03-11 Thread jeremias
jeremias2003/03/11 00:42:24

  Modified:src/org/apache/fop/render/ps PSXMLHandler.java
PSRenderer.java PSProcSets.java PSGraphics2D.java
  Added:   src/org/apache/fop/render/ps PSTextPainter.java
  Log:
  Port of the PDF TextPainter to PostScript.
  Support for SEG_QUADTO (curves).
  Some support for viewport traits (background and borders).
  Submitted by: Zhong Yi [EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.4   +16 -11xml-fop/src/org/apache/fop/render/ps/PSXMLHandler.java
  
  Index: PSXMLHandler.java
  ===
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/render/ps/PSXMLHandler.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PSXMLHandler.java 7 Mar 2003 09:46:30 -   1.3
  +++ PSXMLHandler.java 11 Mar 2003 08:42:24 -  1.4
  @@ -50,24 +50,27 @@
*/ 
   package org.apache.fop.render.ps;
   
  -import org.apache.fop.render.XMLHandler;
  -import org.apache.fop.render.RendererContext;
  -import org.apache.fop.svg.SVGUserAgent;
  -import org.apache.fop.layout.FontInfo;
  +// Java
  +import java.awt.geom.AffineTransform;
  +import java.io.IOException;
   
  +// DOM
   import org.w3c.dom.Document;
  +import org.w3c.dom.svg.SVGDocument;
  +import org.w3c.dom.svg.SVGSVGElement;
   
  +// Batik
   import org.apache.batik.bridge.GVTBuilder;
   import org.apache.batik.bridge.BridgeContext;
   import org.apache.batik.bridge.ViewBox;
  -
   import org.apache.batik.gvt.GraphicsNode;
  +import org.apache.batik.gvt.TextPainter;
   
  -import org.w3c.dom.svg.SVGDocument;
  -import org.w3c.dom.svg.SVGSVGElement;
  -
  -import java.awt.geom.AffineTransform;
  -import java.io.IOException;
  +// FOP
  +import org.apache.fop.render.XMLHandler;
  +import org.apache.fop.render.RendererContext;
  +import org.apache.fop.svg.SVGUserAgent;
  +import org.apache.fop.layout.FontInfo;
   
   /**
* PostScript XML handler.
  @@ -300,7 +303,9 @@
   transform.translate(xOffset / 1000f, yOffset / 1000f);
   //aBridge.setCurrentTransform(transform);
   //ctx.putBridge(aBridge);
  -
  +  
  +TextPainter textPainter = new PSTextPainter(psInfo.getFontInfo());
  +ctx.setTextPainter(textPainter);
   GraphicsNode root;
   try {
   root = builder.build(ctx, doc);
  
  
  
  1.31  +197 -5xml-fop/src/org/apache/fop/render/ps/PSRenderer.java
  
  Index: PSRenderer.java
  ===
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/render/ps/PSRenderer.java,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- PSRenderer.java   5 Mar 2003 20:38:26 -   1.30
  +++ PSRenderer.java   11 Mar 2003 08:42:24 -  1.31
  @@ -59,6 +59,9 @@
   import java.util.Map;
   
   // FOP
  +import org.apache.fop.fo.properties.BackgroundRepeat;
  +import org.apache.fop.area.Area;
  +import org.apache.fop.area.RegionViewport;
   import org.apache.fop.apps.FOPException;
   import org.apache.fop.area.Block;
   import org.apache.fop.area.BlockViewport;
  @@ -73,9 +76,12 @@
   import org.apache.fop.layout.FontInfo;
   import org.apache.fop.render.AbstractRenderer;
   import org.apache.fop.render.RendererContext;
  -import org.w3c.dom.Document;
   
  +import org.apache.fop.image.FopImage;
  +import org.apache.fop.image.ImageFactory;
  +import org.apache.fop.traits.BorderProps;
   
  +import org.w3c.dom.Document;
   /**
* Renderer that renders to PostScript.
* br
  @@ -416,14 +422,15 @@
   {page.getPageNumber(),
new Integer(this.currentPageNumber)});
   final Integer zero = new Integer(0);
  -final Long pagewidth = new Long(Math.round(page.getViewArea().getWidth() / 
1000f));
  -final Long pageheight = new Long(Math.round(page.getViewArea().getHeight() 
/ 1000f));
  +final Long pagewidth = new Long(Math.round(page.getViewArea().getWidth()));
  +final Long pageheight = new 
Long(Math.round(page.getViewArea().getHeight()));
   gen.writeDSCComment(DSCConstants.PAGE_BBOX, new Object[]
   {zero, zero, pagewidth, pageheight});
   gen.writeDSCComment(DSCConstants.BEGIN_PAGE_SETUP); 
   gen.writeln(FOPFonts begin);
  -concatMatrix(1, 0, 0, -1, 0, pageheight.doubleValue());
   gen.writeln(0.001 0.001 scale);
  +concatMatrix(1, 0, 0, -1, 0, pageheight.doubleValue());
  +
   gen.writeDSCComment(DSCConstants.END_PAGE_SETUP); 
   
   //Process page
  @@ -629,7 +636,7 @@
   
   saveGraphicsState();
   // multiply with current CTM
  -//currentStream.add(CTMHelper.toPDFString(ctm) +  cm\n);
  +//writeln(CTMHelper.toPDFString(ctm) +  cm\n);
   final double 

Re: PS renderer 1

2003-03-11 Thread Jeremias Maerki
Committed to CVS. Thanks a lot. The tiger looks REAL nice now!!! :-)
Great work. I hope we can expect more from you.

A little request: Could you please synchronize with CVS before creating
and submitting a patch? I had to redo the changes I did last week. It
was no big deal but it would save me some work. 

On 11.03.2003 04:41:00 Zhong Yi wrote:
 These are the works I have done so far on PS renderer.
 4 files modified, 1 new file added.

Jeremias Maerki

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



cvs commit: xml-fop/src/documentation/content/xdocs anttask.xml

2003-03-11 Thread chrisg
chrisg  2003/03/11 01:03:51

  Modified:src/documentation/content/xdocs anttask.xml
  Log:
  Doh committed wrong file
  (I blame forrest because when running as webapp you have to edit the files in build 
;-)
  
  Revision  ChangesPath
  1.2   +95 -20xml-fop/src/documentation/content/xdocs/anttask.xml
  
  Index: anttask.xml
  ===
  RCS file: /home/cvs/xml-fop/src/documentation/content/xdocs/anttask.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- anttask.xml   10 Mar 2003 18:09:13 -  1.1
  +++ anttask.xml   11 Mar 2003 09:03:51 -  1.2
  @@ -8,32 +8,107 @@
 /header
 body
   p
  -FOP has also an ANT task for integration into your build process.
  -/p  
  -sectiontitleParameter/title
  +FOP provides an Ant task for integration into the build process./p
  +sectiontitleDescription/title
  +p
  +FOP Ant task converts xsl-fo documents to PDF/PS/PCL/MIF/RTF output
  +(see link href=output.htmlOutput formats/link for available formats)./p
  +p
  +FileSets are used to select files to render./p
  +/section
  +!-- TODO: Installation/Configuration --
  +sectiontitleParameters/title
  + tablecaptionparameters for FOP Ant task/caption 
  +  tr 
  +   thAttribute/th 
  +   thDescription/th 
  +   thRequired/th 
  +  /tr 
  +  tr 
  +   tdfofile/td 
  +   tdXSL-FO file to be rendered/td 
  +   tdOnly if there's no fileset/td 
  +  /tr 
  +  tr 
  +   tdoutfile/td 
  +   tdOutput filename/td 
  +   tdOnly when fofile is used (if there's no fileset)/td 
  +  /tr 
  +  tr 
  +   tdformat/td 
  +   tdPossible ouput formats:br/
  + codeapplication/pdf/codebr/
  + codeapplication/postscript/codebr/
  + codeapplication/vnd.mif/codebr/
  + codeapplication/rtf/codebr/
  + codeapplication/vnd.hp-PCL/codebr/
  + codetext/plain/codebr/
  + codetext/xml/codebr/
  + Defaults to codeapplication/pdf/code
  +   /td 
  +   tdNo, default is codeapplication/pdf/code/td 
  +  /tr 
  +  tr 
  +   tdoutdir/td 
  +   tdOutput directory/td 
  +   tdYes/td 
  +  /tr 
  +  tr 
  +   tdbasedir/td 
  +   tdDirectory to work from/td 
  +   tdYes/td 
  +  /tr 
  +  tr 
  +   tduserconfig/td 
  +   tdFile with user configuration (same as the -c command line option)/td 
  +   tdNo/td 
  +  /tr 
  +  tr 
  +   tdmessagelevel/td 
  +   tdLogging levelbr/
  +   Possible values: error, warn, info, verbose, debug/td 
  +   tdNo; defaults to verbose/td 
  +  /tr 
  +  tr 
  +   tdlogFiles/td 
  +   tdControls whether the names of the files that are processed are logged or 
not/td 
  +   tdNo; default is true/td 
  +  /tr 
  + /table 
  + sectiontitleParameters specified as nested elements/title
  +  sectiontitlefileset/title
  +  p
  +  FileSets are used to select files that will be rendered to the
  +  selected output format./p
  +  /section
  + /section
   /section
   section
   titleExamples/title
   p
  -
  +Converts one XSL-FO file to PDF:
   /p
   source![CDATA[
  -  target name=examples depends=package description=Generates example PDF 
files
  -taskdef name=fop classname=org.apache.fop.tools.anttasks.Fop
  - classpathref=libs-run-classpath/
  -mkdir dir=${build.examples.dir}/
  -fop format=${build.property.examples.mime.type} 
outdir=${build.examples.dir}
  - messagelevel=debug basedir=${fo.examples.dir}
  -  fileset dir=${fo.examples.dir}
  -include name=**/*.fo/
  -  /fileset
  -/fop
  -  /target
  -  ]]/source
  -  p
  -  See the full text of the link
  -  href=http://archives.apache.org/eyebrowse/[EMAIL 
PROTECTED]amp;msgNo=4509announcement/link.
  -  /p
  +target name=generate-pdf depends=init description=Generates PDF file
  +
  +  taskdef name=fop classname=org.apache.fop.tools.anttasks.Fop
  +   classpathref=libs-run-classpath/
  +
  +  fop fofile=examples/fo/basic/extensive.fo 
outfile=${build.dir}/extensive.pdf/
  +
  +/target
  +]]/source
  +p
  +Converts a whole directory of XSL-FO files to PostScript:
  +/p
  +source![CDATA[
  +fop format=application/postscript outdir=${build.dir}
  + messagelevel=debug basedir=${fo.examples.dir}
  +  fileset dir=${fo.examples.dir}
  +include name=**/*.fo/
  +  /fileset
  +/fop
  +]]/source
   /section
   /body
   /document
  
  
  

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



Re: Conversion from src/org.. to src/java/org..

2003-03-11 Thread Jeremias Maerki
Ok, seems like there are no vetos around. I'm starting this afternoon,
around 13:30-CET (3 hours from now) in trunk only.


Jeremias Maerki

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



DO NOT REPLY [Bug 7903] - org.apache.fop.apps.Version.getVersion()

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7903

org.apache.fop.apps.Version.getVersion()





--- Additional Comments From [EMAIL PROTECTED]  2003-03-11 09:34 ---
hm, okay but it's the same way like in apache Xerces: 

System.out.println(Version: +org.apache.xerces.impl.Version.getVersion());

works flawlessly :-)

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



cvs commit: xml-fop status.xml

2003-03-11 Thread jeremias
jeremias2003/03/11 01:37:51

  Modified:.status.xml
  Log:
  Update changes (triggered from changes to PostScript output)
  
  Revision  ChangesPath
  1.24  +10 -0 xml-fop/status.xml
  
  Index: status.xml
  ===
  RCS file: /home/cvs/xml-fop/status.xml,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- status.xml21 Jan 2003 10:54:37 -  1.23
  +++ status.xml11 Mar 2003 09:37:51 -  1.24
  @@ -115,6 +115,16 @@
   
 changes
  release version=? date=2003
  +action context=code dev=JM type=update
  +due-to=Zhong Yi due-to-email=[EMAIL PROTECTED]
  +  Port of the PDF TextPainter to PostScript. Support for SEG_QUADTO (curves).
  +  Some support for viewport traits (background and borders).
  + /action
  +action context=code dev=JM type=update
  +  Brought back the PostScript renderer. Compared to the branch it
  +  has a cleaner separation of PostScript generation code from
  +  renderer-specific code.
  +/action
   action context=code dev=JM type=fix
 Fixed bug #16257: Get ascender/descender from OS/2 table if the ones in
 hhea are zero (TrueType fonts).
  
  
  

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



Re: Branch for alt.design integration

2003-03-11 Thread Jeremias Maerki
I agree with you, although it might not be so bad to merge back with the
trunk as soon as the rough edges are gone. This might give the whole
thing a bit more drive. Maybe.

I guess it's no problem for you to wait to tag until I've moved all the
file from src/org to src/java/org, right? Should be done within 8 hours
from now.

As I said, I'm available to help you with the integration. Just tell me
how. I'm interested in sorting this out soon and having you back on the
trunk.

On 10.03.2003 12:43:33 Peter B. West wrote:
 I want very soon to tag the tree and create an integration branch, with 
 the intention of merging in from HEAD at frequent intervals, so that the 
 merge back to HEAD is painless when it happens.  I think there are 
 enough issues to be sorted out, and that the required feedback from the 
 area tree will be a thorny enough issue that it would be sensible to 
 conduct such experiments away from other development.
 
 Opinions?


Jeremias Maerki


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



Re: Conversion from src/org.. to src/java/org..

2003-03-11 Thread Oleg Tkachenko
Jeremias Maerki wrote:
Ok, seems like there are no vetos around. I'm starting this afternoon,
around 13:30-CET (3 hours from now) in trunk only.
Well, I'm late, but here is my +1/-0

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


Re: Branch for alt.design integration

2003-03-11 Thread Peter B. West
Jeremias,

I'm still struggling to get forrest to do just what I want it to, and 
that has consumed a fair bit of the limited time I have had available 
recently.  I'm looking forward to getting the front end integrated, and, 
yes, I agree that as soon as it is workable, the merge into HEAD should 
occur.

Thanks again for the offers of help.  I assume that Rhett is still 
lurking somewhere as well.  Apologies for the delay in getting to this.

Peter

Jeremias Maerki wrote:
I agree with you, although it might not be so bad to merge back with the
trunk as soon as the rough edges are gone. This might give the whole
thing a bit more drive. Maybe.
I guess it's no problem for you to wait to tag until I've moved all the
file from src/org to src/java/org, right? Should be done within 8 hours
from now.
As I said, I'm available to help you with the integration. Just tell me
how. I'm interested in sorting this out soon and having you back on the
trunk.
--
Peter B. West  [EMAIL PROTECTED]  http://www.powerup.com.au/~pbwest/
Lord, to whom shall we go?
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]


Help!!!

2003-03-11 Thread Sidhartha Tripathy



hi 
i am using some unicode fonts in xml file and finally 
displaying that in pdf file using fop

but i for some fonts i am getting squares i have downloaded 
unicode fonts and registered that in fop.

these are the fonts

#xff63; #xFF80; #xFF93; 
#8225;
is there any solutions for that ?? another character that is 
also not coming is endash #8211;.
plz suggest any way to print those characters.
Thanks
Sid
** Message from InterScan E-Mail VirusWall NT **

** No virus found in attached file noname.htm
** No virus found in attached file noname.htm

NO VIRUS FOUND: SERVER GENERATED MESSAGE
* End of message ***


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

Re: PS renderer 1

2003-03-11 Thread Zhong Yi
Will do.

--- Jeremias Maerki [EMAIL PROTECTED] wrote:
 Committed to CVS. Thanks a lot. The tiger looks REAL
 nice now!!! :-)
 Great work. I hope we can expect more from you.
 
 A little request: Could you please synchronize with
 CVS before creating
 and submitting a patch? I had to redo the changes I
 did last week. It
 was no big deal but it would save me some work. 
 
 On 11.03.2003 04:41:00 Zhong Yi wrote:
  These are the works I have done so far on PS
 renderer.
  4 files modified, 1 new file added.
 
 Jeremias Maerki
 

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


__
Do you Yahoo!?
Yahoo! Web Hosting - establish your business online
http://webhosting.yahoo.com

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



cvs commit: xml-fop/src/java/org - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:19

  xml-fop/src/java/org - New directory

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



cvs commit: xml-fop/src/java/org/apache - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:19

  xml-fop/src/java/org/apache - New directory

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



cvs commit: xml-fop/src/java - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:18

  xml-fop/src/java - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:19

  xml-fop/src/java/org/apache/fop - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/apps - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:19

  xml-fop/src/java/org/apache/fop/apps - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/area/inline - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:19

  xml-fop/src/java/org/apache/fop/area/inline - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/fo - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:19

  xml-fop/src/java/org/apache/fop/fo - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/fo/flow - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:20

  xml-fop/src/java/org/apache/fop/fo/flow - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/fo/pagination - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:20

  xml-fop/src/java/org/apache/fop/fo/pagination - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/fonts/type1 - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:22

  xml-fop/src/java/org/apache/fop/fonts/type1 - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/layoutmgr - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:23

  xml-fop/src/java/org/apache/fop/layoutmgr - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/fonts - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:20

  xml-fop/src/java/org/apache/fop/fonts - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/mif - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:23

  xml-fop/src/java/org/apache/fop/mif - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/rtf/renderer - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:24

  xml-fop/src/java/org/apache/fop/rtf/renderer - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/layoutmgr/table - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:23

  xml-fop/src/java/org/apache/fop/layoutmgr/table - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/render/svg - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:24

  xml-fop/src/java/org/apache/fop/render/svg - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/rtf - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:24

  xml-fop/src/java/org/apache/fop/rtf - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/render - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:23

  xml-fop/src/java/org/apache/fop/render - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/servlet - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:24

  xml-fop/src/java/org/apache/fop/servlet - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/extensions - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:19

  xml-fop/src/java/org/apache/fop/extensions - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/render/pdf - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:24

  xml-fop/src/java/org/apache/fop/render/pdf - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/render/xml - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:24

  xml-fop/src/java/org/apache/fop/render/xml - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/viewer/resources - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:25

  xml-fop/src/java/org/apache/fop/viewer/resources - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/viewer/Images - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:25

  xml-fop/src/java/org/apache/fop/viewer/Images - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/datatypes - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:19

  xml-fop/src/java/org/apache/fop/datatypes - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/traits - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:25

  xml-fop/src/java/org/apache/fop/traits - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/fo/expr - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:19

  xml-fop/src/java/org/apache/fop/fo/expr - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/fonts/apps - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:20

  xml-fop/src/java/org/apache/fop/fonts/apps - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/layout - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:22

  xml-fop/src/java/org/apache/fop/layout - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/image - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:22

  xml-fop/src/java/org/apache/fop/image - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/render/awt - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:24

  xml-fop/src/java/org/apache/fop/render/awt - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/render/ps - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:24

  xml-fop/src/java/org/apache/fop/render/ps - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/tools/anttasks - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:25

  xml-fop/src/java/org/apache/fop/tools/anttasks - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/fonts/truetype - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:22

  xml-fop/src/java/org/apache/fop/fonts/truetype - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/image/analyser - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:22

  xml-fop/src/java/org/apache/fop/image/analyser - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/fonts/base14 - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:20

  xml-fop/src/java/org/apache/fop/fonts/base14 - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/layout/hyphenation - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:52:22

  xml-fop/src/java/org/apache/fop/layout/hyphenation - New directory

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



cvs commit: xml-fop/src/java/org/apache/fop/viewer/images - New directory

2003-03-11 Thread jeremias
jeremias2003/03/11 04:54:26

  xml-fop/src/java/org/apache/fop/viewer/images - New directory

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



cvs commit: xml-fop/src/org/apache/fop/fonts/apps FontPostProcessSort.xsl FontPostProcess.xsl

2003-03-11 Thread jeremias
jeremias2003/03/11 05:10:59

  Removed: src/org/apache/fop/fonts/apps FontPostProcessSort.xsl
FontPostProcess.xsl
  Log:
  Deleting obsolete files.

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



Fw: CVS commit FYI

2003-03-11 Thread Jeremias Maerki

Forwarded by Jeremias Maerki [EMAIL PROTECTED]
--- Original Message ---
 From:[EMAIL PROTECTED]
 To:  [EMAIL PROTECTED]
 Date:11 Mar 2003 13:05:57 -
 Subject: failure notice


Hi. This is the qmail-send program at apache.org.
I'm afraid I wasn't able to deliver your message to the following addresses.
This is a permanent error; I've given up. Sorry it didn't work out.

[EMAIL PROTECTED]:
ezmlm-reject: fatal: Sorry, I don't accept messages larger than 100 bytes (#5.2.3)

--- Below this line is a copy of the message.

Return-Path: [EMAIL PROTECTED]
Received: (qmail 71992 invoked from network); 11 Mar 2003 13:05:51 -
Received: from icarus.apache.org (208.185.179.13)
  by daedalus.apache.org with SMTP; 11 Mar 2003 13:05:51 -
Received: (qmail 17067 invoked by uid 1482); 11 Mar 2003 13:05:49 -
Date: 11 Mar 2003 13:05:49 -
Message-ID: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: cvs commit: xml-fop/src/java/org/apache/fop/rtf/renderer RTFHandler.java
X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N

jeremias2003/03/11 05:05:43

  Added:   src/java/org/apache/fop/svg PDFGraphicsDevice.java
PDFDocumentGraphics2D.java
PDFImageElementBridge.java package.html
PDFGraphics2D.java SVGUserAgent.java
SVGElementMapping.java SVGUtilities.java
PDFTranscoder.java PDFGraphicsConfiguration.javat
PDFAElementBridge.java SVGElement.java SVGObj.java
PDFTextElementBridge.java PDFTextPainter.java
PDFANode.java
   src/java/org/apache/fop/pdf PDFFunction.java
PDFRectangle.java PDFCIDSystemInfo.java
StreamCache.java PDFFontNonBase14.java
PDFImage.java PDFWArray.java ASCII85Filter.java
PDFLink.java PDFCIDFontDescriptor.java
PDFT1Stream.java package.html PDFObject.java
PDFColorSpace.java DCTFilter.java PDFFileSpec.java
PDFPages.java PDFAction.java PDFRoot.java
PDFOutline.java PDFCMap.java FlateFilter.java
BitmapImage.java TransitionDictionary.java
PDFPage.java PDFGoToRemote.java
PDFFontDescriptor.java PDFResources.java
PDFCIDFont.java PDFFilter.java PDFAnnotList.java
PDFPattern.java InMemoryStreamCache.java
PDFEncoding.java PDFFont.java PDFColor.java
PDFGState.java PDFPathPaint.java
PDFFormXObject.java PDFShading.java PDFArray.java
PDFTTFStream.java PDFStream.java PDFState.java
PDFFontTrueType.java ASCIIHexFilter.java
PDFUri.java TempFileStreamCache.java
PDFFontType1.java PDFGoTo.java
PDFFilterException.java PDFFontType0.java
PDFFontType3.java PDFDocument.java PDFXObject.java
PDFICCStream.java PDFNumber.java PDFCharProcs.java
PDFInternalLink.java PDFResourceContext.java
PDFInfo.java
   src/java/org/apache/fop/render/pdf FontTriplet.java
FontSetup.java EmbedFontInfo.java PDFRenderer.java
PDFXMLHandler.java FontReader.java CTMHelper.java
package.html FopPDFImage.java
   src/java/org/apache/fop/layout MarginInlineProps.java
AbsolutePositionProps.java AuralProps.java
HyphenationProps.java FontState.java
RelativePositionProps.java TextState.java
BackgroundProps.java PageMaster.java FontInfo.java
AreaClass.java AccessibilityProps.java
MarginProps.java BorderAndPadding.java
   src/java/org/apache/fop/fonts package.html MutableFont.java
Glyphs.java LazyFont.java CIDFont.java
FontMetrics.java MultiByteFont.java
FontDescriptor.java CIDFontType.java
SingleByteFont.java Font.java FontType.java
BFEntry.java CustomFont.java
   src/java/org/apache/fop/fo/flow Character.java Float.java
BidiOverride.java MultiToggle.java
InstreamForeignObject.java Inline.java Wrapper.java
Marker.java BlockContainer.java TableCell.java
TableRow.java MultiCase.java MultiProperties.java
TableCaption.java MultiSwitch.java ListBlock.java
FootnoteBody.java 

cvs commit: xml-fop/src/org/apache/fop/rtf/renderer RTFHandler.java

2003-03-11 Thread jeremias
jeremias2003/03/11 05:25:33

  Removed: src/org/apache/fop/layoutmgr LayoutManager.java
LayoutContext.java LineLayoutManager.java
BlockContainerLayoutManager.java HyphContext.java
TraitSetter.java BlockStackingLayoutManager.java
MinOptMax.java LeafPosition.java
ContentLayoutManager.java
StaticContentLayoutManager.java
LeafNodeLayoutManager.java PageLayoutManager.java
BlockLayoutManager.java NonLeafPosition.java
AbstractLayoutManager.java
RetrieveMarkerLayoutManager.java
LayoutProcessor.java BreakCost.java
PositionIterator.java SpaceSpecifier.java
BreakPoss.java Position.java BreakPossPosIter.java
FlowLayoutManager.java
InlineStackingLayoutManager.java
TextLayoutManager.java LMiter.java
   src/org/apache/fop/fo/pagination Region.java
SubSequenceSpecifier.java SimplePageMaster.java
RegionBefore.java Root.java RegionStart.java
RepeatablePageMasterReference.java
PageSequence.java RegionBA.java
RepeatablePageMasterAlternatives.java
PageNumberGenerator.java PageSequenceMaster.java
PageMasterReference.java RegionSE.java
RegionEnd.java LayoutMasterSet.java RegionBody.java
SinglePageMasterReference.java RegionBASE.java
ConditionalPageMasterReference.java
RegionAfter.java
   src/org/apache/fop/fo/expr PropertyParser.java
PPColWidthFunction.java PropertyException.java
NCnameProperty.java LabelEndFunction.java
FloorFunction.java FromTableColumnFunction.java
Function.java RGBColorFunction.java
RoundFunction.java FopPropValFunction.java
NearestSpecPropFunction.java CeilingFunction.java
PropertyTokenizer.java FunctionBase.java
InheritedPropFunction.java AbsFunction.java
Numeric.java BodyStartFunction.java
PropertyInfo.java NumericProperty.java
FromParentFunction.java MinFunction.java
MaxFunction.java
   src/org/apache/fop/apps FOInputHandler.java Fop.java
CommandLineStarter.java AWTStarter.java
LayoutHandler.java XSLTInputHandler.java
Driver.java Version.java Starter.java
TraxInputHandler.java StructureHandler.java
CommandLineOptions.java package.html
InputHandler.java FOPException.java
PrintStarter.java
   src/org/apache/fop/pdf PDFPathPaint.java PDFInfo.java
PDFFontType3.java PDFPage.java
TransitionDictionary.java PDFDocument.java
PDFOutline.java StreamCache.java FlateFilter.java
PDFFormXObject.java PDFAnnotList.java PDFColor.java
package.html PDFNumber.java PDFFilter.java
PDFInternalLink.java PDFFontType0.java PDFCMap.java
PDFCIDFont.java PDFEncoding.java PDFAction.java
PDFImage.java PDFRectangle.java PDFICCStream.java
BitmapImage.java PDFColorSpace.java PDFGState.java
PDFWArray.java PDFGoTo.java PDFCIDSystemInfo.java
PDFFunction.java PDFStream.java PDFObject.java
PDFLink.java DCTFilter.java PDFResourceContext.java
PDFResources.java ASCII85Filter.java
PDFFontTrueType.java PDFState.java
PDFFontDescriptor.java PDFUri.java
PDFGoToRemote.java PDFCIDFontDescriptor.java
PDFFontNonBase14.java ASCIIHexFilter.java
TempFileStreamCache.java InMemoryStreamCache.java
PDFFontType1.java PDFXObject.java PDFPattern.java
PDFT1Stream.java PDFTTFStream.java PDFFileSpec.java
PDFFont.java PDFPages.java PDFArray.java
PDFFilterException.java PDFCharProcs.java
PDFRoot.java PDFShading.java
   src/org/apache/fop/util CharUtilities.java
StreamUtilities.java
   src/org/apache/fop/layout/hyphenation ByteVector.java
  

Re: Conversion from src/org.. to src/java/org..

2003-03-11 Thread Jeremias Maerki
Done! Went relatively painlessly with Eclipse.
fx type=pat, patNice tool./fx

I've done exactly one little modification when moving over: The Images
directory under viewer is now in lowercase to better fit in with the
rest. You've seen the CVS log.

I hope I did everything right. If you find anything...

On 11.03.2003 10:25:12 Jeremias Maerki wrote:
 Ok, seems like there are no vetos around. I'm starting this afternoon,
 around 13:30-CET (3 hours from now) in trunk only.


Jeremias Maerki


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



Re: Conversion from src/org.. to src/java/org..

2003-03-11 Thread Oleg Tkachenko
Jeremias Maerki wrote:
Done! Went relatively painlessly with Eclipse.
fx type=pat, patNice tool./fx
I've done exactly one little modification when moving over: The Images
directory under viewer is now in lowercase to better fit in with the
rest. You've seen the CVS log.
Thanks for that, especially for Images dir - it was really annoying.
So you are saying it's over and we can do clean chechout now?
--
Oleg Tkachenko
Multiconn Technologies, Israel
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]


cvs commit: xml-fop/src/documentation/content/xdocs news.xml

2003-03-11 Thread chrisg
chrisg  2003/03/11 06:37:55

  Modified:.build.xml
   src/documentation/content/xdocs news.xml
  Log:
  fixed typos in docs
  fixed omission from Images - images renaming
  
  Revision  ChangesPath
  1.76  +1 -1  xml-fop/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/xml-fop/build.xml,v
  retrieving revision 1.75
  retrieving revision 1.76
  diff -u -r1.75 -r1.76
  --- build.xml 11 Mar 2003 13:18:35 -  1.75
  +++ build.xml 11 Mar 2003 14:37:55 -  1.76
  @@ -155,7 +155,7 @@
   property name=packages value=org.apache.fop.*/
   
   property name=viewer.resources.src.dir 
value=${src.java}/org/apache/fop/viewer/resources/
  -property name=viewer.images.src.dir 
value=${src.java}/org/apache/fop/viewer/Images/
  +property name=viewer.images.src.dir 
value=${src.java}/org/apache/fop/viewer/images/
   
   property name=build.dir value=./build/
   property name=build.src value=./build/src/
  
  
  
  1.8   +1 -1  xml-fop/src/documentation/content/xdocs/news.xml
  
  Index: news.xml
  ===
  RCS file: /home/cvs/xml-fop/src/documentation/content/xdocs/news.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- news.xml  10 Mar 2003 18:09:13 -  1.7
  +++ news.xml  11 Mar 2003 14:37:55 -  1.8
  @@ -15,7 +15,7 @@
 /p
   /section
   section
  -  title2 Frebruar 2002 - New XML PMC/title
  +  title2 Februar 2003 - New XML PMC/title
 p
 Jeremias Maerki and Peter B. West are now representing FOP on the XML PMC.
 /p
  
  
  

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



Re: Conversion from src/org.. to src/java/org..

2003-03-11 Thread Jeremias Maerki
Yes, I'm pretty happy now: Everything is in the right directories having
the right licenses. Leaves these bloody license issues with hyphenation
patterns. Still waiting for an answer from the license experts.

Thanks to Christian for spotting the images directory in the build.xml!!

On 11.03.2003 14:48:33 Oleg Tkachenko wrote:
 Jeremias Maerki wrote:
  Done! Went relatively painlessly with Eclipse.
  fx type=pat, patNice tool./fx
  
  I've done exactly one little modification when moving over: The Images
  directory under viewer is now in lowercase to better fit in with the
  rest. You've seen the CVS log.
 Thanks for that, especially for Images dir - it was really annoying.
 So you are saying it's over and we can do clean chechout now?


Jeremias Maerki


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



DO NOT REPLY [Bug 17889] New: - external images in blocks that contain nested blocks are repeated

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17889

external images in blocks that contain nested blocks are repeated

   Summary: external images in blocks that contain nested blocks are
repeated
   Product: Fop
   Version: 0.20.5
  Platform: PC
OS/Version: Other
Status: NEW
  Severity: Major
  Priority: Other
 Component: page-master/layout
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


A structure like this:

fo:block
fo:external-graphic/
fo:block
Foo 
/fo:block
fo:block
Bar 
/fo:block
/fo:block

Produces output like this:

*image*
Foo
*image*
Bar
*image*

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



Re: cvs commit: xml-fop buildtools.xml

2003-03-11 Thread J.Pietschmann
[EMAIL PROTECTED] wrote:
  Modified:.buildtools.xml
I was under the impression buildtools was no longer necessary?

J.Pietschmann



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


DO NOT REPLY [Bug 17889] - external images in blocks that contain nested blocks are repeated

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17889

external images in blocks that contain nested blocks are repeated

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE



--- Additional Comments From [EMAIL PROTECTED]  2003-03-11 21:54 ---


*** This bug has been marked as a duplicate of 17472 ***

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



DO NOT REPLY [Bug 17472] - Images appear twice oin PDF output

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17472

Images appear twice oin PDF output

[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]



--- Additional Comments From [EMAIL PROTECTED]  2003-03-11 21:54 ---
*** Bug 17889 has been marked as a duplicate of this bug. ***

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



Re: Help!!!

2003-03-11 Thread J.Pietschmann
Sidhartha Tripathy wrote:
hi 
i am using some unicode fonts in xml file and finally displaying that in pdf file  using fop

but i for some fonts i am getting squares i have downloaded unicode fonts and registered that in fop.

these are the fonts
#xff63;  #xFF80;  #xFF93; #8225;
is there any solutions for that ?? another character that is also not coming is endash #8211;.
Check whether your font has a glyph for the mentioned characters.
At least the #xff63; etc. seem to be fairly unusual (ASCII variants,
full width). The double #8225; (double dagger) shouldn't have
a problem with a proper Unicode font. I think none of the characters
will work with the any of the default fonts.
J.Pietschmann

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


Re: cvs commit: xml-fop buildtools.xml

2003-03-11 Thread Jeremias Maerki
True. At least, that's what I believe. I just didn't want to remove it,
yet, because Gump refers to it. That reference should be removed first
IMO and I haven't gotten to it, yet. I'll see into it tomorrow.

On 11.03.2003 22:44:25 J.Pietschmann wrote:
 [EMAIL PROTECTED] wrote:
Modified:.buildtools.xml
 
 I was under the impression buildtools was no longer necessary?


Jeremias Maerki


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



cvs commit: xml-fop/src/documentation/content/xdocs faq.xml

2003-03-11 Thread vmote
vmote   2003/03/11 17:08:53

  Modified:src/documentation/content/xdocs Tag: fop-0_20_2-maintain
faq.xml
  Log:
  Add developer section. Add FAQ for obtaining javadocs.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.3.2.6   +11 -0 xml-fop/src/documentation/content/xdocs/faq.xml
  
  Index: faq.xml
  ===
  RCS file: /home/cvs/xml-fop/src/documentation/content/xdocs/faq.xml,v
  retrieving revision 1.3.2.5
  retrieving revision 1.3.2.6
  diff -u -r1.3.2.5 -r1.3.2.6
  --- faq.xml   18 Feb 2003 12:27:34 -  1.3.2.5
  +++ faq.xml   12 Mar 2003 01:08:52 -  1.3.2.6
  @@ -1644,6 +1644,17 @@
   /faq
 /part
 part
  +titleGeneral Developer Questions/title
  +faq id=javadoc_location
  +  questionHow do I get the javadocs for FOP?/question
  +  answer
  +pCurrently, the only way to get FOP javadocs is to link 
href=download.html
  +Download the source code/link and then link href=compiling.htmlBuild
  +FOP/link using the ant build task javadocs./p
  +  /answer
  +/faq
  +  /part
  +  part
   titleGeneral suggestions. How to solve problems./title
   faq
 questionWhere to post bugs./question
  
  
  

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



cvs commit: xml-fop/src/documentation/content/xdocs faq.xml

2003-03-11 Thread vmote
vmote   2003/03/11 17:15:22

  Modified:src/documentation/content/xdocs faq.xml
  Log:
  Add developer section. Add FAQ for obtaining javadocs.
  
  Revision  ChangesPath
  1.9   +11 -0 xml-fop/src/documentation/content/xdocs/faq.xml
  
  Index: faq.xml
  ===
  RCS file: /home/cvs/xml-fop/src/documentation/content/xdocs/faq.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- faq.xml   27 Jan 2003 00:49:44 -  1.8
  +++ faq.xml   12 Mar 2003 01:15:22 -  1.9
  @@ -1645,6 +1645,17 @@
   /faq
 /part
 part
  +titleGeneral Developer Questions/title
  +faq id=javadoc_location
  +  questionHow do I get the javadocs for FOP?/question
  +  answer
  +pCurrently, the only way to get FOP javadocs is to link 
href=download.html
  +Download the source code/link and then link href=compiling.htmlBuild
  +FOP/link using the ant build task javadocs./p
  +  /answer
  +/faq
  +  /part
  +  part
   titleGeneral suggestions. How to solve problems./title
   faq
 questionWhere to post bugs./question
  
  
  

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



cvs commit: xml-fop/src/documentation/content/xdocs faq.xml

2003-03-11 Thread vmote
vmote   2003/03/11 17:41:22

  Modified:src/documentation/content/xdocs faq.xml
  Log:
  Add ID for each faq, so that document links will be permanent.
  
  Revision  ChangesPath
  1.10  +57 -57xml-fop/src/documentation/content/xdocs/faq.xml
  
  Index: faq.xml
  ===
  RCS file: /home/cvs/xml-fop/src/documentation/content/xdocs/faq.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- faq.xml   12 Mar 2003 01:15:22 -  1.9
  +++ faq.xml   12 Mar 2003 01:41:22 -  1.10
  @@ -5,7 +5,7 @@
   faqs title=FOP FAQ
 part
   titleGeneral questions/title
  -faq
  +faq id=fop_general
 questionWhat is FOP?/question
 answer
 p
  @@ -19,7 +19,7 @@
 /p
 /answer
   /faq
  -faq
  +faq id=fop_functions
 questionWhat can I do with FOP?/question
 answer
   p
  @@ -36,7 +36,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=fop_acronym
 questionWhat does FOP stand for?/question
 answer
   p
  @@ -45,7 +45,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=fop_other_apache
 questionHow does FOP interact with other Apache Projects?/question
 answer
   p
  @@ -61,7 +61,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=xsl_def
 questionWhat is XSL?/question
 answer
   p
  @@ -110,7 +110,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=contribute
 questionHow can I contribute?/question
 answer
   p
  @@ -122,7 +122,7 @@
 /part
 part
   titleCommon stumbling blocks/title
  -faq
  +faq id=blank_page_between_page_sequences
 questionWhy does FOP insert a blank page between my page 
sequences?/question
 answer
   p
  @@ -147,7 +147,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=no_page_master
 questionI get the error: [ERROR]: 'master-reference' for
 'fo:page-sequence'matches no 'simple-page-master' or
 'page-sequence-master'/question
  @@ -168,7 +168,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=png_fails
 questionMy PNG images don't work./question
 answer
   p
  @@ -187,7 +187,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=NoClassDefFound
 questionI get a NoClassDefFound exception./question
 answer
   p
  @@ -212,7 +212,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=NoSuchMethodException
 questionI get a NoSuchMethodException or a NoSuchFieldException
 exception./question
 answer
  @@ -228,7 +228,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=OutOfMemoryException
 questionI get an OutOfMemoryException./question
 answer
   p
  @@ -299,7 +299,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=MalformedURLException
 questionI get a MalformedURLException./question
 answer
   anchor id=MalformedURL/
  @@ -334,7 +334,7 @@
   /p--
 /answer
   /faq
  -faq
  +faq id=NullPointerException
 questionI get an [ERROR]: null, or a NullPointerException./question
 answer
   p
  @@ -366,7 +366,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=fop_hangs
 questionFOP hangs. FOP does not exit./question
 answer
   p
  @@ -406,7 +406,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=cannot_find_external-graphics
 questionFOP cannot find a file for fo:external-graphics./question
 answer
   p
  @@ -427,7 +427,7 @@
   /p--
 /answer
   /faq
  -faq
  +faq id=fonts_not_found
 questionFOP does not find my fonts./question
 answer
   p
  @@ -443,7 +443,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=keep-with
 questionKeep-with-next, keep-with-previous, keep-together
 don't work./question
 answer
  @@ -478,7 +478,7 @@
   /fo:table]]/source
 /answer
   /faq
  -faq
  +faq id=table_missing
 questionMy tables are missing, or missing their content./question
 answer
   p
  @@ -494,7 +494,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=cells_overflow
 questionText overflowing table cells and the like is not clipped. Long
   text flows into adjacent cells/block, obscuring stuff there./question
 answer
  @@ -524,7 +524,7 @@
   /p
 /answer
   /faq
  -faq
  +faq id=page_number_align
 questionPage numbers are not properly right aligned./question
 answer