From: Tilghman Lesher Date: Tue, 24 Jul 2007 18:19:18 +0000 (+0000) Subject: Fix escaping and some of the formattting (closes issue #10285) X-Git-Tag: 1.6.0-beta1~3^2~1931 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95bee48cdec73d11557d23c9bd678fed0b89c027;p=thirdparty%2Fasterisk.git 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 --- 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 (