Re: [Catalyst] CMS

2007-08-29 Thread Davood Firoozian
Hia, We are developing and using a Catalyst Based CMS called OzinoCMS http://wiki.ozino.com/bin/view/OzinoCMS/WebHome Sample Website: http://www.tpico.ir/ but for some financial reasons the project is paused. you can take a look at source code, but I think we have to redesign recode some

Re: [Catalyst] CMS

2007-08-29 Thread Octavian Rasnita
Can you tell me if this CMS can be used only with the keyboard? (with no mouse) If somebody knows a CMS that is accessible only with the keyboard and which can create tables and links by someone that doesn't know HTML, please tell me. Octavian - Original Message - From: Davood

Re: [Catalyst] About output in a browser

2007-08-29 Thread lanas
prints neatly, every line of the directory listing on a separate line in the browser: sub getFiles() { my ( $self, $c ) = @_; print getFiles() !; @{$c-stash-{files}} = `ls -l /home/frodo/`; } It looks like adding a print statement will throw the output into literal mode of some

Re: [Catalyst] About output in a browser

2007-08-29 Thread Carl Franks
On 28/08/2007, lanas [EMAIL PROTECTED] wrote: Hi folks, In understanding how Catalyst work and how to work with , I'm making very simple stuff, like having a model that only returns a directory listing. I found something curious before starting to make a view. Every line of the directory

Re: [Catalyst] CMS

2007-08-29 Thread Davood Firoozian
I don't think so. but may I ask why you are asking that ? On 8/29/07, Octavian Rasnita [EMAIL PROTECTED] wrote: Can you tell me if this CMS can be used only with the keyboard? (with no mouse) If somebody knows a CMS that is accessible only with the keyboard and which can create tables and

Re: [Catalyst] About output in a browser

2007-08-29 Thread Jason Kohles
On Aug 28, 2007, at 6:52 PM, lanas wrote: Can someone tell me why the output of the directory listing is not the same due to, apparently, the poresence of a print statement ? The print statement is being output before the document headers are. Without the print statement, you are getting a

[Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-08-29 Thread Felix Antonius Wilhelm Ostmann
OK, first the problem: we have build some classes with Attribute::Handlers (was inspired from Attribute::Property) This works realy fine! after a few tests we gone use this classes under catalyst ... and ... dont work :-/ under catalyst our classes dont use Attribute::Handlers :-/ we

Re: [Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-08-29 Thread Brian Cassidy
Felix Antonius Wilhelm Ostmann wrote: we have build some classes with Attribute::Handlers (was inspired from Attribute::Property) This works realy fine! after a few tests we gone use this classes under catalyst ... and ... dont work :-/ under catalyst our classes dont use Attribute::Handlers

Re: [Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-08-29 Thread John Napiorkowski
--- Felix Antonius Wilhelm Ostmann [EMAIL PROTECTED] wrote: OK, first the problem: we have build some classes with Attribute::Handlers (was inspired from Attribute::Property) This works realy fine! after a few tests we gone use this classes under catalyst ... and ... dont work

Re: [Catalyst] CMS

2007-08-29 Thread Octavian Rasnita
On 8/29/07, Octavian Rasnita [EMAIL PROTECTED] wrote: Can you tell me if this CMS can be used only with the keyboard? (with no mouse) From: Davood Firoozian I don't think so. but may I ask why you are asking that ? Because I am blind and I cannot use a mouse but only the keyboard.

Re: [Catalyst] Re: [Catalyst-dev] Ignoring Emacs temp files

2007-08-29 Thread Matt Rosin
Ouch. I use xemacs -nw and FindBin but haven't seen this explosion, I think. What autodiscovery are you using that makes it require Foo:::#Bar ? blows up when it tries to do something like: eval require Foo::.#Bar ___ List: Catalyst@lists.rawmode.org

Re: [Catalyst] About output in a browser

2007-08-29 Thread Matt Rosin
FWIW I recently used keywords in TT template filenames to identify which CSS file to use (public,admin portal, customer portal, etc.). But the default wrapper (root/lib/site/wrapper) will use text/plain if the filename has css|js|txt in it. ___ List:

Re: [Catalyst] Attribute::Handlers wont work in own classes under catalyst

2007-08-29 Thread Nilson Santos Figueiredo Junior
On 8/29/07, Felix Antonius Wilhelm Ostmann [EMAIL PROTECTED] wrote: after a few tests we gone use this classes under catalyst ... and ... dont work :-/ under catalyst our classes dont use Attribute::Handlers :-/ we declare UNIVERSAL::Property and then use sub nondigit : Property { defined