search for: dunnil

Displaying 20 results from an estimated 20 matches for "dunnil".

2006 Mar 03
3
TinyMCE or FCKEditor (WYSISYG editor)
TinyMCE or FCKEditor? which one is the best from your experience? Or anything better than these two for rails env? Thank you all, - Dunnil -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060303/7350e5df/attachment.html
2005 Nov 23
8
Compiler OR Obfuscator for RoR applications?
...problem, we are an ISV that sells web application and we don''t want our clients see our source code, I searched the web but couldn''t find any way to compile and\or obfuscate ruby code (in web (RoR)), is there such tool available for the language? Thanks in advance for your help, Dunnil
2006 Nov 04
11
[OT] What''s the best way to install ruby/rails on Mac OS X?
...sure which way is the best. Should I go for Fink? OpenDarwin? Or just install them directly on mac. What about something in Fink, something in OpenDarwin and something directly? I''m a bit confused, may you please give me a clue on how to prepare my mac for coding? Thanks in advance, - Dunnil
2006 Mar 03
2
FCKEditor Image uploading feature
....html Added FCKEditor to my rails app which works great, but I''m not able to upload images using the WYSISYG editor. Is there a way to enable this feature in rails app? If not, where is the images folder that FCK looks into it for images, so I can upload my images manully there? Thanks, - Dunnil -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060303/7c3e45ab/attachment.html
2006 May 31
19
Rails Deployment: Book recommendation?
...e how to config the app server (for ex. managing FastCGI processes), what slave and master db means (I know this but need more info!), how to setup clustering on web server and such things. Do you know where could I find required info? books? online docs? anything useful? Thank you all friends! - Dunnil
2006 Jan 30
3
params on controller and view
Hi, I have a link that says: <%= link_to_remote("Data", :update => ''pie_graph_div'', :url => { :action => :show_pie_graph, :mode => ''nums'' }) %> which calls *show_pie_graph*: Controller: def show_pie_graph render :layout => false @mode = params[:mode] end View: <img src="/surveys/make_pie_graph/<%=@mode%>"
2006 Jun 15
25
[Very OT] MacBook defects: should I buy a MacBook?
...d MacBook defects: http://www.appledefects.com/wiki/index.php?title=MacBook_Pro I''m totally confused, should I buy it? what about iMac? and the last question: you guys, who migrated from win/nix to mac, does it worth the money? (anything other than TextMate?) Thank you all in advance, - Dunnil
2006 May 12
5
Is there a method for incrementing string names?!?
Hello, I have model which has a property named "name", I want to append a number to the end of the name when there is similar name in db. name, name1, name2... Is there a ready to use method in ruby and/or rails for doing so? Thanks in advance, - Dunnil
2006 May 09
25
[OT] How do guys create round corner boxes? Which Graphic tool?
...I''m all a coder who lives in his text editor, so sorry at first! I need to create round corner box for my web app, I know how to form a box using CSS, I just dunno how to create those rounded corners. Is there an easy to use tool for creating them, out there? Thank you all in advance, - Dunnil -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060509/588857d3/attachment.html
2006 Apr 19
4
emacs rails 0.39
Testing version of Emacs Rails (http://rubyforge.org/projects/emacs-rails/) was released. If you have some suggestion or you find some bugs please inform us. Features: * Management of WEBrick/Mongrel * Display color log file * Toggle Switch between Action/View and other file (tests, helpers) automaticly or with menu * Switching to file from current line f.e. from redirect_to :controller =>
2006 Feb 09
1
How to reorder rows in a table?
Hi, I have a link table with a location field, here is the code I wrote to reorder the rows # move_up action in links controller def move_up current_link = Link.find(params[:id]) current_link.location -= 1 current_link.save same_link = Link.find_by_location(current_link.location) same_link.location += 1 same_link.save redirect_to :action =>
2006 Jan 31
2
Problem generating CHM Rails doc
Hi, I have problem generating chm file for the rails doc. I''ve commaned the rdoc to generate the chm by: rdoc -f chm -o chm_folder action* rails-* It gave me the following error: vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb:3:15: Expected class name or ''<<''. G ot RubyToken::TkLT: "<" By adding
2006 Apr 16
11
Multiple domain name, One Rails application, is this possible?
...ystem, each user want to access to her docs using her domain, but I don''t like to have many rails app just for multiple domains, is there a way to show the users'' docs base on the URL? Any pointer to any book, article or direct answer is extremely appreciated. Thanks in advance, Dunnil -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060416/12ffbb8c/attachment.html
2006 Feb 11
9
Upgrading to Ruby 1.8.4 and strange problems!
Hi folks, There is a strange problem here, I''ve installed the latest version of One-Click Ruby installer [1.8.4-16 preview3], everything went fine, and after that I''ve installed Rails 1.0. No problem in setup process, but now, when I try run my rails application, there are many strange things happening. In one my application no CSS apply, looks like there is no CSS file, and
2006 May 12
0
How to manage e-mail addresses on a *nix box?
...emove/change pass, etc) my e-mail addresses through my rails application? I''m on a *nix box with cPanel for managing the web hosting package, is there an API out there for managing e-mail addresses? Any pointer to articles, books, blog entry, etc appreciated. Thank you all in advance, - Dunnil
2006 Apr 22
1
How to save data with dynamic forms?
...I don''t have any idea how to save the data in db (table ddl?), so I can easily list or search the data. I though of writing the hash directly from the form to db, but I think there must be better solution(s)? Any idea, articles or design pattern on the subject? Thank you all in advance, Dunnil -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060422/ef1e5e70/attachment.html
2006 Feb 05
2
request.request_uri in production environment?
Hi, What''s the problem with this line? <%= ''height="750" valign="top"'' if request.request_uri =~ /survey_result/i %> No problem with development environment but when uploading to server I get application error. And is there a better way to do this? Thanks
2006 Feb 05
30
Emacs rails.el
Features: * Management WEBrick - start, stop * Viewing log files * Abbrev from TextMate * Switching between View/Action http://www.emacswiki.org/cgi-bin/emacs/rails.el
2006 Feb 04
1
CSS question: div cover another div on AJAX
Hi, I have a simple question, how to prevent a div to be covered by another div?!? When I use AJAX the footer div of my page cover the rendered div, how should I prevent it? I used both: position:fixed; and the position:relative; The first cover some text from the bottom of page and the other does not work always. Thanks in advance, - H
2007 Feb 24
0
What's the best PayPal gem or lib?
Hello folks, I need your advice on choosing a gem or lib for my upcoming project. What''s the best gem for working with PayPal? 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