NAME

HTML::Seamstress - HTML::Tree subclass for HTML templating via tree rewriting


SYNOPSIS

HTML::Seamstress provides ``fourth generation'' dynamic HTML generation (templating).

In the beginning we had...

First generation dynamic HTML production

First generation dynamic HTML production used server-side includes:

 <p>Today's date is   <!--#echo var="DATE_LOCAL" --> </p>

Second generation dynamic HTML production

The next phase of HTML generation saw embedded HTML snippets in Perl code. For example:

 sub header {
   my $title = shift;
   print <<"EOHEADER";
   <head>
      <title>$title</title>
   </head>
   EOHEADER
 }

Third generation dynamic HTML production

The 3rd generation solutions embed programming language constructs with HTML. The language constructs are either a real language (as is with the HTML::Mason manpage) or a pseudo/mini-language (as is with PeTaL, Template or the HTML::Template manpage). Let's see some Template code:

 <p>Hi there [% name %], are you enjoying your stay?</p>

Talkin' bout them generations...

Up to now, all approaches to this issue tamper with the HTML in some form or fashion:

Enter fourth generation dynamic HTML production

The fourth generation of HTML production is distinguished by no need for tampering with the HTML. There are a wealth of XML-based modules which provide this approach (the XML::Twig manpage, the XML::LibXML manpage, the XML::TreeBuilder manpage, the XML::DOM manpage). HTML::Seamstress is the one CPAN module based around HTML and the HTML::Tree manpage for this approach.


PHILOSOPHY and MOTIVATION of HTML::Seamstress

When looking at HTML::Seamstress, we are looking at a uniquely positioned 4th-generation HTML generator. Seamstress offers two sets of advantages: those common to all 4th generation htmlgens and those common to a subclass of the HTML::Tree manpage.

Reap 4th generation dynamic HTML generation benefits

What advantages does this fourth way of HTML manipulation offer? Let's take a look:

Separate HTML development and its programmatic modification

The contents of the document remain legal HTML/XML that can be be developed using standard interactive design tools. The flow of control of the code remains separate from the page. Technologies that mix content and data in a single file result in code that is often difficult to understand and has trouble taking full advantage of the object oriented programming paradigm.

Reduced learning curve

If you have a strong hold on object-oriented Perl and a solid understand of the tree-based nature of HTML, then all you need to do is read the manual pages showing how Seamstress and related modules offer tree manipulation routines and you are done.

Extension just requires writing new Perl methods - a snap for any object oriented Perler.

Static validation and formatting

Mixing Perl and HTML (by any of the generation 1-3 approaches) makes it impossible to use standard validation and formatting tools for either Perl or HTML.

Two full-strength programming languages: HTML and Perl

Perl and HTML are solid technologies with years of effort behind making them robust and flexible enough to meet real-world technological demands.

Multiple views and reuses of the same element

Because manipulator and manipulated are separate, we can choose manipulators and/or stack them at will.

Reap the benefits of using HTML::Tree

Pragmatic HTML instead of strict X(HT)ML

The real world is unfortunately more about getting HTML to work with IE and maybe 1 or 2 other browsers. Strict XHTML may not be acceptable under time and corporate pressures to get things to work with quirky browsers.

Rich API and User Contributions

the HTML::Tree manpage has a nice large set of accessor/modifier functions. If that is not enough, then take a gander at Matthew Sisk's contributions: http://search.cpan.org/~msisk/ as well as the HTML::Element::Library manpage.


USAGE

Now it's time to look at some examples. Before doing so, it is imperative that you understand the tree structure of HTML.

Understand that HTML is a tree

The best representation of this fact is this slide right here:

http://xmlc.objectweb.org/doc/xmlcSlides/xmlcSlides.html#de

If you understand this (and maybe the rest of the slides), then you have a good grip on seeing HTML as a tree.

the HTML::AboutTrees manpage does also teach this, but it takes a while before he gets to what matters to us. It's a fun read nonetheless.

Now that we've got this concept under our belts let's try some full examples.

Install and Setup Seamstress

The first thing to remember is that Seamstress is really just convenience functions for HTML::Tree. You can do entirely without Seamstress. It's just that my daily real-world obligations have lead to a set of library functions (HTML::Element::Library) and a convenient way to locate ``templates'' (spkg.pl) that work well on top of HTML::Tree

Text substitution == node mutation

In our first example, we want to perform simple text substitution on the HTML template document:

 <html>
 <head>
   <title>Hello World</title>
 </head>
 <body>
 <h1>Hello World</h1>
   <p>Hello, my name is <span id="name">dummy_name</span>.
   <p>Today's date is <span id="date">dummy_date</span>.
 </body>
 </html>

