From 95bee48cdec73d11557d23c9bd678fed0b89c027 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Tue, 24 Jul 2007 18:19:18 +0000 Subject: [PATCH] Fix escaping and some of the formattting (closes issue #10285) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@76874 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- doc/tex/ael.tex | 36 ++- doc/tex/asterisk.tex | 26 +- doc/tex/billing.tex | 91 ++++--- doc/tex/channelvariables.tex | 466 ++++++++++++++++++----------------- doc/tex/hardware.tex | 10 +- doc/tex/jitterbuffer.tex | 2 +- doc/tex/manager.tex | 266 ++++++++++---------- doc/tex/misdn.tex | 52 ++-- doc/tex/odbcstorage.tex | 2 + doc/tex/privacy.tex | 88 +++---- doc/tex/qos.tex | 57 +++-- doc/tex/queuelog.tex | 54 ++-- doc/tex/realtime.tex | 14 +- 13 files changed, 589 insertions(+), 575 deletions(-) diff --git a/doc/tex/ael.tex b/doc/tex/ael.tex index 416b67e342..87e224b09b 100644 --- a/doc/tex/ael.tex +++ b/doc/tex/ael.tex @@ -584,7 +584,7 @@ name/number with a slash (/) and the number to match against the Caller ID: \begin{verbatim} context zoombo { - 819/7079953345 => { NoOp(hello, 3345); } + 819/7079953345 => { NoOp(hello, 3345); } } \end{verbatim} @@ -727,8 +727,8 @@ You can declare variables in Macros, as so: \begin{verbatim} Macro myroutine(firstarg, secondarg) { - Myvar=1; - NoOp(Myvar is set to ${myvar}); + Myvar=1; + NoOp(Myvar is set to ${myvar}); } \end{verbatim} @@ -747,8 +747,8 @@ before setting them to a value; \begin{verbatim} Macro myroutine(firstarg, secondarg) { - local Myvar=1; - NoOp(Myvar is set to ${Myvar}, and firstarg is ${firstarg}, and secondarg is ${secondarg}); + local Myvar=1; + NoOp(Myvar is set to ${Myvar}, and firstarg is ${firstarg}, and secondarg is ${secondarg}); } \end{verbatim} @@ -760,8 +760,8 @@ If you need to make a local variable within the Set() application, you can do it \begin{verbatim} Macro myroutine(firstarg, secondarg) { - Set(LOCAL(Myvar)=1); - NoOp(Myvar is set to ${Myvar}, and firstarg is ${firstarg}, and secondarg is ${secondarg}); + Set(LOCAL(Myvar)=1); + NoOp(Myvar is set to ${Myvar}, and firstarg is ${firstarg}, and secondarg is ${secondarg}); } \end{verbatim} @@ -787,9 +787,9 @@ context loops { } \end{verbatim} -NOTE: The conditional expression (the "\${y} >= 0" above) is wrapped in +NOTE: The conditional expression (the "\${y} $>$= 0" above) is wrapped in \$[ ] so it can be evaluated. NOTE: The for loop test expression - (the "\${x} < 3" above) is wrapped in \$[ ] so it can be evaluated. + (the "\${x} $<$ 3" above) is wrapped in \$[ ] so it can be evaluated. @@ -1134,9 +1134,7 @@ These checks will be: currently known functions. A warning is issued if it is not. \end{itemize} - -Differences with the original version of AEL -============================================ +\section{Differences with the original version of AEL} \begin{enumerate} \item The \$[...] expressions have been enhanced to include the ==, ||, @@ -1174,8 +1172,8 @@ Differences with the original version of AEL AEL README. \item Added the "return" keyword, which will jump to the end of an extension/Macro. - \item Added the ifTime (