[Asterisk-cvs] asterisk/cdr cdr_csv.c, 1.19, 1.20 cdr_custom.c, 1.13, 1.14 cdr_manager.c, 1.8, 1.9 cdr_odbc.c, 1.33, 1.34 cdr_pgsql.c, 1.22, 1.23 cdr_sqlite.c, 1.9, 1.10 cdr_tds.c, 1.13, 1.14

russell russell
Wed Oct 26 09:10:26 CDT 2005


Update of /usr/cvsroot/asterisk/cdr
In directory mongoose.digium.com:/tmp/cvs-serv15898/cdr

Modified Files:
	cdr_csv.c cdr_custom.c cdr_manager.c cdr_odbc.c cdr_pgsql.c 
	cdr_sqlite.c cdr_tds.c 
Log Message:
more doxygenification (issue #5513)


Index: cdr_csv.c
===================================================================
RCS file: /usr/cvsroot/asterisk/cdr/cdr_csv.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- cdr_csv.c	14 Sep 2005 20:46:49 -0000	1.19
+++ cdr_csv.c	26 Oct 2005 13:03:17 -0000	1.20
@@ -18,10 +18,11 @@
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * Comma Separated Value CDR records.
+ * \brief Comma Separated Value CDR records.
  * 
+ * \arg See also \ref AstCDR
  */
 
 #include <sys/types.h>

Index: cdr_custom.c
===================================================================
RCS file: /usr/cvsroot/asterisk/cdr/cdr_custom.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- cdr_custom.c	14 Sep 2005 20:46:49 -0000	1.13
+++ cdr_custom.c	26 Oct 2005 13:03:17 -0000	1.14
@@ -18,10 +18,13 @@
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * Comma Separated Value CDR records.
+ * \brief Custom Comma Separated Value CDR records.
  * 
+ * \arg See also \ref AstCDR
+ *
+ * Logs in LOG_DIR/cdr_custom
  */
 
 #include <sys/types.h>

Index: cdr_manager.c
===================================================================
RCS file: /usr/cvsroot/asterisk/cdr/cdr_manager.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- cdr_manager.c	15 Sep 2005 15:44:26 -0000	1.8
+++ cdr_manager.c	26 Oct 2005 13:03:17 -0000	1.9
@@ -14,10 +14,14 @@
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * Asterisk Call Manager CDR records.
+ * \brief Asterisk Call Manager CDR records.
  * 
+ * See also
+ * \arg \ref AstCDR
+ * \arg \ref AstAMI
+ * \arg \ref Config_ami
  */
 
 #include <sys/types.h>

Index: cdr_odbc.c
===================================================================
RCS file: /usr/cvsroot/asterisk/cdr/cdr_odbc.c,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- cdr_odbc.c	22 Oct 2005 15:28:56 -0000	1.33
+++ cdr_odbc.c	26 Oct 2005 13:03:17 -0000	1.34
@@ -16,10 +16,15 @@
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * ODBC CDR Backend
+ * \brief ODBC CDR Backend
  * 
+ * \author Brian K. West <brian at bkw.org>
+ *
+ * See also:
+ * \arg http://www.unixodbc.org
+ * \arg \ref Config_cdr
  */
 
 #include <sys/types.h>

Index: cdr_pgsql.c
===================================================================
RCS file: /usr/cvsroot/asterisk/cdr/cdr_pgsql.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- cdr_pgsql.c	15 Sep 2005 15:44:26 -0000	1.22
+++ cdr_pgsql.c	26 Oct 2005 13:03:17 -0000	1.23
@@ -20,10 +20,15 @@
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * PostgreSQL CDR logger 
+ * \brief PostgreSQL CDR logger 
+ * 
+ * \author Matthew D. Hardeman <mhardemn at papersoft.com> 
  *
+ * See also
+ * \arg \ref Config_cdr
+ * \arg http://www.postgresql.org/
  */
 
 #include <sys/types.h>

Index: cdr_sqlite.c
===================================================================
RCS file: /usr/cvsroot/asterisk/cdr/cdr_sqlite.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- cdr_sqlite.c	14 Sep 2005 20:46:49 -0000	1.9
+++ cdr_sqlite.c	26 Oct 2005 13:03:17 -0000	1.10
@@ -3,7 +3,6 @@
  *
  * Copyright (C) 2004 - 2005, Holger Schurig
  *
- * Holger Schurig <hs4233 at mail.mn-solutions.de>
  *
  * Ideas taken from other cdr_*.c files
  *
@@ -18,10 +17,17 @@
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * Store CDR records in a SQLite database.
+ * \brief Store CDR records in a SQLite database.
  * 
+ * \author Holger Schurig <hs4233 at mail.mn-solutions.de>
+ *
+ * See also
+ * \arg \ref Config_cdr
+ * \arg http://www.sqlite.org/
+ * 
+ * Creates the database and table on-the-fly
  */
 
 #include <sys/types.h>
@@ -52,6 +58,7 @@
 
 AST_MUTEX_DEFINE_STATIC(sqlite_lock);
 
+/*! \brief SQL table format */
 static char sql_create_table[] = "CREATE TABLE cdr ("
 "	AcctId		INTEGER PRIMARY KEY,"
 "	clid		VARCHAR(80),"

Index: cdr_tds.c
===================================================================
RCS file: /usr/cvsroot/asterisk/cdr/cdr_tds.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- cdr_tds.c	15 Sep 2005 15:44:26 -0000	1.13
+++ cdr_tds.c	26 Oct 2005 13:03:17 -0000	1.14
@@ -14,10 +14,16 @@
  * at the top of the source tree.
  */
 
-/*
+/*! \file
  *
- * FreeTDS CDR logger
+ * \brief FreeTDS CDR logger
  *
+ * See also
+ * \arg \ref Config_cdr
+ * \arg http://www.freetds.org/
+ */
+
+/*! \verbatim
  *
  * Table Structure for `cdr`
  *
@@ -44,6 +50,8 @@
 	[uniqueid] [varchar] (32) NULL
 ) ON [PRIMARY]
 
+\endverbatim
+
 */
 
 #include <sys/types.h>




More information about the svn-commits mailing list