Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Jul 2013 00:21:55 +0200
From:      =?ISO-8859-1?Q?Ren=E9_Ladan?= <rene@freebsd.org>
To:        FBSD Doc project <doc@FreeBSD.org>
Subject:   translators: projects/entities merged
Message-ID:  <51DC8D03.2000107@freebsd.org>

next in thread | raw e-mail | index | archive | help
Dear translators,

now that the projects/entities is merged back into head/ as of r42226,
you will have to update the author entity references in your books and
articles to avoid loosing email addresses in the rendered output:

Before:
* share/xml/authors.ent :
  <!ENTITY a.et "ExtraTerrestial <email>et@FreeBSD.org</email>">

* articles/martian/article.xml:

  <para>The first green man to join &os; was &a.et;.</para>

which would render as

<para>The First green man to join FreeBSD was ExtraTerrestial <a href
....>et@FreeBSD.org</a>.</para>

After:
* share/xml/authors.ent :
  <!ENTITY a.et "ExtraTerrestial">
  <!ENTITY a.et.email "&a.et; <email xmlns=''>et@FreeBSD.org</email>">

(the empty namespace is required for the webpages to build)

This means the same sentence would now render without the email address,
unless you change it to:

<para>The first green man to join &os; was &a.et.email;.</para>

Regards,
René



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?51DC8D03.2000107>