Roma Framework 1.0.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Roma Framework 1.0.0 (Default branch)
# 1  
Old 11-11-2008
Roma Framework 1.0.0 (Default branch)

Image ROMA is a POJO-based Java framework with concepts taken from Ruby On Rails. It allows you to build an AJAX-enabled Web application with a database and generated CRUD in a few minutes. License: The Apache License 2.0 Changes:
New modules management. A new Logging aspect to abstract logging and to use logging facilities. Support for new View Aspect that works with XHTML 1.0, CSS2, and JSP. Support for new Semantic Aspect using the OS Jena framework. JGraph integration. A new Persistence Aspect implementation using DataNucleus technology that supports JDO and JPA. New Scripting engines. A new module to expose a POJO as a Web service using the Apache CXF framework. A new Workflow module with a transactional engine and Web GUI. A lot of issues are resolved, and there are many minor improvements. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Arch::Test::Framework(3pm)				User Contributed Perl Documentation				Arch::Test::Framework(3pm)

NAME
Arch::Test::Framework - A test framework for Arch-Perl SYNOPSIS
use Arch::Test::Framework; my $fw = Arch::Test::Framework->new; my $archive = $fw->make_archive; my $version = $archive->make_version(); my $tree = $fw->make_tree($version); # # do something with $tree # $tree->import('initial import'); DESCRIPTION
Arch::Test::Framework is a framework to quickly generate testing data (archives, versions, trees, changesets, etc) for arch-perl unit tests. METHODS
new, arch_uid, home_dir, library_dir, archives_dir, trees_dir, make_archive, make_category, make_branch, make_version, make_tree. new [%args] Create a new arch-perl test environment. Valid keys for %args are home to specify an existing test environment to reuse, library to specify a different revision library path, archives to specify a different archives directory, and trees to specify a differente project tree directory. The default values are "$home/library", "$home/archives", and "$home/trees" respectively. A different arch user id can be selected with the userid key, the default is "Arch Perl Test <arch-perl-test@example.com>". arch_uid home_dir library_dir archives_dir trees_dir These methods return the environment parameters as initialized by new. make_archive [archive_name] Create a new archive in the archives directory. If archive_name is not specified a unique name is generated. The archive name is returned. Returns an Arch::Test::Archive reference for the archive. make_tree version [name] Create and initialize ("tla init-tree") a new project tree for version. I name is not specified, a unique identifier will be generated. Returns an Arch::Test::Tree reference for the project tree. AUTHORS
Mikhael Goikhman (migo@homemail.com--Perl-GPL/arch-perl--devel). Enno Cramer (uebergeek@web.de--2003/arch-perl--devel). perl v5.10.1 2005-03-28 Arch::Test::Framework(3pm)