[Rails-spinoffs] Re: script.aculo.us slider - this and event handler - depending sliders

2008-07-07 Thread Christophe Porteneuve
Hey Sebastian, We've started transitioning to a new, better-named, spam-policed group for Prototype and script.aculo.us: http://groups.google.com/group/prototype-scriptaculous/ [EMAIL PROTECTED] Could you please post your question there instead? Thanks! -- Christophe Porteneuve aka

[Rails-spinoffs] Re: Time to start the new group?

2008-07-05 Thread Christophe Porteneuve
Aye aye, sir! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs@googlegroups.com To unsubscribe from this group, send email to

[Rails-spinoffs] Re: The issue about Effect.Scale for padding style.

2008-06-20 Thread Christophe Porteneuve
with no padding whatsoever, and scale that surround element. You'll notice Slide effects require that anyway… -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails

[Rails-spinoffs] Re: Prototype FAQ

2008-06-17 Thread Christophe Porteneuve
CAN I GET THIRD-PARTY CODE? - Scripteka - … ” -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email

[Rails-spinoffs] Re: Prototype FAQ

2008-06-17 Thread Christophe Porteneuve
to a general FAQ on prototypejs.org? In that case, I'd be leaning towards the dual-FAQ approach you mentioned, with a general-purpose, fairly static one @ prototypejs.org and a common-questions FAQ moderated on the GGroup. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: Shall we create a new Prototype Scriptaculous Users group?

2008-06-16 Thread Christophe Porteneuve
a gazillion times questions… e) The major wanko issue I see with that is that I'm going to lose my all-time message record [1] ;-) Ah well, couldn't last forever! I'll try and grab Core in CF to ask about this. [1] http://groups.google.com/group/rubyonrails-spinoffs/about -- Christophe Porteneuve aka

[Rails-spinoffs] Re: I have a problem with document.observe

2008-06-09 Thread Christophe Porteneuve
Quite obviously, you seem to be loading your own script *before* loading Prototype and script.aculo.us, so whatever features we provide are not available yet when your script gets loaded. Try putting your scripts.js after the other script elements. -- Christophe Porteneuve aka TDD [EMAIL

[Rails-spinoffs] Re: Layout of Javascript code - how do you guys do it?

2008-06-05 Thread Christophe Porteneuve
usually don't bother, as dom:loaded works alright for me, and I prefer keeping my scripts out of my HTML. But I can see the need would arise sometime. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you

[Rails-spinoffs] Re: Layout of Javascript code - how do you guys do it?

2008-06-04 Thread Christophe Porteneuve
book ;-) http://books.pragprog.com/titles/cppsu/ 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send

[Rails-spinoffs] Re: Timescale for next Prototype release?

2008-06-03 Thread Christophe Porteneuve
… -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs@googlegroups.com

[Rails-spinoffs] Re: Timescale for next Prototype release?

2008-06-03 Thread Christophe Porteneuve
, and other forum posts imply that the problems I'm facing are a known issue. Ah, indeed. To prevent double-triggering and stuff. Great - hopefully it'll be available before I need to ship this code... Probably :-) -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: Scriptaculous mouseover questions

2008-05-17 Thread Christophe Porteneuve
Ninjoah a écrit : Does anyone know if there is a way to tell it to ignore this effect if i am quickly tabbing between the 2nd and 3rd links? Delay the 'snap back up' operation, and cancel it when you mouseover another link. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: what's the transport in Ajax Request example?

2008-05-17 Thread Christophe Porteneuve
Before 1.6, it was the XMLHttpRequest object. Since 1.6, it's a Ajax.Response object. Check the docs on A.R callbacks (that didn't update to Ajax.Response, though, and still state it's a XHR object): http://prototypejs.org/api/ajax/options -- Christophe Porteneuve aka TDD [EMAIL

[Rails-spinoffs] Re: what's the transport in Ajax Request example?

2008-05-17 Thread Christophe Porteneuve
. How your callback chose to name this argument is of no impact. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group

[Rails-spinoffs] Re: Scriptaculous mouseover questions

2008-05-17 Thread Christophe Porteneuve
= enteredItem; yourSnapDownCall(); -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs

[Rails-spinoffs] Re: scriptaculous background-image

2008-05-16 Thread Christophe Porteneuve
img.back.rechts { right: 0; } And then, the cross-fade would look something like this: var container = $('div1'); container.down('.back.links').fade(); container.down('.back.rechts').appear(); Or something along these lines… 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: How do I delay a call to a method?

