(dsssl) PDF Table overflowing into the page footer

Subject: (dsssl) PDF Table overflowing into the page footer
From: Mulberry Technologies List Owner<xsl-list-owner@xxxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 21 Feb 2003 16:52:24 -0500
-----Original Message-----
From: Brian Leary
Sent: Friday, February 21, 2003 9:37 AM
To: 'dssslist@xxxxxxxxxxxxxxxxxxxxxx'
Subject: PDF Table overflowing into the page footer


Hi, I am having problems with a pdf table overflowing over the page footer. It looks like the table doesn't care about the page margins ?  I am using XML and DSSSL with OpenJade to produce PDF output

Here is my DSSSL code for the table
(element table2                     
    (make table
        ;;table-border:  (make table-border line-thickness: 1pt)
                start-indent: 10pt
                table-width: 6.0in
                may-violate-keep-after?: #t

(make table-column width: 2.5in) 
(make table-column width: 0.9in) 
(make table-column width: 2.5in)

        (process-children)))
(element RowOdd2
(make table-row
cell-before-row-margin: 10pt
cell-after-row-margin: 10pt
;;cell-after-column-border: #t
 (process-children)))

 (element RowEven2
(make table-row
cell-background?: #t
cell-before-row-margin: 10pt
cell-after-row-margin: 10pt
 (process-children)))

(element headerrow2
(make table-row
font-weight: 'bold
;;cell-after-column-border: #t
cell-before-row-margin: 5pt
 (process-children)))

(element cell2
 (make table-cell
       
(process-children)))
****************************************

and here is the DSSSL code where I define the margins of the page;

(element output
  (let
    ((page-num-footer
       (make sequence
         use: footer-style
         (literal "Page ")
         (page-number-sosofo)
       )
     )
     (date-footer
       (make sequence
         use: footer-style
         (literal date-str)
       )
     )
     (time-footer
       (make sequence
         use: footer-style
         (literal time-str)
       )
     )
    )
    (make simple-page-sequence
      font-family-name: "Arial"
          font-size: 10pt
      page-width:  8.5in
      page-height:  11.5in
      left-margin:   1in
      right-margin:  1in
      top-margin:    .50in
      bottom-margin: 1in
      footer-margin: .5in
      left-footer: page-num-footer
      center-footer: date-footer
      right-footer: time-footer
          (process-children)
    )
  )
)

Can anyone give me any tips on what I can try ? or is this a bug with OpenJade creating a PDF document ? Any help would be greatly apreciated.

Thanks so much
Brian Leary


 DSSSList info and archive:  http://www.mulberrytech.com/dsssl/dssslist

Current Thread