webonrails.wordpress.com
Web On Rails | Exploring Ruby On Rails | Page 2
https://webonrails.wordpress.com/page/2
Animator.js: A javascript library by Bernie Sumption. While surfing on net I came across a javascript library(animator.js) based on prototype library written by Bernie Sumption. I found this library a bit interesting. One that appeals me is the ability to define start state and end state through CSS. See in action here. November 3, 2006 at 7:14 pm. Customized Google search engine for ruby on rails(ROR). Created a search engine for RubyOnRails. Powered by Google Co-op. Http:/ www.rubycentral.org. Picture ...
webonrails.wordpress.com
November | 2006 | Web On Rails
https://webonrails.wordpress.com/2006/11
Archive for November, 2006. Ajax based drag drop and sortable tree for Rails. Wrote and shares his code for Ajax based drag drop sortable tree for rails. He is also trying to pluginize this, and soon it will be publicly available. Find more detail here. November 25, 2006 at 1:06 pm. Uploading files using AJAX. There is no way to upload files using AJAX. How Gmail does it then? Well, the answer is using iframe . Here. November 20, 2006 at 6:26 pm. Capistrano1.2.0 cheat sheet here. REST cheat sheet here.
webonrails.wordpress.com
August | 2006 | Web On Rails
https://webonrails.wordpress.com/2006/08
Archive for August, 2006. Deprecated Finders in Rails 1.1.5. These Finders are deprecated. Find first [use find(:first)]. Find all [use find(:all)]. Find on conditions [use find(:conditions)]. August 23, 2006 at 12:40 pm. Ajax pagination links: Create pagination links with link to remote. Here is a method by mixonix to create pagination links by link to remote. Copy this code in your helpers/application helper.rb. Def ajax pagination links(paginator, options={}) options.merge! Html ' . ' if last....Tab P...
webonrails.wordpress.com
April | 2006 | Web On Rails
https://webonrails.wordpress.com/2006/04
Archive for April, 2006. Intel Developers Forum roundup: four cores now, 80 cores later. While we’ve been busy covering lots. Has also been clamoring for the spotlight — Otellini. And Co. had a. Number of announcements about the future of processors at today’s Intel. Developer Forum in San Francisco. Firstly, the quad-core Core 2 Extreme. And Core 2 Quad. Chips have been officially unveiled and slated for production, with the. Former running in servers this fall, and the latter appearing in. Something th...
webonrails.wordpress.com
Deprecated Method in ActionView::Helpers::PrototypeHelper | Web On Rails
https://webonrails.wordpress.com/2006/11/09/deprecated-method-in-actionviewhelpersprototypehelper
Deprecated Method in ActionView: Helpers: PrototypeHelper. November 9, 2006 at 1:40 pm. Is deprecated now, Please use RJS instead. Entry filed under: rails. Installing subversion from pre-compiled packages or source code. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. You are commenting using your Twitter account. ( Log Out. Uploading files using AJAX.
webonrails.wordpress.com
Uploading files using AJAX | Web On Rails
https://webonrails.wordpress.com/2006/11/20/uploading-files-using-ajax
Uploading files using AJAX. November 20, 2006 at 6:26 pm. There is no way to upload files using AJAX. How Gmail does it then? Well, the answer is using iframe . Here. Is a post that describe this technique in detail. Infact we are using this technique from months, obviously inspired by Gmail. ;-). Technically speaking, it’s not Ajax. Just an iframe hack. You are absolutly right Pratik. Entry filed under: Ajax. Ajax based drag drop and sortable tree for Rails. 8 Comments Add your own. I can haz ajax?
webonrails.wordpress.com
converting all newline characters to br tag | Web On Rails
https://webonrails.wordpress.com/2006/08/07/converting-all-newline-characters-to
Converting all newline characters to br tag. August 7, 2006 at 10:48 am. I was surprised as there is no function in ruby to convert all newline characters to br . Here is a php nl2br equivalent method to convert all newline characters ( n) to break tag ( br ) in a string. Def nl2br(s) s.gsub(/\n/, ' br ') end. Entry filed under: rails. Make ids in URL Search engine friendly. Tab Problem in rails .rhtml files. 14 Comments Add your own. August 8, 2006 at 2:42 pm. Sgsub(/ n/, ”). August 18, 2006 at 12:30 pm.
webonrails.wordpress.com
Cheat Sheet | Web On Rails
https://webonrails.wordpress.com/2006/11/10/capistrano-120-cheat-sheet
November 10, 2006 at 7:13 pm. Capistrano1.2.0 cheat sheet here. REST cheat sheet here. Rails cheat sheet here. Rails testing cheat sheet here. Entry filed under: cheat sheets. Deprecated Method in ActionView: Helpers: PrototypeHelper. Uploading files using AJAX. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. Notify me of new comments via email. Build a ...
webonrails.wordpress.com
Tab completion in irb | Web On Rails
https://webonrails.wordpress.com/2006/10/07/tab-completion-in-irb
Tab completion in irb. October 7, 2006 at 7:59 am. Completion support, you need to activate this by requiring ‘irb/completion’. You can load it when you invoke irb from the command line:. Or you can load the completion library when irb is running:. If you often use. Can create an alias in .bashrc by following these steps:. Alias irbtc="irb -r 'irb/completion'". Can create a file named irbtc.bat in your windows system32 folder as. Now you can run irb with. Irb(main):001:0 st="this is a string". January 31...
webonrails.wordpress.com
June | 2006 | Web On Rails
https://webonrails.wordpress.com/2006/06
Archive for June, 2006. Configuring Multiple Rails Application with Lighttpd. I was using lighttpd web server for my Rails applications. In development mode I was starting lighttpd server from the rails application directory by. Lighttpd -D -f config/lighttpd.conf. But I was facing problem when I tried to run multiple rails applications in production mode. After some trials I succeded. I inserted the following lines of code in my /etc/lighttpd/lighttpd.conf file. 8220;min-procs” = 1,. Compress.filety...