WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=ed129afb8504ec411c657edc09b11de0c15e0375
commit ed129afb8504ec411c657edc09b11de0c15e0375 Author: Andrew Williams <[email protected]> Date: Fri Oct 20 11:02:20 2017 -0700 Wiki page eina changed with summary [Move Javascript docs to legacy API] by Andrew Williams --- pages/develop/legacy/api/javascript/eina.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pages/develop/legacy/api/javascript/eina.txt b/pages/develop/legacy/api/javascript/eina.txt new file mode 100644 index 00000000..eec8d00c --- /dev/null +++ b/pages/develop/legacy/api/javascript/eina.txt @@ -0,0 +1,21 @@ +====== Javascript binding API - Eina - Data types and tools ====== + +[[api:javascript|Back to the JS EFL page]] + +The Eina library provides a number of data types and tools targeted at working with the remainder of the EFL framework although they can be used on their own. For example, Lists and Arrays can be used both to send collections of objects to a native function or get the result of a native function. Or someone can use just the logging facilities. + +===== Data types ===== + +[[api/javascript/eina/containers|Containers API reference]] - A [[https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array|JS Array]]-like set of containers for interacting with EFL functions. + +===== Tools and utilities ===== + +[[api/javascript/eina/logging|Logging API reference]] - The Logging framework allows setting up different log domains and levels. + +[[api/javascript/eina/error|Error handling API reference]] - EFL offers a C's errno-like way of handling error through error codes. These codes are translated to Javascript Exceptions. + +[[api/javascript/eina/iterator|Iterator functions API reference]] - Allows sequential item access to Eina containers using iterator functions. + +[[api/javascript/eina/accessor|Acessor functions API reference]] - Allows random item access to Eina containers using accessor functions. + +[[api/javascript/eina/value|Value wrapping API reference]] - Abstracts generic data storage and access. \ No newline at end of file --
