Skip to content

Commit

Permalink
uid_avp_db: docs - removed trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Nov 13, 2023
1 parent acfcbf3 commit 16219f9
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion src/modules/uid_avp_db/avp_db.xml
Expand Up @@ -323,7 +323,7 @@
</serdoc:paraminfo>
<para>
The <parameter>value_column</parameter> parameter specifies the name
of the database column for the
of the database column for the
<serdoc:field table="user_attrs">value</serdoc:field> field.
</para>
</refsect2>
Expand Down
4 changes: 2 additions & 2 deletions src/modules/uid_avp_db/doc/fifo.xml
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">

<section id="avp_db.fifo" xmlns:xi="http://www.w3.org/2001/XInclude">
<sectioninfo>
</sectioninfo>

<title>FIFO Interface</title>

<section id="avp_list_reload">
<title><function>avp_list_reload</function></title>
<para>
Expand Down
14 changes: 7 additions & 7 deletions src/modules/uid_avp_db/doc/functions.xml
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">

<section id="avp_db.functions" xmlns:xi="http://www.w3.org/2001/XInclude">
<!-- following is not needed in every section - it is needless here?
<!-- following is not needed in every section - it is needless here?
<sectioninfo>
</sectioninfo>-->

Expand Down Expand Up @@ -66,14 +66,14 @@
<term>track</term>
<listitem><para>
<variablelist>

<varlistentry>
<term>$fu</term>
<listitem><para>Load user attributes into from track. In this case
the second parameter is UID used to search attributes.
</para></listitem>
</varlistentry>

<varlistentry>
<term>$tu</term>
<listitem><para>Load user attributes into to track. In this case
Expand Down Expand Up @@ -113,7 +113,7 @@

<section><title>load_extra_attrs (group_id, id)</title>
<para>
Loads 'extra attributes' stored by previous call to save_extra_attrs.
Loads 'extra attributes' stored by previous call to save_extra_attrs.
<variablelist>
<varlistentry>
<term>group_id</term>
Expand All @@ -129,10 +129,10 @@
</variablelist>
</para>
</section>

<section><title>save_extra_attrs (group_id, id)</title>
<para>
Saves 'extra attributes' flagged by group flag under given id.
Saves 'extra attributes' flagged by group flag under given id.
<variablelist>
<varlistentry>
<term>group_id</term>
Expand Down
30 changes: 15 additions & 15 deletions src/modules/uid_avp_db/doc/params.xml
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">

<section id="avp_db.parameters" xmlns:xi="http://www.w3.org/2001/XInclude">
<!-- following is not needed in every section - it is needless here?
<!-- following is not needed in every section - it is needless here?
</sectioninfo>-->

<title>Parameters</title>
Expand Down Expand Up @@ -79,7 +79,7 @@
Default value is "name".
</para>
</section>

<section>
<title><varname>value_column</varname> (string)</title>
<para>
Expand All @@ -89,7 +89,7 @@
Default value is "value".
</para>
</section>

<section>
<title><varname>type_column</varname> (string)</title>
<para>
Expand All @@ -109,7 +109,7 @@
Default value is "flags".
</para>
</section>

<section>
<title><varname>scheme_column</varname> (string)</title>
<para>
Expand All @@ -130,7 +130,7 @@
The group definition contains one or more assignments in the form
key=value. Possible keys are:
<variablelist>

<varlistentry>
<term>id</term>
<listitem><para>Attribute group identifier. Must be set.
Expand Down Expand Up @@ -159,7 +159,7 @@
value is <quote>name</quote>.</para></listitem>
</varlistentry>
<varlistentry>
<term>value_column</term>
<term>value_column</term>
<listitem><para>Column name used for storing attribute
value. Default value is <quote>value</quote>.</para></listitem>
</varlistentry>
Expand All @@ -169,7 +169,7 @@
value is <quote>type</quote>.</para></listitem>
</varlistentry>
<varlistentry>
<term>flags_column</term>
<term>flags_column</term>
<listitem><para>Column name used for storing attribute
flags. Default value is <quote>flags</quote>.</para></listitem>
</varlistentry>
Expand All @@ -181,15 +181,15 @@
<para><example><title>attribute group definition</title>
<programlisting>modparam("avp_db", "attr_group", "id=dlg,flag=dialog_flag,table=dlg_attrs,key_column=dlg_id");</programlisting>
<para>Table used for these attributes:
<programlisting>mysql> describe dlg_attrs;
<programlisting>mysql> describe dlg_attrs;
+--------+------------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------+------------------+------+-----+---------+-------+
| dlg_id | varchar(256) | NO | MUL | | |
| name | varchar(32) | NO | | | |
| value | varchar(255) | YES | | NULL | |
| type | int(11) | NO | | 0 | |
| flags | int(10) unsigned | NO | | 0 | |
| dlg_id | varchar(256) | NO | MUL | | |
| name | varchar(32) | NO | | | |
| value | varchar(255) | YES | | NULL | |
| type | int(11) | NO | | 0 | |
| flags | int(10) unsigned | NO | | 0 | |
+--------+------------------+------+-----+---------+-------+
5 rows in set (0.00 sec)
</programlisting>
Expand All @@ -214,7 +214,7 @@ route {
Determines the action when any of the 'extra attributes' lock is detected when
routing script execution was finished.

When the value of this parameter is zero (default) BUG level message is logged,
When the value of this parameter is zero (default) BUG level message is logged,
but the lock is kept, so another process trying to obtain the lock might get stuck.

If the value is nonzero, DEBUG level message is sent to the log and all the locks are released.
Expand Down
4 changes: 2 additions & 2 deletions src/modules/uid_avp_db/doc/uid_avp_db.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">

<book id="uid_avp_db" xmlns:xi="http://www.w3.org/2001/XInclude">
Expand Down Expand Up @@ -47,7 +47,7 @@
behavior.
</para>
</section>

<section id="uid_avp_db.dep">
<title>Dependencies</title>
<para>
Expand Down

0 comments on commit 16219f9

Please sign in to comment.