Re: [Catalyst] Users of search_extra feature - I need to hear from you.

2011-07-18 Thread Rodrigo
filtering. But I'm not sure about search_extra... that could mean running Module::Pluggable again on the same directories already scanned by the first Catalyst instance (but now looking for 'MyAppX' packages), unless we could hook into Catalyst's own Module::Pluggable somehow. -rodrigo

Re: [Catalyst] Using Jquery UI Autocomplete widget with Catalyst::View::JSON

2010-04-25 Thread Rodrigo
}] Which works with JQuery's autocomplete example just fine -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev site

Re: [Catalyst] ask for help on table with 2 similar columns

2010-03-18 Thread Rodrigo
-model('DB::Table2')-search({ -or = [ left='B', right='B' ] }); -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev

Re: [Catalyst] catalyst and wordpress

2010-02-25 Thread Rodrigo
? Then setup PHP to run .php flies, etc, as per Wordpress installation instructions. -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst

Re: [Catalyst] Could use some help from people with Windows boxen...

2010-02-21 Thread Rodrigo
didn't work in XP, basically due to the well-known Perl fork() limitations on Windows. Great work on Strawberry Professional. I'm looking forward to trying it. cheers -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin

Re: [Catalyst] Login as another user ...

2010-01-27 Thread Rodrigo
the Authentication classes and do your own thing in there, such as ignore the need for a password. But I found the realm strategy easy and independent. Besides I often use 4 or 5 auth different realms simultaneously... -rodrigo ___ List: Catalyst@lists.scsys.co.uk

Re: [Catalyst] Fat Model Methodology?