2008-05-16 Thread Christophe Porteneuve
You should bind before delaying, Richard! -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email

[Rails-spinoffs] Re: [object Error] troubles. Hope this saves someone some hair-pulling.

2008-05-13 Thread Christophe Porteneuve
should indeed always declare your local variables as… local, thanks to var. Scope pollution can be a VERY nasty thing, for instance when function A loops over calls to function B which has a same-name-index loop in it ;-) -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: Effect.SlideDown() element.down() has no properties

2008-05-12 Thread Christophe Porteneuve
: SlideDown is not a constructor). -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs

[Rails-spinoffs] Re: Scriptaculous AutoCompleter.Local

2008-05-05 Thread Christophe Porteneuve
such a behavior, you'll have to pass a custom +selector+ option, which will have to re-implement any default match option you were passing. Check Scripty's code in Autocompleter.Local, and how its +setOptions+ method defines the default +selector+ option for clues. 'HTH -- Christophe Porteneuve

[Rails-spinoffs] Re: Effect on classname insted id?

2008-05-04 Thread Christophe Porteneuve
); }); Or if the effect has a builtin method for it (say, Fade): $$('.yourClassName').invoke('blah', options); -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails

[Rails-spinoffs] Re: Queuing up Sound Files

2008-04-28 Thread Christophe Porteneuve
files, you'd need to use, say, an effect queue of Effect.Event with an afterFinish, *and* a proper *duration* option (so the queued-up events after that use a proper start offset). -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You

[Rails-spinoffs] Re: Queuing up Sound Files

2008-04-28 Thread Christophe Porteneuve
}, { uri: 'blip.wav', duration: 3 }, { uri: 'blob.mp3', duration: 13 } ]; playSoundsInQueue(soundFiles); This will probably cause tiny blanks between files, depending on the browser's performance, but should work well enough. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: Queuing up Sound Files

2008-04-28 Thread Christophe Porteneuve
: function() { Sound.play(…); }); And if you want the sound to play BEFORE the rest of the queue goes on, just give your effect a proper duration option. I think that should cut it. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: Staff Manager tutorial from Prototype and script.aculo.us by Christophe Porteneuve

2008-04-08 Thread Christophe Porteneuve
on. Good luck, then! -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs

[Rails-spinoffs] Re: Changing the order of form elements before submitting with standard POST

2008-04-08 Thread Christophe Porteneuve
', 'blah'] If you don't want that, you'd need to remove explicit indices (leaving only mookie[] as a shared field name) and assume you always go from zero upwards… 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received

[Rails-spinoffs] Re: Staff Manager tutorial from Prototype and script.aculo.us by Christophe Porteneuve

2008-04-07 Thread Christophe Porteneuve
obviously some sneaky typo somewhere. 'HTH [1] http://media.pragprog.com/titles/cppsu/code/prototype/dom/people.html http://media.pragprog.com/titles/cppsu/code/prototype/dom/people.css http://media.pragprog.com/titles/cppsu/code/prototype/dom/people.js -- Christophe Porteneuve aka TDD [EMAIL

[Rails-spinoffs] Re: wiki.script.aculo.us is broken

2008-04-06 Thread Christophe Porteneuve
of it (which I prefer, too) in the code for my presentation last July at The Ajax Experience West: http://tddsworld.com/script.aculo.us-demos.zip Again, I'm sorry that you did not find what you wanted in the chapter, but what you're saying here is patently false… Cheers, -- Christophe

[Rails-spinoffs] Re: Object.extend

2008-04-03 Thread Christophe Porteneuve
easily monkeypatch the library with a *wrap* call. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email

[Rails-spinoffs] Re: Adding Fade to display: none and display: block;

2008-04-03 Thread Christophe Porteneuve
) { if (div.visible()) div.fade({ duration: 0.25 }); }); content_divs[id].appear({ duration: 0.25 }); 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails

[Rails-spinoffs] Re: Add key/value pairs to json object?

2008-03-29 Thread Christophe Porteneuve
push is for arrays, not vanilla object. Try something like this: var params = {}; … params[settings[ + counter + ]] = inputs[i].id + : + inputs[i].value; … 'should do the trick. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You

[Rails-spinoffs] Re: InPlaceCollectionEditor on a search form possible?

