Tagged Questions
14
votes
2answers
404 views
How to make Mason 2 UTF-8 clean?
There is a nice guide in Four easy steps to make Mason UTF-8 Unicode clean with Apache, mod_perl, and DBI - how to make the old HTML::Mason UTF-8 transparent. Now, Mason 2 has arrived. How do I make ...
9
votes
5answers
576 views
Is there good study material for Mason/Catalyst for an experienced .Net programmer?
I come from Asp.Net background and recently got assigned to a Perl web project for maintenance and enhancement. I just know that this project uses some stuff like Catalyst, Mason, Alzabo etc.
There ...
6
votes
8answers
625 views
Is Mason a framework?
I've been having an agruement with a friend that Mason (Perl) is not a framework, but a templating language. I feel Mason for Perl does what JSP does for Java (as an analogy, not pure technical ...
5
votes
2answers
181 views
Perl: Javascript::V8 templates - from the perl
Looking for template engine like HTML::Mason (or Mason), so what "compiles" source components into perl code, but instead of perl-code will "compile" components into JavaScript code and after ...
5
votes
2answers
382 views
Why would Perl's CGI::cookie be able to set a cookie in IE, but not Firefox?
I have a bit of Perl CGI code which I'm trying to run in the project web space of a SourceForge account. The code is able to set a browser cookie just fine when talking to IE, but the cookie is not ...
4
votes
1answer
79 views
Conditional in Mason code
If I want to create a block of html code that displays if a boolean value in mason is true is there a way to do this without using print to print each line of the html code? i.e. is there a way to do ...
4
votes
4answers
907 views
Where can I find a Perl module for converting a Perl data structure into a JavaScript one?
e.g. (Mason code):
16 % # convert our @cti data structure into a javascript one
17 var cti = [
18 % foreach my $cti_category (@cti) {
19 {
20 label: ...
3
votes
2answers
99 views
An automated way to do string extraction for Perl/Mason i18n?
I'm currently working on internationalizing a very large Perl/Mason web application, as a team of one (does that make this a death march??). The application is nearing 20 years old, and is written in ...
2
votes
1answer
58 views
Defining global variables in perl Mason Framework
I recently came across a problem: how to define a global variable in perl Mason Framework ? I need to define a variable and assign a value to it which will be visible from all Mason components, but ...
2
votes
2answers
42 views
Error using Mason as stand-alone templating language
G'day,
I'm trying to use HTML::Mason 1.35 as a stand-alone templating language to generate emails. Consider the following test script:
#!/usr/bin/perl
use strict;
use warnings;
use ...
2
votes
1answer
118 views
What do these numbers before and after mason responses mean?
I am using mod_perl 2, mason, and apache 2.2 on Ubuntu 10.10 (x86) (standard packages from apt). When I send a HTTP request to my server, I get the following:
$ nc localhost 80 < ...
2
votes
4answers
370 views
Good IDE or syntax highlighting editor for Mason?
Can anyone recommend some good IDEs or editors for Mason?
At this point I'm just using VIM but it would be nice to have an editor that supports syntax highlighting as well as general syntax ...
2
votes
1answer
416 views
Why am I getting a panic with Perl 5.10, Mason, and Apache?
I'm developing an application using Perl 5.10, HTML::Mason, and apache 2.2. This is the first time I've used Perl 5.10 for a big project. I get a strange behavior every once in a while. The ...
1
vote
1answer
35 views
Clash Between Multiple Locales in a mod_perl Setting?
I'm currently working on internationalizing a large Perl/Mason web application (Perl 5.8.0, Mason 1.48, mod_perl & Apache). In choosing a localization module, I decided to go with ...
1
vote
2answers
213 views
How to define a global variable with Mason
Intro
I tried to set up mason in my Ubuntu desktop.
It is a very simple set up, but I still had problems, after reading
parts of masonbook.com & mansonhq.com
I hope someone can give me a hint. ...
1
vote
2answers
273 views
Calling child class method from Base Class in Perl
I have module called Mobile::Auth to authorize and redirect to the login page. I wanted to access all methods from Site::Auth in my Mobile::Auth except a method '*redirect_to_login_page*', which I ...
1
vote
1answer
344 views
“Can't call method ”dir_path“ on an undefined value” when running Mason component on the command line
Greetings,
I'm trying to develop some tests for Mason components which requires running them on the command line instead of the web server. When I try this, I get an error:
perl ...
1
vote
1answer
1k views
How can I use JSON and Perl (HTML::Mason) to create dynamic web page with AJAX?
I'm some kind of lost with the way i have to deal with Javascript, JSON and Perl and most of the examples are in PHP which is not helpfull for me.
I have a page (called main.html) where i have a ...
1
vote
1answer
416 views
Using Apache::Session::Memcached with MasonX::Request::WithApacheSession
I'm trying to use Apache::Session::Memcached in an HTML::Mason project where I'm using MasonX::Request::WithApacheSession to handle my sessions. Unfortunately Apache will not launch when I plug in ...
1
vote
2answers
173 views
How can I extract <%doc> content from Mason?
Is there a tool like javadoc to extract the <%doc> content and the various methods with their parameters in Mason (Perl)? I'd like to add some basic documentation to components I'm writing and it ...
0
votes
1answer
59 views
Managing session state with html::mason
I'm using HTML::Mason with Apache2 mod_perl2 for a project and am unsure what's a good way to manage session state easily.
Please don't say, use Catalyst. I do normally but am not on this occasion.
0
votes
0answers
35 views
perl/mason: assigning value to a global variable in handler.pl
Is it possible to assign value to a global variable in handler.pl?
I need to assign a value to a global variable in handler.pl and get the value from an mason component.
Example:
httpd.conf
...
...
0
votes
1answer
40 views
Tools to document Mason and Perl code?
Other than POD, what are the tools available to document my Perl and Mason code? What do you use and what tools are available to help me?
0
votes
1answer
114 views
Mason and Apache configuration, loading files that don't exist
I have a really strange behavior while using Mason,
For example:
I have an index.html file ( that contains mason tags like <% $var %> hello ).
When I'm browsing to "http://bla.com/index.html" - ...
0
votes
0answers
39 views
Convert gtksourceview definition file from v1 to v2
I have a custom .lang-file written for gtksourceview-1.0. Unfortunately i can't get it to work in a newer version of Gedit. Is there any way (other than rewriting the thing from scratch) to convert it ...
0
votes
1answer
277 views
How to assign the value of the variable in JavaScript function into mason variable?
I am getting window.location.href property on click of a button on client side in a javascript variable. My requirement is to send it back to server. How can I get the JavaScript variable value back ...
0
votes
1answer
181 views
Redirect with Mason 1.0
i am using mason 1.0 and want to redirect the page to another URL.
Is there any way to redirect ?
Alternatively..
I have written following code in dbhandler which is giving error stating that $r ...
0
votes
3answers
315 views
What is the best way to make login session with Perl's HTML::Mason?
I'm with some difficulties in make this.
I have a login HTML form, and I want to know if the user and password match with the information in my MySQL server.
What is the best way to do it?
Thank ...
-1
votes
2answers
39 views
Perl Std->href formatting
I've been asked to hard code a link so that some search parameters default to a 365 day time range.
In perl I'm using the Std->href(url) to generate the url.
My question is:
I need to add ...
-7
votes
1answer
122 views
Trying to read file values into Array of Hashes
Realise this must be a failry simple but have been trying for nearly 2 hours to read in contects of file into a array of hash values
File Contents
<%perl>
return (
{
prefix => ...