juggernaut

How to do live concurrent editing?

I am trying to build a rails app that's basically just a text-editor (with some additional features I can't find anywhere else - which is why I'm building it) One of the core features is live concurrent editing, or real-time collaborative editing (whatever you want to call it). So far I have set up the site with a plugin called Juggern...

Streaming, Daemons, Cronjobs, how do you use them? (in Ruby)

Hey there, I've finally had a second to look into streaming, daemons, and cron tasks and all the neat gems built around them! But I'm not clear on how/when to use these things. I have a few questions: 1) If I wanted to have a website that stayed constantly updated, realtime, with my Facebook friends' activity feeds, up-to-the-minute ...

How to test Rails Juggernaut in Internet Explorer?

I'm having problem with my Rails application. I use juggernaut for server push, which works very nice in Firefox, Opera and Chrome, but it doesn't work at all in IE. It should be compatible with IE6+. The problem is, that I can't find any debugging tools that can monitor network as Firebug does in Firefox. I tried IE debug bar, but ther...

How to achieve Comet using Flash

How can comet be used with Flash programs? What will be needed at server side for the same? Does this require any customised servers or will normal IIS or Apache do? Also is Juggernaut an example of flash based comet? how does it achieve comet? ...

juggernaut error

i am trying to experiment with Juggernaut plugin using chat_sandbox example. i get this error message Juggernaut: There has been an error connecting on 127.0.0.1:5001 I have no idea what it means. my juggernaut.yml is as follows :hosts: - :port: 5001 :host: 127.0.0.1 :public_host: 127.0.0.1 :public_port: 5001 # :s...

Problem with Juggernaut and transparent wmode in Adobe AIR

Hi, I am trying to use juggernaut in Adobe AIR application, however the big issue with this is that the juggernaut flash file should have wmode parameter set to 'transparent'. This is a bit of a problem for juggernaut because it seems that it doesn't work with that parameter included. The interesting part is that it is working under Lin...

Juggernaut environment config

I'm trying to figure out how to run Juggernaut server in production – assuming that I would be able to configure different ports for the server in the development and production environment, because I can't control the port in my production environment. And also assuming that the server would be to start in "detached" mode? Any advice m...

How to silent default juggernaut alert in firefox ?

Hi, I'm using the Juggernaut plugin in a rails application. http://github.com/maccman/juggernaut_plugin I can't find how to disable the alert() when running my app in Firefox. Any Ideas ? ...

Rails 3- fixing juggernaut involving template and JS generator

Hi, I'm using the original Juggernaut (not Juggernaut 2) with Rails 3. In the lib/juggernaut.rb, it breaks due to not being able to find @template. According to this other post, @template is not provided in controllers in Rails 3. How can I fix the following code, so that it can run smoothly with Rails 3? (Here's a link to the origin...