Does anyone know if it is possible to load text from file into a text field, and using ajax to upload the field so that when the file has changed, the field will be updated automatically? Thanks. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On 2/3/07, Wai Tsang <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > Does anyone know if it is possible to load text from file into a text > field, and using ajax to upload the field so that when the file has > changed, the field will be updated automatically?The first bit is easy. "@text = File.read(filename)" in the controller, and use it somewhere in your view to show it. The second bit can be done in a couple of ways. The easier one is to have the client poll the server for changes, and send the new text when it has. Take a look at periodically_call_remote with the :update option. If your file is large, you''ll want to have the client send the timestamp of the most recent version of the file it has received and check it to avoid sending the whole file each time. The harder way is to push the data out the client periodically. This is a well-known problem without a straightforward solution AFAIK. There''s a technique dubbed Comet, which is Flash-based. Or you could try keeping the HTTP connection open somehow. I think this has been discussed here recently; you could try searching the archives if this interests you. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
George Ogata wrote:> The first bit is easy. "@text = File.read(filename)" in the > controller, and use it somewhere in your view to show it. > > The second bit can be done in a couple of ways. > > The easier one is to have the client poll the server for changes, and > send the new text when it has. Take a look at > periodically_call_remote with the :update option. If your file is > large, you''ll want to have the client send the timestamp of the most > recent version of the file it has received and check it to avoid > sending the whole file each time. > > The harder way is to push the data out the client periodically. This > is a well-known problem without a straightforward solution AFAIK. > There''s a technique dubbed Comet, which is Flash-based. Or you could > try keeping the HTTP connection open somehow. I think this has been > discussed here recently; you could try searching the archives if this > interests you.Thanks a lot. Polling the server for changes and send the entire new text isn''t very efficient if the file is large. Can ruby read from a fifo pipe? And is it possible to check for the pipe periodically for data? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
njmacinnes-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
2007-Feb-04 01:48 UTC
Re: Load file into text field?
Have a look here: http://juggernaut.rubyforge.org/ I''ve only just seen it myself, so not sure if it''s what you want. I''ll let you decide! -Nathan On 04/02/07, Wai Tsang <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > > George Ogata wrote: > > The first bit is easy. "@text = File.read(filename)" in the > > controller, and use it somewhere in your view to show it. > > > > The second bit can be done in a couple of ways. > > > > The easier one is to have the client poll the server for changes, and > > send the new text when it has. Take a look at > > periodically_call_remote with the :update option. If your file is > > large, you''ll want to have the client send the timestamp of the most > > recent version of the file it has received and check it to avoid > > sending the whole file each time. > > > > The harder way is to push the data out the client periodically. This > > is a well-known problem without a straightforward solution AFAIK. > > There''s a technique dubbed Comet, which is Flash-based. Or you could > > try keeping the HTTP connection open somehow. I think this has been > > discussed here recently; you could try searching the archives if this > > interests you. > > Thanks a lot. Polling the server for changes and send the entire new > text isn''t very efficient if the file is large. Can ruby read from a > fifo pipe? And is it possible to check for the pipe periodically for > data? > > -- > Posted via http://www.ruby-forum.com/. > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
unknown wrote:> Have a look here: > > http://juggernaut.rubyforge.org/ > > I''ve only just seen it myself, so not sure if it''s what you want. I''ll > let > you decide! > > -NathanIt seems like doing File.read("log.pipe") would freeze the application>_<Juggernaut looks interesting, but isn''t it for creating socket connections? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On 2/4/07, Wai Tsang <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > Thanks a lot. Polling the server for changes and send the entire new > text isn''t very efficient if the file is large. Can ruby read from a > fifo pipe? And is it possible to check for the pipe periodically for > data?That would not be very efficient, no. If the file is only being appended to, you could send the last file size instead, and only send the extra bytes. In fact, if you''re after a "tail -f" sort of functionality, there was a thread on this recently: http://rubyurl.com/9n4 . Ruby can certainly read from fifos -- check the IO docs. If you''re going to poll the server, I think you''d have an added complication in that each AJAX update request handler needs to access the same fifo somehow. This is quite a complicated road to be going down though IMHO. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---