You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-dev@xmlgraphics.apache.org by bu...@apache.org on 2001/04/26 15:19:16 UTC

[Bug 1531] New - Cell Spacing

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

*** shadow/1531	Thu Apr 26 06:19:16 2001
--- shadow/1531.tmp.10985	Thu Apr 26 06:19:16 2001
***************
*** 0 ****
--- 1,144 ----
+ +============================================================================+
+ | Cell Spacing                                                               |
+ +----------------------------------------------------------------------------+
+ |        Bug #: 1531                        Product: Fop                     |
+ |       Status: NEW                         Version: 0.15                    |
+ |   Resolution:                            Platform: PC                      |
+ |     Severity: Critical                 OS/Version:                         |
+ |     Priority:                           Component: general                 |
+ +----------------------------------------------------------------------------+
+ |  Assigned To: fop-dev@xml.apache.org                                       |
+ |  Reported By: rbdave@rediffmail.com                                        |
+ |      CC list: Cc:                                                          |
+ +----------------------------------------------------------------------------+
+ |          URL:                                                              |
+ +============================================================================+
+ |                              DESCRIPTION                                   |
+ I am unable to span rows in tag <table-cell number-rows-spanned="2" />
+ 
+ i tried fop on your sample code "headfoot.fo", it is giving warning as number 
+ of cells under 'table-row' not equal to 'table-column'.
+ below is the sample code from your file,
+ **************
+ <fo:table>
+ 	<fo:table-column column-width="48pt"/>
+ 	<fo:table-column column-width="48pt"/>
+ 	<fo:table-column column-width="48pt"/>
+ 	<fo:table-column column-width="48pt"/>
+ 	<fo:table-column column-width="48pt"/>
+ 	<fo:table-column column-width="48pt"/>
+ 	<fo:table-body>
+ 	  <fo:table-row>
+ 	    <fo:table-cell number-rows-spanned="1"
+ 		border-width="0.5pt"
+ 		border-style="solid"
+ 		border-color="black" 
+ 		text-align="center" vertical-align="middle"
+ 		background-color="#FF6AC0">
+ 	      <fo:block> 1 - 1</fo:block>
+ 	    </fo:table-cell>
+ 	    <fo:table-cell number-rows-spanned="2"
+ 		border-width="0.5pt"
+ 		border-style="solid"
+ 		border-color="black" 
+ 		text-align="center" vertical-align="middle"
+ 		background-color="#FF6AC0">
+ 	      <fo:block> 1 - 2</fo:block>
+ 	    </fo:table-cell>
+ 	    <fo:table-cell number-rows-spanned="3"
+ 		border-width="0.5pt"
+ 		border-style="solid"
+ 		border-color="black" 
+ 		text-align="center" vertical-align="middle"
+ 		background-color="#FF6AC0"><fo:block> 1 - 3</fo:block>
+ 	    </fo:table-cell>
+     
+ 	    <fo:table-cell number-rows-spanned="4"
+ 		border-width="0.5pt"
+ 		border-style="solid"
+ 		border-color="black" 
+ 		text-align="center" vertical-align="middle"
+ 		background-color="#FF6AC0"><fo:block> 1 - 4</fo:block>
+ 	    </fo:table-cell>
+     
+ 	    <fo:table-cell number-rows-spanned="5"
+ 		border-width="0.5pt"
+ 		border-style="solid"
+ 		border-color="black" 
+ 		text-align="center" vertical-align="middle"
+ 		background-color="#FF6AC0"><fo:block> 1 - 5</fo:block>
+             </fo:table-cell>
+ 	  </fo:table-row>
+ 
+   
+ 	  <fo:table-row>
+ 	    <fo:table-cell number-rows-spanned="5"
+ 		border-width="0.5pt"
+ 		border-style="solid"
+ 		border-color="black"
+ 		text-align="center" vertical-align="middle"
+ 		background-color="#9BF2E9"><fo:block> 2 - 6</fo:block>
+             </fo:table-cell>
+ 	  </fo:table-row>
+   
+ 	  <fo:table-row>
+ 	    <fo:table-cell/>
+ 	    <fo:table-cell number-rows-spanned="4"
+ 		border-width="0.5pt"
+ 		border-style="solid"
+ 		border-color="black"
+ 		text-align="center" vertical-align="middle"
+ 		background-color="#9BF2E9"><fo:block> 3 - 6</fo:block>
+ 	    </fo:table-cell>
+ 	  </fo:table-row>
+   
+ 	  <fo:table-row>
+ 	    <fo:table-cell/>
+ 	    <fo:table-cell/>
+ 	    <fo:table-cell number-rows-spanned="3"
+ 		border-width="0.5pt"
+ 		border-style="solid"
+ 		border-color="black"
+ 		text-align="center" vertical-align="middle"
+ 		background-color="#9BF2E9"><fo:block> 4 - 6</fo:block>
+ 	    </fo:table-cell>
+ 	  </fo:table-row>
+   
+ 	  <fo:table-row>
+ 	    <fo:table-cell/>
+ 	    <fo:table-cell/>
+ 	    <fo:table-cell/>
+ 	    <fo:table-cell number-rows-spanned="2"
+ 		border-width="0.5pt"
+ 		border-style="solid"
+ 		border-color="black"
+ 		text-align="center" vertical-align="middle"
+ 		background-color="#9BF2E9"><fo:block> 5 - 6</fo:block>
+ 	    </fo:table-cell>
+ 	  </fo:table-row>
+   
+ 	  <fo:table-row>
+ 	    <fo:table-cell/>
+ 	    <fo:table-cell/>
+ 	    <fo:table-cell/>
+ 	    <fo:table-cell/>
+ 	    <fo:table-cell number-rows-spanned="1"
+ 		border-width="0.5pt"
+ 		border-style="solid"
+ 		border-color="black"
+ 		text-align="center" vertical-align="middle"
+ 		background-color="#9BF2E9"><fo:block> 6 - 6</fo:block>
+ 	    </fo:table-cell>
+ 	  </fo:table-row>
+   
+ 	</fo:table-body>
+       </fo:table> 
+ *********************************
+ 
+ is this property 'number-rows-spanned' not supported?
+ 
+ Awaiting response?
+ 
+ Thanks
+ 
+ Raju Dave

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-dev-unsubscribe@xml.apache.org
For additional commands, email: fop-dev-help@xml.apache.org