similar to: extranormal.com - social networking on rails

Displaying 20 results from an estimated 3000 matches similar to: "extranormal.com - social networking on rails"

2005 Aug 24
2
Developers Wanted
Hi, I recently won the Railsday contest and the response has been overwhelming. I''m currently looking for: 1) Rails programmers with at least A FEW COMPLETE Rails applications under their belt 2) Front-end XHTML/CSS developers who are comfortable working with Rails and all the Ajaxy goodness to help me finish up several of my current projects and stick around for the next
2006 Aug 04
2
Newbie Question: fom_tag_remote return HTML
Hi Everyone, I am still only 1 week old on Rails and I am trying to implement an AJAXy "Add comment" sheet. On the post for a new comment, I want to use form_tag_remote. I would like to use a partial that I want to render for the newly posted comment once the Submit happens. What is the syntax to say, render a partial once the submit happens? Thanks, Vinod
2006 Feb 02
2
Installation behind a proxy
Hi all, I was a client site today on another project and we started talking about RoR. I wanted to show it in action, so I downloaded the one-click Ruby installer for Windows and then tried to do "gem install Rails -include-dependencies". After a time-out period I received the following error: ERROR: While executing gem.(Gem::RemoteSourceException) Error fetching remote gem
2009 Feb 19
1
Switching to ActiveRecord Session Store
I''m having a problem switching from cookie sessions (the default) to active record sessions. I''ve created the sessions table via the rake task, uncommented the line config.action_controller.session_store = :active_record_store in my environment.rb file, cleared out my browsers cookies, restarted the server (natch), but still the it''s using cookie_store instead of
2013 Jul 30
1
Bug #866
It's great to see this fixed. It's too bad that: a) I didn't have the sense of humor in 2004 to propose KnownUnknowns, and even UnknownUnknowns (a boolean, natch); b) you used a different parameter name than SunSSH (which uses IgnoreIfUnknown). It may not be too late to do something about either of those... I think the Oracle folks will have no problem adding IgnoreUnknown as an
2006 Apr 04
6
check_box_tag is limited?
Hello all. Am I going totally nuts here and just want to check (Natch!) something. A normal check_box has two value posssibilities. One for checked and one for unchecked, the value gets submitted with a form. The check_box_tag on the other hand, has a checked_value (Called just ''value'') and for the unchecked value...nothing, zip, nada. This means that if you submit a form with
2009 Nov 04
0
Social Networking Event * Berlin Nov 12
Hello, Several folks working with Kamailio, SIP Router, SER, OpenIMSCore, SEMS and Asterisk are in Berlin next week, so we think of having a dinner (or beer) meeting Thursday, 19:00, Nov 12, 2009. If happens that you are around and want to join, please send me an email to make sure you get a seat. As usual for this kind of event, free participation with everyone paying for
2006 Feb 09
2
Strategies for updating multiple parts of the page with AJAX
Hi all, I have a layout that''s evolving, but it looks like there will be several divs. I''m trying to keep everything AJAX-y and avoid full page reloads. My problem is, if I have the login box in a div, I''m going to want two other divs to effectively "refresh" themselves to get data from the server now that there is a user logged in. I''m trying to
2006 Feb 24
1
Help a n00b?
So I''m trying to do that hot new thing with AJAXy forms: http://idiet.toasterwaffles.com/foods/list Here''s the relevant code in list.rhtml (for the form portion) <tbody> <%= render_collection_of_partials "list_stripes", @foods %> </tbody> <tfoot> <tr id="addFood"><%= form_remote_tag( :html =>
2008 Apr 12
2
Sequence of multiple background process submissions
I have a question on how multiple b/g processes that are kicked off get handled in terms of sequence/schedule. On my site, a user enters an RSS feed to be processed and since this takes about 5-10 secs, I pass the process off to a background job and meanwhile do some Ajaxy spinners and tap-dancing until the job completes and then redirect_to the appropriate page. This works great. I also need to
2006 May 29
3
IFRAME based RJS - responds_to_parent
** File uploads with AJAX mojo ** Respond with RJS to your parent window with a form action targeted to a hidden IFRAME. Handles all the painful situations like scoping your JavaScript to your parent window generating the script block for execution and clearing the IFRAME after execution so the back button doesn''t re-execute the action. `plugin install
2008 Jan 10
0
BUG? has_many :through makes funny queries
So I have this structure. class Gallery < ActiveRecord::Base belongs_to :owner, :polymorphic => true has_many :folders, :order => ''slug'', :dependent => :destroy class Folder < ActiveRecord::Base has_many :photos, :dependent => :destroy, :conditions => "parent_id IS NULL" belongs_to :gallery class User < ActiveRecord::Base has_one
2004 Jun 22
3
add route under windows
Hello ! I'm setting up workstations to acces a lan behind a tinc host (server) in parenthesis, their vpn ip address workstations on the internet running tinc 1.2.3.4 (10.0.0.2) -> internet -> tinc host 4.3.2.1 (10.0.0.1) -> lan 192.168.1.0/24 in linux, no problem : root@natch> cat tinc-up #!/bin/sh ifconfig $INTERFACE 10.0.0.2 netmask 255.255.255.0 route add -net
2006 Jun 08
5
update only the join table in a HABTM - how?
I have a photographers app that requires giving access to galleries for users. in one part, I want to be able to define gallery access for a user seperate from updating any of the user info. I have this function: def edit_access @user = User.find(params[:id]) @user.galleries = Gallery.find(params[:gallery_ids]) if params[:gallery_ids] if @user.update_attributes(params[:user])
2006 Jul 30
0
form_remote_tag and rendering partials with <script> tags
Has anyone successfully used a form remote file upload either by using the respond_to_parent plugin or kylemaxwell''s form_remote_tag plugin to render a partial or code with <script> tags in it. This would be very useful for RoR''ers to create new ajaxy elements. If you can, can you post a sample code if you got it working. -- Posted via http://www.ruby-forum.com/.
2006 Mar 03
0
re: rjs update_page problems
my apologies for my previous butchery of the english language... i have a list of, for example, meal_names. Basically, I can submit a name and the name I add shows up in the list.I had this working when i created an actual add.rjs template for it. So, feeling good about my self, I attempted to move it all to the controller and use some update_page goodness. Now the ajaxy magic doesn''t
2006 Mar 21
0
Job - San Francisco
Tom (below) is looking for 1-2 programmers in SF that know rails or have a strong background in web & OO development and want to learn. ---------- Forwarded message ---------- "thomaspaynejr@yahoo.com" has forwarded you this craigslist.org posting. Please see below for more information. ________________________________ Do you like wine? C''mon, of course you do! We are
2006 May 11
4
modelling data to specify user access
Hello, this is my second Rails app, and the first one I did had simple data mapping. This time I am building a site for a photographer, and they want to upload photos, and create galleries that only certain clients can log in and have access to. There will be multiple galleries, and the access to them will vary depending on how the admin assigns it to each client. There is also a porftolio
2018 Jan 19
1
Leaflet maps. Nudging co-incident markers
I have a dataset showing points, with a category for each point and its location. I simply want to display my points, in a way that users can toggle the points on and off by category. Where I have two objects in the same category I'd like to display them nudged to appear as two distinct, but very close points. I have made reproduceable example (the places are not real), which is loosely
2006 May 05
0
Small design problem
Hi, I''ve got a page with galleries. Everything works quite ok. But now i need to create a special gallery that will be used only to randomly display images on the home page. The main difference between this and the other galleries will be that it won''t have description and title like the others and its images won''t have their thumbnail versions. Admin