Changeset 2638

Cleaned up various leftover references to Asterisk

Committed by:  coppice
Date:  Apr 22 2007 * 08:13 (about 1 year ago)

Affected files:

callweaver/trunk/cdr/cdr_csv.c (unified diff)

r2615r2638
2222 *
2323 * \brief Comma Separated Value CDR records.
2424 *
25 * \arg See also \ref AstCDR
25 * \arg See also \ref opbxCDR
2626 */
2727 #ifdef HAVE_CONFIG_H
2828 #include "confdefs.h"

callweaver/trunk/cdr/cdr_sqlite3.c (unified diff)

r2627r2638
11 /*
2 * Asterisk -- An open source telephony toolkit.
2 * CallWeaver -- An open source telephony toolkit.
33 *
44 * Copyright (C) 2004 - 2005, Holger Schurig
55 *
66 *
77 * Ideas taken from other cdr_*.c files
88 *
9 * See http://www.asterisk.org for more information about
10 * the Asterisk project. Please do not directly contact
9 * See http://www.callweaver.org for more information about
10 * the CallWeaver project. Please do not directly contact
1111 * any of the maintainers of this project for assistance;
1212 * the project provides a web site, mailing lists and IRC
1313 * channels for your use.

callweaver/trunk/include/callweaver/ast_expr.h (unified diff)

r1676r2638
11 /*
2 * Asterisk -- An open source telephony toolkit.
2 * CallWeaver -- An open source telephony toolkit.
33 *
44 * Copyright (C) 1999 - 2005, Digium, Inc.
55 *
------
1616 * at the top of the source tree.
1717 */
1818
19 #ifndef _ASTERISK_EXPR_H
20 #define _ASTERISK_EXPR_H
19 #ifndef _CALLWEAVER_AST_EXPR_H
20 #define _CALLWEAVER_AST_EXPR_H
2121
2222 #if defined(__cplusplus) || defined(c_plusplus)
2323 extern "C" {
------
2929 }
3030 #endif
3131
32 #endif /* _ASTERISK_EXPR_H */
32 #endif

callweaver/trunk/include/callweaver/callerid.h (unified diff)

