From: Chris W. <la...@us...> - 2005-03-04 15:22:51
|
Update of /cvsroot/openinteract/OpenInteract2/pkg/comments In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7846 Modified Files: Changes MANIFEST package.ini Log Message: OIN-119: be able to disable comments for an individual object or for an entire class of objects -- new action (comment_admin) as well as SPOPS object (comment_disable) Index: Changes =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/pkg/comments/Changes,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** Changes 3 Mar 2005 13:09:12 -0000 1.20 --- Changes 4 Mar 2005 15:22:09 -0000 1.21 *************** *** 1,7 **** Revision history for OpenInteract package comments. 1.22 Wed Mar 2 23:47:36 EST 2005 ! OIN-112: change the 'email on new thread?' a dropdown and modify the language for the labels based on whether you're already subscribed; deciding to unsubscribe from the thread will remove --- 1,14 ---- Revision history for OpenInteract package comments. + 1.23 Fri Mar 4 00:27:21 EST 2005 + + OIN-119: add new action 'comment_admin' so you can disable + comments or entire classes of comments and include 'is_disabled' + function so we can check whether we should display a new comment + form. + 1.22 Wed Mar 2 23:47:36 EST 2005 ! OIN-112: change the 'email on new thread?' to a dropdown and modify the language for the labels based on whether you're already subscribed; deciding to unsubscribe from the thread will remove Index: MANIFEST =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/pkg/comments/MANIFEST,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MANIFEST 1 Mar 2005 03:28:41 -0000 1.4 --- MANIFEST 4 Mar 2005 15:22:09 -0000 1.5 *************** *** 5,8 **** --- 5,9 ---- conf/action.ini conf/spops_comment.ini + conf/spops_comment_disable.ini conf/spops_comment_notify.ini conf/spops_comment_summary.ini *************** *** 10,16 **** --- 11,19 ---- msg/comments-messages-en.msg OpenInteract2/Comment.pm + OpenInteract2/CommentDisable.pm OpenInteract2/CommentSummarySync.pm OpenInteract2/Commentable.pm OpenInteract2/Action/Comments.pm + OpenInteract2/Action/CommentAdmin.pm OpenInteract2/App/Comments.pm OpenInteract2/SQLInstall/Comments.pm *************** *** 20,23 **** --- 23,28 ---- struct/comment_oracle.sql struct/comment_sequence.sql + struct/comment_disable.sql + struct/comment_disable_sequence.sql struct/comment_notify.sql struct/comment_notify_generator.sql *************** *** 39,41 **** --- 44,47 ---- template/comment_poster.tmpl template/comment_summary.tmpl + template/disable_list.tmpl template/notification_email.tmpl \ No newline at end of file Index: package.ini =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/pkg/comments/package.ini,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** package.ini 3 Mar 2005 13:09:12 -0000 1.3 --- package.ini 4 Mar 2005 15:22:09 -0000 1.4 *************** *** 1,5 **** [package] name = comments ! version = 1.22 author = Chris Winters <ch...@cw...> url = http://www.cwinters.com/ --- 1,5 ---- [package] name = comments ! version = 1.23 author = Chris Winters <ch...@cw...> url = http://www.cwinters.com/ |