Search the web
Sign In
New User? Sign Up
puneruby
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 916 - 945 of 1626   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
916
Hi All, I have a small query about Ruby. Can we develop UI/Web App in Ruby that can render Indian Language Characters properly (I mean I do not have to encode ...
Atul Kulkarni
littleman_atul
Offline Send Email
Apr 2, 2007
3:30 am
917
I think these might be of some help http://manuals.rubyonrails.com/read/chapter/105#page298 http://www.iro.umontreal.ca/translation/registry.cgi?team=hi ...
Jay Mittal
den1jay
Offline Send Email
Apr 2, 2007
11:00 am
918
I don't know Ruby either, but there is one site http://shunya.in that has done it and you may ask it's author. Debashish ... that can ... to encode ... past...
debuchakrabarty
Offline Send Email
Apr 2, 2007
11:00 am
919
Hi All, Any idea about how we can add voice features in an RoR based web app? Something like a voice chat feature embedded in web app? Regards, Sarang. ...
Sarang Anajwala
saranganajwala
Offline Send Email
Apr 3, 2007
12:29 am
920
you can use jabber api with ruby. check out http://home.gna.org/xmpp4r/ ... From: Sarang Anajwala <saranganajwala@...> To: puneruby@yahoogroups.com Cc:...
Jay Mittal
den1jay
Offline Send Email
Apr 3, 2007
5:53 am
921
Hi Atul, Presently we are developing a portal in rails which uses Marathi as well english language, we have manipulated Marathi font 'Kiran' using CSS, sachin ...
sachin j
sachinmj3
Offline Send Email
Apr 4, 2007
3:46 pm
922
Just curious. how have you manipulated a font using CSS ? ... -- ~ ROhan @http://rohan-kini.livejournal.com [Non-text portions of this message have been...
Rohan Kini
rohan_kini
Online Now Send Email
Apr 5, 2007
1:38 am
923
We are using EOT file from which, css reads the font, the css class having font-face: kiran; is assigned to the Marathi fields, in the view; Sachin ... From:...
sachin j
sachinmj3
Offline Send Email
Apr 6, 2007
1:03 am
924
Hello all, Just a friendly reminder to keep checking our PuneRuby blog for the latest in Ruby and Rails - http://www.puneruby.com/blog/ Also, you learn Ruby...
puneruby@yahoogroups....
Send Email
Apr 8, 2007
11:01 pm
925
Hi All, I want to grab the data entered on my form while navigating to another view. I am looking at following: 1> Multiple submit_tag buttons: but I do not...
Aditya Apte
adityaapte2002
Offline Send Email
Apr 12, 2007
12:19 am
926
use something like this <%= link_to_remote(image_tag("",:border => 0, :width => "158",:height => "23"), :update => "", :url => {:controller => "", :action =>...
aditya nalla
aditya_nalla
Offline Send Email
Apr 12, 2007
3:37 am
927
Is there a way I can grab my form data using javascript (onclick) combined with link_to For example: link_to "link_name", {:action => "myAction"}, :onclick =>...
Aditya Apte
adityaapte2002
Offline Send Email
Apr 13, 2007
1:34 am
928
Thanks Aditya for the suggesition. I want to be able to refresh my entire page or be able to go to another page. But with submit_to_remote or link_to_remote I...
Aditya Apte
adityaapte2002
Offline Send Email
Apr 13, 2007
1:36 am
929
Hi there.. this is ujjwal.m doing MBA(Systems) in pune n learning ruby. i wud need help of all u guys... take care u all.. Rohan Kini <rohan.kini@...>...
ujjwal k
urkhairnar
Offline Send Email
Apr 13, 2007
1:37 am
930
Why are you not able to do so? Paste your code sample. It will work without a flaw afaik....
hemant
technix88
Offline Send Email
Apr 17, 2007
6:49 am
931
Hi Guys, Thanks for your time in looking at my problem. Please see the sample calls below. I want to pass some parameters to "move_item_up" method in the...
Aditya Apte
adityaapte2002
Offline Send Email
Apr 18, 2007
2:29 am
932
Ok take out, :with crap and use :submit option with link_to_remote like this: <%= link_to_remote "Submit fake form", ... Where "fakeForm" is the ID of your...
hemant
technix88
Offline Send Email
Apr 18, 2007
5:01 pm
933
Hemant, I have a "redirect_to" call in my controller, which is not going thru when I use link_to_remote. Any ideas on what I am doing wrong? Thanks, Aditya ...
adityaapte2002
Offline Send Email
Apr 19, 2007
12:08 am
934
Hi All: "redirect_to" does not work during AJAX request. But here is the workaround: Instead of using: redirect_to(:controller => 'dataset', :action =>...
adityaapte2002
Offline Send Email
Apr 19, 2007
12:11 am
935
Hi All, Anyone knowing abt How to create Data Model from Database Backup (Script). Thanking you Regards, Synerzip Softech (India) Pvt Ltd, Pune. ... Check out...
Sukhadev Patil
patilsukhdev
Offline Send Email
Apr 19, 2007
1:30 am
936
I have been a fan of 37signals, their babies- Rails, basecamp, writeboard are just amazing apps. But I have a true story to share today, I am upset about a...
pabhishek22
Offline Send Email
Apr 20, 2007
2:12 pm
937
Hi All, Using ruby I am reading from a textfile which has following content : Rolename=hm1 password=hm2 userrole=hm3 ........................ ...
manish goyal
er_manishg
Offline Send Email
Apr 20, 2007
2:13 pm
938
You just need to chomp line before splitting it and you should be good to go. a = line.chomp.split("=") --Bill ... From: manish goyal <er_manishg@...> ...
Bill Froelich
wrfroelich
Offline Send Email
Apr 21, 2007
12:13 am
939
... irb(main):001:0> a,b = "12\n", "12" => ["12\n", "12"] irb(main):002:0> a == b => false irb(main):003:0> a.chomp == b => true Regards, Shantanoo -- Once you...
Shantanoo Mahajan
shantanu.mah...
Offline Send Email
Apr 21, 2007
12:14 am
940
Hello all, Just a friendly reminder to keep checking our PuneRuby blog for the latest in Ruby and Rails - http://www.puneruby.com/blog/ Also, you learn Ruby...
puneruby@yahoogroups....
Send Email
Apr 22, 2007
7:29 pm
941
Sorry, I missed this. ... If the text you have is UTF-8 encoded unicode, it should work with any browser/Os that has got support for and installed Unicode...
Abhijit Gadgil
gabhijit@...
Send Email
Apr 23, 2007
1:23 am
942
Thanks Bill for solving the problem. Regards, Manish Bill Froelich <wrfroelich@...> wrote: You just need to chomp line before splitting it and you should...
manish goyal
er_manishg
Offline Send Email
Apr 24, 2007
2:14 am
943
Did you try string.chomp!...
hemant
technix88
Offline Send Email
Apr 24, 2007
2:14 am
944
Thanks Shantanoo for solving the problem . Thanks once again ! Shantanoo Mahajan <shantanoo@...> wrote: ... irb(main):001:0> a,b = "12\n", "12" =>...
manish goyal
er_manishg
Offline Send Email
Apr 24, 2007
2:14 am
945
Hi guys, I have a user registration page. In that page there are 5 fields. I have to save user id and password in "login" table and other 3 input in...
tuhin_cse99
Offline Send Email
Apr 24, 2007
2:15 am
Messages 916 - 945 of 1626   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help