From: Galen Charlton Date: Thu, 10 Sep 2020 21:52:20 +0000 (-0400) Subject: Antora follow-up: update references to eg-antora.git X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a5f544fa4079620334d1e719a0e3fd0ca0960608;p=Evergreen.git Antora follow-up: update references to eg-antora.git [1] This repository currently can be cloned only over the Git protocol, so adjust URIs accordingly. [2] Ensure that git://git.evergreen-ils.org/eg-antora.git is the default Antora UI repo for generate_docs.pl Signed-off-by: Galen Charlton --- diff --git a/docs/README.adoc b/docs/README.adoc index b911f2303b..522f8ba0e2 100644 --- a/docs/README.adoc +++ b/docs/README.adoc @@ -61,7 +61,7 @@ $ ./generate_docs.pl \ --base-url http//examplesite.org/prod \ --tmp-space ../../tmp \ --html-output /var/www/html/prod \ ---antora-ui-repo https://git.evergreen-ils.org/eg-antora.git \ +--antora-ui-repo git://git.evergreen-ils.org/eg-antora.git \ --antora-version 2.3 ---- diff --git a/docs/generate_docs.pl b/docs/generate_docs.pl index c817b5d80c..14ea44d07c 100755 --- a/docs/generate_docs.pl +++ b/docs/generate_docs.pl @@ -23,7 +23,7 @@ use Data::Dumper; my $base_url; my $tmp_space = './build'; my $html_output = './output'; -my $antoraui_git = 'https://gitlab.com/antora/antora-ui-default.git'; +my $antoraui_git = 'git://git.evergreen-ils.org/eg-antora.git'; my $antora_version = '2.3'; my $help; @@ -45,14 +45,14 @@ sub help --base-url http://example.com --tmp-space ../../tmp --html-output /var/www/html - --antora-ui-repo https://gitlab.com/antora/antora-ui-default.git + --antora-ui-repo git://git.evergreen-ils.org/eg-antora.git --antora-version 2.3 You must specify --base-url [URL where html output is expected to be available eg: http//examplesite.org/docs] --tmp-space [Writable path for staging the antora UI repo and build files, defaults to ./build] --html-output [Path for the generated HTML files, defaults to ./output] - --antora-ui-repo [Antora-UI repository for the built UI, defaults to https://gitlab.com/antora/antora-ui-default.git] + --antora-ui-repo [Antora-UI repository for the built UI, defaults to git://git.evergreen-ils.org/eg-antora.git] --antora-version [Target version of antora, defaults to 2.3] HELP