r1676r2638
11 /*
2 * Asterisk -- An open source telephony toolkit.
2 * CallWeaver -- An open source telephony toolkit.
33 *
44 * Copyright (C) 1999 - 2005, Digium, Inc.
55 *
66 * Mark Spencer <markster@digium.com>
77 *
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
8 * See http://www.callweaver.org for more information about
9 * the CallWeaver project. Please do not directly contact
1010 * any of the maintainers of this project for assistance;
1111 * the project provides a web site, mailing lists and IRC
1212 * channels for your use.
------
3232 * On ISDN Caller ID names are 7 bit, Almost ASCII
3333 * (See http://www.zytrax.com/tech/ia5.html )
3434 *
35 * \note Asterisk does not currently support SIP utf8 caller ID names or caller ID's.
35 * \note CallWeaver does not currently support SIP utf8 caller ID names or caller ID's.
3636 *
3737 * \par See also
3838 * \arg \ref callerid.c
------
4040 * \arg \ref Def_CallerPres
4141 */
4242
43 #ifndef _ASTERISK_CALLERID_H
44 #define _ASTERISK_CALLERID_H
43 #ifndef _CALLWEAVER_CALLERID_H
44 #define _CALLWEAVER_CALLERID_H
4545
4646 #define MAX_CALLERID_SIZE 32000
4747
------
6060 #define CID_START_POLARITY 2
6161
6262
63 #define AST_LIN2X(a) ((codec == AST_FORMAT_ALAW) ? (AST_LIN2A(a)) : (AST_LIN2MU(a)))
64 #define AST_XLAW(a) ((codec == AST_FORMAT_ALAW) ? (AST_ALAW(a)) : (AST_MULAW(a)))
63 #define OPBX_LIN2X(a) ((codec == OPBX_FORMAT_ALAW) ? (OPBX_LIN2A(a)) : (OPBX_LIN2MU(a)))
64 #define OPBX_XLAW(a) ((codec == OPBX_FORMAT_ALAW) ? (OPBX_ALAW(a)) : (OPBX_MULAW(a)))
6565
6666
6767 struct callerid_state;
------
7979 * \param name name to be used
8080 * \param flags passed flags
8181 * \param callwaiting callwaiting flag
82 * \param codec -- either AST_FORMAT_ULAW or AST_FORMAT_ALAW
82 * \param codec -- either OPBX_FORMAT_ULAW or OPBX_FORMAT_ALAW
8383 * This function creates a stream of callerid (a callerid spill) data in ulaw format.
8484 * \return It returns the size
8585 * (in bytes) of the data (if it returns a size of 0, there is probably an error)
------
9898 * \param cid Which state machine to act upon
9999 * \param ubuf containing your samples
100100 * \param samples number of samples contained within the buffer.
101 * \param codec which codec (AST_FORMAT_ALAW or AST_FORMAT_ULAW)
101 * \param codec which codec (OPBX_FORMAT_ALAW or OPBX_FORMAT_ULAW)
102102 *
103103 * Send received audio to the Caller*ID demodulator.
104104 * \return Returns -1 on error, 0 for "needs more samples",
------
110110 * \param cid Which state machine to act upon
111111 * \param ubuf containing your samples
112112 * \param samples number of samples contained within the buffer.
113 * \param codec which codec (AST_FORMAT_ALAW or AST_FORMAT_ULAW)
113 * \param codec which codec (OPBX_FORMAT_ALAW or OPBX_FORMAT_ULAW)
114114 *
115115 * Send received audio to the Caller*ID demodulator (for japanese style lines).
116116 * \return Returns -1 on error, 0 for "needs more samples",
------
147147 */
148148 void callerid_free(struct callerid_state *cid);
149149
150 /*! \brief Generate Caller-ID spill from the "callerid" field of asterisk (in e-mail address like format)
150 /*! \brief Generate Caller-ID spill from the "callerid" field of CallWeaver (in e-mail address like format)
151151 * \param buf buffer for output samples. See callerid_generate() for details regarding buffer.
152152 * \param name Caller-ID Name
153153 * \param number Caller-ID Number
154 * \param codec Asterisk codec (either AST_FORMAT_ALAW or AST_FORMAT_ULAW)
154 * \param codec CallWeaver codec (either OPBX_FORMAT_ALAW or OPBX_FORMAT_ULAW)
155155 *
156 * Acts like callerid_generate except uses an asterisk format callerid string.
156 * Acts like callerid_generate except uses an CallWeaver format callerid string.
157157 */
158 int ast_callerid_generate(unsigned char *buf, const char *name, const char *number, int codec);
158 int OPBX_callerid_generate(unsigned char *buf, const char *name, const char *number, int codec);
159159
160160 /*! \brief Generate message waiting indicator (stutter tone) */
161161 int vmwi_generate(unsigned char *buf, int active, int mdmf, int codec);
162162
163163 /*! \brief Generate Caller-ID spill but in a format suitable for Call Waiting(tm)'s Caller*ID(tm)
164 * See ast_callerid_generate() for other details
164 * See OPBX_callerid_generate() for other details
165165 */
166 int ast_callerid_callwaiting_generate(unsigned char *buf, const char *name, const char *number, int codec);
166 int OPBX_callerid_callwaiting_generate(unsigned char *buf, const char *name, const char *number, int codec);
167167
168168 /*! \brief Destructively parse inbuf into name and location (or number)
169169 * Parses callerid stream from inbuf and changes into useable form, outputed in name and location.
------
172172 * \param location address of a pointer-to-char for the phone number value of the stream.
173173 * \return Returns 0 on success, -1 on failure.
174174 */
175 int ast_callerid_parse(char *instr, char **name, char **location);
175 int OPBX_callerid_parse(char *instr, char **name, char **location);
176176
177177 /*! Generate a CAS (CPE Alert Signal) tone for 'n' samples */
178178 /*!
179179 * \param outbuf Allocated buffer for data. Must be at least 2400 bytes unless no SAS is desired
180180 * \param sas Non-zero if CAS should be preceeded by SAS
181181 * \param len How many samples to generate.
182 * \param codec Which codec (AST_FORMAT_ALAW or AST_FORMAT_ULAW)
182 * \param codec Which codec (OPBX_FORMAT_ALAW or OPBX_FORMAT_ULAW)
183183 * \return Returns -1 on error (if len is less than 2400), 0 on success.
184184 */
185 int ast_gen_cas(unsigned char *outbuf, int sas, int len, int codec);
185 int OPBX_gen_cas(unsigned char *outbuf, int sas, int len, int codec);
186186
187187 /*! \brief Shrink a phone number in place to just digits (more accurately it just removes ()'s, .'s, and -'s... */
188188 /*!
189189 * \param n The number to be stripped/shrunk
190190 * \return Returns nothing important
191191 */
192 void ast_shrink_phone_number(char *n);
192 void OPBX_shrink_phone_number(char *n);
193193
194194 /*! \brief Check if a string consists only of digits and + \#
195195 \param n number to be checked.
196196 \return Returns 0 if n is a number, 1 if it's not.
197197 */
198 int ast_isphonenumber(const char *n);
198 int OPBX_isphonenumber(const char *n);
199199
200200 /*! \brief Check if a string consists only of digits and and + \# ( ) - .
201 (meaning it can be cleaned with ast_shrink_phone_number)
201 (meaning it can be cleaned with OPBX_shrink_phone_number)
202202 \param exten The extension (or URI) to be checked.
203203 \return Returns 0 if n is a number, 1 if it's not.
204204 */
205 int ast_is_shrinkable_phonenumber(const char *exten);
205 int OPBX_is_shrinkable_phonenumber(const char *exten);
206206
207 int ast_callerid_split(const char *src, char *name, int namelen, char *num, int numlen);
207 int OPBX_callerid_split(const char *src, char *name, int namelen, char *num, int numlen);
208208
209 char *ast_callerid_merge(char *buf, int bufsiz, const char *name, const char *num, const char *unknown);
209 char *OPBX_callerid_merge(char *buf, int bufsiz, const char *name, const char *num, const char *unknown);
210210
211211 /*
212212 * Caller*ID and other GR-30 compatible generation
------
238238
239239 #define PUT_AUDIO_SAMPLE(y) do { \
240240 int index = (short)(rint(8192.0 * (y))); \
241 *(buf++) = AST_LIN2X(index); \
241 *(buf++) = OPBX_LIN2X(index); \
242242 bytes++; \
243243 } while(0)
244244
------
270270
271271 /* Various defines and bits for handling PRI- and SS7-type restriction */
272272
273 #define AST_PRES_NUMBER_TYPE 0x03
274 #define AST_PRES_USER_NUMBER_UNSCREENED 0x00
275 #define AST_PRES_USER_NUMBER_PASSED_SCREEN 0x01
276 #define AST_PRES_USER_NUMBER_FAILED_SCREEN 0x02
277 #define AST_PRES_NETWORK_NUMBER 0x03
273 #define OPBX_PRES_NUMBER_TYPE 0x03
274 #define OPBX_PRES_USER_NUMBER_UNSCREENED 0x00
275 #define OPBX_PRES_USER_NUMBER_PASSED_SCREEN 0x01
276 #define OPBX_PRES_USER_NUMBER_FAILED_SCREEN 0x02
277 #define OPBX_PRES_NETWORK_NUMBER 0x03
278278
279 #define AST_PRES_RESTRICTION 0x60
280 #define AST_PRES_ALLOWED 0x00
281 #define AST_PRES_RESTRICTED 0x20
282 #define AST_PRES_UNAVAILABLE 0x40
283 #define AST_PRES_RESERVED 0x60
279 #define OPBX_PRES_RESTRICTION 0x60
280 #define OPBX_PRES_ALLOWED 0x00
281 #define OPBX_PRES_RESTRICTED 0x20
282 #define OPBX_PRES_UNAVAILABLE 0x40
283 #define OPBX_PRES_RESERVED 0x60
284284
285 #define AST_PRES_ALLOWED_USER_NUMBER_NOT_SCREENED \
286 AST_PRES_USER_NUMBER_UNSCREENED + AST_PRES_ALLOWED
285 #define OPBX_PRES_ALLOWED_USER_NUMBER_NOT_SCREENED \
286 OPBX_PRES_USER_NUMBER_UNSCREENED + OPBX_PRES_ALLOWED
287287
288 #define AST_PRES_ALLOWED_USER_NUMBER_PASSED_SCREEN \
289 AST_PRES_USER_NUMBER_PASSED_SCREEN + AST_PRES_ALLOWED
288 #define OPBX_PRES_ALLOWED_USER_NUMBER_PASSED_SCREEN \
289 OPBX_PRES_USER_NUMBER_PASSED_SCREEN + OPBX_PRES_ALLOWED
290290
291 #define AST_PRES_ALLOWED_USER_NUMBER_FAILED_SCREEN \
292 AST_PRES_USER_NUMBER_FAILED_SCREEN + AST_PRES_ALLOWED
291 #define OPBX_PRES_ALLOWED_USER_NUMBER_FAILED_SCREEN \
292 OPBX_PRES_USER_NUMBER_FAILED_SCREEN + OPBX_PRES_ALLOWED
293293
294 #define AST_PRES_ALLOWED_NETWORK_NUMBER \
295 AST_PRES_NETWORK_NUMBER + AST_PRES_ALLOWED
294 #define OPBX_PRES_ALLOWED_NETWORK_NUMBER \
295 OPBX_PRES_NETWORK_NUMBER + OPBX_PRES_ALLOWED
296296
297 #define AST_PRES_PROHIB_USER_NUMBER_NOT_SCREENED \
298 AST_PRES_USER_NUMBER_UNSCREENED + AST_PRES_RESTRICTED
297 #define OPBX_PRES_PROHIB_USER_NUMBER_NOT_SCREENED \
298 OPBX_PRES_USER_NUMBER_UNSCREENED + OPBX_PRES_RESTRICTED
299299
300 #define AST_PRES_PROHIB_USER_NUMBER_PASSED_SCREEN \
301 AST_PRES_USER_NUMBER_PASSED_SCREEN + AST_PRES_RESTRICTED
300 #define OPBX_PRES_PROHIB_USER_NUMBER_PASSED_SCREEN \
301 OPBX_PRES_USER_NUMBER_PASSED_SCREEN + OPBX_PRES_RESTRICTED
302302
303 #define AST_PRES_PROHIB_USER_NUMBER_FAILED_SCREEN \
304 AST_PRES_USER_NUMBER_FAILED_SCREEN + AST_PRES_RESTRICTED
303 #define OPBX_PRES_PROHIB_USER_NUMBER_FAILED_SCREEN \
304 OPBX_PRES_USER_NUMBER_FAILED_SCREEN + OPBX_PRES_RESTRICTED
305305
306 #define AST_PRES_PROHIB_NETWORK_NUMBER \
307 AST_PRES_NETWORK_NUMBER + AST_PRES_RESTRICTED
306 #define OPBX_PRES_PROHIB_NETWORK_NUMBER \
307 OPBX_PRES_NETWORK_NUMBER + OPBX_PRES_RESTRICTED
308308
309 #define AST_PRES_NUMBER_NOT_AVAILABLE \
310 AST_PRES_NETWORK_NUMBER + AST_PRES_UNAVAILABLE
309 #define OPBX_PRES_NUMBER_NOT_AVAILABLE \
310 OPBX_PRES_NETWORK_NUMBER + OPBX_PRES_UNAVAILABLE
311311
312 int ast_parse_caller_presentation(const char *data);
313 const char *ast_describe_caller_presentation(int data);
312 int OPBX_parse_caller_presentation(const char *data);
313 const char *OPBX_describe_caller_presentation(int data);
314314
315315 /*! \page Def_CallerPres Caller ID Presentation
316316
------
320320 The following values are available to use:
321321 \arg \b Defined value, text string in config file, explanation
322322
323 \arg \b AST_PRES_ALLOWED_USER_NUMBER_NOT_SCREENED, "allowed_not_screened", Presentation Allowed, Not Screened,
324 \arg \b AST_PRES_ALLOWED_USER_NUMBER_PASSED_SCREEN, "allowed_passed_screen", Presentation Allowed, Passed Screen,
325 \arg \b AST_PRES_ALLOWED_USER_NUMBER_FAILED_SCREEN, "allowed_failed_screen", Presentation Allowed, Failed Screen,
326 \arg \b AST_PRES_ALLOWED_NETWORK_NUMBER, "allowed", Presentation Allowed, Network Number,
327 \arg \b AST_PRES_PROHIB_USER_NUMBER_NOT_SCREENED, "prohib_not_screened", Presentation Prohibited, Not Screened,
328 \arg \b AST_PRES_PROHIB_USER_NUMBER_PASSED_SCREEN, "prohib_passed_screen", Presentation Prohibited, Passed Screen,
329 \arg \b AST_PRES_PROHIB_USER_NUMBER_FAILED_SCREEN, "prohib_failed_screen", Presentation Prohibited, Failed Screen,
330 \arg \b AST_PRES_PROHIB_NETWORK_NUMBER, "prohib", Presentation Prohibited, Network Number,
323 \arg \b OPBX_PRES_ALLOWED_USER_NUMBER_NOT_SCREENED, "allowed_not_screened", Presentation Allowed, Not Screened,
324 \arg \b OPBX_PRES_ALLOWED_USER_NUMBER_PASSED_SCREEN, "allowed_passed_screen", Presentation Allowed, Passed Screen,
325 \arg \b OPBX_PRES_ALLOWED_USER_NUMBER_FAILED_SCREEN, "allowed_failed_screen", Presentation Allowed, Failed Screen,
326 \arg \b OPBX_PRES_ALLOWED_NETWORK_NUMBER, "allowed", Presentation Allowed, Network Number,
327 \arg \b OPBX_PRES_PROHIB_USER_NUMBER_NOT_SCREENED, "prohib_not_screened", Presentation Prohibited, Not Screened,
328 \arg \b OPBX_PRES_PROHIB_USER_NUMBER_PASSED_SCREEN, "prohib_passed_screen", Presentation Prohibited, Passed Screen,
329 \arg \b OPBX_PRES_PROHIB_USER_NUMBER_FAILED_SCREEN, "prohib_failed_screen", Presentation Prohibited, Failed Screen,
330 \arg \b OPBX_PRES_PROHIB_NETWORK_NUMBER, "prohib", Presentation Prohibited, Network Number,
331331
332332 \par References
333333 \arg \ref callerid.h Definitions
------
335335 \arg \ref CID Caller ID names and numbers
336336 */
337337
338
339 #endif /* _ASTERISK_CALLERID_H */
338 #endif

