Re: [Moo] [Forge] How do I remove a plugin from the forge?

2010-11-24 Thread אריה גלזר
On Tue, Nov 23, 2010 at 11:45 AM, Oskar Krawczyk wrote: > You can't ;-) Doesn't Forge have any mechanism to remove unwanted classes (for eg. mallware)? -- Arieh Glazer אריה גלזר 052-5348-561 5561

[Moo] Re: Element good for xml parsing?

2010-11-24 Thread stratboy
ook! thaaank you! On 24 Nov, 17:36, אריה גלזר wrote: > On Wed, Nov 24, 2010 at 6:34 PM, stratboy wrote: > > But how can I pass the xml document to $$? > > > On 24 Nov, 17:09, Ryan Florence wrote: > > > $$ = Slick.search(document, selector); > > Slick.seach(xml,selector);

Re: [Moo] Re: Element good for xml parsing?

2010-11-24 Thread אריה גלזר
On Wed, Nov 24, 2010 at 6:34 PM, stratboy wrote: > But how can I pass the xml document to $$? > > On 24 Nov, 17:09, Ryan Florence wrote: > > $$ = Slick.search(document, selector); > > > Slick.seach(xml,selector); > > You can use either. As for documentation, just pass it a CSS selector > a

[Moo] Re: Element good for xml parsing?

2010-11-24 Thread stratboy
But how can I pass the xml document to $$? On 24 Nov, 17:09, Ryan Florence wrote: > $$ = Slick.search(document, selector); > > You can use either.  As for documentation, just pass it a CSS selector and > you'll get your elements. > > On Nov 24, 2010, at 8:14 AM, stratboy wrote: > > > Excuse me f

[Moo] Re: Element good for xml parsing?

2010-11-24 Thread stratboy
Hey wow! So it will work even with xml? On 24 Nov, 17:09, Ryan Florence wrote: > $$ = Slick.search(document, selector); > > You can use either.  As for documentation, just pass it a CSS selector and > you'll get your elements. > > On Nov 24, 2010, at 8:14 AM, stratboy wrote: > > > Excuse me fo

Re: [Moo] Re: Element good for xml parsing?

2010-11-24 Thread Ryan Florence
$$ = Slick.search(document, selector); You can use either. As for documentation, just pass it a CSS selector and you'll get your elements. On Nov 24, 2010, at 8:14 AM, stratboy wrote: > Excuse me for some reason I posted twice. > > I wanted to make 2 more questions: > > 1. The motools bui

[Moo] Re: Element good for xml parsing?

2010-11-24 Thread stratboy
Excuse me for some reason I posted twice. I wanted to make 2 more questions: 1. The motools built in slick is v0.9, but the current version is 1.0. console.log(Slick) -> Object { version="0.9dev"} etc.. So, should I use a stand alone Slick v1.0 instead of using the mootools built in one ? 2. I

[Moo] Re: Element good for xml parsing?

2010-11-24 Thread stratboy
Some other questions: 1. I see that with mootools 1.3 is loaded Slick 0.9dev, console.log(Slick) -> Object { version="0.9dev"} etc.. But the current version is 1.0dev. So, should I use a stand alone 1.0 instead of the mootools built in? 2. If I use the built in version, is there any mootools.s

[Moo] Re: Element good for xml parsing?

2010-11-24 Thread stratboy
I can't find any better documentation that this, though: https://github.com/mootools/slick So it's quite difficult to me to use it in a production ready big project like the one I'm placing the small app I'm building. Do you know any other doc source for Slick? On 24 Nov, 15:19, ken wrote:

[Moo] Re: Element good for xml parsing?

2010-11-24 Thread stratboy
I can't find any better documentation that this, though: https://github.com/mootools/slick So it's quite difficult to me to use it in a production ready big project like the one I'm placing the small app I'm building. Do you know any other doc source for Slick? On 24 Nov, 15:19, ken wrote:

[Moo] Re: problem with smoothbox

2010-11-24 Thread refreegrata
I don't know why, but in my custom version, without the line meanwhile I use IE6, the browser falls. Hopefully people are not pawned to use this horrible browser.

[Moo] Re: Element good for xml parsing?

2010-11-24 Thread ken
see Slick, it can parse any form of xml On Nov 24, 7:55 pm, stratboy wrote: > Hi, I'm building a small app. > My php programmer will pass me some xml file. I was wandering if maybe > Element is good even for parsing xml code. > Or maybe, is there any other (moo)tool for doing it?

[Moo] [1.3] Element good for xml parsing?

2010-11-24 Thread stratboy
Hi, I'm building a small app. My php programmer will pass me some xml file. I was wandering if maybe Element is good even for parsing xml code. Or maybe, is there any other (moo)tool for doing it?

Re: [Moo] Where to find supported event names?

2010-11-24 Thread Maxim Lacrima
Thanks a lot! On 24 November 2010 12:23, Slik wrote: > https://github.com/mootools/mootools-core/blob/master/Source/Element/Element.Event.js#L137 > > You can add unsupported event to the list > Element.NativeEvents.input = 1; > it will work if browser support this event > > On Wed, Nov 24, 2010 a

Re: [Moo] Where to find supported event names?

2010-11-24 Thread Slik
https://github.com/mootools/mootools-core/blob/master/Source/Element/Element.Event.js#L137 You can add unsupported event to the list Element.NativeEvents.input = 1; it will work if browser support this event On Wed, Nov 24, 2010 at 11:41 AM, Maxim Lacrima wrote: > Hi! > > I might be missing some

[Moo] Where to find supported event names?

2010-11-24 Thread Maxim Lacrima
Hi! I might be missing something obvious, but where can I find a list of supported event names, which I can specify in addEvent method? For example, I want to use oninput event on my text box, but it seems is not supported... Thanks in advance! -- with regards, Maxim