search for: aflax

Displaying 7 results from an estimated 7 matches for "aflax".

Did you mean: flax
2006 Jan 17
2
New RoR app: RTRails 0.1. Uses HTTP push and a window system
...s_2.jpg Here''s the project description: A RoR app using Ajax HTTP streaming to update browsers from the server. Includes: A ruby HTTPD for mediating the push connections, a JS Window system and two demo apps: Chat/IM with rich text editing (Dojo) MP3 player with shared playlist (using AFLAX). It is not tested well, so expect errors :( Also there seem to be some CSS bugs under Opera. I use scgi which seems to crash sometimes. You will have to create a new user, but no email validation is neccessary I will publish this under an LGPL license at the beginning of February. My homepag...
2006 Apr 26
2
armageddon vs. polling for shared resources, ajax, stale browsers
Hi, I am using AJAX so much that I never refresh the entire webpage for the admin side of a webapp. If two people are viewing the same data and one person makes a change then I want the change to show up in the other person''s page. I can have the client poll the server every two seconds to look for changes. I''m not really interested in Comet for keeping a connection open
2006 Jan 18
6
Ruby and Flash?
Hi there, I have an idea for a game I want to build, but it requires Flash as the presentation layer (I''d want to do the back end in Ruby running on Rails.) I have not been able to find any info on the integration of the two, and someone suggested asking here. Any info would be appreciated. Any links to examples would be great too. Thanks - please make sure you respond to me directly
2006 Jan 13
8
swf''s and rails
Hi I have started using rails eg: rform and typo, but mostly I do flash dev (I know you guys decided you did not want flash content and used the name for something else!). Anyway what experiments have people been doing, anyone been Ajaxing flash content within rails application or even just embedding in rails, I did not really find anything on using flash in Typo, not that you can''t
2006 May 15
2
Flash & Rails Data passing
Hi, I am new to Rails and we are creating a web 2.0 app where we are integrating Rails and Flash. I dont know how to pass the values from flash to Rails to save in database. We have integrated the above specified with PHP and Rails. How to get the data from database and pass on the Flash thru Rails. Wht i exactly need is, We have 3 list box where when i select the first list box i need to
2006 Feb 04
5
file_column + form_remote_tag
For my weekend project, I''m going to get form_remote_tag and file_column playing happily together. According to my research, no one has done this yet. If you happen to have tried this, and have some workable code, send me an email. I''d rather not duplicate the effort. Thanks! -- Kyle Maxwell Chief Technologist E Factor Media // FN Interactive kyle@efactormedia.com
2005 Dec 23
6
Save using Update
Hi, I want to update an existing row in table "items" where items.id == 10 I tried this: item = Item.new item.f1 = ... item.f2 = ... ... item.id = 10 item.save I got an error Duplicate entry ... for key 10 : INSERT INTO items ... How do I make item.save to use UPDATE instead of INSERT? -- Posted via http://www.ruby-forum.com/.