callweaver/trunk/include/callweaver/channel.h (unified diff)

r2627r2638
212212
213213 /*! Who are we bridged to, if we're bridged. Who is proxying for us,
214214 if we are proxied (i.e. chan_agent).
215 Do not access directly, use ast_bridged_channel(chan) */
215 Do not access directly, use opbx_bridged_channel(chan) */
216216 struct opbx_channel *_bridge;
217217 /*! Channel that will masquerade as us */
218218 struct opbx_channel *masq;
------
551551 * \param chan channel to be soft-hung-up
552552 * Call the protocol layer, but don't destroy the channel structure (use this if you are trying to
553553 * safely hangup a channel managed by another thread.
554 * \param cause Ast hangupcause for hangup
554 * \param cause opbx hangupcause for hangup
555555 * Returns 0 regardless
556556 */
557557 int opbx_softhangup(struct opbx_channel *chan, int cause);
558558 /*! Softly hangup up a channel (no channel lock)
559 * \param cause Ast hangupcause for hangup */
559 * \param cause opbx hangupcause for hangup */
560560 int opbx_softhangup_nolock(struct opbx_channel *chan, int cause);
561561
562562 /*! Check to see if a channel is needing hang up */

callweaver/trunk/include/callweaver/generic_jb.h (unified diff)

