summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorAndrew Latham <lathama@gmail.com>2012-10-01 23:39:45 +0000
committerAndrew Latham <lathama@gmail.com>2012-10-01 23:39:45 +0000
commit4e228fce0382550136e5c34cb4d9fd400b8d4ad3 (patch)
tree22499c040bee4cf7050bacc71c6361e111e3ee4b /main
parent99e1174bfabb3579b97ca6ec5309e1dea2041006 (diff)
Doxygen Cleanup
Start adding configuration file linking and pages. Add module loading doxygen block. Breaking up commits to keep it easy to track (issue ASTERISK-20259) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@374167 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/asterisk.c82
-rw-r--r--main/http.c9
2 files changed, 87 insertions, 4 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index 4e3d24e61..f586a3764 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -28,8 +28,11 @@
* examples, developer documentation, support information, and information
* for upgrading.
*
- *
- *
+ * \section community Community
+ * Asterisk is a big project and has a busy community. Look at the
+ * resources for questions and stick around to help answer questions.
+ * \li \ref asterisk_community_resources
+ *
* \par Developer Documentation for Asterisk
*
* This is the main developer documentation for Asterisk. It is
@@ -44,7 +47,7 @@
* \par Additional documentation
* \arg \ref Licensing
* \arg \ref DevDoc
- * \arg \ref ConfigFiles
+ * \arg \ref configuration_file
*
* \section copyright Copyright and Author
*
@@ -60,7 +63,69 @@
* the project provides a web site, mailing lists, and IRC
* channels for your use.
*
- * \todo Add pages for mailinglists, IRC, etc...
+ */
+
+/*!
+ * \page asterisk_community_resources Asterisk Community Resources
+ * \par Websites
+ * \li http://www.asterisk.org Asterisk Homepage
+ * \li http://wiki.asterisk.org Asterisk Wiki
+ *
+ * \par Mailing Lists
+ * \par
+ * All lists: http://lists.digium.com/mailman/listinfo
+ * \li aadk-commits SVN commits to the AADK repository
+ * \li asterisk-addons-commits SVN commits to the Asterisk addons project
+ * \li asterisk-announce [no description available]
+ * \li asterisk-biz Commercial and Business-Oriented Asterisk Discussion
+ * \li Asterisk-BSD Asterisk on BSD discussion
+ * \li asterisk-bugs [no description available]
+ * \li asterisk-commits SVN commits to the Asterisk project
+ * \li asterisk-dev Asterisk Developers Mailing List
+ * \li asterisk-doc Discussions regarding The Asterisk Documentation Project
+ * \li asterisk-embedded Asterisk Embedded Development
+ * \li asterisk-gui Asterisk GUI project discussion
+ * \li asterisk-gui-commits SVN commits to the Asterisk-GUI project
+ * \li asterisk-ha-clustering Asterisk High Availability and Clustering List - Non-Commercial Discussion
+ * \li Asterisk-i18n Discussion of Asterisk internationalization
+ * \li asterisk-r2 [no description available]
+ * \li asterisk-scf-commits Commits to the Asterisk SCF project code repositories
+ * \li asterisk-scf-committee Asterisk SCF Steering Committee discussions
+ * \li asterisk-scf-dev Asterisk SCF Developers Mailing List
+ * \li asterisk-scf-wiki-changes Changes to the Asterisk SCF space on wiki.asterisk.org
+ * \li asterisk-security Asterisk Security Discussion
+ * \li asterisk-speech-rec Use of speech recognition in Asterisk
+ * \li asterisk-ss7 [no description available]
+ * \li asterisk-users Asterisk Users Mailing List - Non-Commercial Discussion
+ * \li asterisk-video Development discussion of video media support in Asterisk
+ * \li asterisk-wiki-changes Changes to the Asterisk space on wiki.asterisk.org
+ * \li asterisknow AsteriskNOW Discussion
+ * \li dahdi-commits SVN commits to the DAHDI project
+ * \li digium-announce Digium Product Announcements
+ * \li Dundi Distributed Universal Number Discovery
+ * \li libiax2-commits SVN commits to the libiax2 project
+ * \li libpri-commits SVN commits to the libpri project
+ * \li libss7-commits SVN commits to the libss7 project
+ * \li svn-commits SVN commits to the Digium repositories
+ * \li Test-results Results from automated testing
+ * \li thirdparty-commits SVN commits to the Digium third-party software repository
+ * \li zaptel-commits SVN commits to the Zaptel project
+ *
+ * \par Forums
+ * \li Forums are located at http://forums.asterisk.org/
+ *
+ * \par IRC
+ * \par
+ * Use http://www.freenode.net IRC server to connect with Asterisk
+ * developers and users in realtime.
+ *
+ * \li \verbatim #asterisk \endverbatim Asterisk Users Room
+ * \li \verbatim #asterisk-dev \endverbatim Asterisk Developers Room
+ *
+ * \par More
+ * \par
+ * If you would like to add a resource to this list please create an issue
+ * on the issue tracker with a patch.
*/
/*! \file
@@ -68,6 +133,15 @@
* Implementation of PBX core functions and CLI interface.
*/
+/*!
+ * \li The Asterisk core uses the configuration file \ref asterisk.conf
+ * \addtogroup configuration_file
+ */
+
+/*! \page asterisk.conf asterisk.conf
+ * \verbinclude asterisk.conf.sample
+ */
+
/*** MODULEINFO
<support_level>core</support_level>
***/
diff --git a/main/http.c b/main/http.c
index de8a57388..b940ae17e 100644
--- a/main/http.c
+++ b/main/http.c
@@ -30,6 +30,15 @@
* \ref AstHTTP - AMI over the http protocol
*/
+/*!
+ * \li The core module http uses the configuration file \ref http.conf
+ * \addtogroup configuration_file
+ */
+
+/*! \page http.conf http.conf
+ * \verbinclude http.conf.sample
+ */
+
/*** MODULEINFO
<support_level>core</support_level>
***/