Programmer's guide
(→Javascript) |
|||
(6 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
+ | Yate has 3 major API's to build applications on top of it: C API, Javascript and extmodule (you can use your favorite language like PHP, Python, Ruby, Lisp). | ||
− | + | But all Yate API's are quite unified, so all Yate design pages, apply to all API's. Enjoy. | |
− | + | ||
− | + | ||
− | Yate | + | |
− | + | ||
− | + | ||
== About Yate design and implementation == | == About Yate design and implementation == | ||
Line 15: | Line 11: | ||
* [[Yate Design]] | * [[Yate Design]] | ||
Yate arhitecture and design. | Yate arhitecture and design. | ||
+ | * [http://yate.null.ro/docs/ Yate C++ API] | ||
+ | Documentation for Yate C++ API | ||
+ | |||
* [[Messages]] | * [[Messages]] | ||
Components of messages and how messages are processed by messages handlers. | Components of messages and how messages are processed by messages handlers. | ||
Line 29: | Line 28: | ||
* [[Coding style]] | * [[Coding style]] | ||
Rules for coding Yate | Rules for coding Yate | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
* [[Mutexes and locking]] | * [[Mutexes and locking]] | ||
Line 46: | Line 39: | ||
Some noteworthy mutexes that have program-wide implications in Yate code. | Some noteworthy mutexes that have program-wide implications in Yate code. | ||
|} | |} | ||
+ | * [[YIAX design]] | ||
+ | YIAX library in Yate. | ||
|} | |} | ||
Line 64: | Line 59: | ||
|- | |- | ||
|class="yate-page-subtitle"| | |class="yate-page-subtitle"| | ||
− | * [[Javascript | + | * [[Javascript module]] |
− | Configuring Javascript module to use routing scripts. | + | Configuring Javascript module to use routing or global scripts. |
* [[Including other files]] | * [[Including other files]] | ||
Language extensions for including other files and libraries. | Language extensions for including other files and libraries. |
Latest revision as of 11:01, 10 March 2016
Yate has 3 major API's to build applications on top of it: C API, Javascript and extmodule (you can use your favorite language like PHP, Python, Ruby, Lisp).
But all Yate API's are quite unified, so all Yate design pages, apply to all API's. Enjoy.
Contents |
[edit] About Yate design and implementation
Yate for programmers | ||
Yate arhitecture and design. Documentation for Yate C++ API Components of messages and how messages are processed by messages handlers.
Rules for coding Yate Yate's implementation provides classes for mutual exclusion and locking.
YIAX library in Yate. |
[edit] Scripting languages supported by Yate
[edit] Javascript
Yate for programmers | |
Yate offers a embedded Javascript implementation.
|
[edit] PHP
Yate for programmers | |
The library used by PHP to comunicate with Yate.
|
[edit] Python
Yate for programmers | |
The library used by Python Module to comunicate with Yate.
|
[edit] Debugging
Yate for programmers | |
How to debug in Yate.
|
See also