HTML::Mason, or Mason for short, is a Perl-based templating system for generating dynamic HTML or other content.
0
votes
0answers
21 views
Overlapping posts with Jquery Masonry
So I posted this yesterday but was possibly weak on specifics, so I'll try again.
I am running a pinterest-style website that uses an infinite scroll and Jquery Masonry (to organize posts on the ...
1
vote
0answers
32 views
Why IPC::Run3 cannot capture any standard output in Apache environment?
%use IPC::Run3;
%my $a;
%run3 ['echo','hello'],\undef,\$a;
<% $a %>
Above mason code works very well when I use Mason from a standalone script, as descriped in HTML::Mason::Admin. ...
0
votes
1answer
128 views
json Ajax request returns every html element of the page
<script language="JavaScript">
var result = {};
var data;
function load_metadata (id) {
$.ajax({
url: "/video/metadata",
type: "POST",
data: id,
cache: false,
...
0
votes
1answer
51 views
How to pass a a string variable as “query” for get Manager call?
Im trying to make this simple call:
DataB::testTable::Manager->get_testTable( query => [ id => $id, name => $name ] )
which works perfectly fine. But is it possible to pass a variable ...
0
votes
2answers
23 views
How do i pass a variable for the query in a get Manager call?
I am trying to make a simple Rose DB call:
$id = xyz;
$name = "company";
DataB::testTable::Manager->get_testTable( query =>[ id => $id, name => $name ] );
in it possible to not have the ...
-1
votes
1answer
106 views
IP address of form submitter (remote IP address) using Perl and HTML::Mason
I am using HTML::Mason to serve a web page containing a form. When the form is filled and submitted, I want to know the IP address of the remote client.
I tried printing $r->headers_in but I get
...
0
votes
0answers
53 views
phar symlink, file not found
I've tried two different php/nginx buildpacks for heroku using mason on a vagrant machine I've set up.
Both times I've gotten some similar to the following:
$ mason build /app -b ...
0
votes
0answers
110 views
syntax to call an object in perl
I need to pass an object to an API in perl. The structure looks like this :
{"requestId": "requestid1",
"result": "result1",
"actions":
{"actionMap":
{"key1":
{"result": "POSITIVE",
...
2
votes
2answers
117 views
Why isn't my `my` variable accessible inside a sub?
I'm writing a Mason 1.x component page, and it's not behaving like I'm expecting.
The perlsub man page indicates that a my variable should be accessible inside a sub. But the following code:
my ...
0
votes
0answers
37 views
Mason,perl,apache errors are logged in the wrong file in Apache
I have a virtual host in Apache that uses the error_log: logs/website_error.log
When I'm writing to the STDERR in perl ( e.g: print STDERR " blablbla" ) it shows in the website_error.log file - ...
0
votes
0answers
11 views
Backup using Rose::DB
I have written a pl script to change certain DB values, which is given by the script
use strict;
use warnings;
use abc::abcbill;
use abc::abcbill::Manager;
abc::abcbill::Manager->update_abcill(
...
1
vote
1answer
98 views
How do I output a PDF file using Perl's Mason?
I have to write taking a code from the .pdf file, and copy it to anyother pdf file. The code i have written to open the file is given as under :
<%args>
$fullname
$filename
</%args>
...
4
votes
2answers
191 views
Perl: show used subroutines
In some project ( Mason ) there is a lot of perl modules (> 200). Really used only 5-10% from this code.
How i can look, which subroutines is used (or unused)?
2
votes
3answers
348 views
Perl, Starman Unicode wide character in syswrite at
I have this word comЯade but I can't print it in HTML because of the Russian Я... I
tried:
$HTML::Entities::char2entity{'Я'} = 'Я';
$HTML::Entities::char2entity{'1071'} = 'Я'; ...
0
votes
1answer
71 views
Mason perl JSON module refuse to work
I'm using Mason in one of my projects and I have a problem using the module JSON.
The page search.mhtml is working properly with other external modules ( "use DBI" ) but whenever I use the following ...
-1
votes
4answers
572 views
Switch-Case syntax in Mason
I am looking for the switch-case syntax in Mason, but haven't been able to find one.
Could someone please assist with a sample here?
Thanks in advance.
2
votes
1answer
91 views
RequestTracker and Mason destroying my class over and over again
I'm hacking on Request Tracker, which is written in perl and uses Mason
for the web interface. I'm trying to make a customized page, that involves an autohandler, an html page, and pulls in some ...
0
votes
2answers
138 views
Difference between perl commands '=>' and '='
What is the difference between the following perl/mason commands.
$test = $test1;
$test => $test1;
specifically how does the instantiation work here?
2
votes
1answer
108 views
Using NYTProf with Mason under mod_perl
I'm trying to profile a web application written on top of HTML::Mason, I managed to set the profiler but it doesn't seem to pick-up the code inside the components. Is there a way to profile Mason ...
1
vote
1answer
966 views
perl javascript/jquery - variable passing from javascript/jquery to perl [closed]
<input type="checkbox" id = "has_sidebar" name="cb" value="" onclick="result=$(this).attr('value', this.checked ? 1 : 0); alert('my result : 'result.context.value);" >
RESULT.CONTEXT.VALUE has ...
-2
votes
2answers
380 views
Perl Mason get value of a checkbox
How do i get the value of a checkbox and put it in a variable for insertion in DB?
$request->param(cb) is not getting the value
the checkbox is in a mason2 component(.mc) and the value of the ...
0
votes
0answers
191 views
Javascript ajax call post incomplete data
I had an unusual situation occuring in production while doing a asynchronous ajax post.
<script type="text/javascript">
Mylib.defined('jQuery', function() {
jQuery.ajax({
...
0
votes
0answers
104 views
By default, will autohandler be triggered when requesting an image file (Mason)?
By default when I'm requesting an image file - will the mason handler trigger autohandler? Only .html files are set to be handled by mason in the config file. I need it to happen to do some background ...
1
vote
1answer
155 views
Sanitize HTML::Mason arguments in the handler?
I'm using HTML::Mason, and after a recent security audit, it was discovered that some of our software is vulnerable to a header injection. Specifically this is related to the session_id argument, ...
1
vote
2answers
121 views
$m->comp is returning infinite recursive call error
I am having trouble using HTML::Mason's $m->comp to redirect from one view to another.
There is a file say file1.mi which has embedded HTML code in this file1.mi I am using $m->comp to redirect ...
-1
votes
2answers
300 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 ...
-8
votes
1answer
390 views
Trying to read file values into Array of Hashes [closed]
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 => ...
0
votes
1answer
487 views
why am i getting a Expected token not present in my apache log?
this problem is very weird , i am not using any authentication system or any sessions in my website , but very randomly sometimes i get this error
Internal Server Error
The server encountered ...
0
votes
2answers
44 views
login to subdomain from another subdomain
I have one site parent1.site.com. I am logged in. I have authentication cookie with domain "parent1.site.com" , Is there way so that i can used that cookie for automatically logged in for ...
1
vote
1answer
86 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
0answers
67 views
joose/javascript based mason2 like server side templates
Exists something like Perlish Mason2 templates for the node.js? Mean something with the following functionality:
component based architecture (!!!) (with autohandlers, dhandlers (Base.mc))
on the ...
1
vote
2answers
186 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
1answer
142 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
...
...
2
votes
1answer
250 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 ...
4
votes
2answers
306 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
2answers
104 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 ...
7
votes
2answers
455 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 ...
0
votes
1answer
68 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?
1
vote
2answers
666 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. ...
4
votes
1answer
164 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 ...
14
votes
2answers
770 views
How to make Mason2 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 ...
1
vote
2answers
254 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
1answer
427 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 ...
2
votes
1answer
135 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 < ...
5
votes
2answers
670 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 ...
1
vote
1answer
486 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 ...
3
votes
4answers
800 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 ...
1
vote
2answers
565 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 ...
0
votes
3answers
442 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
vote
1answer
542 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 ...