* add "centered-label-cell" markup type to define a cell with tag

'b' and attribute "align center".


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7105 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2002-07-10 04:00:18 +00:00
parent 3b49b42812
commit 439be2a6b7
3 changed files with 13 additions and 0 deletions

View File

@ -3,6 +3,9 @@
* "global-replace for-each-in-order for-each" because the former * "global-replace for-each-in-order for-each" because the former
does not exist in current guiles. Fixes bugID 87693 does not exist in current guiles. Fixes bugID 87693
* add "centered-label-cell" markup type to define a cell with tag
'b' and attribute "align center".
2002-07-08 Derek Atkins <derek@ihtfp.com> 2002-07-08 Derek Atkins <derek@ihtfp.com>
* kvp-option-registry.scm: create a registry of kvp-options * kvp-option-registry.scm: create a registry of kvp-options

View File

@ -248,6 +248,11 @@
'tag '("td" "b") 'tag '("td" "b")
'attribute (list "align" "left")) 'attribute (list "align" "left"))
(gnc:html-document-set-style!
ssdoc "centered-label-cell"
'tag '("td" "b")
'attribute (list "align" "center"))
;; don't surround marked-up links with <a> </a> ;; don't surround marked-up links with <a> </a>
(if (not links?) (if (not links?)
(gnc:html-document-set-style! (gnc:html-document-set-style!

View File

@ -128,6 +128,11 @@
'tag '("td" "b") 'tag '("td" "b")
'attribute (list "align" "left")) 'attribute (list "align" "left"))
(gnc:html-document-set-style!
ssdoc "centered-label-cell"
'tag '("td" "b")
'attribute (list "align" "center"))
(gnc:html-document-set-style! (gnc:html-document-set-style!
ssdoc "normal-row" ssdoc "normal-row"
'tag "tr") 'tag "tr")