Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 1

You can use the framework in ActionScript 3, Javascript and SSAS to deploy your Riche Internet Applications crossplatforms.

5.0
 
  0 reviews  |  10 users  |  2,232,646 lines of code  |  5 current contributors  |  Analyzed 1 day ago
 
 

CubicWeb is a semantic web application framework, licensed under the LGPL, that empowers developers to efficiently build web applications by reusing components (called cubes) and following the well known object-oriented design principles. Its main features are: * an engine driven by the ... [More] explicit data model of the application, * a query language named RQL similar to W3C’s SPARQL, * a selection+view mechanism for semi-automatic XHTML/XML/JSON/text generation, * a library of reusable components (data model and views) that fulfill common needs, * the power and flexibility of the Python programming language, * the reliability of SQL databases, LDAP directories, Subversion and Mercurial for storage backends. [Less]

5.0
 
  0 reviews  |  9 users  |  576,831 lines of code  |  30 current contributors  |  Analyzed 8 days ago
 
 
Compare

Vexi is a platform for creating and publishing Graphical User Interfaces that can be used over the Internet or an intranet. It features a very simple and powerful syntax based on XML and JavaScript, a set of complete, extensible, themable widgets, and a sandbox-like security model to protect users.

4.0
   
  0 reviews  |  3 users  |  166,079 lines of code  |  2 current contributors  |  Analyzed 8 days ago
 
 

Full end-to-end JavaScript platform including a Server, an IDE (studio), and a framework. The server provides: - a Model-driven NoSQL Object Datastore (WakandaDB) with a REST and a SSJS API. - a Full HTTP 1.1 compliant server - a JSON-RPC service - a Users and Groups management It runs on ... [More] Linux, Mac0S, and Windows The studio provides: - a Model Designer - a Code Editor - a SSJS Multi-Context Debugger - a HTML5/CSS3 GUI Designer - a User and Groups Administration tool The Framework provides: - a set of business oriented widgets - a datasources management - a dataprovider (WakandaDB REST client) - a JSON-RPC client [Less]

5.0
 
  0 reviews  |  1 user  |  1,464,903 lines of code  |  1 current contributor  |  Analyzed 4 days ago
 
 

RSence is a unique development model first-hand for real-time web applications. RSence consists of separate, but tigtly integrated data- and user interface frameworks. RSence could be classified as a thin server - thick client system. The user interface framework of RSence is implemented in ... [More] high-level user interface widget- and system management api's written in JS and CoffeeScript. It support multitasking and event-driven models for applications, yet a minimal resource footprint. It's intended to be used as a direct, networked zero-install, platform-agnostic replacement, where native GUI applications would have been used traditionally. The server, written in Ruby and C, is purely a resource addon and event-driven data framework, relatively light-weight on resources and endures heavy loads [Less]

5.0
 
  0 reviews  |  1 user  |  7,806 lines of code  |  2 current contributors  |  Analyzed 2 days ago
 
 

An ajax core extension for eZ Publish for easier client / server integrations using yui 3.0 and/or jQuery out of the box (a small wrapper for ajax calls is all that is needed to support other libraries). It also includes tools for on demand script / css loading + packing / minifying, json / xml / ... [More] text encoding content and access checking with limitations support. [Less]

0
 
  0 reviews  |  0 users  |  259,323 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

An ECMAScript parser, in Haskell, that generates a JSON representation of the parse tree.

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

