Skip to content

Commit

Permalink
db_flatstore: 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 1a1840e commit 480d79f
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
14 changes: 7 additions & 7 deletions src/modules/db_flatstore/doc/db_flatstore.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" [

<!-- Include general documentation entities -->
Expand Down Expand Up @@ -49,7 +49,7 @@
</para>
<para>
The module does not implement all functions of the database API, it
supports only one function, insert. This means that the module is
supports only one function, insert. This means that the module is
limited but very fast. It is especially suitable for storing accounting
information on sites with extremely high traffic. If MySQL is too slow or if
you get a huge amount of accounting data then you can consider
Expand All @@ -59,7 +59,7 @@
<para>
The format of the files produced by this module is plain text. Each
line consists of several fields, fields are separated by the "|"
character (vertical bar). New information is always appended at the end
character (vertical bar). New information is always appended at the end
of the file. <emphasis>Searching, deleting and updating of existing data is not
supported by the module</emphasis>.
</para>
Expand All @@ -84,7 +84,7 @@ modparam("acc", "db_url", "flatstore:/var/log/acc")
</programlisting>
<para>
For example, entries written by the &kamailio; process 8 into the acc
table would be written in file acc_8.log. For each table there will be
table would be written in file acc_8.log. For each table there will be
several files, one file for every &kamailio; process that wrote some data into
that table. The main reason why there are several files for each
table is that it is much faster to have one file per process,
Expand All @@ -98,9 +98,9 @@ modparam("acc", "db_url", "flatstore:/var/log/acc")
<para>
The module implements a &kamailio; management interface command called
flatstore.k_rotate. When &kamailio; receives the command it will
close and reopen all files used by the db_flatstore module.
The rotation itself has to be done by another application
(such as logrotate). Follow these steps to rotate files generated by
close and reopen all files used by the db_flatstore module.
The rotation itself has to be done by another application
(such as logrotate). Follow these steps to rotate files generated by
the db_flatstore module:
</para>
<itemizedlist>
Expand Down
2 changes: 1 addition & 1 deletion src/modules/db_flatstore/doc/db_flatstore_functions.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">

<section id="flatstore.functions" xmlns:xi="http://www.w3.org/2001/XInclude">
Expand Down
2 changes: 1 addition & 1 deletion src/modules/db_flatstore/doc/db_flatstore_params.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">

<section id="flatstore.functions" xmlns:xi="http://www.w3.org/2001/XInclude">
Expand Down
2 changes: 1 addition & 1 deletion src/modules/db_flatstore/km_doc/db_flatstore.xml
Expand Up @@ -36,7 +36,7 @@
</copyright>
</bookinfo>
<toc></toc>

<xi:include href="db_flatstore_admin.xml"/>
<xi:include href="db_flatstore_devel.xml"/>
</book>
10 changes: 5 additions & 5 deletions src/modules/db_flatstore/km_doc/db_flatstore_admin.xml
Expand Up @@ -11,9 +11,9 @@
<!-- Module User's Guide -->

<chapter>

<title>&adminguide;</title>

<section>
<title>Overview</title>
<para>
Expand Down Expand Up @@ -71,7 +71,7 @@ modparam("acc", "db_url", "flatstore:/var/log/acc")
<section id="rotating">
<title>Rotating Log Files</title>
<para>
There is a new &kamailio; MI (management interface) command called
There is a new &kamailio; MI (management interface) command called
flat_rotate.
When &kamailio; receives the command then it will close and reopen all
files used by flatstore module. The rotation itself has to be
Expand Down Expand Up @@ -177,7 +177,7 @@ modparam("db_flatstore", "flush", 0)
There are no function exported to routing script.
</para>
</section>

<section>
<title>Exported MI Functions</title>
<section>
Expand All @@ -198,7 +198,7 @@ modparam("db_flatstore", "flush", 0)
:flat_rotate:_reply_fifo_file_
_empty_line_
</programlisting>
</section>
</section>
</section>
</chapter>

2 changes: 1 addition & 1 deletion src/modules/db_flatstore/km_doc/db_flatstore_devel.xml
Expand Up @@ -11,7 +11,7 @@
<!-- Module Developer's Guide -->

<chapter>

<title>&develguide;</title>
<para>
The module implements the DB <acronym>API</acronym>.
Expand Down

0 comments on commit 480d79f

Please sign in to comment.