[asterisk-commits] russell: branch 1.6.2 r272685 - in /branches/1.6.2: ./ doc/tex/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jun 28 10:36:06 CDT 2010
Author: russell
Date: Mon Jun 28 10:36:03 2010
New Revision: 272685
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=272685
Log:
Merged revisions 272684 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r272684 | russell | 2010-06-28 10:33:32 -0500 (Mon, 28 Jun 2010) | 2 lines
Use the underscore package so that underscores do not need to be escaped.
........
Added:
branches/1.6.2/doc/tex/chan-mobile.tex
- copied unchanged from r272684, trunk/doc/tex/chan-mobile.tex
Modified:
branches/1.6.2/ (props changed)
branches/1.6.2/doc/tex/asterisk.tex
branches/1.6.2/doc/tex/cdrdriver.tex
Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.2/doc/tex/asterisk.tex
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/doc/tex/asterisk.tex?view=diff&rev=272685&r1=272684&r2=272685
==============================================================================
--- branches/1.6.2/doc/tex/asterisk.tex (original)
+++ branches/1.6.2/doc/tex/asterisk.tex Mon Jun 28 10:36:03 2010
@@ -8,6 +8,7 @@
\documentclass[12pt,a4]{report}
\usepackage{hyperref}
+\usepackage{underscore}
\usepackage{url}
\makeatletter
Modified: branches/1.6.2/doc/tex/cdrdriver.tex
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/doc/tex/cdrdriver.tex?view=diff&rev=272685&r1=272684&r2=272685
==============================================================================
--- branches/1.6.2/doc/tex/cdrdriver.tex (original)
+++ branches/1.6.2/doc/tex/cdrdriver.tex Mon Jun 28 10:36:03 2010
@@ -3,16 +3,16 @@
\subsection{Microsoft SQL Server}
Asterisk can currently store CDRs into an MSSQL database in
- two different ways: cdr\_odbc or cdr\_tds
+ two different ways: cdr_odbc or cdr_tds
Call Data Records can be stored using unixODBC (which requires
- the FreeTDS package) [cdr\_odbc] or directly by using just the
- FreeTDS package [cdr\_tds] The following provide some
+ the FreeTDS package) [cdr_odbc] or directly by using just the
+ FreeTDS package [cdr_tds] The following provide some
examples known to get asterisk working with mssql.
NOTE: Only choose one db connector.
-\subsubsection{ODBC using cdr\_odbc}
+\subsubsection{ODBC using cdr_odbc}
Compile, configure, and install the latest unixODBC package:
\begin{astlisting}
\begin{verbatim}
@@ -36,7 +36,7 @@
\end{astlisting}
Compile, or recompile, asterisk so that it will now add support
- for cdr\_odbc.
+ for cdr_odbc.
\begin{astlisting}
\begin{verbatim}
make clean && ./configure --with-odbc &&
@@ -71,8 +71,8 @@
\end{astlisting}
Only install one database connector. Do not confuse asterisk
- by using both ODBC (cdr\_odbc) and FreeTDS (cdr\_tds).
- This command will erase the contents of cdr\_tds.conf
+ by using both ODBC (cdr_odbc) and FreeTDS (cdr_tds).
+ This command will erase the contents of cdr_tds.conf
\begin{astlisting}
\begin{verbatim}
[ -f /etc/asterisk/cdr_tds.conf ] > /etc/asterisk/cdr_tds.conf
@@ -81,7 +81,7 @@
NOTE: unixODBC requires the freeTDS package, but asterisk does
not call freeTDS directly.
- Now set up cdr\_odbc configuration files. These are working samples
+ Now set up cdr_odbc configuration files. These are working samples
from my system. You will need to modify for your setup. Define
your usernames and passwords here, secure file as well.
\begin{astlisting}
@@ -121,7 +121,7 @@
logs a connection to the database and will now record every
call to the database when it's complete.
-\subsubsection{TDS, using cdr\_tds}
+\subsubsection{TDS, using cdr_tds}
Compile, configure, and install the latest FreeTDS package:
\begin{astlisting}
\begin{verbatim}
@@ -133,7 +133,7 @@
\end{verbatim}
\end{astlisting}
Compile, or recompile, asterisk so that it will now add support
- for cdr\_tds.
+ for cdr_tds.
\begin{astlisting}
\begin{verbatim}
make clean && ./configure --with-tds &&
@@ -143,14 +143,14 @@
\end{verbatim}
\end{astlisting}
Only install one database connector. Do not confuse asterisk
- by using both ODBC (cdr\_odbc) and FreeTDS (cdr\_tds).
- This command will erase the contents of cdr\_odbc.conf
+ by using both ODBC (cdr_odbc) and FreeTDS (cdr_tds).
+ This command will erase the contents of cdr_odbc.conf
\begin{astlisting}
\begin{verbatim}
[ -f /etc/asterisk/cdr_odbc.conf ] > /etc/asterisk/cdr_odbc.conf
\end{verbatim}
\end{astlisting}
- Setup cdr\_tds configuration files. These are working samples
+ Setup cdr_tds configuration files. These are working samples
from my system. You will need to modify for your setup. Define
your usernames and passwords here, secure file as well.
\begin{astlisting}
@@ -197,16 +197,16 @@
\subsection{MySQL}
-Using MySQL for CDR records is supported by using ODBC and the cdr\_odbc module.
+Using MySQL for CDR records is supported by using ODBC and the cdr_odbc module.
\subsection{PostgreSQL}
- If you want to go directly to postgresql database, and have the cdr\_pgsql.so
+ If you want to go directly to postgresql database, and have the cdr_pgsql.so
compiled you can use the following sample setup.
On Debian, before compiling asterisk, just install libpqxx-dev.
Other distros will likely have a similiar package.
Once you have the compile done,
- copy the sample cdr\_pgsql.conf file or create your own.
+ copy the sample cdr_pgsql.conf file or create your own.
Here is a sample:
\begin{astlisting}
@@ -248,11 +248,11 @@
\subsection{SQLite 2}
-SQLite version 2 is supported in cdr\_sqlite.
+SQLite version 2 is supported in cdr_sqlite.
\subsection{SQLite 3}
-SQLite version 3 is supported in cdr\_sqlite3\_custom.
+SQLite version 3 is supported in cdr_sqlite3\_custom.
\subsection{RADIUS}
@@ -443,7 +443,7 @@
for all the fields which are recorded. By default, records in comma
separated values will be created in \path{/var/log/asterisk/cdr-csv}.
- The configuration file for cdr\_radius.so module is \path{/etc/asterisk/cdr.conf}
+ The configuration file for cdr_radius.so module is \path{/etc/asterisk/cdr.conf}
This is where you can set CDR related parameters as well as the path to
the radiusclient-ng library configuration file.
More information about the asterisk-commits
mailing list