Browsing projects by Tag(s)

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

Showing page 1 of 2

ColdFusion on Wheels provides fast application development, a great organization system for your code, and is just plain fun to use. One of our biggest goals is for you to be able to get up and running with Wheels quickly. We want for you to be able to learn it as rapidly as it is to write applications with it.

5.0
 
  0 reviews  |  3 users  |  115 lines of code  |  0 current contributors  |  Analyzed 8 days ago
 
 

Parancoe purpose is to give to developers a set of libraries ready to build standard web applications (which in most cases are just crud applications) without worrying of long and harmful configurations files. Parancoe will be composed of a full MVC stack.

5.0
 
  0 reviews  |  2 users  |  59,085 lines of code  |  3 current contributors  |  Analyzed 1 day ago
 
 

Dragora is a trustworthy GNU/Linux distribution based on the concept of simplicity with the goal of being a multi-purpose operating system. Dragora respects the freedom of the user with the values of free software and provides control to those who use it. It is developed entirely by volunteers and ... [More] it is published under the terms of the GNU General Public License. [Less]

5.0
 
  0 reviews  |  1 user  |  318 lines of code  |  1 current contributor  |  Analyzed 3 days ago
 
 

Symfony easy plugins are a set of plug and play plugins to add simple functionalities to a website.

5.0
 
  0 reviews  |  1 user  |  37,897 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 

DonReY is a new framework which focuses on providing universal-useful services to your code, to avoid repetition as much as possible. DonReY name comes from the "Don't Repeat Yourself" software design principle ( http://en.wikipedia.org/wiki/Don%27t_repeat_yourself ) An ... [More] application written using this framework will be able to reuse large parts of it's code for similar purposes, making minimalistic coding possible. Also, DonReY is designed for efficiency, using advanced PHP5 features only the required components are actually loaded. This minimizes the server's memory footprint while running the script and maximizes the page delivery speed. While DonReY offers typical MVC features, an application is not required to use them to function. This makes it possible to create extremely fast AJAX [Less]

5.0
 
  0 reviews  |  1 user  |  12,077 lines of code  |  1 current contributor  |  Analyzed 1 day ago
 
 

Generates simple and extendable controller, views and helpers that support you to DRY up the CRUD code in your Rails project. Start with these elements and build a clean base to efficiently develop your application upon.

5.0
 
  0 reviews  |  1 user  |  4,784 lines of code  |  2 current contributors  |  Analyzed 7 months ago
 
 

DRY stands for Do Not Repeat Yourself. I am not trying to rewrite Rails, or write a "(Rails|Zend|PHPCake|etc) killer". I am just a full time programmer and a full time CS student and I have tons of ideas, which I would like to share with everyone. I am mostly writing it for myself but everyone, who is interested, is welcome to join.

0
 
  0 reviews  |  0 users  |  2,554 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

This project has the following objectifs. Support fast developments of J2EE application. Apply the DRY concept (Don't Repeate Yourself). It will offers a high level XML-based language to specify business logics (data structures and CRUD rules - Creation, Reading, Update, and Deletion). ... [More] Then the application specification can be used to generate an executable application template (web, business, and database layers) for performing CRUD operations. This application template can be later manually update to fit specific needs. [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

It's like gems buth with js and with remote using + rails plugin for easy including and caching in dev environment

0
 
  0 reviews  |  0 users  |  11,486 lines of code  |  0 current contributors  |  Analyzed over 1 year ago
 
 

The django-url-framework will help you get your django applications done faster. It automatically detects urls in a django application, similar to the way Ruby on Rails does it with the Controller-Action-View implementation. Controllers are created in each django application with a predefined ... [More] file naming scheme (foo_controller.py) and extending ActionController. The ActionController contains methods often used in a web context, and does common request-related processing. Each application can have multiple controllers thus allowing for smaller classes in a larger application. Each function not starting with an underscore becomes it's own action. By simply returning a dictionary from the action, it will be rendered with the template named using the controller/action.html naming scheme. Each action and controller can override certain global settings such as using a custom template name or giving the action (or controller) a custom name. Add to your projectsettings.py INSTALLED_APPS = ( ..., 'django_url_framework', ... )urls.py import django_url_framework django_url_framework.site.autodiscover([r'^your_project_name']) urlpatterns = patterns('', (r'^', include(django_url_framework.site.urls) ), )ExampleFolder structureproject/ app/ cart_controller.py foo_controller.py templates/ cart/ index.html remove.html foo/ add.html bar.htmlcart_controller.py and foo_controller.py class CartController(ActionController): def add(self, id): return {} def remove(self, id) return {} def index(self): return {} class FooController(ActionController): def bar(self): return {}ResultThe following URLs will be created: /cart/ /cart/(\d+) /cart/add/ /cart/add/(\d+) /cart/remove/ /cart/remove/(\d+) /foo/bar/ /foo/bar/(\d+)You can easily access your URLs using django's built-in url tag. Simply call {% url cart_index %} or {% url cart_delete id %} and it will work as you would expect. There is also a helper tag for faster linking within the same controller. {% go_action remove %} will take you to /cart/remove/. To use it, load url_framework in your templates. FlashThe ActionController also has a flash instance variable that allows you to send messages to the user that can survive a redirect. Simply use self._flash.append("Message") self._flash.error("Error message")The flash messages can be either messages or error messages. The flash object is automatically exported into the context and you can use it as such: {% for message in flash.get_and_clear %} {{message}} {% endfor %}Before and After each actionYou can override _before_filter and/or _after_filter to perform certain actions and checks before or after an action. Read more in ActionController docs. [Less]

0
 
  0 reviews  |  0 users  |  652 lines of code  |  0 current contributors  |  Analyzed 6 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.