From 8f2a310239a13e878bb7d00396ba65b144cc3d22 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Fri, 24 Dec 2010 14:14:00 +0000 Subject: Apparently the U tag is deprecated, so use a SPAN instead (blah). Bump version date for release. --- Makefile | 2 +- example.style.css | 4 ++-- html.c | 3 +-- html.h | 3 +-- index.sgml | 4 ++-- mdoc_html.c | 3 +-- style.css | 4 ++-- 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 * @@ -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 * @@ -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 @@

- 23-12-2010: + 24-12-2010: version 1.10.8

@@ -490,7 +490,7 @@

- Copyright © 2008–2010 Kristaps Dzonsons, $Date: 2010/12/23 00:30:20 $ + Copyright © 2008–2010 Kristaps Dzonsons, $Date: 2010/12/24 14:14:00 $
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 * @@ -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). */ -- cgit v1.2.3-56-ge451