/ #blog 

Textmate Footnotes and RJS render calls don't mix

Maybe this saves you a couple of hours of frustration: def syslog_progress if request.xhr? worker = MiddleMan.get_worker(session[:host_info]) progress_percent = worker.progress render :update do |page| page.call('progressPercent', 'progressbar', progress_percent) if progress_percent >= 100 page.assign 'stop_polling', true end end else redirect_to :action => 'list' end end The RJS calls didn’t execute at all and the excessive use of “alert()” to debug neither. Finally, looking at the response in FireBug I saw that the TextMate Footnote plugin was adding it’s links to the response, rendering the Javascript invalid. ...

Jens-Christian Fischer
/ #blog 

signed the Agile Manifesto

As of today: The Manifesto for Agile Software Development We are uncovering better ways of developing software by doing it and helping others do it. Through this work we have come to value: Individuals and interactions over processes and tools Working software over comprehensive documentation Customer collaboration over contract negotiation Responding to change over following a plan signed - Jens-Christian Fischer for InVisible GmbH Technorati Tags: agile, manifesto, work

Jens-Christian Fischer