r2537r2638
66 * Contributors:
77 * Slav Klenov <slav@securax.org>
88 *
9 * Copyright on this file is disclaimed to Digium for inclusion in Asterisk
10 *
11 * See http://www.asterisk.org for more information about
12 * the Asterisk project. Please do not directly contact
9 * See http://www.callweaver.org for more information about
10 * the CallWeaver project. Please do not directly contact
1311 * any of the maintainers of this project for assistance;
1412 * the project provides a web site, mailing lists and IRC
1513 * channels for your use.
------
2523 *
2624 */
2725
28 #ifndef _ABSTRACT_JB_H_
29 #define _ABSTRACT_JB_H_
26 #ifndef _CALLWEAVER_GENERIC_JB_H_
27 #define _CALLWEAVER_GENERIC_JB_H_
3028
3129 #include <stdio.h>
3230 #include <sys/time.h>
------
287285 }
288286 #endif
289287
290 #endif /* _ABSTRACT_JB_H_ */
288 #endif

callweaver/trunk/include/callweaver/icd/app_icd.h (unified diff)

r2611r2638
3030 * \brief app_icd.h - Main entry point of Intelligent Call Distribution
3131 *
3232 * This module represents the Intelligent Call Distribution system. It
33 * provides the public interface that other systems, particularly Asterisk,
33 * provides the public interface that other systems, particularly CallWeaver,
3434 * can use for interacting with the ICD system.
3535 *
3636 * The ICD system provides a mechanism for creating queues of callers, each
------
3838 * calls between the two lists using a completely configurable mechanism
3939 * called a distributor.
4040 *
41 * The app_icd module will typically be controlled through Asterisk as an
41 * The app_icd module will typically be controlled through CallWeaver as an
4242 * application, but that is not required. You can also control it through a
43 * custom Asterisk manager, for example. You could even interact with it from
43 * custom CallWeaver manager, for example. You could even interact with it from
4444 * one of the other apps. The functions available for that purpose are
4545 * identified here.
4646 *
------
5858 icd_status icd_module_load_dynamic_module(icd_config_registry * registry);
5959 icd_status icd_module_unload_dynamic_modules(void);
6060
61 /***** Asterisk-specific APIs *****/
61 /***** CallWeaver-specific APIs *****/
6262
63 /* These functions are the mechanism that Asterisk uses to control ICD.
63 /* These functions are the mechanism that CallWeaver uses to control ICD.
6464 * They are declared in module.h so there is no need to declare them a
6565 * second time here. They are provided for documentation purposes only.
6666 * If you wish to use these functions, include module.h in your file.

callweaver/trunk/include/callweaver/rtp.h (unified diff)

r2615r2638
178178 void opbx_rtp_offered_from_local(struct opbx_rtp* rtp, int local);
179179
180180 void opbx_rtp_get_current_formats(struct opbx_rtp* rtp,
181 int* astFormats, int* nonAstFormats);
181 int* opbx_formats, int* non_opbx_formats);
182182
183183 /* Mapping an CallWeaver code into a MIME subtype (string): */
184184 char* opbx_rtp_lookup_mime_subtype(int is_opbx_format, int code);

