Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d75c7fb

Browse files
committed
docs: Remove support for 'htmlhelp' format
We had partial support for generating documentation suitable for .chm files. However, we only had wired up generating the input files using docbook-xsl, not generating an actual .chm file. Nor did we document how to do so. Additionally, it was very slow to generate htmlhelp, as we never applied the docbook-xsl stylesheet performance improvements to htmlhelp. It doesn't look like there's any interest in the htmlhelp output, so remove it, instead of spending cycles to finish the support. Discussion: https://postgr.es/m/20230324165822.wcrj3akllbqquy7u@awork3.anarazel.de
1 parent 3f695b3 commit d75c7fb

File tree

3 files changed

+0
-68
lines changed

3 files changed

+0
-68
lines changed

doc/src/sgml/Makefile

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -148,14 +148,6 @@ html-stamp: stylesheet.xsl postgres-full.xml $(ALL_IMAGES)
148148
cp $(srcdir)/stylesheet.css html/
149149
touch $@
150150

151-
htmlhelp: htmlhelp-stamp
152-
153-
htmlhelp-stamp: stylesheet-hh.xsl postgres-full.xml $(ALL_IMAGES)
154-
$(XSLTPROC) $(XMLINCLUDE) $(XSLTPROCFLAGS) $(wordlist 1,2,$^)
155-
cp $(ALL_IMAGES) htmlhelp/
156-
cp $(srcdir)/stylesheet.css htmlhelp/
157-
touch $@
158-
159151
# single-page HTML
160152
postgres.html: stylesheet-html-nochunk.xsl postgres-full.xml $(ALL_IMAGES)
161153
$(XSLTPROC) $(XMLINCLUDE) $(XSLTPROCFLAGS) $(XSLTPROC_HTML_FLAGS) -o $@ $(wordlist 1,2,$^)
@@ -307,8 +299,6 @@ clean:
307299
# generated SGML files
308300
rm -f $(GENERATED_SGML)
309301
rm -f postgres-full.xml
310-
# HTML Help
311-
rm -rf htmlhelp/ htmlhelp-stamp
312302
# EPUB
313303
rm -f postgres.epub
314304
# Texinfo

doc/src/sgml/meson.build

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -135,17 +135,6 @@ if xsltproc_bin.found()
135135
installdocs += install_doc_html
136136

137137

138-
htmlhelp = custom_target('htmlhelp',
139-
input: ['stylesheet-hh.xsl', postgres_full_xml],
140-
output: 'htmlhelp',
141-
depfile: 'htmlhelp.d',
142-
depends: doc_generated,
143-
command: [xsltproc, '--path', '@OUTDIR@', '-o', '@OUTDIR@/', xsltproc_flags, '@INPUT@'],
144-
build_by_default: false,
145-
)
146-
alldocs += htmlhelp
147-
148-
149138
# single-page HTML
150139
postgres_html = custom_target('postgres.html',
151140
input: ['stylesheet-html-nochunk.xsl', postgres_full_xml],

doc/src/sgml/stylesheet-hh.xsl

Lines changed: 0 additions & 47 deletions
This file was deleted.

0 commit comments

Comments
 (0)