summaryrefslogtreecommitdiff
path: root/res/res_calendar.c
diff options
context:
space:
mode:
authorAndrew Latham <lathama@gmail.com>2011-01-30 00:22:59 +0000
committerAndrew Latham <lathama@gmail.com>2011-01-30 00:22:59 +0000
commitf9c3b262411fa3281537beea8c8007b31296e828 (patch)
treeb220c82f4aa90c77826c7b43a44453cef303bfbe /res/res_calendar.c
parent078f73d6972bca4eb487c67675926ef25255d1db (diff)
Add Function and Application Relationships to documentation
Add and extend the see-also sections to the documentation for applications and functions in an effort to expand the online documentation of the wiki. Also check for and update any links to moved documentation in the doc folder. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@304913 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_calendar.c')
-rw-r--r--res/res_calendar.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/res/res_calendar.c b/res/res_calendar.c
index f95c17de2..d5c716025 100644
--- a/res/res_calendar.c
+++ b/res/res_calendar.c
@@ -53,6 +53,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<description>
<para>Check the specified calendar's current busy status.</para>
</description>
+ <see-also>
+ <ref type="function">CALENDAR_EVENT</ref>
+ <ref type="function">CALENDAR_QUERY</ref>
+ <ref type="function">CALENDAR_QUERY_RESULT</ref>
+ <ref type="function">CALENDAR_WRITE</ref>
+ </see-also>
</function>
<function name="CALENDAR_EVENT" language="en_US">
<synopsis>
@@ -79,6 +85,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<para>Whenever a calendar event notification call is made, the event data
may be accessed with this function.</para>
</description>
+ <see-also>
+ <ref type="function">CALENDAR_BUSY</ref>
+ <ref type="function">CALENDAR_QUERY</ref>
+ <ref type="function">CALENDAR_QUERY_RESULT</ref>
+ <ref type="function">CALENDAR_WRITE</ref>
+ </see-also>
</function>
<function name="CALENDAR_QUERY" language="en_US">
<synopsis>Query a calendar server and store the data on a channel
@@ -98,6 +110,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<para>Get a list of events in the currently accessible timeframe of the <replaceable>calendar</replaceable>
The function returns the id for accessing the result with CALENDAR_QUERY_RESULT()</para>
</description>
+ <see-also>
+ <ref type="function">CALENDAR_BUSY</ref>
+ <ref type="function">CALENDAR_EVENT</ref>
+ <ref type="function">CALENDAR_QUERY_RESULT</ref>
+ <ref type="function">CALENDAR_WRITE</ref>
+ </see-also>
</function>
<function name="CALENDAR_QUERY_RESULT" language="en_US">
<synopsis>
@@ -133,6 +151,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
will return the data for that field. If multiple events matched the query, and <replaceable>entry</replaceable>
is provided, information from that event will be returned.</para>
</description>
+ <see-also>
+ <ref type="function">CALENDAR_BUSY</ref>
+ <ref type="function">CALENDAR_EVENT</ref>
+ <ref type="function">CALENDAR_QUERY</ref>
+ <ref type="function">CALENDAR_WRITE</ref>
+ </see-also>
</function>
<function name="CALENDAR_WRITE" language="en_US">
<synopsis>Write an event to a calendar</synopsis>
@@ -159,6 +183,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<para>Example: CALENDAR_WRITE(calendar,field1,field2,field3)=val1,val2,val3</para>
<para>The field and value arguments can easily be set/passed using the HASHKEYS() and HASH() functions</para>
</description>
+ <see-also>
+ <ref type="function">CALENDAR_BUSY</ref>
+ <ref type="function">CALENDAR_EVENT</ref>
+ <ref type="function">CALENDAR_QUERY</ref>
+ <ref type="function">CALENDAR_QUERY_RESULT</ref>
+ </see-also>
</function>
***/