search for: stringscanner

Displaying 2 results from an estimated 2 matches for "stringscanner".

2005 Nov 20
2
word_wrap with hard break
How can I force word_wrap to break text like this? <% @text=''abcdefghijklmnopqrstuvwxyz'' %> <%= word_wrap(@text, 10) %> It appears to currently only break on space characters. thanks csn __________________________________ Yahoo! FareChase: Search multiple travel sites in one click. http://farechase.yahoo.com
2007 Sep 18
10
Routes
hi all, I want to move some routing tasks out of the router and into the controller. The goal is to make Merb feel less like mod_rewrite and give the user more control at the controller. The new Router is simple: it takes the path_info (not the whole request) then outputs a controller class and some parameters from the path matching. The rest of the routing would be done at the controller level.