mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-03 08:01:25 +08:00
591e6b2f6d
Warning: This PR is a follow on to PR https://github.com/Unidata/netcdf-c/pull/2555 and should not be merged until that prior PR has been merged. The changeset for this PR is a delta on the PR https://github.com/Unidata/netcdf-c/pull/2555. This PR re-enables the use of the server *remotetest.unidata.ucar.edu/d4ts* to test several features: 1. Show that access over the Internet to servers using the DAP4 protocol works. 2. Test that DAP4 support in the [Thredds Data Server](https://github.com/Unidata/tds) is operating correctly. 4. Test that the DAP4 support in the [netcdf-java library](https://github.com/Unidata/netcdf-java) library and the DAP4 support in the netcdf-c library are consistent and are interoperable. The test inputs (primarily *\*.nc* files) provided in the netcdf-c library are also used by the DAP4 Test Server (aka d4ts) to present web access to a collection of data files accessible via the DAP4 protocol and which can be used for testing Internet access to a working server. To be precise, this version of d4ts is currently in unmerged branches of the *netcdf-java* and *tds* Github repositories and so are not actually in the main repositories *yet*. However, the *d4ts.war* file was created from that branch and used to populate the *remotetest.unidata.ucar.edu* server The two other remote servers that were used in the past are *Hyrax* (OPenDAP.org) and *thredds-test*. These will continue to remain disabled until those servers can be fixed. ## Primary Changes * Rebuild the *baselineremote* directory. This directory contains the validation data needed to test the remote servers. * Re-enable using remotetest.unidata.ucar.edu as part of the DAP4 testing process. * Fix the *dap4_test/test_remote.sh* test script to match the current available test data. * Make some changes to libdap4 to improve the ability to catch malformed data streams [affects a lot of files in libdap4]. ## Misc. Unrelated Changes * Remove a raft of warnings, especially in nc_test4/tst_quantize.c. * Add some additional explanatory information to the NCZarr documentation. * Cleanup some Doxygen errors in the docs file and reorder some files.
71 lines
2.2 KiB
Makefile
71 lines
2.2 KiB
Makefile
## This is a automake file, part of Unidata's netCDF package.
|
|
# Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
|
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014,
|
|
# 2015, 2016, 2017, 2018
|
|
# University Corporation for Atmospheric Research/Unidata.
|
|
|
|
# See netcdf-c/COPYRIGHT file for more info.
|
|
|
|
# These files will be included with the dist.
|
|
EXTRA_DIST = CMakeLists.txt COPYRIGHT.md FAQ.md \
|
|
netcdf.m4 DoxygenLayout.xml Doxyfile.in footer.html \
|
|
mainpage.dox tutorial.dox architecture.dox \
|
|
groups.dox indexing.dox inmeminternal.dox testserver.dox \
|
|
byterange.dox \
|
|
windows-binaries.md dispatch.md building-with-cmake.md \
|
|
notes.md install-fortran.md credits.md auth.md filters.md \
|
|
obsolete/fan_utils.html inmemory.md known_problems.md \
|
|
nczarr.md quantize.md all-error-codes.md
|
|
|
|
# Turn off parallel builds in this directory.
|
|
.NOTPARALLEL:
|
|
|
|
# To build documentation you must have M4 in their path.
|
|
M4 = m4
|
|
|
|
SUBDIRS = images
|
|
|
|
if BUILD_DOCS
|
|
|
|
# Copy man pages.
|
|
#directory = $(top_srcdir)/docs/man/man3/
|
|
#dist_man_MANS = $(docsdirectory)/man_page_1.3 $(directory)/man_page_2.3
|
|
# $(directory)/man_page_1.3: doxyfile.stamp
|
|
# $(directory)/man_page_2.3: doxyfile.stamp
|
|
|
|
# Note: in order to work with distcheck,
|
|
# the Doxyfile needs to be preprocessed
|
|
# to insert actual location of $(srcdir)
|
|
#BUILT_SOURCES = Doxyfile.tmp
|
|
|
|
#Doxyfile.tmp: Doxyfile
|
|
# sed -e 's|$$[({]rootdir[})]|$(abs_top_srcdir)|g' <Doxyfile > ./Doxyfile.tmp
|
|
|
|
all-local: doxyfile.stamp
|
|
clean-local:
|
|
rm -rf $(top_builddir)/docs/man
|
|
rm -rf $(top_builddir)/docs/html
|
|
rm -rf $(top_builddir)/docs/latex
|
|
rm -rf $(top_builddir)/docs/latex_main
|
|
endif
|
|
|
|
# Timestamp to prevent rebuilds.
|
|
# We must do this twice. The first time
|
|
# builds the tag files. The second time
|
|
# includes them in the documentation.
|
|
|
|
doxyfile.stamp:
|
|
$(DOXYGEN) Doxyfile \
|
|
cp auth.md obsolete/fan_utils.html html
|
|
|
|
CLEANFILES = doxyfile.stamp
|
|
|
|
# This builds the docs from source, if necessary, and tars up
|
|
# everything needed for the website. Run this and copy the resulting
|
|
# tarball to the /contents/netcdf/docs directory to update the on-line
|
|
# docs.
|
|
# UPDATE Nov 12, 2021: docs now published to Unidata artifacts server.
|
|
web-tarball: doxyfile.stamp
|
|
cd html; tar cf ../netcdf_docs.tar *
|
|
gzip -f netcdf_docs.tar
|