In the Julia language package HDF5.jl, we generate our documentation with links to the online HDF5 documentation because of the predictability of the URLs. It would be sad to lose this if the old documentation were to go away. https://juliaio.github.io/HDF5.jl/stable/api_bindings/#HDF5.API.h5d_close
I’m not sure how much control we have over the URL fragment generation. I think Doxygen guarantees they are stable for a given function prototype, but not much else. I need to dig a little deeper into the Doxygen documentation. I think there was an option to export some kind of a sitemap…
Yes, installing that file was overlooked, because we do generate it. Created:
" Install doxygen tag file #5403"
Also, I have been attempting to fix the doxygen search box - I can generate the file to index everything, but I have not successfully found an easy method to install the functionality.
I am hunting for the tag file again. I’m not sure if anything changed but HDF5_BUILD_DOCS was incorrect in my previous post. The correct cmake parameter is HDF5_BUILD_DOC.
curl -fsSL https://pixi.sh/install.sh | bash
pixi global install cmake
pixi global install doxygen
git clone https://github.com/HDFGroup/hdf5.git
cd hdf5
git checkout hdf5-1.14.6
mkdir build
cmake -D HDF5_BUILD_DOC=ON ..
make -j hdf5lib_doc
hdf5.tag should then appear in the current build directory. make install currently installs this to share under the install prefix.