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...
Show off your group to the world. Share a photo of your group with us.

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 347 - 377 of 2112   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
347
Developers: As part of the Movable Type 3.0 launch, we're initiating an effort to better support plugin developers and provide better user experience with...
Ezra Cooper
ezra6a
Offline Send Email
May 4, 2004
1:31 am
348
I want to write a modification to a Perl object method in the MT::App package. My method in its own sub package will execute first, then call SUPER:: to...
tsbalaban
Offline Send Email
May 4, 2004
6:51 am
349
Kevin Shay just gave an answer to a similar question on the MT support board here: http://www.movabletype.org/support/index.php?act=ST&f=20&t=40374 (scroll...
Timothy Appnel
tappnel
Offline Send Email
May 4, 2004
1:01 pm
350
... Tim, I'm actually not sure that's what tsbalaban is trying to do, based on this post: http://www.movabletype.org/support/index.php?act=ST&f=20&t=39880 ...
Kevin Shay
kevin_shay
Offline Send Email
May 4, 2004
2:28 pm
351
Hi all, As *promised*, here's an explanation of the non-backward-compatible change that we're making to the 'entries' element in the template context stash....
Ezra Cooper
ezra6a
Offline Send Email
May 4, 2004
9:19 pm
352
I could just do this and take your word for it that its better, but then I wouldn't be me. I mostly follow this and it sounds fine. Besides delaying execution...
Timothy Appnel
tappnel
Offline Send Email
May 5, 2004
1:23 am
353
I just saw beta3 was released so grabbed it and reviewed the code to MT::Promise. Let's see if I can answer my own questions. ... Depends on the scope of the...
Timothy Appnel
tappnel
Offline Send Email
May 5, 2004
1:51 am
354
Hello, First time poster, been reading for about 5 months. I have been doing some plugin development and I am not sure if this is a documented error, or a...
mt-dev@...
zotharsteale...
Offline Send Email
May 5, 2004
2:04 am
355
Are you trying to use MTElse in your conditional and that is failing or are you calling your conditional tag with the same terms multiple times and getting...
Timothy Appnel
tappnel
Offline Send Email
May 5, 2004
2:12 am
356
No I do not use MTElse. It is basically like <MTMyCondition arg1="foo" arg2="foo"> <!-- some stuff --> </MTMyCondition> <!-- more stuff --> <MTMyCondition...
caleb@...
cbuxt
Offline Send Email
May 5, 2004
2:20 am
357
Can you post your code then? It seems like some data from the first execution is in scope and changing the result. <tim/>...
Timothy Appnel
tappnel
Offline Send Email
May 5, 2004
2:24 am
358
... Quite well! Let me just add a few things. ... The promise itself isn't really scoped. You can think of it just like an array reference, with the proviso...
Ezra Cooper
ezra6a
Offline Send Email
May 5, 2004
7:28 pm
359
... Tim, MT::Promise is available for your use however you want to use it. However, the real issue here is that we need calling conventions between Movable...
Ezra Cooper
ezra6a
Offline Send Email
May 5, 2004
11:02 pm
360
... Hash: SHA1 Hi all, I'd like to know which is the best wat to generate cross-linked, html docs from the pod docs embedded in the MT libraries. I've tried ...
Victor Jalencas
victor@...
Send Email
May 6, 2004
3:03 pm
361
There's already a set of HTML files for those: http://www.movabletype.org/docs/mtapi_index.html Not crosslinked, but there they are. -Brad ... -- ...
Brad Choate
bschoate
Offline Send Email
May 6, 2004
3:55 pm
362
... Hash: SHA1 Those are for version 2.x, aren't they? I wanted the same result but for version 3 Victor ... Version: GnuPG v1.2.3 (MingW32) ...
Victor Jalencas
victor@...
Send Email
May 6, 2004
4:35 pm
363
The plugin I'm working on has two parts - a cgi script for the config page and a proper perl script as the workhorse. What I'd like to do is find the proper...
audaic
Offline Send Email
May 6, 2004
11:27 pm
364
Hi All, I'm trying to access a category label either directly before or directly after a new entry save. I've read the docs and this is how I'm trying it...
audaic
Offline Send Email
May 7, 2004
10:33 pm
365
... Unless this has changed in MT3 (haven't checked), the category isn't set until the entry is saved ...
Adam Kalsey
akalsey
Online Now Send Email
May 7, 2004
10:41 pm
366
At least in MT2, I havn't played with MT3 yet. $entry->category is the object. so you don't need to load it. so $catObj = $entry->category. Gavin ... * -- ...
Gavin Mogan
gavin_mogan
Offline Send Email
May 7, 2004
10:43 pm
367
Adam & Galvin: Thanks for the quick response guys! Adam: what I think I hear you saying is that I should probably be using post_save if I want to access...
Christopher Whipple
audaic
Offline Send Email
May 7, 2004
10:57 pm
369
I'm nearing completion of mt-feeds 2.0 (formerly mt-rssfeed) and I'm recruiting some testers. If you're interested please contact me off-line. For more on the...
Timothy Appnel
tappnel
Offline Send Email
May 10, 2004
8:22 pm
370
This is an excellent question. My instincts tells me that SixApart would probably prefer that you use their look and feel since they put a great deal of effort...
Timothy Appnel
tappnel
Offline Send Email
May 10, 2004
8:41 pm
371
Its hard to say without seeing your code. If you could post it (or the most relevant parts) that would help. Are you positive that you assigning a primary...
Timothy Appnel
tappnel
Offline Send Email
May 10, 2004
8:48 pm
372
... I thought I saw this discussed somewhere, but now I don't see where. Anyway, it looks to me like the answer is that you can't see categories by hooking any...
Phil Ringnalda
philringnalda
Offline Send Email
May 10, 2004
10:28 pm
373
... You can do something like this in 2.x... my $entry = $_[0]->stash('entry'); my $cat = $entry->category; return $cat->id; ...
Adam Kalsey
akalsey
Online Now Send Email
May 10, 2004
10:39 pm
374
... As a tag, sure, but not as a callback for entry post_save. There, you're getting called: ## Get rid of category_id param, because we don't want to just set...
Phil Ringnalda
philringnalda
Offline Send Email
May 11, 2004
1:45 am
375
Hi folks, In order to make Movable Type 3.0 more backward compatible than it was slated to be (as of my last missive to mt-dev), we're making another change to...
Ezra Cooper
ezra6a
Offline Send Email
May 11, 2004
3:55 am
376
Good piece of dectective work Phil. I overlooked that the new entry save would fire off a MT::Placement record save event. Couple of things about your code....
Timothy Appnel
tappnel
Offline Send Email
May 11, 2004
1:42 pm
377
Phil, this is fantastic, thank you. You probably saved me hours of staring at the placement perldoc and even more hours doing trial-and-error. My...
Christopher Whipple
audaic
Offline Send Email
May 12, 2004
9:11 am
Messages 347 - 377 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