aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authoreliel <eliel@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-05 12:13:57 +0000
committereliel <eliel@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-05 12:13:57 +0000
commit8de203d7660f6c6cff73ac098b575dbccd84b459 (patch)
tree370e13f21a5cec57db695cc35ec7ce15ca42d190 /funcs
parent50b9863fdb42c5d142f8b9994d2b179eeb27392b (diff)
- Add some see-also references based on TFOT.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@154542 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_blacklist.c3
-rw-r--r--funcs/func_db.c14
2 files changed, 17 insertions, 0 deletions
diff --git a/funcs/func_blacklist.c b/funcs/func_blacklist.c
index c353b20fd..304ba9bdf 100644
--- a/funcs/func_blacklist.c
+++ b/funcs/func_blacklist.c
@@ -45,6 +45,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<para>Uses astdb to check if the Caller*ID is in family <literal>blacklist</literal>.
Returns <literal>1</literal> or <literal>0</literal>.</para>
</description>
+ <see-also>
+ <ref type="function">DB</ref>
+ </see-also>
</function>
***/
diff --git a/funcs/func_db.c b/funcs/func_db.c
index 9c8e0bdf9..5fa753f6d 100644
--- a/funcs/func_db.c
+++ b/funcs/func_db.c
@@ -56,6 +56,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
DB_RESULT. If you wish to find out if an entry exists, use the DB_EXISTS
function.</para>
</description>
+ <see-also>
+ <ref type="application">DBdel</ref>
+ <ref type="function">DB_DELETE</ref>
+ <ref type="application">DBdeltree</ref>
+ <ref type="function">DB_EXISTS</ref>
+ </see-also>
</function>
<function name="DB_EXISTS" language="en_US">
<synopsis>
@@ -71,6 +77,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
it will return <literal>0</literal>. Checking for existence of a database key will
also set the variable DB_RESULT to the key's value if it exists.</para>
</description>
+ <see-also>
+ <ref type="function">DB</ref>
+ </see-also>
</function>
<function name="DB_DELETE" language="en_US">
<synopsis>
@@ -85,6 +94,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
and then remove that key from the database. <variable>DB_RESULT</variable>
will be set to the key's value if it exists.</para>
</description>
+ <see-also>
+ <ref type="application">DBdel</ref>
+ <ref type="function">DB</ref>
+ <ref type="application">DBdeltree</ref>
+ </see-also>
</function>
***/