vote up 5 vote down star

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 comparison). From what I know, JSP is not a framework and I feel neither is Mason. When I looked up wikipedia Mason (Perl), I see that the main site says it is a web application framework written in Perl while the discussion page contests it.

Any pointers on why it is/ it is not a framework?

Update based on comments from ysth: For a framework, I feel it should at least make db access easy, manage sessions, basic security that a webapp would need, templating and code reuse (or libraries that make basic tasks easy).

flag

25% accept rate
You probably want to qualify your question as "is it a web application framework", since unqualified "framework" can apply to almost anything. – ysth Dec 8 '08 at 11:01
Perhaps you could post an answer to your own question listing the attributes a web application framework must have and which ones Mason does or does not have? – ysth Dec 8 '08 at 11:03
I just got around to clean up the question again. Some of the answers indicate it too. The question was very open to interpretation. – Arvind Dec 9 '08 at 4:57

7 Answers

vote up 7 vote down check

Mason is an 'M' short of being a MVC (Model-View-Controller) framework. It provides extensive rendering (View) features, which is why people think of Mason as being a templating language. However it also provides quite a few dispatch mechanisms (epsecially in the form of dhandlers), and control mechanisms (which fit naturally into autohandlers).

A few years ago I wrote an on-line tutorial (in Mason) to show off some of these features. It's optimised for full-screen display, and needs javascript enabled.

What Mason doesn't give you is a database abstraction layer, so you have to bring your own Model.

To the best of my knowledge amazon.com is written in Mason, along with many other sites.

If you enjoy working with Mason, but you'd like to have a Model, more toys, and a pony, then you may consider looking at Jifty as a web application framework.

link|flag
vote up 0 vote down

Mason alone is not a framework it's just a template system BUT with some very cool features. It's got it's own structure and you can embed perl code very easely in it also it's got cache support. I've seen people who use Mason alone for developing a large application, but I guess it works better in an MVC framework.

Take care!

link|flag
vote up 2 vote down

It is not an Model-View-Controller type of framework, it is probably closer to PHP than Ruby on Rails for example (and just as bad from what I have seen of it).

link|flag
vote up 1 vote down

Looking at Embedded Perl in HTML with Mason view of its competition, I'd say it is a template language. Otherwise Catalyst and Maypole would be on the list. Also, I think I read somewhere that you can use Mason as the View portion in a Catalyst application.

I guess I can see where you can use it like a framework, but it seems to be more complete if you view it as a template language.

link|flag
vote up 3 vote down

Can't answer the question to whether HTML::Mason is or isn't a framework without looking at it but I'm always happy with the following definition....

"a framework calls your program whereas your program calls a library"

/I3az/

link|flag
vote up 3 vote down

A templating system would be something like HTML::Template, that is, a module that only does templating.

I feel that Mason does more, it has somehow a routing mechanism, it provides argument handling though %ARGS, intialisations through %INIT.

It also provides interfaces to mod_perl, CGI...

Now, it does not talk to the database, as if you want a clean way to do it, you'll have to use Class::DBI, DBIx::Perlish or one of the other hundred perl modules that does object mapping, or whatever else...

link|flag
vote up 0 vote down

Depends of your definition of framework.

You can apply name framework to any library if it does more than one thing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.