callweaver/trunk/include/callweaver/udptl.h (unified diff)

r2615r2638
9696 void opbx_udptl_set_udptlmap_type(struct opbx_udptl *udptl, int pt,
9797 char *mimeType, char *mimeSubtype);
9898
99 int opbx_udptl_lookup_code(struct opbx_udptl* udptl, int isAstFormat, int code);
99 int opbx_udptl_lookup_code(struct opbx_udptl* udptl, int is_opbx_format, int code);
100100
101101 void opbx_udptl_offered_from_local(struct opbx_udptl *udptl, int local);
102102
------
113113 void opbx_udptl_set_far_max_datagram(struct opbx_udptl* udptl, int max_datagram);
114114
115115 void opbx_udptl_get_current_formats(struct opbx_udptl *udptl,
116 int *astFormats, int *nonAstFormats);
116 int *opbx_formats, int *non_opbx_formats);
117117
118118 void opbx_udptl_setnat(struct opbx_udptl *udptl, int nat);
119119

callweaver/trunk/include/callweaver/utils.h (unified diff)

r2615r2638
266266
267267 On Linux, UDP sockets default to sending packets with the Dont Fragment (DF)
268268 bit set. This is supposedly done to allow the application to do PMTU
269 discovery, but Asterisk does not do this.
269 discovery, but CallWeaver does not do this.
270270
271 Because of this, UDP packets sent by Openpbx that are larger than the MTU
271 Because of this, UDP packets sent by CallWeaver that are larger than the MTU
272272 of any hop in the path will be lost. This function can be called on a socket
273273 to ensure that the DF bit will not be set.
274274 */

