161 projects tagged "BSD Revised"
AsterClick is a system for developing with Asterisk AMI and HTML5 WebSockets. It is composed of two parts: a server-side middleware and a client-side JavaScript class. The server-side middleware mediates between Asterisk AMI and multiple HTML5 browsers connected via WebSockets. The JavaScript class manages the WebSockets connection and provides methods like addEventListener() and removeEventListener() that take AMI events as parameters. AsterClick does away with browsers polling servers by exploiting the persistent nature of HTML5 WebSocket connections. The communications protocol between client and server is based on XML. Commands can be sent via the JavaScript class using XML strings, XML objects, or JSON objects. A client can connect to multiple Asterisk servers at the same time. The server-side component of AsterClick has hooks for both custom AsterClick commands and server side plugins and related events that all share the same XML stream.
The KiWi core system is a flexible platform for building different kinds of semantic social software applications on top (currently the Semantic Wiki and the TagIT application). It provides all the core services required in such applications, like editing and tagging, the storage of content and associated meta-data, its own triple store, transactions and versioning over content and meta-data, a linked open data server, and many small features semantic social software developers will like (like convenience services for working with ontologies or SKOS thesauruses, etc.).
FECpp is a C++ library implementing a fast forward error correction code, sometimes also called an erasure code. These codes are used to split input data into a set of n shares, with the property that if any subset of at least k shares survives, the original data can be recovered by the decoder. The number of share losses the code will tolerate can be parameterized during encoding, allowing the code to be adapted to to a variety of loss scenarios. FECpp is bit-for-bit compatible with several other FEC libraries.