From: Alan T. DeKok Date: Mon, 21 Dec 2020 19:19:02 +0000 (-0500) Subject: fix references now that "unlang" has moved X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=930164cb329047e015cd904ef8d583873ba0ca8d;p=thirdparty%2Ffreeradius-server.git fix references now that "unlang" has moved --- diff --git a/doc/antora/modules/ROOT/pages/index.adoc b/doc/antora/modules/ROOT/pages/index.adoc index 8b013608306..4257a365686 100644 --- a/doc/antora/modules/ROOT/pages/index.adoc +++ b/doc/antora/modules/ROOT/pages/index.adoc @@ -38,7 +38,7 @@ desired outcome. At a high level, the subject areas describe: * xref:concepts:index.adoc[Concepts] and introduction for newcomers. * xref:installation:index.adoc[Installing] and xref:installation:upgrade.adoc[upgrading] FreeRADIUS. -* The syntax of the xref:unlang:index.adoc[unlang] processing language. +* The syntax of the xref:reference:unlang/index.adoc[unlang] processing language. * The xref:raddb:index.adoc[configuration files] located in `/etc/raddb/`, or `/etc/freeradius/` * Various xref:howto:index.adoc[how-to] guides. * xref:developers:index.adoc[Developer documentation]. @@ -106,7 +106,7 @@ xref:concepts:index.adoc[concepts section] as it describes the concepts behind FreeRADIUS. It is vital for newcomers to understand these concepts, as the rest of the documentation assumes familiarity with them. -A detailed xref:unlang:index.adoc[unlang] reference guide is also available. +A detailed xref:reference:unlang/index.adoc[unlang] reference guide is also available. This section describes the syntax and functionality of the keywords, data types, etc. used in the `unlang` processing language. diff --git a/doc/antora/modules/raddb/pages/format.adoc b/doc/antora/modules/raddb/pages/format.adoc index b82762b85b5..756a65ff97a 100644 --- a/doc/antora/modules/raddb/pages/format.adoc +++ b/doc/antora/modules/raddb/pages/format.adoc @@ -11,7 +11,7 @@ management purpose. However, the files are all part of the global is completely independent of the _file contents_. The configuration files also include the -xref:unlang:index.adoc[unlang] policies. While those policies have a +xref:reference:unlang/index.adoc[unlang] policies. While those policies have a similar format as described here, the formats ar not exactly the same. == Comments and Blank Lines diff --git a/doc/antora/modules/tutorials/pages/unlang_return_codes.adoc b/doc/antora/modules/tutorials/pages/unlang_return_codes.adoc index 854d87857d5..f2ec069c171 100644 --- a/doc/antora/modules/tutorials/pages/unlang_return_codes.adoc +++ b/doc/antora/modules/tutorials/pages/unlang_return_codes.adoc @@ -10,9 +10,9 @@ *`man` page:* unlang -- xref:unlang:condition/index.adoc[Conditional Expressions] -- xref:unlang:return_codes[Return Codes] -- xref:unlang:condition/return_code.adoc[The Return Code Operator] +- xref:reference:unlang/condition/index.adoc[Conditional Expressions] +- xref:reference:unlang/return_codes[Return Codes] +- xref:reference:unlang/condition/return_code.adoc[The Return Code Operator] - xref:raddb:mods-available/always.adoc[The Always Module] - xref:raddb:mods-available/sometimes.adoc[The Sometimes Module] @@ -33,7 +33,7 @@ To minimise external dependencies, for this exercise we will use the xref:raddb:mods-available/sometimes.adoc[sometimes] module to simulate an unreliable external database. -This module will return a specified xref:unlang:return_codes[return code] 50% +This module will return a specified xref:reference:unlang/return_codes[return code] 50% of the time. Create an instance of the sometimes module called `bad_ldap`. @@ -61,7 +61,7 @@ If the policies are correct you will see that FreeRADIUS returns an sometimes module? 2. Looking through the unlang keyword list, do you see any of keywords that might produce similar fail-over behaviour as the behaviour - configured above xref:unlang:keywords.adoc[Keywords]. + configured above xref:reference:unlang/keywords.adoc[Keywords]. // Copyright (C) 2020 Network RADIUS SAS. Licenced under CC-by-NC 4.0. diff --git a/doc/antora/modules/tutorials/pages/unlang_splitting_strings.adoc b/doc/antora/modules/tutorials/pages/unlang_splitting_strings.adoc index 1f857e54c70..85277d33d6b 100644 --- a/doc/antora/modules/tutorials/pages/unlang_splitting_strings.adoc +++ b/doc/antora/modules/tutorials/pages/unlang_splitting_strings.adoc @@ -12,9 +12,9 @@ *documentation page(s):* -- xref:unlang:condition/index.adoc[Conditions] -- xref:unlang:condition/regex.adoc[Regular expressions] -- xref:unlang:update.adoc[The Update Statement] +- xref:reference:unlang/condition/index.adoc[Conditions] +- xref:reference:unlang/condition/regex.adoc[Regular expressions] +- xref:reference:unlang/update.adoc[The Update Statement] include::partial$unlang_start.adoc[] diff --git a/doc/antora/modules/tutorials/pages/unlang_update_blocks_and_conditions.adoc b/doc/antora/modules/tutorials/pages/unlang_update_blocks_and_conditions.adoc index 09ca6da7d8e..55a36b60f8b 100644 --- a/doc/antora/modules/tutorials/pages/unlang_update_blocks_and_conditions.adoc +++ b/doc/antora/modules/tutorials/pages/unlang_update_blocks_and_conditions.adoc @@ -12,14 +12,14 @@ *documentation page(s):* -- xref:unlang:condition/index.adoc[Conditions] -- xref:unlang:update.adoc[The Update Statement] +- xref:reference:unlang/condition/index.adoc[Conditions] +- xref:reference:unlang/update.adoc[The Update Statement] include::partial$unlang_start.adoc[] include::partial$common_control_attrs_sidebar.adoc[] Unlang `update` blocks are used to update one or attributes in one -of the server's xref:unlang:list.adoc[attribute lists]. +of the server's xref:reference:unlang/list.adoc[attribute lists]. In previous tutorials we've used the `files` modules, and the authorize methods of authentication modules such as `pap` and `chap` to alter how diff --git a/doc/antora/modules/tutorials/pages/variables.adoc b/doc/antora/modules/tutorials/pages/variables.adoc index d60b3685c32..01b859fa1c0 100644 --- a/doc/antora/modules/tutorials/pages/variables.adoc +++ b/doc/antora/modules/tutorials/pages/variables.adoc @@ -12,7 +12,7 @@ *`man` page:* `radiusd.conf` -*documentation page:* xref:unlang:xlat/index.adoc[String expansions] +*documentation page:* xref:reference:unlang/xlat/index.adoc[String expansions] There are two kinds of variables within the server. The first is within `radiusd.conf` and related files. These variables are referenced via the