From: Chris W. <la...@us...> - 2004-12-01 05:40:23
|
Update of /cvsroot/openinteract/OpenInteract2/doc/Manual In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21726/doc/Manual Modified Files: Changes.pod Log Message: latest changes Index: Changes.pod =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/doc/Manual/Changes.pod,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** Changes.pod 28 Nov 2004 17:50:28 -0000 1.54 --- Changes.pod 1 Dec 2004 05:40:14 -0000 1.55 *************** *** 1,3 **** ! =head1 NAME OpenInteract2::Manual::Changes - Significant changes to OpenInteract2 --- 1,3 ---- ! =head1 NAME OpenInteract2::Manual::Changes - Significant changes to OpenInteract2 *************** *** 130,134 **** observations ('pre add', 'post add', etc.). So you can attach external observers to an action to, for instance, post a new use.perl journal ! entry with the contents of the object just created. =item * --- 130,135 ---- observations ('pre add', 'post add', etc.). So you can attach external observers to an action to, for instance, post a new use.perl journal ! entry with the contents of the object just created, tag the ! just-modified object with metadata, etc. =item * *************** *** 209,212 **** --- 210,226 ---- hit' observation so observers can react to it. + =item * + + Add shortcut methods C<add_error_key()> and C<add_status_key()> -- so + you can replace: + + $self->param_add( error_msg => $self->_msg( 'some.key', $msg_param ) ); + $self->param_add( status_msg => $self->_msg( 'some.key', $msg_param ) ); + + with: + + $self->add_error_key( 'some.key', $msg_param ); + $self->add_status_key( 'some.key', $msg_param ); + =back *************** *** 232,235 **** --- 246,263 ---- C<add()> method. + =item * + + Define 'c_task' action parameter to the task originally invoked. + + =back + + L<OpenInteract2::Action::CommonDisplay> + + =over 4 + + =item * + + Define 'c_task' action parameter to the task originally invoked. + =back *************** *** 243,246 **** --- 271,278 ---- C<remove()> method. + =item * + + Define 'c_task' action parameter to the task originally invoked. + =back *************** *** 257,260 **** --- 289,296 ---- Small bit of refactoring to make the search() easier to follow. + =item * + + Define 'c_task' action parameter to the task originally invoked. + =back *************** *** 268,271 **** --- 304,311 ---- C<update()> method. + =item * + + Define 'c_task' action parameter to the task originally invoked. + =back |