... MTEntries ... There isn't a direct way -- that wouldn't be easy to implement. However I think you can achieve such an effect. Without knowing the internals...
... Even if you do this, the real problem is that a global attribute is applied only after the container tag has been built. In this case, the entire block of...
... Good point, Tim. ... That is precisely what I decided to do. The file can be controlled via a module if the user would like that and a file has other nice...
Jay, I can reply to a couple of your specific points separately, but first I'd like to suggest a completely different approach. There's a way a plugin might be...
... This is a great idea. I hadn't really thought of it, although way back when, this is how I got MT-search to work without hacking MT. I think you are...
... So, I am well along in the plugin development. So far (with your help Kevin), my plugin blocks posting of comments AND trackbacks containing items on the...
... Hash: SHA1 Jay, ... Heh. :) A bit of background: All of the database-backed objects (MT::Comments, MT::TBPing, etc) inherit from MT::Object. An MT::Object...
Thanks Ben, It helped very much. It WOULD have helped more had I read BEFORE I successfully identified and overrode load and load_iter under the right context...
... traces ... I just realized that if I back them out and go for the easier route, people who use Adam Kalsey's SimpleComments plugin (like me!) will be left...
Jay, one small thing that you may have already taken care of in MT-Blacklist: Perl throws a warning when you redefine a subroutine. MT itself won't display...
... Thanks Kevin. You saved me from looking into that. Luckily, this first version plugin doesn't throw the warning because it is far less ambitious than the...
I have been working on a project dealing with MT, and I have been trying to create templates that serve the same function as the MT templates in the tmp...
... It's a per-user setting. Users can edit their profile within MT and choose a language. ................................... Adam Kalsey adam@... tel....
Could some kind soul point me to the package/subroutine I need to override to gain control of the posting of incoming Trackbacks? By every single available...
... I wonder if the problem is with the way the ping() subroutine is called. From Trackback.pm: sub init { my $app = shift; $app->SUPER::init(@_) or return; ...
... Actually, it looks like it's storing it in $app->{'vtbl'}, not %Global_actions. And also, now that I think about it, that might not work, because it looks...
... Hash: SHA1 Hi, ... That's weird. But it does work to overload MT::App::Comments::post()? They're called in the same way... ... That would work, yeah. But I...
... I can manage to get this to STDERR (the error log): Subroutine ping redefined at /home/j/other_sites/plugindev/mt/plugins/Blacklist.pl line 43. So yes, it...
Hey all, I am trying to iteratively load all comments on only entries that a user has permission to edit. Preferably, I would like to do it in the most...
Have not tried this and sadly don't have time to dig deeper into it. The "join" from comments to permissions seems rather indirect. Have you tried loading the...
Greetings; I had posted a question before and I thank you guys for the help. But now I have a new one for you. I have recently created my own language pack...
I've put together a basic module that will store subscription information and blog-wide opt-out information to facilitate subscribing to posts (and blocking...
I have written a script that does this, and I will try releasing it for beta testing maybe tomorrow when I finish tracking down a couple of warnings. What I...
I used some bits from the MT Api which creates a MT blog entry, assigns it to a category, and then publishes the whole mess. That much works. However, when I...
Pinging is a seperate function from rebuild. The functionality to do TrackBack and XML-RPC pinging is in the MT.pm module. Pings being reported as failed...
... MT doesn't send category TrackBack pings when an entry is published through the API. Six Apart is aware of the bug. Update pings (like weblogs.com) are...
oh I see. So if I want to send a ping out with each item I create, what is the correct way to do it through the API only? Instantiate a Trackback object, and...