AgileWiki 11.7 (Element Model branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News AgileWiki 11.7 (Element Model branch)
# 1  
Old 12-09-2008
AgileWiki 11.7 (Element Model branch)

AgileWiki is an SDK for assembling software systems which are fluid, easily configured and can be reorganized on-the-fly to meet ever changingrequirements. It includes a COW-based database,the Rolonics programming paradigm, and semanticinferencing.License: Common Public LicenseChanges:
A new initialization event: registration. Keywords now load correctly. Browse no longer flickers on startup. Maximizing no longer causes problems. Swing exceptions have been fixed. The alt tool bar is now correctly initialized.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Catalyst::Helper::Model::Adaptor(3pm)			User Contributed Perl Documentation		     Catalyst::Helper::Model::Adaptor(3pm)

NAME
Catalyst::Helper::Model::Adaptor - helper for the incredibly lazy SYNOPSIS
Running: ./script/myapp_create.pl model SomeClass Adaptor MyApp::Backend::SomeClass create Will create "YourApp::Model::SomeClass" that looks like: package YourApp::Model::SomeClass; use strict; use warnings; use base 'Catalyst::Model::Adaptor'; __PACKAGE__->config( class => 'MyApp::Backend::SomeClass', constructor => 'create', ); 1; Why you need a script to generate that is beyond me, but here it is. ARGUMENTS
./script/myapp_create.pl model <model_name> Adaptor <class> [<constructor>] You need to sepecify the "model_name" (the name of the model), and "class", the class being adapted. If "$class->new" isn't going to do what you want, pass the name of $class's constructor as "constructor". AUTHOR
Jonathan Rockway "<jrockway@cpan.org>" LICENSE
This library is free software. You can redistribute it and/or modify it under the same terms as perl itself. No copyright claim is asserted over the generated code. perl v5.10.1 2010-02-09 Catalyst::Helper::Model::Adaptor(3pm)