django.contrib.comments 中的评论审核队列视图 - 在 1.2 中消失了?
我很高兴在 1.0.x 中使用 contrib.comments 提供的整洁的评论审核队列视图,但最近我想在 Django 1.2 站点中使用它,却发现该视图不再存在(不再在例如 contrib.comments.urls)
两个问题: 什么时候消失的? 为什么消失了?
I've happily used the neat comment moderation queue view supplied with contrib.comments in 1.0.x, but recently thought I'd use it in a Django 1.2 site, only to discover that the view is no longer there (no longer referenced in contrib.comments.urls, for example)
Two questions:
When did it disappear?
Why did it disappear?
看起来它是由于大约一年前的这张票而被删除的。该票证上的注释指出,该视图将被删除,因为它没有记录,并且现在可以在主评论更改列表视图上作为管理操作使用相同的功能。
Looks like it was removed as a result of this ticket about a year ago. The notes on that ticket state that the view was to be removed because it was undocumented, and the identical functionality is now available as admin actions on the main comments changelist view.