2010-01-22 Thread Rodrigo
Then, just define an extra type that corresponds to a Moose type, or just some basic rules (varchar/char = Str, etc) How about a metaclass? That way I could add DBIC metadata to my attributes. Like this: has 'name' = ( metaclass = 'DBIC', is= 'rw', isa = 'Str',

Re: [Catalyst] Fat Model Methodology?

2010-01-21 Thread Rodrigo
class to inherit from a DBIC class. Haven't tried neither, though. - rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst

Re: [Catalyst] local helper?

2009-11-25 Thread Rodrigo
But I can't run it using perl script/myapp_create.pl model MyModel MyHelper because myapp_create.pl doesn't add the local lib to @INC so it can't find it. Have you tried: perl -Ilib script/myapp_create.pl model MyModel MyHelper ___ List:

Re: [Catalyst] How to reduce the memory footprint?

2009-11-23 Thread Rodrigo
wiki should have some profiling and performance oriented info. That way people can have an idea on how to measure and what to expect from their apps. And what to expect after using some of the most popular modules (ie DBIC). -rodrigo ___ List: Catalyst

Re: [Catalyst] Splitting up a large application: Shared config and templates for multiple applications

2009-08-28 Thread Rodrigo
me know what you think. cheers -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev site: http

Re: [Catalyst] problem extending Plugin::I18N

2009-08-26 Thread Rodrigo
On Wed, Aug 26, 2009 at 7:47 PM, Tomas Doran bobtf...@bobtfish.net wrote: Rodrigo wrote: The problem is that the original Plugin::I18N::setup() gets called twice, which breaks it, I guess due to the eval Locale::Maketext::Simple part. I've tried to use Moose and around 'setup' = sub

[Catalyst] passwordless LDAP authentication

2009-07-27 Thread Rodrigo
to bind to the ldap server. That could make it more difficult to implement a passwordless flag at any level on the authenticate chain. Any views on this? regards, rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin

Re: [Catalyst] featurizing a catalyst app

2009-06-28 Thread Rodrigo
Assuming that you're mandating a TT view for your pluggable parts, then you can just subclass View::TT to have an INCLUDE_PATH which picks up the 'root' directories from all your loaded 'Components'. I usually have /static stuff too, mostly css and images.

[Catalyst] featurizing a catalyst app

2009-06-25 Thread Rodrigo
? cheers, rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev site: http://dev.catalyst.perl.org/

Re: [Catalyst] Bug into Catalyst::Devel 1.16 and later?

2009-05-25 Thread Rodrigo
On Mon, May 25, 2009 at 10:57 AM, Emmanuel Quevillon t...@pasteur.frwrote: Hi, I've just upgraded my Catalyst::Devel to 1.17 (was in 1.15). Unfortunately, when I attempted to start my dev server I couldn't and received an error : t...@gin bibliolist$ script/bibliolist_server.pl -r Can't

Re: [Catalyst] New restarter code in Catalyst::Devel 1.14_01

2009-05-24 Thread Rodrigo
On Sun, May 24, 2009 at 2:20 AM, Dave Rolsky auta...@urth.org wrote: On Tue, 19 May 2009, Rodrigo wrote: Since I needed to have the restarter working badly on that machine in particular, I quickly patched the code with Proc::Background. Something like this: I implemented something like

Re: [Catalyst] New restarter code in Catalyst::Devel 1.14_01

2009-05-19 Thread Rodrigo
Proc::Background but I got an error... and don't recall which. Killing the thread requires it to die from the inside, sending it a signal of some sort. Couldn't the restarter be subclassed then changed in myapp_script.pl through an %ENV variable? -rodrigo

Re: [Catalyst] How and where to run a method at Catalyst start up?

2009-05-18 Thread Rodrigo
::Model, which does not give you a -model() method. -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev site

Re: [Catalyst] How and where to run a method at Catalyst start up?

2009-05-18 Thread Rodrigo
call to something like MyApp-model('bovisR1db::Organism'). See if that works. -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst

Re: [Catalyst] New restarter code in Catalyst::Devel 1.14_01

2009-05-18 Thread Rodrigo
(). IMHO, a parent process loaded with the core code could too advanced for windows' pseudo-fork. So I was wondering if maybe this was tested on ActivePerl --I've feeling that their fork works better than Strawberry's. -rodrigo ___ List: Catalyst

Re: [Catalyst] How and where to run a method at Catalyst start up?

2009-05-15 Thread Rodrigo
tried (in MyApp.pm): If don't have $c defined, you can use MyApp-model() most of the time. --rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com

Re: [Catalyst] The Netiquette thread (OT)

2009-04-28 Thread Rodrigo
quotes too. I'm not hailing gmail, but aren't there more email readers that can do such tricks? I think it all comes down to finding a mail client that can handle long conversations well. -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http

Re: [Catalyst] Eclipse and Catalyst

2009-04-13 Thread Rodrigo
plugin? I think that's the first step. -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev site: http

Re: [Catalyst] Eclipse and Catalyst

2009-04-13 Thread Rodrigo
. You can easily create commands for your favorite myapp_create.pl scripts and another one to start myapp_server.pl. -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http

Re: [Catalyst] Passing connection info to an custom model/external lib

2009-04-10 Thread Rodrigo
::Schema classes from anywhere, in case you created them with DBIC::Schema::Loader. My 2c. -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com

Re: [Catalyst] General Web- and OO-question

2009-03-27 Thread Rodrigo
, as it may help you with putting some of those rules on the client side. Catalyst::Model::Adaptor may also come in handy if you feel you need to turn your class into a model. -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk

Re: [Catalyst] General Web- and OO-question

2009-03-27 Thread Rodrigo
going to do with the object once it's filled up? --rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev site: http

Re: [Catalyst] General Web- and OO-question

2009-03-27 Thread Rodrigo
I think you are missing his point. He wants to instantiate an object from the form, but if he uses his Moose object then the things he wants to validate (errors) will prevent him from getting an instance of his class. If name is required or isa 'Str' then if it gets an arrayref, he can't

Re: [Catalyst] Google Summer of Code: mentors, projects

2009-03-03 Thread Rodrigo
to manage installed apps, or simply for us mortals to manage our scattered cat apps from a central control panel. -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http

Re: [Catalyst] Catalyst on Windows: fork issues

2009-02-26 Thread Rodrigo
. Apache is extremely lightweight if you only run it for reverse proxy load-balancing. If you want to startup your catalyst server pool from a windows service using a configuration file, I have a perl script that does that somewhere. Just let me know. Hope this works for you. --rodrigo

Re: [Catalyst] Requirements for Catalyst

2009-02-25 Thread Rodrigo
... Is that mod_perl, FastCGI or HTTP::Prefork? -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev site: http

Re: [Catalyst] windows install issues (Was: RFC: New to Catalystquestions)

2009-02-24 Thread Rodrigo
. --rodrigo On Tue, Feb 24, 2009 at 7:45 AM, Dan Dascalescu ddascalescu+catal...@gmail.com ddascalescu%2bcatal...@gmail.com wrote: I also couldn't install DBD::mysql, even though I've also tried without cpan, because on dmake it gives some errors I don't understand I had DBD::SQLite fail

Re: [Catalyst] windows install issues (Was: RFC: New to Catalystquestions)

2009-02-21 Thread Rodrigo
no-posix modules. I use ppms for tough to install modules, sometimes unzipping them straight into c:\strawberry\perl\site\lib if the ppm installer is not working well, which has been the case for strawberry lately. --rodrigo ___ List: Catalyst

Re: [Catalyst] RFC: New to Catalyst questions

2009-02-20 Thread Rodrigo
::FastMmap for Cache::FileCache (in MojoMojo.pm) which seems to work fine, but I haven't run a full test suite or used in production. I didn't have a problem with File::NFSLock compiling with the latest Strawberry version. -rodrigo ___ List: Catalyst

Re: [Catalyst] RFC: New to Catalyst questions

2009-02-20 Thread Rodrigo
On Fri, Feb 20, 2009 at 8:21 AM, Dan Dascalescu ddascalescu+catal...@gmail.com ddascalescu%2bcatal...@gmail.com wrote: Rodrigo, MojoMojo now supports custom styles. A different theme can be seen at http://nordaaker.no/wiki/. We think the typography needs improvement, and a Mediawiki-like

Re: [Catalyst] RFC: New to Catalyst questions

2009-02-20 Thread Rodrigo
I have also removed it, but I found that I can't install DBIx::Class::EncodedColumn with cpan, and there is no ppm distribution for it. Octavian Wow. I haven't had a problem with that either, in at least 5 different XP machines. Are you running Vista? What's the error? I'm using the

[Catalyst] windows install issues (Was: RFC: New to Catalyst questions)

2009-02-20 Thread Rodrigo
I think the relevant error is: t/02digest1/32 Can't call method keysize on an undefined value at E:/perl510/site/lib/Crypt/OpenPGP.pm line 525. I have tried a: cpan install Crypt::OpenPGP But I received the message that this module is up to date. I use ActivePerl 5.10.0 build 1004.

Re: [Catalyst] RFC: New to Catalyst questions

2009-02-19 Thread Rodrigo
On Tue, Feb 17, 2009 at 11:02 PM, Devin Austin devin.aus...@gmail.comwrote: Rodrigo, If you have any, you're more than welcome to ask for SVN permissions to check in some. I know i have a few example apps I'd like to show off in /examples Sure! Where can I request svn permissions

Re: [Catalyst] RFC: New to Catalyst questions

2009-02-17 Thread Rodrigo
/repos/Catalyst/trunk/examples/ may serve as a starting point. CPAN also hosts some apps, including MojoMojo. And I'm sure we all have many small test apps laying around we can just tarball and share. -rodrigo ___ List: Catalyst@lists.scsys.co.uk Listinfo

Re: [Catalyst] [OT]? Extends TheSchwartz

2009-02-12 Thread Rodrigo
('2009-02-12 13:00:00'), '%s' ), ## run_after expects a secs since epoch value ## you may also wanna set grabbed_until arg = [ foo = 'bar' ], ); $client-insert($job) or die $!; $client-can_do('MyApp::Worker'); $client-work(); -rodrigo

