[mochikit] Re: Can't post a comment on Trac

2006-11-10 Thread Bob Ippolito
On 11/10/06, Arnar Birgisson [EMAIL PROTECTED] wrote: Hi all, No matter what I do, Aksimet won't allow me to post a comment on trac. It gives me this explanation: Submission rejected as potential spam (Maximum number of posts per hour for this IP exceeded, Akismet says content is spam)

[mochikit] Re: Can't post a comment on Trac

2006-11-10 Thread Arnar Birgisson
On 11/10/06, Bob Ippolito [EMAIL PROTECTED] wrote: It would make sense to post your problem here instead.Actually, there was no problem. I just wanted to post a comment on ticket #195 asking for the status of the CSS Selectors branch.. Arnar --~--~-~--~~~---~--~~

[mochikit] Re: iterating through dictionary

2006-11-10 Thread troels knak-nielsen
Using Iter : forEach(r.items, function(item) { log(item); }); ... or even: forEach(r.items, log); On 11/10/06, .M. [EMAIL PROTECTED] wrote: Dol! I get it now for (x in r.items) { log(x); for (y in r.items[x]) {

[mochikit] Re: Announcing MochiKit.Animator - an animation engine that doesn't suck

2006-11-10 Thread GHUM
Get it at:http://gr.ayre.st/~grayrest/animator/animator.html MochiKit.Animator is an enhanced, fully vectorized version of Bernard Sumption's animator.js [2]. It eschews the use of classes and instead uses composition to build complex effects in a few lines of code. Full explanation and

[mochikit] how to pan div contents

2006-11-10 Thread Diez B. Roggisch
Hi, I'm currently creating a TurboGears Tile-widget, like google maps has for example. So far things are smooth, displaying and moving work. Now what I would love to do is to enable that panning of the contents of that widget - moving around the tiles via dragging. I tried and look into the

[mochikit] better addLoadEvent (ticket #192)

2006-11-10 Thread sky
I think http://trac.mochikit.com/ticket/192 may have gotten lost inside of Trac spam, and I can't update my patch, since it's labeling it as spam, so I'll post the update here instead (ironically my last patch is broken after __connect__ was committed at my own request!). Anyway, my patch is

[mochikit] Finding out if there's some element with ID x on the page

2006-11-10 Thread Jorge Godoy
Hi! I'd like to have some generic processing directive that would be applied on each and every page where there was an object with id 'X'. If I try manipulating it directly, I get a JavaScript error and I have the feeling that all future operations are ignored (i.e., my JS code simply aborts

[mochikit] Re: Finding out if there's some element with ID x on the page

2006-11-10 Thread Bob Ippolito
On 11/10/06, Jorge Godoy [EMAIL PROTECTED] wrote: I'd like to have some generic processing directive that would be applied on each and every page where there was an object with id 'X'. If I try manipulating it directly, I get a JavaScript error and I have the feeling that all future

[mochikit]

2006-11-10 Thread csnyder
Greetings fellow MochiKitters! I often find myself having to remove one or two values from a list, and I cringe a little when I write code in the following pattern: this.selected = list( ifilterfalse( bind( function(itemid){ return itemid==item.id }, item ), this.selected ) ); Is there a

[mochikit] Re: [mochikit]

2006-11-10 Thread Bob Ippolito
On 11/10/06, csnyder [EMAIL PROTECTED] wrote: Greetings fellow MochiKitters! I often find myself having to remove one or two values from a list, and I cringe a little when I write code in the following pattern: this.selected = list( ifilterfalse( bind( function(itemid){ return

[mochikit] Re: [mochikit]

2006-11-10 Thread Arnar Birgisson
On 11/10/06, Bob Ippolito [EMAIL PROTECTED] wrote: this.selected = list( ifilterfalse( bind( function(itemid){ return itemid==item.id }, item ), this.selected ) ); Is there a prettier/better way to do it? this.selected = filter(function (itemid) { return itemid != item.id; },

[mochikit] Re: [mochikit]

2006-11-10 Thread Bob Ippolito
On 11/10/06, Arnar Birgisson [EMAIL PROTECTED] wrote: On 11/10/06, Bob Ippolito [EMAIL PROTECTED] wrote: this.selected = list( ifilterfalse( bind( function(itemid){ return itemid==item.id }, item ), this.selected ) ); Is there a prettier/better way to do it? this.selected =

[mochikit] Why I don't like using Deferred

2006-11-10 Thread nrlz
I've been using Mochikit's Deferred object for a while now and there are some characteristics which I don't like about it. My most disliked one being that exceptions thrown in the callback will cause the errback to run: var async = doNetworkRequestAndReturnDeferred();

[mochikit] IE

2006-11-10 Thread digital_dog
Good time! Did you tested your significant library with IE? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups MochiKit group. To post to this group, send email to mochikit@googlegroups.com To unsubscribe from this

[mochikit] Re: IE

2006-11-10 Thread Bob Ippolito
On 11/10/06, digital_dog [EMAIL PROTECTED] wrote: Good time! Did you tested your significant library with IE? Yes, IE 6+ is a supported platform. The supported platforms (as of MochiKit 1.3's release anyway) are listed on the about page. -bob

[mochikit] Re: IE

2006-11-10 Thread Bob Ippolito
On 11/10/06, digital_dog [EMAIL PROTECTED] wrote: Logging Pane doesn't work in it for some reason. What version of MochiKIt and what version of IE? It sure works here with IE 6 on both the trunk and MochiKit 1.3. Try the example on the site! http://mochikit.com/examples/logging_pane/ -bob

[mochikit] Re: IE

2006-11-10 Thread digital_dog
Well, okay, the problem is completely solved in r1194. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups MochiKit group. To post to this group, send email to mochikit@googlegroups.com To unsubscribe from this group,