You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by fo...@locus.apache.org on 2000/07/24 17:39:35 UTC

cvs commit: xml-fop/src/org/apache/fop/fo PropertyListBuilder.java StandardElementMapping.java

fotis       00/07/24 08:39:34

  Modified:    src/org/apache/fop/fo PropertyListBuilder.java
                        StandardElementMapping.java
  Log:
  externalgraphic replaces graphic tags in former xsl versions
  
  Revision  Changes    Path
  1.19      +3 -3      xml-fop/src/org/apache/fop/fo/PropertyListBuilder.java
  
  Index: PropertyListBuilder.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/PropertyListBuilder.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- PropertyListBuilder.java	2000/07/18 06:15:43	1.18
  +++ PropertyListBuilder.java	2000/07/24 15:39:32	1.19
  @@ -1,4 +1,4 @@
  -/*-- $Id: PropertyListBuilder.java,v 1.18 2000/07/18 06:15:43 keiron Exp $ -- 
  +/*-- $Id: PropertyListBuilder.java,v 1.19 2000/07/24 15:39:32 fotis Exp $ -- 
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -105,7 +105,7 @@
   	propertyTable.put("break-before",BreakBefore.maker());
   	propertyTable.put("break-after",BreakAfter.maker());
   	propertyTable.put("text-indent",TextIndent.maker());
  -	propertyTable.put("href",HRef.maker());
  +	propertyTable.put("src",Src.maker());
   	propertyTable.put("column-width",ColumnWidth.maker());
   	propertyTable.put("keep-with-next",KeepWithNext.maker());
   	propertyTable.put("background-color",BackgroundColor.maker());
  @@ -114,7 +114,7 @@
   	propertyTable.put("padding-left",PaddingLeft.maker());
   	propertyTable.put("padding-right",PaddingRight.maker());
   	propertyTable.put("external-destination",ExternalDestination.maker());
  -        propertyTable.put("internal-destination",InternalDestination.maker());
  +	propertyTable.put("internal-destination",InternalDestination.maker());
   	propertyTable.put("x",SVGLengthProperty.maker());
   	propertyTable.put("y",SVGLengthProperty.maker());
   	propertyTable.put("x1",SVGLengthProperty.maker());
  
  
  
  1.11      +3 -5      xml-fop/src/org/apache/fop/fo/StandardElementMapping.java
  
  Index: StandardElementMapping.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/StandardElementMapping.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- StandardElementMapping.java	2000/07/11 02:28:40	1.10
  +++ StandardElementMapping.java	2000/07/24 15:39:32	1.11
  @@ -1,4 +1,4 @@
  -/*-- $Id: StandardElementMapping.java,v 1.10 2000/07/11 02:28:40 arved Exp $ -- 
  +/*-- $Id: StandardElementMapping.java,v 1.11 2000/07/24 15:39:32 fotis Exp $ -- 
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -96,10 +96,8 @@
   	builder.addMapping(uri, "inline-sequence",
   			   InlineSequence.maker()); 
   	builder.addMapping(uri, "display-rule", DisplayRule.maker()); 
  -	builder.addMapping(uri, "display-graphic",
  -			   DisplayGraphic.maker());  
  -        builder.addMapping(uri, "inline-graphic",
  -                           InlineGraphic.maker());
  +  builder.addMapping(uri, "external-graphic",
  +                           ExternalGraphic.maker());
   	builder.addMapping(uri, "table", Table.maker());
   	builder.addMapping(uri, "table-column", TableColumn.maker());
   	builder.addMapping(uri, "table-body", TableBody.maker());