Displaying 20 results from an estimated 5000 matches similar to: "New line char in a text area field on DISPLAY"
2006 Jul 12
11
ruby rails performance
Hi-
We just finished our app and I tested for performance with httperf. Our 
setup is browser -> apache2.2-> mod_poxy balancer-> mongrel cluster -> 3 
mongrel servers.
I have noticed that the total request per second is is about 7.5. When I 
increase the no of mongrel to 5, it inches up to 8 req/s.
My question is how bad or good this number is? We are on a old dell 2400 
machine
2008 Jul 26
4
simple_format, (long) urls, and wrapping
I''m using simple_format to format and display posted content from
users. This content sometimes has urls in it.
The problem I''m having is that if the urls are long enough to wrap,
they do, but the url gets split with a <br> tag. Then, if the user
clicks on the link, only the first, non-wrapped part of the link gets
posted to the browser... and that''s an invalid
2006 Jun 30
1
running in production mode
I am running apache with mod_fastcgi on Linux - I would like to run my 
app in production mode, but I could not. Following is what I have in my 
httpd.conf. Can someone tell me why it does not recognize the env 
variable for production? The app always runs under development mode i.e 
ignores the RAILS_ENV directive.
thanks/ thila.
<IfModule mod_fastcgi.c>
  FastCgiIpcDir /tmp/fcgi_ipc/
 
2006 Jun 28
5
Production deployment
Gang-
We are getting ready to launch our ROR application; the last item 
remaining is the deployment platform. For testing, we had used Apache + 
MOD_FastCGI. I am not that impressed with it; sometimes it has strange 
effects. For example, when we start the application, for about 5 minutes 
or so, the app is very unstable and it gets better over time.
My questions is .. should I go with (1)
2006 Jan 18
1
Ruby and PDF creation...
Hi-
I need to create PDF docs on the fly with data from a database. I see 
couple of options floating around to achieve this in Ruby. Can anyone 
recommend the best way to do this? Also any helpful hints or sample 
programs will be appreciated.
Thanks
Thila
-- 
Posted via http://www.ruby-forum.com/.
2006 Jun 20
3
Saving an array of objects
How do I save an array of obects into the database?
For now I am doing
for a in array
   a.save
end.
I am sure there must be an easy way to do this.
-- 
Posted via http://www.ruby-forum.com/.
2006 Mar 30
2
How do I format text before saving it?
I tried to use a before_save and use simple_format, it returns and 
undefined method error.  Can I even use these methods within a model?  I 
tried to use auto_link and it failed too.  What am I doing wrong?
Furthermore, would it be recommended I format text before saving it to 
the database?  Advantages or disadvantages?
-- 
Posted via http://www.ruby-forum.com/.
2006 Jun 21
2
access to application.rb methods
Why can''t I access the utility methods defined in applicaion.rb from the 
model classes? If that does not work, where is the best place to put 
common utility methods that must be available to all the models.
thanks
-- 
Posted via http://www.ruby-forum.com/.
2006 Jan 08
6
J2EE equivalent
Gang-
1. Is there anything in Ruby that handles the .properites files similar 
to the J2EE application servers. Or do I need to define all of the 
properties as  constants?
2. Is there anyway I can load some of my classes (such as singletons) 
during the startup? I am looking for the startup classes that J2EE 
containers provide.
Thanks
-- 
Posted via http://www.ruby-forum.com/.
2008 Jan 22
4
newlines in text_area
Hi @ all
I would like to enter a text with a text_area into the database. It runs
excellent. But when I want to show the entered text in the show view,
all newlines  (paragraphs) are deleted and the text is only one block.
How can I save the returns (newlines) too?
Thanks for helping!!
-- 
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received
2006 Jan 18
3
search with like operation from a table
I have a table with the list of business name and address in it. It may 
contain 1 million rows. The users want to look up into this table based 
on the business name. The simple solution is to use LIKE in mysql, but I 
am worried about performance, since the user load will be very high for 
this system.
Any suggestion on how to handle the potential performance issue? How can 
i use a search
2005 Dec 29
2
Has any one seen this error message
I am truying to install the plugin ("ruby script/plugin install 
engines"). But I get this big error. Any help?
D:\develop\Ruby\workspace\a2>ruby script/plugin install engines
script/plugin: No such file or directory - svn --version
script/plugin: No such file or directory - svn ls 
http://dev.rubyonrails.com/svn
/rails/plugins/
2006 Jun 27
3
User websites with templates.
Hi, I''m very new to Rails and have a general question.
What technique would you use to allow users who have a uniform set of 
data to create very un-uniform websites from that data?
One set of data, many different website/output possibilities.
It would have to go beyond CSS. I''m assuming there will potentially be 
some level of scripting involved for each template. The goal is
2006 Jun 30
3
gem Rmagick install problem on Linux
I get the following error when I try to install Rmagic (via gem) on 
Linux. Do I need to install anyting before installing rmagic? This 
worked seamlessly on windows. What the best way to install it on Linux. 
I am on RedHat ES 3.  /thanks
-thila
Attempting local installation of ''rmagick''
Local gem file not found: rmagick*.gem
Attempting remote installation of
2006 Jul 20
1
Override coulmn data type - urgent
Hi-
I have a BigInt (MySql) column type - RAILS treats it as FixNum, which 
causes big problem for us since we need to store a 12+ number of digits. 
How can I tell Rails to treat is as BigNum instead of FixNum?
thanks
thila
-- 
Posted via http://www.ruby-forum.com/.
2006 Jun 27
1
Static pages
I have lot of static pages in my applications (FAQs, Contacts, Privacy 
etc..) What is the best way to handle (deploy) these pages in my 
application. I am using Apache with fastcgi. I would like to deliver the 
static pages from the apache itself.
Basically how the deployment is done? The catch is the user should be 
easily navigate between the static and dynamic contents.
thanks
thila
-- 
2006 Jul 10
2
File_Column error msg "Image location invalid image"
I got a strange problem. My image upload worked fine in my XP. However 
after deploying to Linux, I am not able to upload images from XP machine 
- I get "Image location invalid image" error message.
However, I am able to upload images from linux boxes. Can anyone tell me 
what would cause this problem? Is there any setting in file_column that 
are specific to the deployment server os?
2008 May 29
4
ruby's simple_format method is not working for spaces.
Ruby''s simple_format method is not working for spaces. so how to add and
what to add in simple format method code so it also work for spaces?
-- 
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
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
2007 Mar 25
5
Insert text into text area field with RJS
Hi,
I''d like to insert/append some default text into a text area after
clicking on an image button ''test.png'' in edit.rhtml:
<%= link_to image_tag("test.png"), url => { :action => :new_text } %>
Action:
# article_body is the textarea''s id.
def new_text
  render :update do |page|
    page.insert_html :bottom, :article_body,
2006 Jan 18
5
Ruby and charting
Hi-
I need to create simple charts on the fly - I had used JFreeChart in the 
past with inJ2EE apps. Is there any equivalent here for Ruby. My 
charting needs are simple: just line charts.
Also if anyone has done this, pls let me know how I should go about in 
doing it.
Thanks
-- 
Posted via http://www.ruby-forum.com/.