Tagged Questions

Dancer is a micro web application framework for Perl, originally inspired by the Sinatra framework in Ruby. Dancer is designed to be as effortless as possible for the developer, taking care of the boring bits as easily as possible, yet staying out of your way and letting you get on with writing ...

learn more… | top users | synonyms

13
votes
4answers
2k views

Dancer vs Catalyst [Perl Web Frameworks] [closed]

What do you think about both? I began reading a book about Catalyst, and found it pretty complex as compared to Dancer. so now I'm giving Dancer a try, and it looks easier to learn and more "human ...
12
votes
3answers
411 views

How can I start out with web development using Perl?

I want to be able to create web front-ends to my Perl programs. I have a lot of experience with Perl, and I have converted most of my code to Modern Perl paradigms championed by Chromatic. I have ZERO ...
7
votes
2answers
96 views

What can I do to Makefile.PL so that when I run make test it runs the test suite with dancer environment set to 'test'?

I would like to be able to just type "make test" in a dancer app toplevel source directory (the one that was generated by "dancer -a appname") and have it run the tests with the environment set to ...
6
votes
1answer
195 views

How do I control a Dancer webapp's deployment?

Say I have a self-contained Dancer webapp. I can deploy it to a host by running a make dist, getting a tarball then installing it via cpanm or similar. However, I can't seem to find how to control ...
6
votes
2answers
326 views

Multilingual PSGI-web deployment

I plan develop one web application with PSGI/Plack. (probaly with Dancer, but not decided yet). The applicatiion should be utf8, multilingual (with Locale::Maketext) and (ofc) will contain some ...
5
votes
1answer
221 views

How can I test a Dancer application with Test::WWW::Mechanize::PSGI?

I'm not sure on the right way to set up the script app for www mechanize. I did try at least one alternate that works, however I'm trying to pass in configuration with the test so I can make logging ...
4
votes
3answers
260 views

Multiple app directories with Dancer perl

Is there a way to have one app in dancer but with multiple appdirs. Or could I do something like this: My project is in dir 'foo'. And let's say that I have a dir 'bar' (not inside 'foo') which has ...
4
votes
2answers
299 views

How to setup Apache-like name based virtual server with PSGI Starman

In my previous question I'm asked about the multi-domain solution, but the question was too complex. Now in short: Is possible somewhat setup name based virtual servers with Starman (or with any ...
3
votes
1answer
128 views

Perl Dancer after hook

Is there a way in Dancer to execute a code after every request? I tried with an after hook but it seems that it doesn't execute after a file request... There is a hook called 'after_file_render' ...
2
votes
1answer
115 views

Using Integrated Windows Authentication in a Perl Dancer App

I am currently building a web app with Perl Dancer. This app requires users to authenticate using my company's Active Directory. To avoid prompting users for their usernames and passwords, I would ...
2
votes
2answers
140 views

Dancer plugin loading a template

How can I load a template from a Dancer::Plugin which is not in 'app/views' directory without changing views default directory? This isn't working /it adds the default views path to the file path/: ...
2
votes
2answers
117 views

How can I make these tests more DRY?

I currently have the following at the beginning of several test files, but it's very not DRY. But I'm not really sure what the best way to move this into its own file is. Any suggestions? ...
2
votes
2answers
301 views

Which form-builder handles many-to-many relationships of data and dynamic input?

I'm experimenting with Dancer some time, and looking for the right blocks to build my application. Frameworks tend to have flat example applications, dealing with one table at time. So I have no good ...
1
vote
1answer
94 views

Perl Dancer, Dancer::Plugin::DirectoryView, Template Toolkit and sharing params in templates

I have a post route which is returning params for use in a specific template (actions.tt). Within that template, I'm loading a div (using jQuery) with a view (dirmain.tt) of a directory using the ...
1
vote
2answers
170 views

Why perl dancer so slow?

I'm running Dancer and found it slow. This is the example code from Dancer::Introduction: #!/usr/bin/perl # make this script a webapp use Dancer; # declare routes/actions get '/' => sub { ...
1
vote
1answer
152 views

Dancer request params encoding

Let's say that I have a page which is encoded in 'cp1251' and I submit a form then my params will be in 'cp1251'. But when I access my params in Dancer I get only '?'marks. How can I access the data ...
1
vote
1answer
182 views

How do I handle Dancer routes when running as a CGI script?

I am running the Perl Dancer framework following the instructions written in Dancer::Deployment for running as a cgi-script. This allows me to display a default page for the '/' route, but I can't ...
1
vote
2answers
274 views

Packaging a Perl application

I need to package a Perl Dancer application for installation using RPM. Pretty much all of the Perl module/distribution tools deal with installing files into Perl specific locations, such as ...
0
votes
1answer
24 views

Using HTML::FormFu, how do you change a field value *after* processing so that it appears modified in Template Toolkit?

For example, if I process a form: my $form_input = { input_data => '123' }; $form->process($form_input); Then I want to alter the value of 'input_data': my $clearme = ...
0
votes
2answers
86 views

How to add a vmethod to template toolkit when using Dancer?

How to add a vmethod to template toolkit when using Dancer? If there isn't a way, how can I add a function /how to execute a ref to function which is added to the tokens/?
0
votes
2answers
183 views

perl dancer: foreach in template is only printing first value

I have what should be a really simple problem in Dancer: I have an array of names, and I'd like to print each one in a template. These names come from an outside source (not a database). However, ...
0
votes
1answer
192 views

Incorrect Content Length When Running Perl Dancer On Apache

I am just getting started with setting up an app using Perl Dancer on Apache. I used the provided dancer script to setup my initial directory structure, and was able to get things setup to the point ...
0
votes
1answer
121 views

How do I handle wildcard subdomains in Dancer routes?

I'm writing a web app with the Dancer framework and I'd like to offer each user a subdomain, like wordpress.com does. How can I specify my Dancer routes to take account of the domain name?
0
votes
2answers
570 views

Can't locate MIME/Types.pm in @INC … at /usr/local/share/perl/5.10.1/Dancer/MIME.pm line 7

I'm very new to programming so I apologise if I've missed something obvious. I'm following the directions at https://github.com/keeth/Net-OAuth/blob/master/README and got the following error: Can't ...
0
votes
1answer
1k views

perl dancer: passing database info to template

Following Dancer tutorial here: http://search.cpan.org/dist/Dancer/lib/Dancer/Tutorial.pod I'm using my own sqlite3 database with this schema CREATE TABLE if not exists location (location_code TEXT ...
0
votes
1answer
159 views

form generation and validation in Perl

I am thinking to create a web based survey and I thought the best way would be to describe the questions and the possible answers as a json or yaml file. Then generate the forms from there (possibly ...