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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 2070 - 2099 of 2112   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2070
Hi, I wonder if someone already has a simple UML diagram for movabletype ( to see the relationship between parents and child classes)....
erinther
Offline Send Email
Jul 6, 2008
1:52 pm
2071
I followed this guide: http://www.movabletype.org/documentation/developer/plugins/extending-existing-object-type.html and had an init_registry method that...
Michael Thomsen
codemonkeyov...
Offline Send Email
Jul 8, 2008
5:12 pm
2072
Re: [mt-dev] Problem with extending MT::Author At 1:11 PM -0400 7/8/08, Michael Thomsen wrote: I followed this guide: ...
Kevin Shay
kevin_shay
Offline Send Email
Jul 8, 2008
5:34 pm
2073
I've never seen one. That would be nice. -- Jay Allen Endevver Consulting 415-200-6985...
Jay Allen
fooljay
Offline Send Email
Jul 9, 2008
4:18 pm
2074
It has not been resolved. http://bugs.movabletype.org/?67449 http://bugs.movabletype.org/?80031 -- Jay Allen Endevver Consulting 415-200-6985...
Jay Allen
fooljay
Offline Send Email
Jul 9, 2008
4:22 pm
2075
http://www.magentocommerce.com/support/magento_core_api I'm just sayin' In case, you know, anybody thinks that's interesting....
Su
hamletcomplex
Offline Send Email
Jul 15, 2008
6:43 pm
2076
I will need to work at home tomorrow to assist a bit in the afternoon with day care. I will need to reschedule meetings for tomorrow accordingly....
Byrne Reese
byrnereese
Offline Send Email
Jul 16, 2008
2:34 am
2077
Sorry for the spam. Obviously people here don't care where I work. :)...
Byrne Reese
byrnereese
Offline Send Email
Jul 16, 2008
2:36 am
2078
Does anyone know of a reference or sample that explains the various variables such as next_max, list_end, list_total, etc. that are used to control the...
Michael Thomsen
codemonkeyov...
Offline Send Email
Jul 18, 2008
7:40 pm
2079
Explains as in documentation? No, I've never seen any. But explains in terms of real-world examples? Absolutely... If you don't already have them, get a...
Jay Allen
fooljay
Offline Send Email
Jul 19, 2008
1:02 pm
2080
[Asking over here too since it's related... Originally from MTOS-dev list] Does anyone know a good way to have your plugin config panel automatically opened to...
Jay Allen
fooljay
Offline Send Email
Jul 22, 2008
11:11 pm
2081
Hi, For a client I've to integrate MT with a php-based cms. I've used php::interpreter(1) and php's perl extension (2) to somwhow integrate them. The problem...
erinther
Offline Send Email
Aug 2, 2008
5:14 pm
2082
I'm trying to write a plugin for ActionStream which adds support for Slashdot, but to do that I need more complex functionality than what scraper or xpath...
Michael Thomsen
codemonkeyov...
Offline Send Email
Aug 20, 2008
4:55 pm
2083
... Yes, see "Custom collectors" in the recipe guide provided with the development version of the plugin (most of it applies to 1.0 as well): ...
Mark Paschal
markpaaasc
Offline Send Email
Aug 20, 2008
5:20 pm
2084
Hello all. I'm putting out an updated version of our MT plugin and am having some issues with the upgrade scripts b/c I need to up the schema version. For the...
jesse
jessedp23
Offline Send Email
Aug 28, 2008
5:03 pm
2085
Jesse, Its hard to be specific since you haven't posted any code but... I don't think the MT api will remove the column. It is pretty good add schema changes...
Mark Carey
bsakamano
Offline Send Email
Aug 28, 2008
5:41 pm
2086
Thanks for the reply, Mark. Sorry for not posting code, but I had literally followed the example on the page I referenced to the tee. Anywho, here's my ...
jesse
jessedp23
Offline Send Email
Aug 28, 2008
6:15 pm
2087
... This is correct, it must match the object type you have defined. Each object passing the "condition" will get passed to the "code" function, so your first...
Mark Carey
bsakamano
Offline Send Email
Aug 28, 2008
7:25 pm
2088
Turns out I wasn't paying attention to the ever so important placement of a closing brace, so my entire upgrade_functions section was not in the registry...
jesse
jessedp23
Offline Send Email
Aug 28, 2008
7:49 pm
2089
I have a template file in a plugin that I need to compile and write the HTML to a separate directory. I've seen the following way to initialize a...
Michael Thomsen
codemonkeyov...
Offline Send Email
Sep 2, 2008
8:25 pm
2090
What version are you working with? Sent from my iPhone On Sep 2, 2008, at 16:25, "Michael Thomsen" <mikerthomsen@...>...
Timothy Appnel
tappnel
Offline Send Email
Sep 2, 2008
10:28 pm
2091
4.21 Pro...
Michael Thomsen
codemonkeyov...
Offline Send Email
Sep 2, 2008
11:46 pm
2092
If you already have a template object (from the db) loaded, you can do: my $ctx = $tmpl->context; The error is because your context does not include a blog...
Mark Carey
bsakamano
Offline Send Email
Sep 3, 2008
12:17 pm
2093
Hmmm, see I'm loading the template from a plugin directory, not the database. Do I need to register the tmpl file in the registry to make this easier?...
Michael Thomsen
codemonkeyov...
Offline Send Email
Sep 3, 2008
12:40 pm
2094
I have an object being passed to a template and can access it's fields just fine. The object represents a user-selected "list", of which there may be many. I...
jesse
jessedp23
Offline Send Email
Sep 3, 2008
3:55 pm
2095
... In this line you seem to be creating $id but not setting it to anything, and then testing if it equals $lid. That obviously won't because you never gave...
Su
hamletcomplex
Offline Send Email
Sep 3, 2008
4:03 pm
2096
Su, on the line you referenced, "id" is coming from the "lists" object (it maybe a hash) used in my mt:loop. Also notice that it's a "var", not a "setvar"....
jesse
jessedp23
Offline Send Email
Sep 3, 2008
4:10 pm
2097
... In that case, you were probably on the right track originally, but you need add the blog context manually: my $ctx = MT::Template::Context->new(); ...
Mark Carey
bsakamano
Offline Send Email
Sep 3, 2008
5:31 pm
2098
Ok, that works. How do I pass it variable values so that tags like <mt:var and <mt:loop can get populated? What I have right now is: $params{items} =...
Michael Thomsen
codemonkeyov...
Offline Send Email
Sep 3, 2008
5:54 pm
2099
Michael, you should be able to just shove any other variables you want into the $params hash you have setup there. I'm not real great with my perl and what...
jesse
jessedp23
Offline Send Email
Sep 3, 2008
6:04 pm
Messages 2070 - 2099 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