What is ecmascript-astecmascript-ast patches the V8 engine to enable javascript source code to be parsed to a string containing the source's AST in JsonML format. The JsonML string can then be evaluated (executed). The JSON global object is used as a (temporary) namespace: ... [More] JSON.AST.parse(|String of js source code|) -> |String of JsonML AST| JSON.AST.evaluate(|String of JsonML AST|) -> |js result object|The aim is to develop a generic - hopefully standardized - serialization format for the AST in JsonML. Using the output from the --print-json-ast option in the V8 shell as an input. See DesignNotes for details. Project on hold until further clarification - see es-discuss. The way the various engines layout their AST nodes will have to correspond I guess. Fun hack though. Example> more example.js var source = "x = 2; if (x > 1) print(x + 3);"; print("--- js source ---"); print(source); print(""); print("--- ast ---"); var ast = JSON.AST.parse(source); print(ast); print(""); print("--- evaluate(ast) ---"); JSON.AST.evaluate(ast); > ./shell_g example.js --- js source --- x = 2; if (x > 1) print(x + 3); --- ast --- ["Program", ["ExprStmt", ["Assign", {"op":"="}, ["Id", {"name":"x"} ], ["Literal", {"handle":2} ] ] ], ["If", ["CompareOp", {"op":">"}, ["Id", {"name":"x"} ], ["Literal", {"handle":1} ] ], ["ExprStmt", ["Call", ["Id", {"name":"print"} ], ["BinOp", {"op":"+"}, ["Id", {"name":"x"} ], ["Literal", {"handle":3} ] ] ] ], ["EmptyStmt"] ] ] --- evaluate(ast) --- 5 How to installGet the v8 source svn checkout http://v8.googlecode.com/svn/trunk/ v8astDownload the patch jsonast.diff into the v8ast directory (from Featured Downloads ->) Run the patch cd v8ast patch -p1 < jsonast.diffBuild v8 and run example scons mode=debug sample=shell ./shell_g example.js # basic testN.B: patch only works for debug mode. It's an experimental work-in-progress prototype! JSON.AST.parse() serializes all of the grammar/AST to JsonML (I think). JSON.AST.evaluate() is rudimentary. (Basically example.js and ast-test/if.js and while.js work!) the patch creates shell scripts which can run the sample JS files in the ast-test subdir from the command line: # make the shell scripts executable chmod u+x ast*.sh # run sample files ./ast-parse.sh ast-test/if.js | tee zout.txt # parse JS file to JsonML AST ./ast-evaluate.sh zout.txt # evaluate JsonML AST file ./ast.sh ast-test/if.js # parse JS file to JsonML AST and then evaluate the JsonML ASTV8 debugger scons mode=debug d8 # build d8 javascript debugger ./shell_g d8ast.js -- ast-test/if.js # d8 uses arguments - no shell script wrapper needed.See BuildInstructions for how to build from scratch. FuturesGeneric Serialization formatThe aim is to develop a generic - hopefully standardized - format for the AST. With the V8 format as an input. (Which, i guess, ECMAScript engines could support as an new, additional format to any existing AST serialization formats). Native and Pure Javascript implementationsThis prototype is implemented in native code. However, JSON.AST - like the JSON object - could initially be implemented in pure javascript. Then engines could determine whether to provide native implementations. A native JSON.AST.parse() outputting JsonML should be relatively straighforward - walk the native tree - which is what this prototype does. JSON.AST.evaluate() is more tricky - two alternatives. 1) Parse and execute the JsonML directly (which the prototype does). 2) Parse the JsonML to JS - and then the JS can be eval'ed. (A JsonML to JS function is probably desirable in any case). DSL's and line numbersWhen using JsonML as a DSL target it would be useful to pass the line number or character position of the DSL construct to the runtime so that runtime errors are correctly reported. How about: ["If", {pos:55}, ["CompOp", ...The V8 AST C++ nodes have members int statement_pos_ and int pos_ which store the character position and are used to report the runtime line number when errors occur. (Though how it does the conversion from pos to line number is opaque to me!). So the evaluate() function would set this value. How and when should errors in the JsonML syntax errors be reported though? Compact formatThe example was pretty printed with indentation and newlines. A production version would offer a minified alternative.e.g: ["Program",["ExprStmt",["Assign",{"op":"="},["Id",{"name":"x"}], ...Perhaps there could an alternative compact format where the element strings are replaced with integers: [44,[20,[21,{"op":"="},[25,{"name":"x"}], ...And the attribute name string with an integer or maybe the first letter: [44,[20,[21,{1:"="},[25,{3:"x"}], ... [44,[20,[21,{"o":"="},[25,{n:"x"}], ...It's compact and as the integers match the underlying enum no hash lookup for the element/attribute string names is required. Kind of a half way house between the AST and bytecode. var ast = JSON.AST.parse(source, true); // true for compact mode var result = JSON.AST.evaluate(ast); // No special mode requiredThe evaluate function would simply test if the element value was a string or integer and hash lookup or atoi. [Less]

0
 
  0 reviews  |  0 users  |  1,501 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.