File: README

package info (click to toggle)
libpetal-perl 2.19-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 1,076 kB
  • ctags: 166
  • sloc: perl: 4,732; xml: 726; makefile: 43
file content (79 lines) | stat: -rw-r--r-- 1,816 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
Petal - TAL for Perl
====================

Petal stands for "Perl Template Attribute Language". It is inspired from the
Zope Page Templates TAL specification, and lets you write elegant, WYSIWYG
friendly templates such as:

<ul petal:condition="user/list">
  <li petal:repeat="user user/list"
      petal:content="user/login">
    Dummy UserName
  </li>
</ul>

Petal by default processes XML template files (i.e. SVG, XHTML, VoiceXML,
whatever) using XML::Parser, however for convenience HTML is also supported
(using HTML::TreeBuilder).


INSTALLATION

To install this module type the following:

  perl Makefile.PL
  make
  make test
  make install

Or better, use CPAN.pm


DEPENDENCIES

This module requires these other modules and libraries:

  HTML::TreeBuilder
  XML::Parser


CONTRIBUTORS

Those people (sorted by chronological order of first contribution) have helped
Petal under the form of suggestions, bug reports, patches or tests. Thanks to
everybody!

William McKee <william@knowmad.com>
Lucas Saud <lucas.marinho@uol.com.br>
Sean M. Burke <sburke@cpan.org>
Chris Croome <chris@webarchitects.co.uk>
Paul Arzul <patricka@mkdoc.com>
Bruno Postle <bruno@mkdoc.com>
Kurt Stephens <kstep@pepsdesign.com>
Steve Purkis <spurkis@mkdoc.com>
Holland, Mark <Mark.Holland@commerzbankib.com>
Ronald Hayden <rhayden@apple.com>
Peter Wilson <pwilson@apple.com>
Fergal Daly <fergal@esatclear.ie>
Grant McLean <grant@mclean.net.nz>

(hopefully I didn't forget anybody...)


MISCELLEANOUS

  Join the Petal community!
  http://lists.webarch.co.uk/mailman/listinfo/petal
 

COPYRIGHT AND LICENCE

  This module free software and is distributed under the
  same license as Perl itself.

  Copyright (C) 2003 MKDoc Ltd.

  Authors: Jean-Michel Hiver, 
           Fergal Daly <fergal@esatclear.ie>,
           and others.