Changeset 4830


Ignore:
Timestamp:
2003-06-30T10:22:12+12:00 (21 years ago)
Author:
kjdon
Message:

startspacer was opening two tables, endspacer was only closing one, and footer was closing the second one before calling endspacer. so I have put the two end table tags into endspacer, and not in footer.

Location:
trunk/gsdl/macros
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/macros/document.dm

    r4462 r4830  
    296296<p>
    297297_navarrows_
    298 </table>
    299298_endspacer__htmlfooter_
    300299}
  • trunk/gsdl/macros/style.dm

    r3877 r4830  
    6565
    6666
    67 # _startspacer_ is a spacer to get past the 10010 graphic. It contains an open
     67# _startspacer_ is a spacer to get past the 10010 graphic. It contains two open
    6868# <table> tag which must eventually be closed by _endspacer_.
    6969_startspacer_ {
     
    111111}
    112112
     113# note we no longer close off one of the startspacer tables here!!
    113114_footer_ {
    114115<!-- page footer (\_style:footer\_) -->
    115116_pagefooterextra_
    116 </table>
    117117_endspacer__htmlfooter_
    118118}
    119119
    120 _endspacer_ {</center>
     120# v=1 footer: not using startspacer in the header, so dont put it in the footer
     121_footer_ [v=1]{
     122<!-- page footer [v=1] (\_style:footer\_) -->
     123_pagefooterextra_
     124_htmlfooter_
     125}
     126
     127# close off the tables opened by endspacer - note we close off both tables here
     128_endspacer_ {   
     129</td></tr></table></center>
    121130</td></tr></table>
    122 }
     131}   
    123132
    124133_htmlfooter_ {
Note: See TracChangeset for help on using the changeset viewer.