catalyst Questions
5
I am trying to submit my first catalyst app to the Mac App Store. I have setup the App Store information in iTunes Connect, and I have confirmed that the info.plist in app has the following key in ...
Tubbs asked 2/1, 2020 at 23:18
1
I've used Template::Toolkit for my last few Catalyst projects and have a set up that I like using that allows a clean separation of my templates. Now I'm hoping to use Text::Xslate, but I'm having ...
Doretheadoretta asked 4/7, 2016 at 19:43
2
Solved
I am using Catalyst and DBIx::Class::Schema::Loader to create my model in Catalyst like so:
script/myapp_create.pl model DB DBIC::Schema MyApp::Schema create=static overwrite_modifications=1 compo...
Teage asked 31/1, 2011 at 11:22
2
Solved
I'm building a RESTful web service, using Catalyst::Controller::REST. Usually for web testing I use Test::WWW::Mechanize, but that seems more appropriate for "GET/POST HTML RPC" testing. Are there ...
1
Solved
So in our app, we do not charge immediately but simply create stripe charge with capture set to false so that customer is not charged instantly.
Question: Should we still issue a Refund for the cu...
Hemangioma asked 6/9, 2017 at 9:19
2
Solved
I'm trying to understand physical plans on spark but I'm not understanding some parts because they seem different from traditional rdbms. For example, in this plan below, it's a plan about a query ...
Depressor asked 29/5, 2016 at 2:39
3
Solved
I am trying to deploy my little Catalyst web app using Plack/Starman. All the documentation seems to suggest I want to use this in combination with nginx. What are the benefits of this? Why not use...
1
I'm working on a Catalyst/psgi application that would make great use of asychronous streaming, however beyond a simple timer (like here: http://www.catalystframework.org/calendar/2013/13), I'm a li...
1
Solved
My goal is rotating the logs generated by uWSGI, but when the original log file is deleted (after compression) it is not re-created again.
So I thought that the app needs a graceful restart of the...
3
in my stage server I would like to activate the debug so the clients can find errors for themselves before the app goes to the production server.
BUT I only want the first part of the message, not...
Leodora asked 26/9, 2013 at 16:28
3
Solved
I am trying to obtain the JSON data that is sent to the server via an AJAX POST when a button is clicked on my homescreen page on my Catalyst application:
The AJAX POST that sends the JSON data to...
2
Solved
I have some code that looks like this:
use SomeApp;
use Test::WWW::Mechanize::PSGI;
my $mech = Test::WWW::Mechanize::PSGI->new(
app => sub { SomeApp->run(@_) },
);
$mech->get_ok('/')...
3
Solved
I work on a small open-source Perl project with Catalyst, Open Street Map and dozens of modules. I try to use as many modules found on the CPAN as I can because my aim is not to reinvent the wheel....
1
Solved
Perl's Catalyst framework permitts you to send an progressively flushed response over an open connection. You could for instance use write_fh() on Catalyst::Response. I've begun using Node.js, and ...
3
Solved
Is there a way to disabling a WRAPPER that was set in new(\%config), through either the template, or a temporary override with parse()? I want to have a single default WRAPPER (that I'll use for 99...
1
Solved
I am currently planning the design for a new system I will need to code that interacts with a back-end API. I was contemplating object composition and inheritance and decided that the most correct ...
Psychologism asked 2/7, 2013 at 6:54
2
How can I have more than one pathpart in an action at the same time? I tried with Regex and LocalRegex but it realy doesnt work.
This is the result I want:
/typeone/*/*/something
/typetwo/*/*/som...
4
Solved
I have seen mentions (which sounded like unsubstantiated opinions, and dated ones at that) that Embperl is the fastest Perl web framework.
I was wondering if there's a consensus on the relative sp...
Ostium asked 14/1, 2011 at 1:16
1
Solved
[% a = ['one', 'two', 'four'] %]
[% a.1 %] # it prints two. OK!
But when I want this:
[% a = ['one', 'two', 'four'] %]
[% n = 1 %]
[% a.n %] # it doesn't work
How can I use var n in order to g...
Gombroon asked 26/3, 2013 at 0:19
1
Solved
I'm using Catalyst with Template::Toolkit as my templating system. I would like to be able to render specific parts of templates and then have them returned to me so I can store them in a variable....
Tropous asked 20/2, 2013 at 1:46
1
I started off writing some Perl code using Catalyst that looked like this:
package My::Controller;
extends 'Catalyst::Controller';
sub handler :Path :Args(0) :Location( some/url )
my ($self, $c)...
2
Solved
I'm using DBIx::Class in a Catalyst app I am building. It works great, but sometimes I need to use my own db functions that I've developed that are very specific to my needs. Because of this, I nee...
Pied asked 6/2, 2013 at 1:16
1
Solved
I have a Catalyst application that uses TT for views:
https://metacpan.org/module/Catalyst::View::TT
and I would like to try out https://metacpan.org/module/Catalyst::View::Xslate
We use the WRAP...
Delaminate asked 19/12, 2012 at 23:8
2
Solved
So the way I'm using to view a variable content is to use Data::Dumper in my template toolkit:
[% USE Dumper %]
[% Dumper.dump(varname) %]
But the result I get is kind of a big mess - all the i...
Organelle asked 13/11, 2012 at 10:21
2
Solved
Data defined inside Catalyst app or in templates has correct encoding and is diplayed well, but from database everything non-Latin1 is converted to ?. I suppose problem should be in model class, wh...
Miscellaneous asked 30/10, 2012 at 12:11
1 Next >
© 2022 - 2024 — McMap. All rights reserved.