From c120a261c9ab5443dc6b333afdf3c865c113924b Mon Sep 17 00:00:00 2001 From: Andreas Roussos Date: Sun, 27 Aug 2023 23:42:49 +0000 Subject: [PATCH] Bug 31964: add a man page for koha-z3950-responder The koha-z3950-responder command does not have a man page. This patch fixes that. Test plan: 1) Apply this patch. 2) Run the following command to generate the new man page: xsltproc /usr/share/xml/docbook/stylesheet/docbook-xsl-ns/manpages/docbook.xsl debian/docs/koha-z3950-responder.xml 3) View the generated man page with `man -l koha-z3950-responder.8` (KTD users may need to `apt-get install man-db` first as that package provides tools for reading manual pages) 4) Make sure this unit test passes: prove -v xt/verify-debian-docbook.t Signed-off-by: Pedro Amorim --- debian/docs/koha-z3950-responder.xml | 141 +++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 debian/docs/koha-z3950-responder.xml diff --git a/debian/docs/koha-z3950-responder.xml b/debian/docs/koha-z3950-responder.xml new file mode 100644 index 0000000000..b0ac2bae44 --- /dev/null +++ b/debian/docs/koha-z3950-responder.xml @@ -0,0 +1,141 @@ +
+koha-z3950-responder + + Koha is the first free software library automation package. + + The Koha Community + https://koha-community.org/ + + + + + + + koha-z3950-responder + 8 + + + + koha-z3950-responder + Manage the Z39.50/SRU daemons for your Koha instances + UNIX/Linux + + + + + koha-z3950-responder + + --start + --stop + --restart + + + --enable + --disable + + + --debugger + --debugger-key key + --debugger-location host:port + --debugger-path path + + + --quiet + -q + + instancename + + + koha-z3950-responder + + --help + -h + + + + + Options + + + + + Start the Z39.50/SRU daemon for the specified instance(s) + + + + + + Stop the Z39.50/SRU daemon for the specified instance(s) + + + + + + Restart the Z39.50/SRU daemon for the specified instance(s) + + + + + + Enable Z39.50/SRU for the specified instance(s) + + + + + + Disable Z39.50/SRU for the specified instance(s) + + + + + + Enable running Z39.50/SRU in debug mode + + + + + + Specify the debugger key the IDE is expecting + + + + + + Specify the host:port for your debugger tool (defaults to localhost:9000) + + + + + + Specify the path for the debugger library + + + + | + + Make the script quiet about non existent instance names (useful for calling from other scripts) + + + + | + + Display help for this command + + + + + + Description + This script lets you manage the Z39.50/SRU daemons for your Koha instances. + + + See also + + koha-rebuild-zebra(8) + koha-zebra(8) + + + + + +
-- 2.30.2