[Rails] Christian Bautista wants to chat

2012-02-22 Thread Christian Bautista
--- Christian Bautista wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-76c5345c0a-1637afbf94-MzmCpk3X65kjvWIHLc3j7n

[Rails] Re: Log-in Logout application

2012-02-15 Thread Christian Bautista
Yes, maybe your session is working fine.. But you need to add more.. example.. if your session is nil? or blank? render something. or redirect to a page you want to be seen. On 15 Peb, 15:47, Anurag Sachan wrote: > I have created a application of log-in and logout using session. but > when i

[Rails] Re: SMTP problem.

2012-02-15 Thread Christian Bautista
This is what I used.. 100% working.. @full_message =

[Rails] Kindly Post here the url of your best ruby on rails references. PDF, or even download links

2012-01-09 Thread Christian Bautista
What are your best references of ruby on rails.. Thanks. -- 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@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-t

Re: [Rails] Re: How to send a ASCII escape sequence to a Dot Matrix Printer

2012-01-09 Thread Christian Bautista
Thanks for all your responds.. We finally did it.. we used jzebra On Mon, Jan 9, 2012 at 10:41 PM, Greg Akins wrote: > On Mon, Jan 9, 2012 at 4:01 AM, Matt Jones wrote: > > >> > >> <%=link_to_function("Print this Page", "javascript:print()") %> > > > > I'm not sure I understand the point of se

Re: [Rails] Re: Ruby on Rails equivalent code for mysql

2012-01-09 Thread Christian Bautista
you want to create a database in ruby on rails.. You must first know that you dont need to create database anymore. just create tables and by default the rails will place your table in a developtment.yml I think. well this is the code on how to generate a table you type this in your cmd inside th

Re: [Rails] How to Convert Html Entities to Ascii Chararcters

2012-01-08 Thread Christian Bautista
Thank you.. I just found the answer. thanks :) On Mon, Jan 9, 2012 at 11:55 AM, Charles A. Lopez wrote: > Which is greater, the number of html entities or the number of Ascii > Codes? > > > > On 8 January 2012 22:50, Christian Bautista < > christianbautista.i...@gmail.com

Re: [Rails] How to Convert Html Entities to Ascii Chararcters

2012-01-08 Thread Christian Bautista
t 11:38 AM, Charles A. Lopez wrote: > please provide a few examples of input and output. > > 10q. > > On 8 January 2012 22:24, Christian Bautista < > christianbautista.i...@gmail.com> wrote: > >> Is there anyone who knows how to do this.. >> >> I am having a

[Rails] How to Convert Html Entities to Ascii Chararcters

2012-01-08 Thread Christian Bautista
Is there anyone who knows how to do this.. I am having a hard time finding it how. Any help is appreciated. thanks in advance -- 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@googlegr

Re: [Rails] Save Array

2012-01-08 Thread Christian Bautista
Yes I think that is possible.. after saving the array in the database trying playing arround with this codes.. .enum .sym Well, I have a doubt if that will work. But there is nothing to lose if you try it.. On Mon, Jan 9, 2012 at 10:17 AM, Dave Aronson < googlegroups2d...@davearonson.com> wrote

[Rails] Re: How to send a ASCII escape sequence to a Dot Matrix Printer

2012-01-08 Thread Christian Bautista
, Matt Jones wrote: > On Jan 5, 10:04 pm, Christian Bautista > > > > > > > > > > wrote: > > Help RoR Masters, > > > I need to print a report that has a escape sequence but every time I > > try The Dot matrix printer also prints the escape seq

[Rails] Re: Duplicate forms after click

2012-01-06 Thread Christian Bautista
pretty sure that its not ruby on rails problem. its maybe because of your javascript or maybe try to read your codes again On Jan 6, 3:00 pm, Brynjolfur Thorvardsson wrote: > Hi, this sounds like a javascript problem. Javascript is executed > asynchroniously on your browser so clicking fast mean

[Rails] Re: lock the sign in account when login failed more than 5 times

2012-01-06 Thread Christian Bautista
If you are just trying to restrict or prevent login after five times of failure its really no need to create a database for it. but use cookies and put some values in it and set the time when it will expire. after that a if statement that will redirect the user into other page or just use a disable

[Rails] How to send a ASCII escape sequence to a Dot Matrix Printer

2012-01-06 Thread Christian Bautista
Help RoR Masters, I need to print a report that has a escape sequence but every time I try The Dot matrix printer also prints the escape sequence. example *escape sequence here* + '!' +*escape sequence here* Hello World + '!' + Again The hard copy output should be like this Hello World! Again