Hi All, I wonder if you could help me, I have a project for a web site which will allow users to log in, complete a questionnaire and then submit it. It will have a MySQL DB to store user details and data etc.. all standard stuff. However I would like the following action to happen on submit. 1.) A file to be produced that will contain the data in table format that can be opened in Excel 2.) Bar chart type Graphs with a median, average, mode etc to be produced from the answers 3.) A PDF file to be made from the Graph page 4.) All this to be sent via email to an specific email address bases on the logon 5.) This should be done back end, all the user does is complete the questionnaire and submit, thats it they are done I''m proficient in Java, but have only very recently decided to get into Ruby. I have a test server on my local pc Xampp (MySQL, Apache, PHP), Ruby etc all tested and working. Eclipse with the Aptana Ruby on Rails plug in Thanks in advance Furnak --~--~---------~--~----~------------~-------~--~----~ 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 May 19, 12:05 am, FurrNak <RohanSherr...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi All, > > I wonder if you could help me, I have a project for a web site which > will allow users to log in, complete a questionnaire and then submit > it. > > It will have a MySQL DB to store user details and data etc.. all > standard stuff. However I would like the following action to happen on > submit. > > 1.) A file to be produced that will contain the data in table format > that can be opened in Excel > 2.) Bar chart type Graphs with a median, average, mode etc to be > produced from the answers > 3.) A PDF file to be made from the Graph page > 4.) All this to be sent via email to an specific email address bases > on the logon > 5.) This should be done back end, all the user does is complete the > questionnaire and submit, thats it they are done > > I''m proficient in Java, but have only very recently decided to get > into Ruby. > I have a test server on my local pc Xampp (MySQL, Apache, PHP), Ruby > etc all tested and working. > Eclipse with the Aptana Ruby on Rails plug in > > Thanks in advance > FurnakYou should check out Ruport - http://rubyreports.org/. --~--~---------~--~----~------------~-------~--~----~ 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On May 18, 6:05 pm, FurrNak <RohanSherr...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi All, > > I wonder if you could help me, I have a project for a web site which > will allow users to log in, complete a questionnaire and then submit > it. > > It will have a MySQL DB to store user details and data etc.. all > standard stuff. However I would like the following action to happen on > submit. > > 1.) A file to be produced that will contain the data in table format > that can be opened in ExcelCreating a simple CSV or tab delimited file is easy.> 2.) Bar chart type Graphs with a median, average, mode etc to be > produced from the answersThere are several graphing libs available. Gruff being one of them.> 3.) A PDF file to be made from the Graph pageYup. There are PDF plugins.> 4.) All this to be sent via email to an specific email address bases > on the logonActionMailer> 5.) This should be done back end, all the user does is complete the > questionnaire and submit, thats it they are doneSure. If you need to, you can use backgroundrb or a Ruby daemon library. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Cheers mate, How long does it take to transfer from Java to Ruby would you say, from test alots the same but others are substantially different. On May 19, 3:15 pm, Clever Neologism <gest...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On May 18, 6:05 pm, FurrNak <RohanSherr...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Hi All, > > > I wonder if you could help me, I have a project for a web site which > > will allow users to log in, complete a questionnaire and then submit > > it. > > > It will have a MySQL DB to store user details and data etc.. all > > standard stuff. However I would like the following action to happen on > > submit. > > > 1.) A file to be produced that will contain the data in table format > > that can be opened in Excel > > Creating a simple CSV or tab delimited file is easy. > > > 2.) Bar chart type Graphs with a median, average, mode etc to be > > produced from the answers > > There are several graphing libs available. Gruff being one of them. > > > 3.) A PDF file to be made from the Graph page > > Yup. There are PDF plugins. > > > 4.) All this to be sent via email to an specific email address bases > > on the logon > > ActionMailer > > > 5.) This should be done back end, all the user does is complete the > > questionnaire and submit, thats it they are done > > Sure. If you need to, you can use backgroundrb or a Ruby daemon > library.--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---