Fix a long-standing brokenness in the generated HTML output of the Greek
docs, by tweaking the freebsd.dsl and catalog files to enable the generation of the correct Content-Type header in the HTML docs. Obtained from: the Japanese doc/ tree
This commit is contained in:
parent
c1995ffb4a
commit
3a4e9341ba
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=21733
2 changed files with 14 additions and 3 deletions
el_GR.ISO8859-7/share/sgml
|
@ -4,7 +4,7 @@
|
|||
-- $FreeBSD$
|
||||
--
|
||||
|
||||
PUBLIC "-//FreeBSD//DOCUMENT DocBook Stylesheet//EL"
|
||||
PUBLIC "-//FreeBSD//DOCUMENT DocBook Stylesheet//EN"
|
||||
"freebsd.dsl"
|
||||
|
||||
PUBLIC "-//FreeBSD//ENTITIES DocBook Mailing List Entities//EL"
|
||||
|
|
|
@ -5,14 +5,25 @@
|
|||
<!ENTITY % output.html "IGNORE">
|
||||
<!ENTITY % output.print "IGNORE">
|
||||
<!ENTITY % output.print.niceheaders "IGNORE">
|
||||
<!ENTITY % lang.el.dsssl "IGNORE">
|
||||
]>
|
||||
|
||||
<style-sheet>
|
||||
<style-specification use="docbook">
|
||||
<style-specification-body>
|
||||
<![ %lang.el.dsssl; [
|
||||
(define %gentext-language% "el")
|
||||
]]>
|
||||
|
||||
<!-- HTML only .................................................... -->
|
||||
|
||||
<![ %output.html; [
|
||||
|
||||
<![ %output.html; [
|
||||
|
||||
<!-- Add a header with the correct character-set/encoding -->
|
||||
(define %html-header-tags%
|
||||
'(("META" ("HTTP-EQUIV" "Content-Type")
|
||||
("CONTENT" "text/html; charset=ISO-8859-7"))))
|
||||
|
||||
|
||||
<!-- Generate links to HTML man pages -->
|
||||
(define %refentry-xref-link% #t)
|
||||
|
|
Loading…
Reference in a new issue