Projects tagged ‘framework’ and ‘validation’


Jump to tag:

Projects tagged ‘framework’ and ‘validation’

Filtered by Project Tags framework validation

Refine results Project Tags javascript (6) form (5) java (5) web (3) .net (3) xhtml (3) validator (3) development (2) mvc (2) csharp (2) dotnet (2) css (2)

[23 total ]

5 Users

OVal is a pragmatic and extensible validation framework for any kind of Java objects (not only JavaBeans). Constraints can be declared with annotations (@NotNull, @MaxLength), POJOs or XML. ... [More] Custom constraints can be expressed as custom Java classes or by using scripting languages such as JavaScript, Groovy, BeanShell, OGNL or MVEL. Besides field/property validation OVal implements Programming by Contract features by utilizing AspectJ based aspects. This for example allows runtime validation of method arguments. [Less]
Created over 2 years ago.

1 Users

A Business Object Framework for .NET/C#Instead of attempting to reinvent yet another data access layer, this framework focuses on leveraging NHibernate 2.0 to provide useful ASP.NET focused functionality.
Created about 1 year ago.

1 Users

This is the .Net Validation Framework code repository. For the project page, discussions, and documentation see: http://www.codeplex.com/ValidationFramework/
Created 6 months ago.

1 Users
 

Framework and components for developing Java EE applications, with clean separation of layers. Includes persistence and UI controllers, powerful, lightweight templating, XML serialization, Struts integration, and a flexible binding mechanism
Created over 3 years ago.

0 Users

A lightweight plain javascript highly compatible and flexible client-side HTML form validation framework. For more info see http://www.ontalstudios.com/page.php?page=projects/ocv
Created 2 months ago.

0 Users

NEnsure is a fast, lightweight, easy-to-use validation framework that aims to make validation methods short, sweet, and understandable.
Created 10 months ago.

0 Users

Contains the following perl modules: HTML::FormFu HTML::FormFu::Dojo HTML::FormFu::Imager Catalyst::Controller::HTML::FormFu DBIx::Class::FormFuProject status: 'alpha' - experimental, API subject to ... [More] change. Code currently only available from subversion repository (see Source page). [Less]
Created 6 months ago.

0 Users

DescriptionA PHP framework for rapidly creating classes that mirror MySQL tables. The Simpl framework comes with the basic functions to list, display and edit records from the database. With this ... [More] framework a simple manager and front of a site can be created within a few minutes. An example database, manager and front end are included with the framework. FeaturesNo Installation/PEAR/Root Access required Database table abstraction Automatically configured database functions (ie. GetInfo, GetList, Save, Delete, Search and Form) Advanced automatic form creation to mirror database/class expectations, XHTML compliant and ADA accessible. Table structure caching, Query level caching, and saving of inserts or updates to the filesystem if the database is unavailable. Ability to query cross databases on the same server Form validation Upload, Move, Copy, Delete and List Files Resize and Rotate Images Email with class abstraction with support for attachments RSS0.91, RSS1.0, RSS2.0, ATOM Feeds CVS, JSON, XML and SQL Exports JSON encoding and decoding support GoalsEasy Install. No need to be an administrator. Minimal Server Load. Created for a high traffic shared server environment. Straightforward API. No need to dig through documentation, functions are naturally named. Stop Wasting Time. Time is precious, no need to reinvent the wheel. OtherStuffCheckout the PoweredBySimpl wiki page to view and add your site using the PHPSimpl framework. The VersionHistory has been updated to reflect the past implementations of PHPSimpl The Roadmap shows where we are going with the project on our way to Release 1.0 [Less]
Created 12 months ago.

0 Users

Validashon is an easy to use .NET validation framework written entirely in C#. The project uses custom attributes to validate the properties of a .NET object. The user can easily use the built-in ... [More] validator attributes (or create custom validators) and be up and running in minutes. The sample project has example usage that will get you started. [Less]
Created 10 months ago.

0 Users

Another JS library? Really?There is good and bad in every library, mainly brought about by the goals of their core developers. Jelo was built to meet the following needs: High performance. ... [More] Libraries must be fast and reliable, the whole point is to shorten development time. Small filesize. No bulky widgets or code you'll rarely use. This saves both bandwidth and download time. Throw errors (when appropriate). Libraries that advertise "no errors!" can be a nightmare to debug. If you don't know what you did wrong, you can't fix it. Developers can (and should) use try / catch blocks to hide errors from end users in production, but must be able to rely on informational errors during development. Work with JavaScript, not against it. Jelo makes writing cross-browser compatible JavaScript easy, but it doesn't require you to learn a completely new syntax or language. Rather than changing the way JavaScript works, Jelo uses the natural features of the language to smooth the learning curve. How do I execute code as soon as the page is done loading?Jelo.onReady(fn) adds a function to be executed immediately when the page is done loading. You can call Jelo.onReady more than once; each function will be executed in the order it was added. Jelo.onReady(function() { alert("the document is loaded"); }); var myFunction = function() { alert("both functions will execute on page load"); }; Jelo.onReady(myFunction);How do I grab stuff on the page?Jelo uses the "dollar sign function", like most JavaScript libraries. $(selector) is shorthand for Jelo.Dom.selectNode, which returns the first matching element. $$(selector) (short for Jelo.Dom.select) works the same way, but returns an array of matching elements. You can use any valid CSS selector, for example: $$('img') matches ALL images on the page $('img') matches the FIRST image on the page. $$('img.thumbnail') matches all images with the class "thumbnail" $('#navigation a") matches the first link INSIDE the element with id "navigation" $$('inputtype=text') matches all textfields (input elements whose type attribute is "text"). Who's the author?I'm HB Stone, a Senior Applications Developer in Palm Desert, CA. My languages of choice are JavaScript and PHP, but I'm familiar with several other web and desktop programming languages. I mostly write custom software solutions for projects such as touchscreen vending machines, multifunction ATMs, educational and commercial kiosks. I also do my fair share of graphic design, web design, web development, and SEO. [Less]
Created 20 days ago.