summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-12-24 14:14:00 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-12-24 14:14:00 +0000
commit8f2a310239a13e878bb7d00396ba65b144cc3d22 (patch)
treeaacee1ae6c20ebca1825e94115e964ab0892dfd6
parent59221c379641a8d3a180c8b0cca2022c763c2a6b (diff)
downloadmandoc-8f2a310239a13e878bb7d00396ba65b144cc3d22.tar.gz
mandoc-8f2a310239a13e878bb7d00396ba65b144cc3d22.tar.zst
mandoc-8f2a310239a13e878bb7d00396ba65b144cc3d22.zip
Apparently the U tag is deprecated, so use a SPAN instead (blah). Bump
version date for release.
-rw-r--r--Makefile2
-rw-r--r--example.style.css4
-rw-r--r--html.c3
-rw-r--r--html.h3
-rw-r--r--index.sgml4
-rw-r--r--mdoc_html.c3
-rw-r--r--style.css4
7 files changed, 10 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index 7fa0cde1..fd8fd16e 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ INSTALL_LIB = $(INSTALL) -m 0644
INSTALL_MAN = $(INSTALL_DATA)
VERSION = 1.10.8
-VDATE = 23 December 2010
+VDATE = 24 December 2010
VFLAGS = -DVERSION="\"$(VERSION)\""
WFLAGS = -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings
diff --git a/example.style.css b/example.style.css
index 567fd0ba..75f9b382 100644
--- a/example.style.css
+++ b/example.style.css
@@ -1,4 +1,4 @@
-/* $Id: example.style.css,v 1.39 2010/12/24 00:46:49 kristaps Exp $ */
+/* $Id: example.style.css,v 1.40 2010/12/24 14:14:00 kristaps Exp $ */
/*
* This default style-sheet mimics the appearance of the traditional
@@ -82,7 +82,7 @@ span.ref-opt { } /* Reference optionals (%O). */
span.ref-page { } /* Reference page (%P). */
span.ref-corp { } /* Reference corporate/foreign author (%Q). */
span.ref-rep { } /* Reference report (%R). */
-u.ref-title { } /* Reference title (%T). */
+span.ref-title { text-decoration: underline; } /* Reference title (%T). */
span.ref-vol { } /* Reference volume (%V). */
span.type { font-style: italic; font-weight: normal; } /* Variable types (Vt). */
span.unix { } /* Unices (Ux, Ox, Nx, Fx, Bx, Bsx, Dx). */
diff --git a/html.c b/html.c
index df7940ba..ac05a6fc 100644
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/* $Id: html.c,v 1.122 2010/12/24 00:46:49 kristaps Exp $ */
+/* $Id: html.c,v 1.123 2010/12/24 14:14:00 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -72,7 +72,6 @@ static const struct htmldata htmltags[TAG_MAX] = {
{"pre", HTML_CLRLINE }, /* TAG_PRE */
{"b", 0 }, /* TAG_B */
{"i", 0 }, /* TAG_I */
- {"u", 0 }, /* TAG_U */
{"code", 0 }, /* TAG_CODE */
{"small", 0 }, /* TAG_SMALL */
};
diff --git a/html.h b/html.h
index 63575902..3bce9835 100644
--- a/html.h
+++ b/html.h
@@ -1,4 +1,4 @@
-/* $Id: html.h,v 1.35 2010/12/24 00:46:49 kristaps Exp $ */
+/* $Id: html.h,v 1.36 2010/12/24 14:14:00 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -48,7 +48,6 @@ enum htmltag {
TAG_PRE,
TAG_B,
TAG_I,
- TAG_U,
TAG_CODE,
TAG_SMALL,
TAG_MAX
diff --git a/index.sgml b/index.sgml
index 5c25d37f..83e2b18e 100644
--- a/index.sgml
+++ b/index.sgml
@@ -327,7 +327,7 @@
</H1>
<DIV CLASS="news">
<P>
- <SPAN CLASS="date">23-12-2010</SPAN>:
+ <SPAN CLASS="date">24-12-2010</SPAN>:
version 1.10.8
</P>
<P>
@@ -490,7 +490,7 @@
<TR>
<TD>
<DIV CLASS="foot">
- Copyright &#169; 2008&#8211;2010 Kristaps Dzonsons, $Date: 2010/12/23 00:30:20 $
+ Copyright &#169; 2008&#8211;2010 Kristaps Dzonsons, $Date: 2010/12/24 14:14:00 $
</DIV>
</TD>
</TR>
diff --git a/mdoc_html.c b/mdoc_html.c
index aabbad62..01796ab3 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.137 2010/12/24 14:00:40 kristaps Exp $ */
+/* $Id: mdoc_html.c,v 1.138 2010/12/24 14:14:00 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -1933,7 +1933,6 @@ mdoc__x_pre(MDOC_ARGS)
break;
case(MDOC__T):
PAIR_CLASS_INIT(&tag[0], "ref-title");
- t = TAG_U;
break;
case(MDOC__U):
PAIR_CLASS_INIT(&tag[0], "link-ref");
diff --git a/style.css b/style.css
index 7e429a69..f5121297 100644
--- a/style.css
+++ b/style.css
@@ -1,4 +1,4 @@
-/* $Id: style.css,v 1.18 2010/12/22 11:58:02 kristaps Exp $ */
+/* $Id: style.css,v 1.19 2010/12/24 14:14:00 kristaps Exp $ */
html { max-width: 800px; }
body { font-family: monospace;
@@ -91,7 +91,7 @@ span.ref-opt { } /* Reference optionals (%O). */
span.ref-page { } /* Reference page (%P). */
span.ref-corp { } /* Reference corporate/foreign author (%Q). */
span.ref-rep { } /* Reference report (%R). */
-u.ref-title { } /* Reference title (%T). */
+span.ref-title { text-decoration: underline; } /* Reference title (%T). */
span.ref-vol { } /* Reference volume (%V). */
span.type { font-style: italic; font-weight: normal; } /* Variable types (Vt). */
span.unix { } /* Unices (Ux, Ox, Nx, Fx, Bx, Bsx, Dx). */