Re: [Catalyst] how to set a default (index.html) page (Template Toolkit used)

2008-11-01 Thread Devin Austin
well it's defined in Root.pm, the default() method. It defaults to $c->welcome_page (or something close). Typically you use a template instead of a static HTML page for your default page, so you'd simply set which template you want (which depending on your set up is usually located in /root/). d

Re: [Catalyst] how to set a default (index.html) page (Template Toolkit used)

2008-11-01 Thread kakimoto
any ideas>? Quoting [EMAIL PROTECTED]: > hi guys > i am fine tuning my application. Like the examples given in the > tutes, > the default page is to login the user. > > How do I load a default page (ie index.html)? Assume it is stored > in > /root/static. > > I was looking at Root.pm where

[Catalyst] how to set a default (index.html) page (Template Toolkit used)

2008-10-30 Thread kakimoto
hi guys i am fine tuning my application. Like the examples given in the tutes, the default page is to login the user. How do I load a default page (ie index.html)? Assume it is stored in /root/static. I was looking at Root.pm where the default behaviour of logging in users is defined. Ta K.