callweaver/trunk/pbx/ael/ael.tab.c (unified diff)

r2611r2638
163163 #line 1 "ael.y"
164164
165165 /*
166 * Asterisk -- An open source telephony toolkit.
166 * CallWeaver -- An open source telephony toolkit.
167167 *
168168 * Copyright (C) 2006, Digium, Inc.
169169 *
170170 * Steve Murphy <murf@parsetree.com>
171171 *
172 * See http://www.asterisk.org for more information about
173 * the Asterisk project. Please do not directly contact
172 * See http://www.callweaver.org for more information about
173 * the CallWeaver project. Please do not directly contact
174174 * any of the maintainers of this project for assistance;
175175 * the project provides a web site, mailing lists and IRC
176176 * channels for your use.

callweaver/trunk/pbx/ael/ael.y (unified diff)

r2630r2638
11 %{
22 /*
3 * Asterisk -- An open source telephony toolkit.
3 * CallWeaver -- An open source telephony toolkit.
44 *
55 * Copyright (C) 2006, Digium, Inc.
66 *
77 * Steve Murphy <murf@parsetree.com>
88 *
9 * See http://www.asterisk.org for more information about
10 * the Asterisk project. Please do not directly contact
9 * See http://www.callweaver.org for more information about
10 * the CallWeaver project. Please do not directly contact
1111 * any of the maintainers of this project for assistance;
1212 * the project provides a web site, mailing lists and IRC
1313 * channels for your use.

callweaver/trunk/pbx/ael/ael_lex.c (unified diff)

r2611r2638
797797 #define YY_RESTORE_YY_MORE_OFFSET
798798 #line 1 "ael.flex"
799799 /*
800 * Asterisk -- An open source telephony toolkit.
800 * CallWeaver -- An open source telephony toolkit.
801801 *
802802 * Copyright (C) 2006, Digium, Inc.
803803 *
804804 * Steve Murphy <murf@parsetree.com>
805805 *
806 * See http://www.asterisk.org for more information about
807 * the Asterisk project. Please do not directly contact
806 * See http://www.callweaver.org for more information about
807 * the CallWeaver project. Please do not directly contact
808808 * any of the maintainers of this project for assistance;
809809 * the project provides a web site, mailing lists and IRC
810810 * channels for your use.

callweaver/trunk/pbx/pbx_ael.c (unified diff)

r2615r2638
11 /*
2 * Asterisk -- An open source telephony toolkit.
2 * CallWeaver -- An open source telephony toolkit.
33 *
44 * Copyright (C) 2006, Digium, Inc.
55 *
66 * Steve Murphy <murf@parsetree.com>
77 *
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
8 * See http://www.callweaver.org for more information about
9 * the CallWeaver project. Please do not directly contact
1010 * any of the maintainers of this project for assistance;
1111 * the project provides a web site, mailing lists and IRC
1212 * channels for your use.
------
1818
1919 /*! \file
2020 *
21 * \brief Compile symbolic Asterisk Extension Logic into Asterisk extensions, version 2.
21 * \brief Compile symbolic Asterisk Extension Logic into CallWeaver extensions, version 2.
2222 *
2323 */
2424