In Section 7 of his paper, Terence Parr list 5 factors that define how "entangled" a templating engine is.

The interesting thing about his criteria is that although Perrin's paper sees Template and HTML::Mason in different categories, Terence's criteria sees them as equally entangled!

the criteria

Criteria HTML::Template Template HTML::Mason
the view cannot modify the model either by directly altering model data objects or by invoking methods on the model that cause side-effects. 1 0 0
the view cannot perform computations upon dependent data values For example, the view cannot compute book sale prices as “$price*.90”. 1 0 0
the view cannot compare dependent data values, but can test the properties of data such as presence/absence. Tests like $bloodPressure<120 must be moved to the model and replaced with a test for presence such as $bloodPressureOk!=null 1 0 0
the view cannot make data type assumptions. how the hell is that possible?! 0 0 0
data from the model must not contain display or layout information. 0 0 0
TOTALS 3 0 0

HTML::Seamstress has no particular policies on any of these. Not surprising. It is not a templating system! It could be grossly entangled or cleanly separated depending on the discipline of the object-oriented software developer.

In reply to Entanglement Index of Various Templating Systems by metaperl

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.