Search the web
Sign In
New User? Sign Up
mt-dev · Movable Type Developers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 882 - 911 of 2112   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
882
Here is a gotcha I just found. I had been getting reports that the related entries plugin stopped working for some (not all) people when they upgraded to MT...
Timothy Appnel
tappnel
Offline Send Email
Jan 11, 2006
12:32 am
883
For those not on or closely monitoring ProNet, Byrne posted this handy piece of code below. Where was this when I needed it!? ;) I really wanted to do...
Timothy Appnel
tappnel
Offline Send Email
Jan 13, 2006
5:11 pm
884
Hi all I'm writing a ruby app that is posting to MT via XMLRPC and for simple text it works fine some of the time with toy examples, but trying with the real...
Gavin Bell
eosgavinbell
Offline Send Email
Jan 19, 2006
11:12 pm
885
Oops I've got XML::Parser 2.34 installed on perl 5.8.6 if that helps Looking at forums it seems to be related to foreign character support any further ideas...
Gavin Bell
eosgavinbell
Offline Send Email
Jan 19, 2006
11:19 pm
886
Hi Gavin, That error message is almost certainly related to a character encoding problem... what is the character set specified for the XML you're sending?...
Benjamin Trott
btrott
Offline Send Email
Jan 21, 2006
9:06 pm
887
Today I tried to use the plugin_action in one of my plugins and was quite frustrated with the results. I wanted to use that method to create a link on a MT...
Timothy Appnel
tappnel
Offline Send Email
Jan 23, 2006
6:49 pm
888
In the ProNet post Byrne made on using the new upgrade features in MT ... Perhaps I'm misunderstanding something. Where am I supposed to have have the...
Timothy Appnel
tappnel
Offline Send Email
Jan 24, 2006
1:59 am
889
Ideology aside, I've really wanted a set of first class coding standards for plugins forever. I've asked for this a few times, but no one has ever really given...
David Jacobs
pdx_davidj
Offline Send Email
Jan 24, 2006
3:33 am
890
+1 vote for a plugin coding standard....
Stewart Johnson
mob0438947701
Offline Send Email
Jan 24, 2006
3:39 am
891
I liked the neatness of putting everything in one file (yes, bloated, but easier to install). All the templates as scalar variables, inlined, plus adding app...
Gavin Mogan
gavin_mogan
Offline Send Email
Jan 24, 2006
3:40 am
892
... Ah, see this drives me bonkers. Is it really easier to install? What if everything was in a subdirectory?...
David Jacobs
pdx_davidj
Offline Send Email
Jan 24, 2006
3:59 am
893
I'm with you David -- having everything in one file makes it harder to navigate your code and re-use previous functionality. However it seems that it's popular...
Stewart Johnson
mob0438947701
Offline Send Email
Jan 24, 2006
4:11 am
894
Yea, well, I had everything in plugins/MTLJPost/ for a while, then .cgi files in places, putting things in extlib, etc.. I just found it easier for people if i...
Gavin Mogan
gavin_mogan
Offline Send Email
Jan 24, 2006
5:30 am
895
Hi Tim, ... I might be misunderstanding you on this point, but are you saying that plugin libraries should go into lib/, CGI scripts into the main directory,...
Benjamin Trott
btrott
Offline Send Email
Jan 25, 2006
5:26 pm
896
... The file that does all of the registering would still remain in plugins as would templates and any other misc. files. I'm find with that though I have to...
Timothy Appnel
tappnel
Offline Send Email
Jan 25, 2006
5:45 pm
897
Sorry - I should have been more explicit: There is no "initialize_plugin" method - that is my own fabrication. I just wrap it in a subroutine for easier...
Byrne Reese
byrnereese
Online Now Send Email
Jan 25, 2006
8:13 pm
898
So in other words, use init_request. That method checks a configuration param or some other piece of data to check what version of the object schema was last...
Timothy Appnel
tappnel
Offline Send Email
Jan 25, 2006
8:20 pm
899
Based on how you implemented you need a MT::App in your package that is presumably run before any part of the plugin is run. Is that correct? If so, I take it...
Timothy Appnel
tappnel
Offline Send Email
Jan 25, 2006
8:37 pm
900
... Can you tell us much more about this?...
David Jacobs
pdx_davidj
Offline Send Email
Jan 25, 2006
8:56 pm
901
Let me see if I can probe Brad to give us an overview of this feature. To be honest, I have not cracked open 3.3 yet - I am still hacking on 3.2. :-D <nudging...
Byrne Reese
byrnereese
Online Now Send Email
Jan 25, 2006
10:20 pm
902
... Tim, you may like that better as a plugin developer, but, as a user, I like all of the plugin code in one subdirectory of plugins/. That way, when I want...
Jay Allen
fooljay
Offline Send Email
Jan 26, 2006
7:44 am
903
I also like the "single directory" option from a user perspective. It's marginally easier for me personally, and I can make do with the other method if needed...
Chad Everett
jayseae
Offline Send Email
Jan 26, 2006
2:32 pm
904
... A related issue is plugins that are distributed as part of a package but also on their own. Tim mentioned BigPAPI in his original post--I had intended for...
Kevin Shay
kevin_shay
Offline Send Email
Jan 26, 2006
3:46 pm
905
Agreed - I've seen this behavior on BigPAPI as well (I typically try and keep it in the "plugins" directory, but I'm sure I may have missed it once or twice)....
Chad Everett
jayseae
Offline Send Email
Jan 26, 2006
3:51 pm
906
Ooh, yeah, the php vs perl plugin installation routine annoys me too in terms of having stuff spread all over the place. At the same time, I hear the request...
Jay Allen
fooljay
Offline Send Email
Jan 26, 2006
5:53 pm
907
I totally forgot about PHP plugins. Is there a list of the best PHP MT plugins? I'd love to look at the code for inspiration. David ... -- djacobs@... ...
David Jacobs
pdx_davidj
Offline Send Email
Jan 26, 2006
6:11 pm
908
Well, the "best" PHP plugins for Movable Type are just called plugins. That is, they run equally well under both PHP (dynamic) and Perl (static). Did you mean...
Jay Allen
fooljay
Offline Send Email
Jan 26, 2006
6:28 pm
909
I meant the cleanest-coded php implementations of Movable Type plugins. I suspect you knew that! ;) I just want some good php code examples....
David Jacobs
pdx_davidj
Offline Send Email
Jan 26, 2006
7:59 pm
910
This is a good conversation. Here are some thoughts from throughout the thread. I'm all for making plugins as easy to install and manage for users. I am...
Timothy Appnel
tappnel
Offline Send Email
Jan 26, 2006
10:53 pm
911
New keys you will be able to register with your plugin: schema_version and object_classes. MT->add_plugin(new MT::Plugin({ # stuff ... schema_version => 1.0, ...
Brad Choate
bschoate
Offline Send Email
Jan 27, 2006
7:06 am
Messages 882 - 911 of 2112   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help