Re: [Catalyst] Plugin::Authentication overrides $c-req-user

2009-02-11 Thread Rodrigo
On Tue, Feb 10, 2009 at 9:46 PM, Daniel Westermann-Clark d...@pobox.comwrote: Hi, At work we use, among other things, the value of REMOTE_USER in the request environment to authenticate users using our single-sign on system. We access this via $c-req-user, which the various engines set

Re: [Catalyst] how to confirm before deleteing

2009-01-21 Thread Rodrigo
Paul, how about a javascript confirm() box? body a href=yourcontroller/delete/row_id onclick=javascript:return confirm('You selected delete. Do you really want todo this?')Delete Row/a /body cheers, -rodrigo On Wed, Jan 21, 2009 at 2:23 PM, Paul Falbe p...@cassens.com wrote: I writting my

Re: [Catalyst] controller subclass and :Local actions

2009-01-17 Thread Rodrigo
: .-+. | Path| Private| +-++ | /base/list | /base/list | | /cd/list| /cd/list | '-+' -rodrigo

Re: [Catalyst] Catalys TheSchwartz, was Catalyst modperl - child process segmentation fault

2009-01-08 Thread Rodrigo
that's what you want. The disadvantage is that I don't know how far the moosified version is backward compatible with the original TheSchwartz (it has worked fine for me so far). cheers, rodrigo On Thu, Jan 8, 2009 at 5:42 PM, J. Shirley jshir...@gmail.com wrote: On Thu, Jan 8, 2009 at 3:39 AM

Re: [Catalyst] Re: Upload problem

2008-12-24 Thread Rodrigo
, dojo, etc.) or flash? I haven't tried it myself, but it looks darn good: http://max-bazhenov.com/dev/upload-dialog-2.0/index.php cheers, rodrigo On Tue, Dec 23, 2008 at 9:04 PM, Bernhard Graf cataly...@augensalat.dewrote: On Tue 23 Dezember 2008, Florent Angly wrote: I have now tried several

Re: [Catalyst] vote for Catalyst in Enterprise Open Source Directory

2008-12-11 Thread Rodrigo
Perl 5.10 is also listed, so vote to make a great-looking language look even better. http://www.eosdirectory.com/project/61/Perl.html On Thu, Dec 11, 2008 at 3:50 PM, Dami Laurent (PJ) laurent.d...@justice.ge.ch wrote: Hi Catalysters, If you are happy users of Catalyst, please vote for it