Browsing projects by Tag(s)

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

Showing page 1 of 48

The leading RESTful web framework for Java Do you want to blend your web services, web sites and web clients into unified web applications exposing and consuming RESTful web APIs? Leverage the open source Restlet Framework and its unique Java API available in six consistent editions: Java SE, Java EE, OSGi, GAE, Android and GWT!

4.66667
   
  0 reviews  |  43 users  |  271,807 lines of code  |  16 current contributors  |  Analyzed 3 days ago
 
 

ABCL is an implementation of Common Lisp (CL) running in the JVM: it can run in the same JVM as your Java code, allowing full mixture of Lisp and Java code. Being a full CL implementation, it runs many existing libraries and applications, such as Maxima, a computer algebra system. With support for ... [More] JSR-223, you easily extend any JSR-223 compatible application with Lisp as a macro language. This includes integration with the Ant build system using its script-tag. Note: Ohloh indicates few source code comments, based on an average of 32% comment ratio in Java projects. However, in Lisp projects, 19% is much more common. ABCL is nearly 50% Lisp, so the comment rating is underrated. [Less]

3.75
   
  0 reviews  |  21 users  |  125,475 lines of code  |  5 current contributors  |  Analyzed 3 days ago
 
 

With app-engine-patch a major part of Django works on App Engine without any modifications. An important feature is use of Google's native 'Model' class to interact with the 'Big Table' database, rather than the Django ORM. This has the advantage that you can use new ... [More] datastore features as soon as they get released, and code optimized for the App Engine Datastore can be reused from both Django and WebApp projects. Many optional, useful extras are provided in the companion 'ragendja' library to speed up your App Engine development. [Less]

4.4
   
  0 reviews  |  10 users  |  12,996 lines of code  |  0 current contributors  |  Analyzed over 1 year ago
 
 

Gaelyk is a lightweight toolkit for developing applications for Google App Engine, using the Groovy programming language.

0
 
  0 reviews  |  5 users  |  -2,902 lines of code  |  12 current contributors  |  Analyzed 6 months ago
 
 

Python logger console in Firebug (Firefox extension). Suitable for Google App Engine development.

5.0
 
  0 reviews  |  4 users  |  2,492 lines of code  |  0 current contributors  |  Analyzed 8 months ago
 
 

Tipfy is a cute little Python framework for App Engine which follows the basic concepts of web.py and webapp. It is built on top of Werkzeug's WSGI utilities and is really small but powerful.

0
 
  0 reviews  |  3 users  |  24,715 lines of code  |  0 current contributors  |  Analyzed about 2 years ago
 
 

GAEUnit 2.0 alpha for Django is released, please download and follow the instruction.GAEUnit is a unit test framework that helps to automate testing of your Google App Engine application. With a single configuration change (it can be completed within 30 seconds), your unit tests can be run in the ... [More] real GAE app server environment using a web browser. GAEUnit is simple. It contains only one file: gaeunit.py. Just copy that file into your application directory and add the test URL to app.yaml. Usage 1. Configure the environment: Copy gaeunit.py to the project directory. Add the following 2 lines to app.yaml: - url: /test.* script: gaeunit.py2. Write your test case scripts in Python modules, each containing unittest.TestCase subclasses, in the 'test' directory and launch dev_appserver.py 3. Browse to the following URL (change the port if necessary): http://localhost:8080/testYour test results will be displayed in the browser: If you wish to run a single module, execute it like this: http://localhost:8080/test?name=my_test_moduleYou can also specify a single test class, like name=my_test_module.MyTestCase or even a single test method, like name=my_test_module.MyTestCase.test_stuff See FeatureCandidates for a list of potential upcoming features. Please let us know if you have interesting ideas or specific requirements for GAEUnit. Use the comments on the FeatureCandidates page, or use the Issues tab above. [Less]

0
 
  0 reviews  |  3 users  |  1,395 lines of code  |  0 current contributors  |  Analyzed 9 days ago
 
 

Implements the Ning Atom REST API for Google App Engine. - a plug ’n play package that enables easy web services API with full read access without having to code anything on any GAE app - execute arbitrary queries against the Data Store and get the results as an Atom feed - 3rd party ... [More] developers can easily create mash-ups and applications using your app’s data - developers without prior Python knowledge can take advantage of DataStore bigtable implementation and GAE app hosting - since the output is atom, people can subscribe to any data view of your application using existing feed readers - anyone can make queries from the location bar instantly! - two apps with the REST package installed can perform cross app queries (something currently not supported by the App Engine) [Less]

0
 
  0 reviews  |  3 users  |  319 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 

Introductiongrails-jaxrs is a Grails plugin that supports the development of RESTful web services based on the Java API for RESTful Web Services (JSR 311: JAX-RS). It is targeted at developers who want to structure the web service layer of an application in a JSR 311 compatible way but still want to ... [More] continue to use Grails' powerful features such as GORM, automated XML and JSON marshalling, Grails services, Grails filters and so on. This plugin is an alternative to Grails' built-in mechanism for implementing RESTful web services. At the moment, plugin users may choose between Jersey and Restlet as JAX-RS implementations. Both implementations are packaged with the plugin. Support for Restlet was added in version 0.2 of the plugin in order to support deployments to Google App Engine. Other JAX-RS implementations such as RestEasy or Apache Wink are likely to be added in upcoming versions of the plugin. Please let us know if you'd like to have them added. Latest ReleaseRelease notes for grails-jaxrs version 0.3 FeaturesMakes the JSR 311 (JAX-RS) available to Grails applications for developing RESTful web services. New Grails artefact types, Resource and Provider, for JAX-RS classes. JAX-RS Resource classes under grails-app/resources are auto-detected and can be modified at runtime. JAX-RS Provider classes under grails-app/providers are auto-detected and can be modified at runtime. Extended Grails command line interface Create new resources and unit test templates via grails create-resource . Generate ready-to-use resources from domain objects via grails generate-resources . Scaffolding Generate RESTful service interfaces for Grails domain objects Content negotiation support for XML and JSON representations Ability to use any Grails feature within JAX-RS resources and providers such as GORM can be for interacting with persistent domain objects. Grails filters for intercepting requests to JAX-RS resources. Grails services which can be auto-injected by name. Entity providers Domain object providers that convert between Grails domain objects and XML or JSON representations Support classes for developing custom entity providers Support for content negotiation using the Accept request header Plugin users may choose between Jersey and Restlet as JAX-RS implementations by means of configuration. grails-jaxrs applications can be deployed to Google App Engine (GAE). Getting startedIf you've used an older version of grails-jaxrs take a look at the release notes for version 0.3 Detailed installation instructions can be found on the InstallationInstructions page. First steps with the grails-jaxrs plugin are described in the GettingStarted guide. Advanced grails-jaxrs features are described on the AdvancedFeatures page. [Less]

5.0
 
  0 reviews  |  2 users  |  5,239 lines of code  |  6 current contributors  |  Analyzed 2 days ago
 
 

Content management system and unofficial website by the Students of IISER Kolkata, built using Google Appengine.

5.0
 
  0 reviews  |  2 users  |  16,867 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.