Re: [Catalyst] New catalystframework.org

2012-03-15 Thread Tobias Kremer
On Wed, Mar 14, 2012 at 7:50 PM, Emanuele Zeppieri ema...@gmail.com wrote:
 Just one thing: the body background-color should be explicitly set to
 white, otherwise those users who have set a browser custom fallback
 background color (different from white), will see that.

Good point! Fixed it in trunk.

Cheers,
--Toby

___
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] apache, mod_fcgi local::lib

2012-03-15 Thread Tomas Doran

On 14 Mar 2012, at 11:19, cylontoaster wrote:

 sorry for not using IRC ... not really used to it :-(
 
 I followed your advices but it doesn't work yet.

For the benefit of the list, we caught up on irc, and after resolving 
inconsistent paths and permission issues, all worked as suggested.

Cheers
t0m



___
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/


[Catalyst] Noob hoping for help encoding mysql datetime fields for JSON

2012-03-15 Thread Steve Seremeth

Hello -

I am semi new to Perl and Catalyst.  I have walked through the Catalyst 
tutorial a couple times and have also picked up a couple books and done much 
googling that always seem to get me close but leave me hanging.

Have been looking at tons of docs for catalyst::controller::rest and 
catalyst::view::json amongst many others and can't find joy.

Anyway -- I think I would be on the right track if someone solved this basic 
inquiry:

Working from this example:
http://www.catalystframework.org/calendar/2009/22# An AJAX CRUD Interface with 
Catalyst and 
jQueryhttp://www.catalystframework.org/calendar/2009/22#%20An%20AJAX%20CRUD%20Interface%20with%20Catalyst%20and%20jQuery

which I have working fine, fwiw...

How would you expose the created column from the db (schema came from here: 
http://search.cpan.org/~bobtfish/Catalyst-Manual-5.9003/lib/Catalyst/Manual/Tutorial/04_BasicCRUD.podhttp://search.cpan.org/%7Ebobtfish/Catalyst-Manual-5.9003/lib/Catalyst/Manual/Tutorial/04_BasicCRUD.pod
 and is, in this example, a sqlite TIMESTAMP col) in the JSON generated by the API controller's 
grid_POST method?

If I simply add the column to the API controller here:

snip
   $data{rows}  = [
   map { +{
   id = $_-id,
   cell = [
   $_-id,
   $_-title,
   $_-rating,
   $_-author_list,
   $_-created,
   ]
   } } $paged_rs-all
   ];
/snip

The app throws this:

Content-Type application/json had a problem with your request.
***ERROR***
encountered object '2012-02-29T17:16:27', but neither allow_blessed enabled nor 
TO_JSON method available on it at 
/usr/local/share/perl/5.12.4/Catalyst/Action/Serialize/JSON.pm line 39.

And I realize I'm not serializing the timestamp appropriately (and how data 
with colons are bound to cause issues in JSON)...  but this simple thing is 
what I haven't been able to solve.

Any guidance greatly appreciated.

Thanks -

Steve

P.S.  For penance I will create some documentation of the working example and 
check it in somewhere useful or host a living doc on one of my websites to help 
others.

Steve Seremeth | Release Engineer
[Dealer.com]
steve.serem...@dealer.commailto:{Message%20Sender}
V : 877.327.8422 x 1391

FOLLOW US:
[Like Dealer.com]http://www.facebook.com/DealerDotCom [Follow Dealer.com] 
https://twitter.com/#!/DealerDotCom  [Follow Dealer.com] 
http://www.linkedin.com/company/dealer.com  [Dealer.com Channel] 
http://www.youtube.com/user/DealerDotCom  [Dealer.com Blog] http://www.dealer.com/blog.htm

___
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] Noob hoping for help encoding mysql datetime fields for JSON

2012-03-15 Thread Francisco Obispo
try:


$_-created-ymd

created is most likely a DateTime object.

more info: perldoc DateTime

Francisco


On Mar 15, 2012, at 2:38 PM, Steve Seremeth wrote:

 Hello - 
 
 I am semi new to Perl and Catalyst.  I have walked through the Catalyst 
 tutorial a couple times and have also picked up a couple books and done much 
 googling that always seem to get me close but leave me hanging.
 
 Have been looking at tons of docs for catalyst::controller::rest and 
 catalyst::view::json amongst many others and can't find joy.
 
 Anyway -- I think I would be on the right track if someone solved this basic 
 inquiry:
 
 Working from this example:
 http://www.catalystframework.org/calendar/2009/22# An AJAX CRUD Interface 
 with Catalyst and jQuery
 
 which I have working fine, fwiw...
 
 How would you expose the created column from the db (schema came from here: 
 http://search.cpan.org/~bobtfish/Catalyst-Manual-5.9003/lib/Catalyst/Manual/Tutorial/04_BasicCRUD.pod
  and is, in this example, a sqlite TIMESTAMP col) in the JSON generated by 
 the API controller's grid_POST method? 
 
 If I simply add the column to the API controller here:
 
 snip
 $data{rows}  = [
 map { +{
 id = $_-id,
 cell = [
 $_-id,
 $_-title,
 $_-rating,
 $_-author_list,
 $_-created,
 ]
 } } $paged_rs-all
 ];
 /snip
 
 The app throws this:
 
 Content-Type application/json had a problem with your
   request.
 
 ***ERROR***
 encountered object '2012-02-29T17:16:27', but neither
   allow_blessed enabled nor TO_JSON method available on it at
   /usr/local/share/perl/5.12.4/Catalyst/Action/Serialize/JSON.pm
   line 39.
 
 
 And I realize I'm not serializing the timestamp appropriately (and how data 
 with colons are bound to cause issues in JSON)...  but this simple thing is 
 what I haven't been able to solve.
 
 Any guidance greatly appreciated.
 
 Thanks - 
 
 Steve
 
 P.S.  For penance I will create some documentation of the working example and 
 check it in somewhere useful or host a living doc on one of my websites to 
 help others.
 
 Steve Seremeth | Release Engineer
 
 steve.serem...@dealer.com
 V : 877.327.8422 x 1391
 
 FOLLOW US: 
  
 
 
 ___
 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/

Francisco Obispo 
email: fobi...@isc.org
Phone: +1 650 423 1374 || INOC-DBA *3557* NOC
PGP KeyID = B38DB1BE


___
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/