summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwl <wl>2008-12-30 09:05:56 +0000
committerwl <wl>2008-12-30 09:05:56 +0000
commitaa8560c4bc39475c719b61fe8458f43d255d6d66 (patch)
tree6296e617ea6ef062b8b19b6ba3453a0900980e5d
parentf069dda440b48826e0df6f395617da63b9053220 (diff)
downloadgroff-aa8560c4bc39475c719b61fe8458f43d255d6d66.tar.gz
Fix more quoting issues.
* tmac/www.tmac (BCL, BGIMG, PIMG, MPIMG, LNS): For the sake of XHTML, quote more arguments. (IMG): Fix quoting.
-rw-r--r--ChangeLog8
-rw-r--r--tmac/www.tmac33
2 files changed, 25 insertions, 16 deletions
diff --git a/ChangeLog b/ChangeLog
index b4ce3cd4..8b2b9a68 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2008-12-30 Werner LEMBERG <wl@gnu.org>
+ Fix more quoting issues.
+
+ * tmac/www.tmac (BCL, BGIMG, PIMG, MPIMG, LNS): For the sake of
+ XHTML, quote more arguments.
+ (IMG): Fix quoting.
+
+2008-12-30 Werner LEMBERG <wl@gnu.org>
+
Fix quoting issues in www.tmac.
* tmac/www.tmac (www:url_breaks_splitted): Renamed to...
diff --git a/tmac/www.tmac b/tmac/www.tmac
index 6cab8bcc..de22f486 100644
--- a/tmac/www.tmac
+++ b/tmac/www.tmac
@@ -343,18 +343,18 @@ HTML always denotes XHTML also.
.\" BCL foreground background active not-visited visited
.\"
.de BCL
-. HTML <body text=\\$1 \
- bgcolor=\\$2 \
- link=\\$3 \
- alink=\\$4 \
- vlink=\\$5>
+. HTML <body "text=""\\$1""" \
+ "bgcolor=""\\$2""" \
+ "link=""\\$3""" \
+ "alink=""\\$4""" \
+ "vlink=""\\$5"">"
..
.
.\" --------------------------------------------------------------------
.\" BGIMG imagefile
.\"
.de BGIMG
-. HTML <body background=\\$1>
+. HTML <body "background=""\\$1"">"
..
.
.\" www:url_check_tag str
@@ -540,9 +540,10 @@ HTML always denotes XHTML also.
. nr www-height \\n[www-width]
. if !'\\$4'' \
. nr www-height \\$4
-. HTML <img src="\\$1" alt="Image \\$1" \
- "width=""\\n[www-width]""" \
- "height=""\\n[www-height]""\\*[www->]"
+. HTML <img "src=""\\$1""" \
+ "alt=""Image \\$1""" \
+ "width=""\\n[www-width]""" \
+ "height=""\\n[www-height]""\\*[www->]"
. \}
. el \
. nop \\*[www:open]\f[\\*[www:fontstyle]]\\$1\f[]\\*[www:close]
@@ -575,11 +576,11 @@ HTML always denotes XHTML also.
. shift
.
. ie \\n[www-html] \{\
-. ds www-htmlalign align=center\"
+. ds www-htmlalign align="center"\"
. if '\\*[www-pic-align]'-R' \
-. ds www-htmlalign align=right\"
+. ds www-htmlalign align="right"\"
. if '\\*[www-pic-align]'-L' \
-. ds www-htmlalign align=left\"
+. ds www-htmlalign align="left"\"
. nr www-width 0
. nr www-height 0
. if !'\\$2'' \
@@ -798,13 +799,13 @@ HTML always denotes XHTML also.
. HTML <img "src=""\\$1""" \
"alt=""Image \\$1""" \
"hspace=""\\n[www-htmlimage-gap]""" \
- align=right \
+ "align=""right""" \
"\\*[www-size-specs]\\*[www->]"
. el \
. HTML <img "src=""\\$1""" \
"alt=""Image \\$1""" \
"hspace=""\\n[www-htmlimage-gap]""" \
- align=left \
+ "align=""left""" \
"\\*[www-size-specs]\\*[www->]"
. \}
. el \{\
@@ -1444,11 +1445,11 @@ HTML always denotes XHTML also.
.\" LNS - left navigation start
.\"
.de LNS
-. HTML</p> <table><tr><td valign=top \
+. HTML</p> <table><tr><td "valign=""top""" \
"width=""\\n[www-nav-width-left]%""" \
"bgcolor=""\\*[www-nav-colour]"">"
. LK
-. HTML</p> </td><td valign=top \
+. HTML</p> </td><td "valign=""top""" \
"width=""\\n[www-nav-width-right]%"">"
. nr SH-open 1
..