Skip to content

Commit 785678d

Browse files
committed
doxy: remove our custom doxygen.css for html docs
Our css is severely outdated (for instance it misses the ttc/tooltip stuff, causing lots of things not to be hidden by default) and we didn't document much to be able to maintain it. Changes in commit 7e6bc6b could have been kept but its minor changes aren't really needed anymore. The default style is used in the official docs online, it's fine, so just use the same for all generated html docs. If we ever need changes, they should rather go in another CSS file that would override rules of the official one (using HTML_EXTRA_STYLESHEET as recommended). Signed-off-by: Brice Goglin <[email protected]>
1 parent 254f910 commit 785678d

File tree

2 files changed

+0
-163
lines changed

2 files changed

+0
-163
lines changed

doc/Makefile.am

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ BUILT_IMAGES = images/diagram.png images/diagram.eps
3535
EXTRA_DIST = \
3636
hwloc.doxy \
3737
README.sed \
38-
doxygen.css \
3938
doxygen.cfg \
4039
images/diagram.fig \
4140
www.open-mpi.org.cfg \
@@ -117,18 +116,6 @@ images/diagram.eps: $(srcdir)/images/diagram.fig
117116
# Remove useless manpages, they have too long filenames anyway because
118117
# of nested structurre/union declarations.
119118
#
120-
121-
#
122-
# Note that we want to use our own doxygen.css file; not the one that
123-
# doxygen installs in the HTML directory. So manually copy it over.
124-
# Be a little clever: only copy the doxygen.css file over if it exists
125-
# in DOX_HTML_DIR (which is in the build tree). If the html tree
126-
# doesn't exist in the build tree, then we're using an html tree in
127-
# the source tree, and we don't need to copy over the doxygen.css
128-
# because we didn't build the html tree (e.g., the html tree came
129-
# pre-bundled in a tarball).
130-
#
131-
132119
$(DOX_TAG): $(BUILT_SOURCES) $(dox_inputs) $(PREBUILT_IMAGES)
133120
rm -fr $(DOX_DIR)
134121
$(DOXYGEN) $(DOX_CONFIG)
@@ -142,10 +129,6 @@ $(DOX_TAG): $(BUILT_SOURCES) $(dox_inputs) $(PREBUILT_IMAGES)
142129
@mv $(DOX_MAN_DIR)/man3/hwloc* $(DOX_MAN_DIR)/man3/HWLOC* $(DOX_DIR)/man.tmp/
143130
@rm -rf $(DOX_MAN_DIR)/man3
144131
@mv $(DOX_DIR)/man.tmp $(DOX_MAN_DIR)/man3
145-
@echo "Copying custom doxygen.css..."
146-
if test -d $(DOX_HTML_DIR) -a -f $(DOX_HTML_DIR)/doxygen.css; then \
147-
cp -f $(srcdir)/doxygen.css $(DOX_HTML_DIR); \
148-
fi
149132

150133
#
151134
# Rules for building the PDF

doc/doxygen.css

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

0 commit comments

Comments
 (0)