Browsing projects by Tag(s)

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

Showing page 1 of 3

Formidable is an open source application framework based on the TYPO3 CMS. It features smart template engine, many form widgets, ajax and events handling, XHTML valid code and accessibility thanks to the unobtrusive-js technique. It is usable as pure TypoScript cObj, inside front end plugins or even in the TYPO3 backend.

5.0
 
  0 reviews  |  5 users  |  107,012 lines of code  |  1 current contributor  |  Analyzed 2 days ago
 
 

Lightweight framework for heavy lifting With Evolutility, you can build database CRUD web applications for ASP.net and SQL Server simply by describing their metadata (UI and DB mapping)... without any hand coding necessary. http://www.evolutility.org

5.0
 
  0 reviews  |  2 users  |  23,273 lines of code  |  1 current contributor  |  Analyzed about 8 hours ago
 
 

A lightweight, ajax-centric, annotation-based set of CRUD components for Apache Wicket

0
 
  0 reviews  |  1 user  |  9,171 lines of code  |  1 current contributor  |  Analyzed 7 days ago
 
 

This java library allows to create swing forms by writing code in a simple manner: Form form = FormBuilder.map( Person.class ).buildForm();

5.0
 
  0 reviews  |  1 user  |  4,413 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 

Internet Discussion Boards is a message board system by Game Maker 2k. Its very easy to set up. Your web host needs PHP and MySQL/PostgreSQL/SQLite. Internet Discussion Boards is Open Source so you can make changes to it.

1.0
   
  1 review  |  1 user  |  25,603 lines of code  |  1 current contributor  |  Analyzed over 1 year ago
 
 

Content Management System designed to be easy to use. plugin architecture, Smarty-based templating, themes repository, very active development community

5.0
 
  0 reviews  |  1 user  |  361,830 lines of code  |  8 current contributors  |  Analyzed 7 days ago
 
 

Internet Discussion Boards is a message board system by Game Maker 2k. Its very easy to set up. Your web host needs PHP and MySQL/PostgreSQL/SQLite. Internet Discussion Boards is Open Source so you can make changes to it.

0
 
  0 reviews  |  1 user  |  60,720 lines of code  |  1 current contributor  |  Analyzed about 1 year ago
 
 

Component to create Webforms

5.0
 
  0 reviews  |  1 user  |  3,272 lines of code  |  1 current contributor  |  Analyzed 6 days ago
 
 

Form and dialog generator for KeepInTouch (KIT)

0
 
  0 reviews  |  1 user  |  9,473 lines of code  |  2 current contributors  |  Analyzed 5 days ago
 
 

Based on the ideas behind Drupal's form API, the php formapi is a standalone, easy to use form api that saves lots of coding. It's not finished, but you can download the working sourcecode. It's lightweight (just 1 file). It should save you lotsa work. It's easy to use (no need to ... [More] be a hardcore coder). Design GoalsBe standalone and not too heavy, so the library can easily be incorporated into other projects. Things like themeing and such are probably too platform-specific to implement. Be focused: do forms well, but don't do other stuff. Be SUPER easy to use, for beginning programmers too. Not more code than necessary. FeaturesNo dependencies, a simple standalone library. Forms can be created programatically Validation is taken care of automatically. Printing a form is done for you. Receiving a submitted form is done for you. StatusFirst release as a proof of concept. It basically works, but needs lotsa cleanup. RoadMap under construction UsageTo define a form, write it in simple yaml: $formapi_define_mytestform = " title: My test form fieldset: label: it's a fieldset textfield: label: it's a textfield! required: TRUE fieldsetclose: checkbox: label: my checkboxing dropdown: label: my first dropdown values: First item: a Second item: b Third item: c --- this is an inline comment that won't show up in the form. radiogroup: id: radiogroup1 title: Make a choice: values: The first one: a The second one: b selected: TRUE The final one: c submitbutton: label: Send this form along! ";Next, define a function that'll be called when the form is submitted: function formapi_submit_mytestform($values) // the part after formapi_submit_ is the form id. { print "My form was submitted!These are the values we got: "; print_r($values); return FALSE; // return a path if you want to redirect the user. }You're done! Now, to show the form, just call: formapi_print("mytestform");To create a page that receives all forms, create a php page and add this: include_once("formapi.php"); // include form api include_once("myforms.php"); // include all form definitions formapi_receiveform();All forms will be submitted to this page. It will know what to do because each form has an id. That's it. No more coding needed. [Less]

0
 
  0 reviews  |  0 users  |  651 lines of code  |  0 current contributors  |  Analyzed about 8 hours 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.