--
You received this message because you are subscribed to the Google Groups "SilverStripe Core Development" group.
To post to this group, send email to silverst...@googlegroups.com.
To unsubscribe from this group, send email to silverstripe-d...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/silverstripe-dev?hl=en.
1. Is SSAkisment being rolled out of the core and in to this module?
I assume that is why it is here as thirdparty
2. Regarding the use of DB::Query with count(*) in the Num****() calls
in the CommentAdmin.php: This could get unweidly as comments grow.
MySQL + MyISAM tables is one of the few stacks that handle count(*)
efficiently. It will be a corner case to have 100k+ rows here but it
is worth mentioning.
The new commenting system is very exciting -- and already looks to be a
huge improvement. About a week ago we had a client that wanted to filter
[auto-mark as spam] comments based off an internal list of keywords
and/or an IP address. This was fairly trivial to implement under the
current system with the exception of extending the CommentAdmin
interface to allow for filter and notification management -- which was
pushed to the global Site Config (a less ideal/intuitive spot IMO).
Perhaps CommentAdmin can incorporate an extensible DataObject in your
new version that would make something like this easier?
Comment Filter/Notification code is available @
https://github.com/briceburg/silverstripe/tree/master/digome-commentfilter
-- and perhaps useful/usable.
I also see that the Akismet integration is similar to the old. Is there
a reason to avoid submitting the author IP, URL, and email (if
available)? Also it seems more natural for Akismet to exist within the
Spam Protection module(?).
Thanks as ever. Silverstripe is great & getting more-so!
I also see that the Akismet integration is similar to the old. Is there a reason to avoid submitting the author IP, URL, and email (if available)? Also it seems more natural for Akismet to exist within the Spam Protection module(?).
Comment Filter/Notification code is available @ https://github.com/briceburg/silverstripe/tree/master/digome-commentfilter -- and perhaps useful/usable.