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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 1107 - 1136 of 2112   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1107
I was taking advantage of the downtime over the holidays to do more personal tinkering. After dealing with a few flaws in Typist (see the code.google.com...
Timothy Appnel
tappnel
Offline Send Email
Jan 2, 2007
4:05 pm
1108
I wanted to put some work I did over the past year as an FYI and for some feedback and "peer review." For some time I've mention that Feeds.App 3 has an entire...
Timothy Appnel
tappnel
Offline Send Email
Jan 10, 2007
5:12 pm
1109
Here is one other thing I've had sitting around my hard drive that I wrote up since Telegraph uses it. I'm mention it as another FYI and call for feedback. The...
Timothy Appnel
tappnel
Offline Send Email
Jan 10, 2007
5:23 pm
1110
Ok, so here is the deal.. I'm trying to setup a script to post my del.icio.us links as individual entries. I have been working on a script, but don't really...
chrisdrackett
Offline Send Email
Feb 18, 2007
8:15 pm
1111
Hi Chris, The 'tags' method expects a list of things, so if you only give one string, it assumes the whole thing to be a tag name. In other words, it doesn't...
Brad Choate
bschoate
Offline Send Email
Feb 18, 2007
10:33 pm
1112
I am trying to create a pre_load callback, but not exactly sure how to address and modify the $args that get passed to the callback. From the MT::Callback...
Mark Carey
bsakamano
Offline Send Email
Feb 20, 2007
6:25 pm
1113
I've found that Data::Dumper really comes in handy in these situations: use Data::Dumper; MT::log(Dumper($args));...
Andy Yaco-Mink
yacomink
Offline Send Email
Feb 20, 2007
6:38 pm
1114
It looks like $args is a reference to the argument list that was passed to the load() or load_iter() method that was called to load the objects. For example,...
Kevin Shay
kevin_shay
Offline Send Email
Feb 20, 2007
6:39 pm
1115
I also use Data::Dumper constantly for stuff like this, but the problem is that the mt_log column containing the message is a string instead of text; many...
Kevin Shay
kevin_shay
Offline Send Email
Feb 20, 2007
6:52 pm
1116
Either that or send the Data::Dumper output to STDERR and tail the logfile. I love STDERR. :) ... -- David Raynes rayners@... | rayners@... I am...
David Raynes
rayners1
Offline Send Email
Feb 20, 2007
7:04 pm
1117
... Here some examples of the output in the logs: $VAR1 = [ 'MT::Template', '729', { 'cached_ok' => 1 } ]; $VAR1 = [ 'MT::Template', { 'name' => 'template...
Mark Carey
bsakamano
Offline Send Email
Feb 20, 2007
7:12 pm
1118
... Yes--you can Dumper() more than one variable at once, so it labels them $VAR1, $VAR2, etc. ... I guess the object class is being passed along with the ...
Kevin Shay
kevin_shay
Offline Send Email
Feb 20, 2007
7:17 pm
1119
Ref this forum post: http://forums.sixapart.com/index.php?showtopic=61371&st=0&gopid=249348 The user is trying to change the default file extension presented...
Su
hamletcomplex
Offline Send Email
Feb 20, 2007
7:39 pm
1120
In MT::Blog there is a set_default method. They'd want to change this line in that method: $blog->file_extension('html'); That should do it for all weblogs...
Timothy Appnel
tappnel
Offline Send Email
Feb 20, 2007
7:55 pm
1121
... Heh, beat you by 3 minutes... --Kevin...
Kevin Shay
kevin_shay
Offline Send Email
Feb 20, 2007
7:56 pm
1122
You can also turn on DebugMode and use 'warn' and the rest of the Carp family. If you haven't tried it, I think you'll be rather pleased. Jay Allen ...
Jay Allen
fooljay
Offline Send Email
Feb 21, 2007
3:01 pm
1123
We have a plugin running in a postgres environment that's time sensitive (it's a chat), but the timestamps (MT's audit columns) appear to be have a margin of...
David Jacobs
pdx_davidj
Offline Send Email
Feb 26, 2007
6:47 pm
1124
hello there -- i'm on v 3.33 and working on a plugin i have a plugin dying as soon as I add this piece of code to the end of the file what is the right way to...
Paul Berry
paul_berry98
Offline Send Email
Feb 26, 2007
7:05 pm
1125
When you say the plugin is dying, do you mean it no longer loads and there's an error message on the plugin listing page? If so, what is the error? Also, you...
Kevin Shay
kevin_shay
Offline Send Email
Feb 26, 2007
7:12 pm
1126
The postgress driver has its own routines for convert its timestamps to the form MT uses and vice versa. I don't see how that would create a 5 second...
Timothy Appnel
tappnel
Offline Send Email
Feb 26, 2007
7:15 pm
1127
Hi Kevin, thank for the quick answer ... Actually what happens is that the callbacks above it in code no longer function What's happening above is i'm creating...
Paul Berry
paul_berry98
Offline Send Email
Feb 26, 2007
7:50 pm
1128
The database is on a different server than the (2) app servers, but I was assuming they were using the db server's timestamp. The timestamps are still creating...
David Jacobs
pdx_davidj
Offline Send Email
Feb 26, 2007
7:57 pm
1129
... Looking at the code in MT::ObjectDriver::DBI (postgres doesn't overload its own save/insert/update methods), the application server sets the timestamp, not...
Timothy Appnel
tappnel
Offline Send Email
Feb 26, 2007
8:41 pm
1130
by the way huge thanks to Kevin for sorting out my syntax issues, i'm rolling along now the callback syntax was fine, it was a lack of defining the right...
Paul Berry
paul_berry98
Offline Send Email
Feb 26, 2007
8:42 pm
1131
Of course you're right. Thanks, Tim! David ... -- djacobs@... (646) 244 9910 http://hello.typepad.com...
David Jacobs
pdx_davidj
Offline Send Email
Feb 26, 2007
8:45 pm
1132
http://www.perl.com/pub/a/2007/03/01/perl-6-parameter-passing.html -- djacobs@... (646) 244 9910 http://hello.typepad.com...
David Jacobs
pdx_davidj
Offline Send Email
Mar 2, 2007
2:02 am
1133
I know Athena will have this along with other Data::ObjectDriver goodies, but in the meantime, has anyone here ever tried hacking memcache support into...
Andy Yaco-Mink
yacomink
Offline Send Email
Mar 2, 2007
5:04 pm
1134
Memcache is surprisingly easy to setup and use, so it wouldn't be *that* difficult for some queries. I encourage everyone to play around with memcached -...
Byrne Reese
byrnereese
Online Now Send Email
Mar 2, 2007
6:30 pm
1135
IMing with Jay about Bootstrap got me thinking. tcpperl(*) is a package that lets command line scripts act as servers. Apache (or other httpd processes) can...
David Jacobs
pdx_davidj
Offline Send Email
Mar 2, 2007
9:07 pm
1136
I've written a series of plugins for my MT implementation, but I'm running into a situation right now where I need to disable and enable my plugins on a blog...
Steve Kallestad
s_kallestad
Offline Send Email
Mar 2, 2007
11:20 pm
Messages 1107 - 1136 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