2008-03-24 Thread Christophe Porteneuve
Aren't you just trying to have a simple combo box instead of an IPCE here? I mean, can't your country field be just that: a regular field, instead of appearing otherwise? Then you wouldn't need IPE/IPCE at all. It sounds way overkill. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: IPE size

2008-03-23 Thread Christophe Porteneuve
… -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs@googlegroups.com

[Rails-spinoffs] Re: better way of doing this

2008-03-08 Thread Christophe Porteneuve
From the top of my head: count += $('table').childElements().select(this.isSelected.bind(this)).length; -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby

[Rails-spinoffs] Re: Element#up / down question

2008-03-07 Thread Christophe Porteneuve
('.vendorName') -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs@googlegroups.com

[Rails-spinoffs] Re: Template#evaluate and attributes that resolve to functions?

2008-03-05 Thread Christophe Porteneuve
Hey, Check out the following ticket: http://dev.rubyonrails.org/ticket/8166 You'll find the patch you need. Advanced, function-including evaluation was deemed too much for the core trunk, but it can be done (and more, like nesting) :-) -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: Whither SetOptions...?

2008-03-05 Thread Christophe Porteneuve
to find any documentation anywhere for the function OR its replacement in 1.6 It's embedded in the initialize function now (which doesn't do much else). I can't say overwriting that would be clean or safe… -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: Whither SetOptions...?

2008-03-05 Thread Christophe Porteneuve
Steve Upton a écrit : incidentally, I do have your book (Christophe) and I'm reading away... it's great. That's doesn't mean there isn't plenty of room left in my head for confusion... Glad you like it. Feel free to review it on Amazon when you're done (or before) :-) -- Christophe

[Rails-spinoffs] Re: Whither SetOptions...?

2008-03-05 Thread Christophe Porteneuve
1.5 Not too hard, with 1.6's inheritance mechanism… I'll give it a go tomorrow (or at least try to find time to). -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[Rails-spinoffs] Re: The Developers List

2008-02-16 Thread Christophe Porteneuve
Hey Sébastien, Sébastien Grosjean - ZenCocoon a écrit : Worst checking the basics again : Please tell me you meant: worth checking the basics against -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because

[Rails-spinoffs] Re: Effect.SlideDown should come from left to right

2008-02-15 Thread Christophe Porteneuve
believe. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs@googlegroups.com

[Rails-spinoffs] Re: Effect.SlideDown should come from left to right

2008-02-15 Thread Christophe Porteneuve
supported: it's just contributed, with no guarantee. In particular, it may not be compatible with the latest versions of Scripty anymore. But tweaking should be easy. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message

[Rails-spinoffs] Re: Topics for a quick presentation on Prototype

2008-02-12 Thread Christophe Porteneuve
. As for the class system, it really depends on what your team will use Prototype for. There are whole categories of users that will rarely use it. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed

[Rails-spinoffs] Re: Upgrading Prototype

2008-02-08 Thread Christophe Porteneuve
you'd go something like: myhash.set(propNameExpr, value); myhash.get(propNameExpr); Prototype 1.6 has a ton of new cool stuff too, but as far as backwards compatibility is concerned, that's the only real snag you should run into. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: using a simple scriptaculous effect

2008-02-07 Thread Christophe Porteneuve
Style your stats div inline with style=display: none; -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send

[Rails-spinoffs] Re: using a simple scriptaculous effect

2008-02-07 Thread Christophe Porteneuve
in to placeweird!. If you're using SlideDown, be sure to wrap your element's content inside an extra div. It's required, IIRC (it isn't for BlindDown, however). -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because

[Rails-spinoffs] Re: using a simple scriptaculous effect

2008-02-07 Thread Christophe Porteneuve
elduderino a écrit : Oh, by the wayreally great booki've only just started on the scriptaculous stuff but the Prototype section was excellent... :) Thanks! If you love it, feel free to review it on Amazon ;-) -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: Selector question

2008-02-06 Thread Christophe Porteneuve
comparisons, I'm also confident the custom filter will be way faster on one-shot uses or non-XPath contexts. 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[Rails-spinoffs] Re: Ajax.InPlaceEditor via PHP via prototype widows class = HELP :-)

2008-01-30 Thread Christophe Porteneuve
Your element has id=notes, not id=editNotes. Check your Firebug console (or your JavaScript console) for a JS error. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[Rails-spinoffs] Re: Prototype 1.6 documentation