First save this somewhere on your document root. Then compile it with spkg.pl. Now you simply use the ``compiled'' version of HTML with API calls to HTML::TreeBuilder, HTML::Element, and HTML::Element::Library.

 use html::hello_world; 
 
 my $tree = html::hello_world->new; 
 $tree->look_down(id => name)->replace_content('terrence brannon');
 $tree->look_down(id => date)->replace_content('5/11/1969');
 print $tree->as_HTML;

replace_content() is a convenience function in the HTML::Element::Library manpage.

If-then-else == node(s) deletion

 <span id="age_dialog">
    <span id="under10">
       Hello, does your mother know you're 
       using her AOL account?
    </span>
    <span id="under18">
       Sorry, you're not old enough to enter 
       (and too dumb to lie about your age)
    </span>
    <span id="welcome">
       Welcome
    </span>
 </span>

Again, compile and use the module:

 use html::age_dialog;
 my $tree = html::dialog->new;
 $tree->highlander
    (age_dialog =>
     [
      under10 => sub { $_[0] < 10} , 
      under18 => sub { $_[0] < 18} ,
      welcome => sub { 1 }
     ],
     $age
    );
  print $tree->as_HTML;
  # will only output one of the 3 dialogues based on which closure 
  # fires first

And once again, the function we used is the highlander method, also a part of the HTML::Element::Library manpage.

The following libraries are always available for more complicated manipulations:

Looping == child/sibling proliferation

Table unrolling, pulldown creation, li unrolling, and dl unrolling are all examples of a tree operation in which you take a child of a node and clone it and then alter it in some way (replace the content, alter some of its attributes), and then stick it under its parent.

Functions for use with the common HTML elements --- <table>, <ol>, <ul>, <dl>, <select> are documented in the HTML::Element::Library manpage and are prefaced with the words ``Tree Building Methods''.

What Seamstress offers

Beyond the ``compilation'' support documented above, Seamstress offers nothing more than a simple structure-modifying method, expand_replace(). And to be honest, it probably shouldn't offer that. But once, when de-Mason-izing a site, it was easier to keep little itty-bitty components all over and so I wrote this method to facilitate the process.

Let's say you have this HTML:

     <div id="sidebar">
        <div class="sideBlock" id=mpi>mc::picBar::index</div>
        <div class="sideBlock" id=mnm>mc::navBox::makeLinks</div>
        <div class="sideBlock" id=mg>mc::gutenBox</div>
      </div>

In this case, the content of each sideBlock is the name of a Perl Seamstress-style class. As you know, when the constructor for such a class is called an HTML::Element, $E, will be returned for it's parsed content.

In this case, we want the content of the div element to go from the being the class name to being the HTML::Element that the class constructs. So to inline all 3 tags you would do the following;

 $tree->look_down(id => $_)->expand_replace for qw(mpi mnm mg);

What Seamstress works with

Class::Cache

Useful in mod_perl environments and anywhere you want control over the timing of object creation.

The family of HTML::Tree contributions


SEE ALSO

HTML Templating as Tree Rewriting: Part I: ``If Statements''

http://perlmonks.org/index.pl

HTATR II: HTML table generation via DWIM tree rewriting

http://perlmonks.org/index.pl

Survey of Surveys on HTML Templating systems

http://perlmonks.org/

A fierce head-to-head between PeTaL and Seamstress goes on for several days in this thread!

The disadvantages of mini-languages

http://perlmonks.org/

The limitations of mini-languages

A striking example of the limitations of mini-languages is shown here: http://perlmonks.org/

But the most cogent argument for using full-strength languages as opposed to mixing them occurs in the the Text::Template manpage docs:

 When people make a template module like this one, they almost always
 start by inventing a special syntax for substitutions. For example,
 they build it so that a string like %%VAR%% is replaced with the
 value of $VAR. Then they realize the need extra formatting, so they
 put in some special syntax for formatting. Then they need a loop, so
 they invent a loop syntax. Pretty soon they have a new little
 template language.
 This approach has two problems: First, their little language is
 crippled. If you need to do something the author hasn't thought of,
 you lose. Second: Who wants to learn another language? You already
 know Perl, so why not use it?

Problems with JSP (JSP is similar to HTML::Mason)

http://www.servlets.com/soapbox/problems-jsp-reaction.html

http://www-106.ibm.com/developerworks/library/w-friend.html

http://www.theserverside.com/resources/article.jsp

Los Angeles Perl Mongers Talk on HTML::Seamstress

http://www.metaperl.com

XMLC, A similar framework for Java

http://xmlc.enhydra.org

Similar Frameworks for Perl

Two other frameworks come to mind. Both are stricter with regard to the correctness of the HTML and both use a different means for node lookup and rewrite.


SUPPORT

http://lists.sourceforge.net/lists/listinfo/seamstress-discuss


AUTHOR

Terrence Brannon, tbone@cpan.org

ACKNOWLEDGEMENTS

I would like to thank


COPYRIGHT AND LICENSE

Copyright 2002-2005 by Terrence Brannon.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.