]> git.cameronkatri.com Git - mandoc.git/commitdiff
replace my vague and idiosyncratic term "selflink"
authorIngo Schwarze <schwarze@openbsd.org>
Tue, 24 Apr 2018 00:36:52 +0000 (00:36 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Tue, 24 Apr 2018 00:36:52 +0000 (00:36 +0000)
with the clearer and more usual "permalink";
suggested by John Gardner <gardnerjohng at gmail dot com>

man_html.c
mandoc.css
mdoc_html.c

index f7942ddd1455ea9f98cc48152b406db1f66b025f..6aee4ffed81f7d9f349b985736ac3cafca67d258 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_html.c,v 1.147 2018/04/13 16:28:07 schwarze Exp $ */
+/*     $Id: man_html.c,v 1.148 2018/04/24 00:36:53 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013,2014,2015,2017,2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -431,7 +431,7 @@ man_SH_pre(MAN_ARGS)
                id = html_make_id(n);
                print_otag(h, TAG_H1, "cTi", "Sh", id);
                if (id != NULL)
-                       print_otag(h, TAG_A, "chR", "selflink", id);
+                       print_otag(h, TAG_A, "chR", "permalink", id);
                free(id);
        }
        return 1;
@@ -501,7 +501,7 @@ man_SS_pre(MAN_ARGS)
                id = html_make_id(n);
                print_otag(h, TAG_H2, "cTi", "Ss", id);
                if (id != NULL)
-                       print_otag(h, TAG_A, "chR", "selflink", id);
+                       print_otag(h, TAG_A, "chR", "permalink", id);
                free(id);
        }
        return 1;
index 2a57a18f9d699ea812806463e85ce9cf8470c32b..c1657f9986f5c23b45a8fbff63d56deb3de65361 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: mandoc.css,v 1.22 2017/07/16 18:45:00 schwarze Exp $ */
+/* $Id: mandoc.css,v 1.23 2018/04/24 00:36:52 schwarze Exp $ */
 /*
  * Standard style sheet for mandoc(1) -Thtml and man.cgi(8).
  */
@@ -14,7 +14,7 @@ ul, ol, dl {  margin-top: 0em;
                margin-bottom: 0em; }
 li, dt {       margin-top: 1em; }
 
-a.selflink {   border-bottom: thin dotted;
+a.permalink {  border-bottom: thin dotted;
                color: inherit;
                font: inherit;
                text-decoration: inherit; }
index 6d26f8083135a29a8668c5759cad362c6d477024..a6df4700be4a26fc003eb6705b40c43ccec4e104 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_html.c,v 1.296 2018/04/13 16:28:07 schwarze Exp $ */
+/*     $Id: mdoc_html.c,v 1.297 2018/04/24 00:36:52 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014, 2015, 2016, 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -516,7 +516,7 @@ mdoc_sh_pre(MDOC_ARGS)
                id = html_make_id(n);
                print_otag(h, TAG_H1, "cTi", "Sh", id);
                if (id != NULL)
-                       print_otag(h, TAG_A, "chR", "selflink", id);
+                       print_otag(h, TAG_A, "chR", "permalink", id);
                free(id);
                break;
        case ROFFT_BODY:
@@ -540,7 +540,7 @@ mdoc_ss_pre(MDOC_ARGS)
        id = html_make_id(n);
        print_otag(h, TAG_H2, "cTi", "Ss", id);
        if (id != NULL)
-               print_otag(h, TAG_A, "chR", "selflink", id);
+               print_otag(h, TAG_A, "chR", "permalink", id);
        free(id);
        return 1;
 }
@@ -551,7 +551,7 @@ mdoc_fl_pre(MDOC_ARGS)
        char    *id;
 
        if ((id = cond_id(n)) != NULL)
-               print_otag(h, TAG_A, "chR", "selflink", id);
+               print_otag(h, TAG_A, "chR", "permalink", id);
        print_otag(h, TAG_B, "cTi", "Fl", id);
        free(id);
 
@@ -571,7 +571,7 @@ mdoc_cm_pre(MDOC_ARGS)
        char    *id;
 
        if ((id = cond_id(n)) != NULL)
-               print_otag(h, TAG_A, "chR", "selflink", id);
+               print_otag(h, TAG_A, "chR", "permalink", id);
        print_otag(h, TAG_B, "cTi", "Cm", id);
        free(id);
        return 1;
@@ -1070,7 +1070,7 @@ mdoc_dv_pre(MDOC_ARGS)
        char    *id;
 
        if ((id = cond_id(n)) != NULL)
-               print_otag(h, TAG_A, "chR", "selflink", id);
+               print_otag(h, TAG_A, "chR", "permalink", id);
        print_otag(h, TAG_CODE, "cTi", "Dv", id);
        free(id);
        return 1;
@@ -1082,7 +1082,7 @@ mdoc_ev_pre(MDOC_ARGS)
        char    *id;
 
        if ((id = cond_id(n)) != NULL)
-               print_otag(h, TAG_A, "chR", "selflink", id);
+               print_otag(h, TAG_A, "chR", "permalink", id);
        print_otag(h, TAG_CODE, "cTi", "Ev", id);
        free(id);
        return 1;
@@ -1100,7 +1100,7 @@ mdoc_er_pre(MDOC_ARGS)
            html_make_id(n) : NULL;
 
        if (id != NULL)
-               print_otag(h, TAG_A, "chR", "selflink", id);
+               print_otag(h, TAG_A, "chR", "permalink", id);
        print_otag(h, TAG_CODE, "cTi", "Er", id);
        free(id);
        return 1;
@@ -1451,7 +1451,7 @@ mdoc_ic_pre(MDOC_ARGS)
        char    *id;
 
        if ((id = cond_id(n)) != NULL)
-               print_otag(h, TAG_A, "chR", "selflink", id);
+               print_otag(h, TAG_A, "chR", "permalink", id);
        print_otag(h, TAG_B, "cTi", "Ic", id);
        free(id);
        return 1;
@@ -1508,7 +1508,7 @@ mdoc_ms_pre(MDOC_ARGS)
        char *id;
 
        if ((id = cond_id(n)) != NULL)
-               print_otag(h, TAG_A, "chR", "selflink", id);
+               print_otag(h, TAG_A, "chR", "permalink", id);
        print_otag(h, TAG_B, "cTi", "Ms", id);
        free(id);
        return 1;
@@ -1549,7 +1549,7 @@ mdoc_no_pre(MDOC_ARGS)
        char *id;
 
        if ((id = cond_id(n)) != NULL)
-               print_otag(h, TAG_A, "chR", "selflink", id);
+               print_otag(h, TAG_A, "chR", "permalink", id);
        print_otag(h, TAG_SPAN, "ci", "No", id);
        free(id);
        return 1;
@@ -1561,7 +1561,7 @@ mdoc_li_pre(MDOC_ARGS)
        char    *id;
 
        if ((id = cond_id(n)) != NULL)
-               print_otag(h, TAG_A, "chR", "selflink", id);
+               print_otag(h, TAG_A, "chR", "permalink", id);
        print_otag(h, TAG_CODE, "ci", "Li", id);
        free(id);
        return 1;