2008-01-24 Thread Christophe Porteneuve
String#interpret). I just browsed through it and it's indeed alright. Perhaps you're browsing it through some monster cache, either local to your machine or at a proxy level? -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received

[Rails-spinoffs] Re: Prototype 1.6 documentation

2008-01-24 Thread Christophe Porteneuve
of bindAsEventListener, for instance), and even if it did, you wouldn't necessarily want to bind to the owner object. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails

[Rails-spinoffs] Re: IDE color scheme

2008-01-24 Thread Christophe Porteneuve
checkbox if any (in Eclipse, at least in Java mode, this provides way more syntax elements). -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group

[Rails-spinoffs] Re: JavaScript book recommendations

2008-01-21 Thread Christophe Porteneuve
to framework authors more than to framework users, for instance. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post

[Rails-spinoffs] Re: Can't change paramName with InPlaceCollectionEditor

2008-01-21 Thread Christophe Porteneuve
First question: can't you move to Proto 1.6 and Scripty 1.8.1? IPE was completely rewritten in 1.8. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby

[Rails-spinoffs] Re: Fire custom event on instance method call

2008-01-20 Thread Christophe Porteneuve
to document.fire, which will be accessible through the event's memo property. To listen for the event: document.observe('your:event', function(event) { ... }); 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because

[Rails-spinoffs] Re: Fire custom event on instance method call

2008-01-20 Thread Christophe Porteneuve
, it's essential to it. At any rate, hey, relax Michael! I'm not all that sure that this flame added pragmatic value for the OP… Best, -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed

[Rails-spinoffs] Re: Fire custom event on instance method call

2008-01-20 Thread Christophe Porteneuve
you'd care to build one up and put it in Scripteka? :-) I'm sure Tobie would love to discuss the innards and philosophy of it with you :-) -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you

[Rails-spinoffs] Re: More about IPE

2008-01-20 Thread Christophe Porteneuve
on my implementation. I suggest you check that you have the latest version and run the unit test page for IPE to verify everything passes. If it doesn't, I and Thomas are interested in learning more about it. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: format.js respond_to to a certain file

2008-01-19 Thread Christophe Porteneuve
you have a pure-Rails question, use rubyonrails-talk instead :-) -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group

[Rails-spinoffs] Re: IPE and editorId

2008-01-18 Thread Christophe Porteneuve
Garito a écrit : Thanks Christophe for the quick solution! I haven't fixed it yet, hold on your horses… But more pragmatically, how come an *extra* param throws your server code off? -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: IPE and editorId

2008-01-18 Thread Christophe Porteneuve
/optional_editorid_param.diff -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs

[Rails-spinoffs] Re: disable highlight for inPlaceEditor

2008-01-17 Thread Christophe Porteneuve
Just override the relevant callbacks in the options you pass the constructor with custom versions that use a shorter effect duration. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed

[Rails-spinoffs] Re: specifying function arguments when using Event.observe

2008-01-17 Thread Christophe Porteneuve
Hey, It was discussed *yesterday*, man. Check the archives :-) What you're looking for here, since you're interested in keeping the event argument first, is bindAsEventListener: http://prototypejs.org/api/function/bindAsEventListener -- Christophe Porteneuve aka TDD [EMAIL

[Rails-spinoffs] Re: InPlaceEditor and Canceling

2008-01-15 Thread Christophe Porteneuve
Steve Prior a écrit : a patch would be slightly easier if it were small - is there some more info available on what has really changed since 1.8.0? http://dev.rubyonrails.org/browser/spinoffs/scriptaculous/CHANGELOG -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: InPlaceEditor and Canceling

2008-01-15 Thread Christophe Porteneuve
. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs@googlegroups.com To unsubscribe

[Rails-spinoffs] Re: InPlaceEditor and Canceling

2008-01-15 Thread Christophe Porteneuve
email him about it through the site. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails

[Rails-spinoffs] Re: disable highlight for inPlaceEditor

2008-01-15 Thread Christophe Porteneuve
completion time, which you can disable with onComplete: false. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send

[Rails-spinoffs] Re: InPlaceEditor and Canceling

2008-01-14 Thread Christophe Porteneuve
website) and retest in sync… -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs

[Rails-spinoffs] Re: InPlaceEditor and Canceling

2008-01-14 Thread Christophe Porteneuve
in July) for a full detail of what changed. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email

[Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: Missing € (Euro-Sign)

2007-12-27 Thread Christophe Porteneuve
(which includes everything!). Character encoding issues always boil down to people not having a full-spectrum UTF-8 encoding in their app… which they should. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message

[Rails-spinoffs] Re: The Bungee Book ships!

2007-12-24 Thread Christophe Porteneuve
with both books), can you give me any idea what new ground the bungee book might cover? Just about everything, in more depth, and also much more up-to-date (as it covers the entirety of Proto 1.6 and Scripty 1.8). 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: stop autocompleter

2007-12-19 Thread Christophe Porteneuve
later on). 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs

[Rails-spinoffs] Re: stop autocompleter

2007-12-19 Thread Christophe Porteneuve
calling defineAutocompleter (e.g. specify element/completionZone IDs or extra options, just add the arguments to it. 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[Rails-spinoffs] Re: Form.serialize() Incorrectly Returning Empty String

2007-12-19 Thread Christophe Porteneuve
Fabio a écrit : The serialize method creates a string in the name=value format, so you must give the input a name: Incidentally, it just follows HTML spec on form serialization: unnamed fields are not to be sent server-side. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: loadTextURL

2007-12-14 Thread Christophe Porteneuve
of Ajax.InPlaceEditor (and perhaps Ajax.InPlaceCollectionEditor, if you use it too). However, I would recommend adjusting your server side so it does not b0rk just because the URI gets a query string… That's just not robust! 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: loadTextURL

2007-12-14 Thread Christophe Porteneuve
is happening in IE. I advise you to use Firebug's Ajax tracking ability to verify the alternative text is indeed requested, and look into the details of the response you get. Perhaps, for instance, your server-side script is unhappy with the new automatic editorId parameter being sent? -- Christophe

[Rails-spinoffs] Re: InPlaceCollectionEditor question

2007-12-14 Thread Christophe Porteneuve
Andy Koch a écrit : Is it possible to do the loadTextURL business without hitting the server? You would need to override the getText method instead: it is used by both IPE and IPCE to grab the default text for editing, and relies on innerHTML originally. -- Christophe Porteneuve aka TDD

[Rails-spinoffs] Re: InPlaceCollectionEditor question

2007-12-13 Thread Christophe Porteneuve
that will be sent to determine which one is calling you, and return just the corresponding current value as a response: that is what will be matched against the collection's values (i.e. IDs in your situation). 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: Spit of imagination

2007-12-07 Thread Christophe Porteneuve
the source code. He always strives toward uniqueness, doesn't he..? I don't think ProtoCore will ever submit to that :-) -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[Rails-spinoffs] Re: Scriptaculus wiki

2007-12-07 Thread Christophe Porteneuve
Antonio CS a écrit : I was talking about a pdf or chm that contained the entire reference to scriptaculus effects. (and all the rest that scriptaculus has to offer) Indeed, but the Bungee Book includes all of that in its second part. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: $$ and 1.4.0?

2007-12-05 Thread Christophe Porteneuve
the latest Prototype: it's just about having the proper JS file in your site tree, and I would assume you have FTP access to your tree, don't you? -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you

[Rails-spinoffs] Re: Keeping track of changes to Prototype since V1.6.0 release.

2007-11-26 Thread Christophe Porteneuve
, anything committed by Thomas, Sam, Tobie or Andrew). Not rock-solid, but works quite well :-) -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs

[Rails-spinoffs] Re: For IPE maintainers (perhaps Christophe?)

2007-11-21 Thread Christophe Porteneuve
Hey Garito, Garito a écrit : What do you think about? I tried addressing these questions in a post on the book's blog: http://www.thebungeebook.net/2007/11/22/the-inplaceeditor-hot-seat/ I hope this helps, -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: WAI-ARIA support in scriptaculous?

2007-11-19 Thread Christophe Porteneuve
implementing its tiny part of it. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails

[Rails-spinoffs] Re: InPlaceEditor error

2007-11-17 Thread Christophe Porteneuve
versions (this may required updating bits of your Prototype-based code, notably Hash-dependent parts), i.e. Scripty 1.8 final and Prototype 1.6 final, and try again. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message

[Rails-spinoffs] Re: InPlaceEditor error

2007-11-17 Thread Christophe Porteneuve
), and that you're using the proper Proto version (expectedly 1.6). 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group

[Rails-spinoffs] Re: Bizarre defaults for InPlaceEditor

2007-11-14 Thread Christophe Porteneuve
for the heads up, -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs

[Rails-spinoffs] Re: Pedantic observation regarding prototype.js Ajax.Request 'postBody' - minor bug?

2007-10-04 Thread Christophe Porteneuve
Geoff, Thanks for the heads up. Although this hits on what's pretty much an edge case, I encourage you to look up our patch submission guidelines and perhaps dedicate a moment to whipping up a tested patch for this? That would be lovely. Cheers, -- Christophe Porteneuve aka TDD [EMAIL

[Rails-spinoffs] Re: how to stop and resume an Effect.

2007-09-30 Thread Christophe Porteneuve
:-/ -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs@googlegroups.com To unsubscribe

[Rails-spinoffs] Re: Form.request not working as expected

2007-08-29 Thread Christophe Porteneuve
') (which I only can do if the form has an ID attribute). OTOH, your notation assumes your form has a name= attribute, which has been deprecated in XHTML, so you might as well get used to id=, which is the accepted naming mechanism... -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: How do you use $$() and bindAsEventListener together?

2007-08-25 Thread Christophe Porteneuve
the event object as first arg even with a simple bind. -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send

[Rails-spinoffs] Re: prototype vs jquery.

2007-08-22 Thread Christophe Porteneuve
a very, very good relationship with John Resig, who's doing a tremendous job on jQuery and JS thinking/patterns in general. All of us JS Lib players are always getting inspired by each other's latest cool ideas, and push this whole domain forward. It's OSS at its best :-) -- Christophe Porteneuve

[Rails-spinoffs] Re: img tags having strange effect during page.replace_html

2007-08-02 Thread Christophe Porteneuve
Hey, Why not using a simple Ajax.Updater over the element's container instead of going to all the trouble of your RJS which does nothing but a partial-based replace_html? That would be so much less roundabout... -- Christophe Porteneuve a.k.a. TDD [They] did not know it was impossible, so

[Rails-spinoffs] Re: odd prototype error

2007-08-02 Thread Christophe Porteneuve
string literals? 3) Why is there a ![CDATA[ block in a non -XHTML file? 4) Why are the quotes escaped outside a string literal? I can't see any illegal characters. Any guesses? I can't see a single thing that makes sense. Perhaps you could provide more code context? -- Christophe Porteneuve

[Rails-spinoffs] Re: preventing Prototype from extending HTMLElement.prototype

2007-08-02 Thread Christophe Porteneuve
, in Selector.handlers.unique. So all extensions, be they generic or tag-specific, are guaranteed. This applies in MSIE and Safari, and only causes delay in MSIE (if your $$ resultset is very large). 'HTH -- Christophe Porteneuve aka TDD [EMAIL PROTECTED

[Rails-spinoffs] Re: Using Effect.Move() while maintaining the elements DOM order

2007-07-31 Thread Christophe Porteneuve
touch your DOM document order, because they're CSS-based. What exactly are you trying to achieve? -- Christophe Porteneuve aka TDD [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails

[Rails-spinoffs] Re: deserialize function

2007-07-21 Thread Christophe Porteneuve
trunk features Form.Element.setValue, based on the new two-way F.E.Serializers. It's not a perfect fit for deserialization yet, as it's ID-oriented, not name-oriented, but it should help. -- Christophe Porteneuve a.k.a. TDD [They] did not know it was impossible, so they did it. --Mark Twain Email

[Rails-spinoffs] InPlace[Collection]Editor rewrite: it's in trunk!

2007-07-19 Thread Christophe Porteneuve
very well need to be ported over to the new release before you can use it confidently. As always: test like crazy! Cheers, -- Christophe Porteneuve a.k.a. TDD [They] did not know it was impossible, so they did it. --Mark Twain Email: [EMAIL PROTECTED

[Rails-spinoffs] Prototype and script.aculo.us, 2nd Beta, now with Scripty!

2007-07-19 Thread Christophe Porteneuve
, -- Christophe Porteneuve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Ruby on Rails: Spinoffs group. To post to this group, send email to rubyonrails-spinoffs@googlegroups.com To unsubscribe from this group, send

[Rails-spinoffs] Re: PeriodicalExecuter callback and this

2007-07-18 Thread Christophe Porteneuve
you can safely pass it around), and this new function essentially makes sure to call your original method on its proper instance. -- Christophe Porteneuve a.k.a. TDD [They] did not know it was impossible, so they did it. --Mark Twain Email: [EMAIL PROTECTED

  1   2   3   4   5   6   >