From: Chris W. <la...@us...> - 2004-11-25 03:14:16
|
Update of /cvsroot/openinteract/OpenInteract2/extra_packages/delicious_tags/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4789/doc Modified Files: delicious_tags.pod Log Message: changes up to 0.05 (fairly minor, just fixes) Index: delicious_tags.pod =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/extra_packages/delicious_tags/doc/delicious_tags.pod,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** delicious_tags.pod 25 Oct 2004 02:29:30 -0000 1.2 --- delicious_tags.pod 25 Nov 2004 03:14:04 -0000 1.3 *************** *** 8,13 **** # it will attach tags found in the request variable 'delicious_tags' # to the object found in the action parameter 'object' or 'c_object' ! # (this is done automatically for you if you're using the Common ! # actions) # in $WEBSITE_DIR/conf/observer.ini --- 8,14 ---- # it will attach tags found in the request variable 'delicious_tags' # to the object found in the action parameter 'object' or 'c_object' ! # whenever it's saved or issues a 'post add' or 'post update' ! # notification; this is done automatically for you if you're using ! # the Common actions # in $WEBSITE_DIR/conf/observer.ini *************** *** 30,36 **** is_taggable = yes ! # Once marked as taggable you can execute methods: ! # Find tags attached to object my $tags = $myobject->fetch_my_tags; --- 31,37 ---- is_taggable = yes ! # Once marked as taggable you can execute methods that: ! # - Find tags attached to object my $tags = $myobject->fetch_my_tags; *************** *** 43,53 **** } ! # Find other objects with any of the same tags as this one my $related_info = $myobject->fetch_related_object_info; ! # Find other objects with the tag 'sometag' my $related_info = $myobject->fetch_related_object_info( 'sometag' ); ! # Find other objects with the tags 'sometag' or 'someothertag' my $related_info = $myobject->fetch_related_object_info( 'sometag', 'someothertag' ); --- 44,54 ---- } ! # - Find other objects with any of the same tags as this one my $related_info = $myobject->fetch_related_object_info; ! # - Find other objects with the tag 'sometag' my $related_info = $myobject->fetch_related_object_info( 'sometag' ); ! # - Find other objects with the tags 'sometag' or 'someothertag' my $related_info = $myobject->fetch_related_object_info( 'sometag', 'someothertag' ); *************** *** 119,129 **** No actions defined in this package. ! =head1 RULESETS ! No rulesets defined in this package. ! =head1 BUGS ! None known. =head1 AUTHORS --- 120,130 ---- No actions defined in this package. ! =head1 OBSERVERS ! L<OpenInteract2::Observer::AddDeliciousTags> ! =head1 RULESETS ! No rulesets defined in this package. =head1 AUTHORS |