[Rails] Re: Render view outside of a controller/view

2010-01-12 Thread jeff_wigal
Thanks for the advice... I think I am going to pull this out of the model and make it a controller method (/help/reindex) since that will give me easier access to the stuff I need. On Jan 11, 11:37 pm, pharrington xenogene...@gmail.com wrote: On Jan 11, 10:31 pm, jeff_wigal

[Rails] Re: Render view outside of a controller/view

2010-01-11 Thread Marnen Laibow-Koser
jeff_wigal wrote: We're putting together a searchable online help site in Rails, and I'm using FastRI to full-text index some existing Rails view pages to do it. I don't want to use Sphinx or some other solution, just because it's way overkill for the 15-20 .html.erb partials I am looking

[Rails] Re: Render view outside of a controller/view

2010-01-11 Thread jeff_wigal
Thanks for your response. I'm basically building static content within an existing rails application. I can just as easily do this with straight HTML, but since this is a static site for our online documentation. I'm using ERb because the individual help documents may link to each other, or link

[Rails] Re: Render view outside of a controller/view

2010-01-11 Thread pharrington
On Jan 11, 10:31 pm, jeff_wigal j...@referee-assistant.com wrote: Thanks for your response. I'm basically building static content within an existing rails application. I can just as easily do this with straight HTML, but since this is a static site for our online documentation. I'm using