Re: Feature: Inline templates?

2012-08-15 Thread judofyr
. -Original Message- Re: Feature: Inline templates? From: gurugeek lt;gurugeek...@gmail.comgt; To: camping-list@rubyforge.org Sunday, August 12, 2012 at 5:15PM nbsp; Hello I was searching inline templates on camping

Re: Feature: Inline templates?

2012-08-15 Thread Jenna Fox
it. Try `gem install camping --source gems.judofyr.net (http://gems.judofyr.net)` for a newer (pre-release) version. -Original Message- Re: Feature: Inline templates? From: gurugeek gurugeek...@gmail.com (mailto:gurugeek...@gmail.com) To: camping-list@rubyforge.org (mailto:camping

Re: Feature: Inline templates?

2012-08-15 Thread Magnus Holm
/camping/commit/407e2ddd441f438722828dc77d9094e0dea66143, but I don't think the current released version of Camping has it. Try `gem install camping --source gems.judofyr.net` for a newer (pre-release) version. -Original Message- Re: Feature: Inline templates? From: gurugeek gurugeek

Re: Feature: Inline templates?

2012-08-15 Thread gurugeek
camping --source gems.judofyr.net` for a newer (pre-release) version. -Original Message- Re: Feature: Inline templates? From: *gurugeek gurugeek...@gmail.com* To: camping-list@rubyforge.org Sunday, August 12, 2012 at 5:15PM Hello I was searching inline templates on camping and found

Re: Feature: Inline templates?

2012-08-15 Thread Jenna Fox
of Camping has it. Try `gem install camping --source gems.judofyr.net (http://gems.judofyr.net)` for a newer (pre-release) version. -Original Message- Re: Feature: Inline templates? From: gurugeek gurugeek...@gmail.com (mailto:gurugeek...@gmail.com) To: camping-list@rubyforge.org

Re: Feature: Inline templates?

2012-08-12 Thread gurugeek
Hello I was searching inline templates on camping and found this old topic on the mailing list with the example from Magnus. I think it looks great and could be useful but I assume this was not implemented. Any plan to add this ? :-) Best Regards David Another feature! Inline templates:

Re: Feature: Inline templates?

2011-10-07 Thread Dave Everitt
On Fri, Aug 26, 2011 at 16:14, Dave Everitt dever...@innotts.co.uk wrote: Since no-one has replied, for what it's worth (as a very amateur camper), I've always been happy with simple regular Markaby views and the v2.1 options for external templates. Also, my modest one-file apps have their

Re: Feature: Inline templates?

2011-10-02 Thread Magnus Holm
2011/9/24 Bartosz Dziewoński matma@gmail.com: A comment after some time: I'd appreciate it more if I could just have one external file with all the templates, and one with the Camping code, and I could link in the templates to parse using this mechanism. This works, although it's kinda

Re: Feature: Inline templates?

2011-08-26 Thread Dave Everitt
Since no-one has replied, for what it's worth (as a very amateur camper), I've always been happy with simple regular Markaby views and the v2.1 options for external templates. Also, my modest one-file apps have their CSS after __END__. In any sizeable app, you'd probably want to have

Re: Feature: Inline templates?

2011-08-26 Thread Bartosz Dziewoński
If this only supports Erb, then we should throw it away as fast as possible ;) I see no reason why would anyone want to use something *that* dinosauric in a new project. If it also supports (or can support), say, Haml, then I see how it could be useful (although nearly all of my Camping projects

Re: Feature: Inline templates?

2011-08-26 Thread Magnus Holm
On Aug 26, 2011 6:42 PM, Bartosz Dziewoński matma@gmail.com wrote: If this only supports Erb, then we should throw it away as fast as possible ;) I see no reason why would anyone want to use something *that* dinosauric in a new project. If it also supports (or can support), say, Haml,

Re: Feature: Inline templates?

2011-08-26 Thread John Beppu
I was fine with Markaby. On Thu, Aug 25, 2011 at 11:04 AM, Magnus Holm judo...@gmail.com wrote: Another feature! Inline templates: module App::Controllers get '/' do @title = My Perfect App render :index end end __END__ @@ index.erb Welcome to %= @title %