File: index.html

package info (click to toggle)
libtemplate-perl 2.24-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 8,660 kB
  • sloc: perl: 14,518; makefile: 15; sh: 5
file content (270 lines) | stat: -rwxr-xr-x 15,191 bytes parent folder | download | duplicates (2)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN">
<html>
  <head>
    <title>Template::Toolkit</title>
    <link rel="stylesheet" type="text/css" href="/css/blue.css" title="Clear Blue">
    <link rel="alternate stylesheet" type="text/css" href="/css/orange.css" title="Clear Orange">
    <link rel="alternate stylesheet" type="text/css" href="/css/green.css" title="Clear Green">
    <link rel="alternate stylesheet" type="text/css" href="/css/purple.css" title="Clear Purple">
    <link rel="alternate stylesheet" type="text/css" href="/css/grey.css" title="Clear Grey">
    <!--[if IE 6]>
    <link rel="stylesheet" type="text/css" href="/css/ie6.css" />
    <![endif]-->
    <link rel="stylesheet" type="text/css" href="/css/print.css" media="print">
    <script type="text/javascript" src="/js/tt2.js"></script>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
    <meta name="author" content="Andy Wardley">
  </head>
  <body id="body"> 
    <div id="layout">
        <div id="header">
          <a href="/index.html" id="logo" alt="" title="Click for the Home Page"><span class="alt">TT2 Home Page</span></a>
          <ul id="trail" class="blank"></ul>
          <div class="controls">
            <a href="#" class="menu show" onclick="widescreen_off(); return false" title="Show Menu">
              <span class="about">Click to view the menu.  It's very nice.</span>
            </a>
            <a href="#" class="menu hide" onclick="widescreen_on();  return false" title="Hide Menu">
              <span class="about">Click to hide the menu and go all widescreen!</span>
            </a>
          
          <div class="pager">
            <span class="go back">Back<span class="about">Hello, I'm a talking badger.</span></span>
            <span class="go up">Up<span class="about">My name is <i>Meles Meles</i>, but you can call me "Badger".</span></span>
            <span class="go next">Next<span class="about">You can't go to the next page.  Would you like to come foraging for nuts and berries in the forest with me instead?</span></span>
          </div>
          </div>
          <h1 class="headline">Template::Toolkit</h1>
          <h2 class="subhead">Template Processing System</h1>
        
        </div>
        <div id="page">
          <div id="sidebar">
            <a href="/index.html" id="logo"></a>
            <div id="menu">
              <ul class="menu">
                <li class="l0 first"><a href="/manual/index.html">Manual</a></li>
                <li class="l0"><a href="/modules/index.html">Modules</a></li>
                <li class="l0"><a href="/tools/index.html">Tools</a></li>
                <li class="l0 last"><a href="/tutorial/index.html">Tutorial</a></li>
              </ul>
              <div class="foot"></div>
            </div>
          </div>
          <div id="content">
          <div class="section">
            <div class="head">
              <h1 id="contents" onclick="switch_section(this)" title="Click title to show/hide section content.">Contents</h1>
              <a href="#body" class="top" title="Back up to the top of the page" >Top</a>
            </div>
            <div class="body">
              <ul class="toc">
                  <li class=""><a href="#Introduction">Introduction</a></li>
                  <li class=""><a href="#Documentation">Documentation</a></li>
                  <li class=""><a href="#Author">Author</a></li>
                  <li class=""><a href="#Copyright">Copyright</a></li>
                  <li class=""><a href="#See_Also">See Also</a></li>
              
              </ul>
            </div>
          </div>
          
                <div class="pod">
            <div class="section">
              <div class="head">
                <h1 id="Introduction" onclick="switch_section(this)" title="Click title to show/hide section content.">Introduction</h1>
                <a href="#body" class="top" title="Back up to the top of the page" >Top</a>
              </div>
              <div class="body">
                <p>
                      The Template Toolkit is a collection of Perl modules which implement a
                      fast, flexible, powerful and extensible template processing system.
                    </p>
                    <p>
                      It is "input-agnostic" and can be used equally well for processing any
                      kind of text documents: HTML, XML, CSS, Javascript, Perl code, plain
                      text, and so on. However, it is most often used for generating static and
                      dynamic web content, so that's what we'll focus on here.
                    </p>
                    <p>
                      Although the Template Toolkit is written in Perl, you don't need to be a
                      Perl programmer to use it. It was designed to allow non-programmers to
                      easily create and maintain template-based web sites without having to
                      mess around writing Perl code or going crazy with cut-n-paste.
                    </p>
                    <p>
                      However, the Template Toolkit is also designed to be extremely flexible
                      and extensible. If you are a Perl programmer, or know someone who is,
                      then you can easily hook the Template Toolkit into your existing code,
                      data, databases and web applications. Furthermore, you can easily extend
                      the Template Toolkit through the use of its plugin mechanism and other
                      developer APIs.
                    </p>
                    <p>
                      Whatever context you use it in, the primary purpose of the Template
                      Toolkit is to allow you to create a clear separation between the
                      presentation elements of your web site and everything else.
                    </p>
                    <p>
                      If you're generating static web pages, then you can use it to separate
                      the commonly repeated user interface elements on each page (headers,
                      menus, footers, etc.) from the core content. If you're generating dynamic
                      web pages for the front end of a web application, then you'll also be
                      using it to keep the back-end Perl code entirely separate from the
                      front-end HTML templates. Either way, a <i>clear separation of
                      concerns</i> is what allow you to concentrate on one thing at a time
                      without the other things getting in your way. And that's what the
                      Template Toolkit is all about.
                    </p>
              </div>
            </div>
            <div class="section">
              <div class="head">
                <h1 id="Documentation" onclick="switch_section(this)" title="Click title to show/hide section content.">Documentation</h1>
                <a href="#body" class="top" title="Back up to the top of the page" >Top</a>
              </div>
              <div class="body">
                <p>
                      The documentation for the Template Toolkit is organised into four
                      sections.
                    </p>
                    <p>
                      The <a href="/manual/index.html">Template::Manual</a>
                      contains detailed information about using the Template Toolkit. It gives
                      examples of its use and includes a full reference of the template
                      language, configuration options, filters, plugins and other component
                      parts.
                    </p>
                    <p>
                      The <a href="/modules/index.html">Template::Modules</a> page lists the Perl modules that comprise the
                      Template Toolkit. It gives a brief explanation of what each of them does,
                      and provides a link to the complete documentation for each module for
                      further information. If you're a Perl programmer looking to use the
                      Template Toolkit from your Perl programs then this section is likely to
                      be of interest.
                    </p>
                    <p>
                      Most, if not all of the information you need to call the Template Toolkit
                      from Perl is in the documentation for the <a href="/modules/Template.html">Template</a> module. You only really need to
                      start thinking about the other modules if you want to extend or modify
                      the Template Toolkit in some way, or if you're interested in looking
                      under the hood to see how it all works.
                    </p>
                    <p>
                      The documentation for each module is embedded as POD in each module, so
                      you can always use <code>perldoc</code> from the command line to read a
                      module's documentation. e.g.
                    </p>
                    <pre>$ perldoc Template
$ perldoc Template::Context
  ...etc...</pre>
                    <p>
                      It's worth noting that all the other documentation, including the user
                      manual is available as POD. e.g.
                    </p>
                    <pre>$ perldoc Template::Manual
$ perldoc Template::Manual::Config
  ...etc...</pre>
                    <p>
                      The <a href="/tools/index.html">Template::Tools</a>
                      section contains the documentation for <a
                      href="#section_tpage">Template::Tools::tpage</a> and <a
                      href="#section_ttree">Template::Tools::ttree</a>. These are two command
                      line programs that are distributed with the Template Toolkit. <a
                      href="/tools/tpage.html">tpage</a> is used to
                      process a single template file, <a href="/tools/ttree.html">ttree</a> for processing entire
                      directories of template files.
                    </p>
                    <p>
                      The <a href="/tutorial/index.html">Template::Tutorial</a> section contains two introductory tutorials
                      on using the Template Toolkit. The first is <a href="/tutorial/Web.html">Template::Tutorial::Web</a> on
                      generating web content. The second is <a href="/tutorial/Datafile.html">Template::Tutorial::Datafile</a> on using the Template Toolkit to
                      generate other data formats including XML.
                    </p>
                    <p>
                      All of the documentation is also provided in HTML format in the
                      <i>docs</i> sub-directory of the Template Toolkit distribution. You can
                      also read it online at the Template Toolkit web site: <a
                      href="http://template-toolkit.org/">http://template-toolkit.org/</a>
                    </p>
              </div>
            </div>
            <div class="section">
              <div class="head">
                <h1 id="Author" onclick="switch_section(this)" title="Click title to show/hide section content.">Author</h1>
                <a href="#body" class="top" title="Back up to the top of the page" >Top</a>
              </div>
              <div class="body">
                <p>
                      The Template Toolkit was written by <a href="http://wardley.org/">Andy
                      Wardley</a> &lt;abw@wardley.org&gt; with assistance and contributions
                      from a great number of people. Please see <a href="/manual/Credits.html">Template::Manual::Credits</a>
                      for a full list.
                    </p>
              </div>
            </div>
            <div class="section">
              <div class="head">
                <h1 id="Copyright" onclick="switch_section(this)" title="Click title to show/hide section content.">Copyright</h1>
                <a href="#body" class="top" title="Back up to the top of the page" >Top</a>
              </div>
              <div class="body">
                <p>
                      Copyright (C) 1996-2007 Andy Wardley. All Rights Reserved.
                    </p>
                    <p>
                      This module is free software; you can redistribute it and/or modify it
                      under the same terms as Perl itself.
                    </p>
              </div>
            </div>
            <div class="section">
              <div class="head">
                <h1 id="See_Also" onclick="switch_section(this)" title="Click title to show/hide section content.">See Also</h1>
                <a href="#body" class="top" title="Back up to the top of the page" >Top</a>
              </div>
              <div class="body">
                <p>
                      <a href="/modules/Template.html">Template</a>, <a href="/manual/index.html">Template::Manual</a>, <a href="/modules/index.html">Template::Modules</a>, <a href="/tools/index.html">Template::Tools</a>, <a href="/tutorial/index.html">Template::Tutorial</a>
                    </p>
              </div>
            </div>
            
            </div></div>
          <br class="clear" />
          <div class="pageinfo">
            /index.html last modified 10:57:36 31-May-2007
          </div>
        </div>
        
        <div id="footer">
          <a href="http://opensource.org/" class="osi"></a>
          <div class="controls">
          <div class="pager">
            <span class="go back">Back<span class="about"></span></span>
            <span class="go up">Up<span class="about"></span></span>
            <span class="go next">Next<span class="about"></span></span>
          </div>
          </div>
          <div class="copyright">
            Copyright &copy; 1996-2007 <a href="http://wardley.org/">Andy Wardley</a>.  All Rights Reserved.
          </div>
          <div class="licence">
            The <a href="http://template-toolkit.org/">Template Toolkit</a> is <a href="http://opensource.org/">Open Source</a> software.
            You can redistribute and/or modify it under the terms of the <a href="http://www.opensource.org/licenses/gpl-license.php">GNU Public Licence</a>
            or the <a href="http://www.opensource.org/licenses/artistic-license.php">Perl Artistic Licence</a>.
          </div>
        </div>
        <div id="palette">
          <ul>
            <li class="first"><a href="#" class="blue" onclick="set_style('Clear Blue')"></a></li>
            <li><a href="#" class="orange" onclick="set_style('Clear Orange')"></a></li>
            <li><a href="#" class="green" onclick="set_style('Clear Green')"></a></li>
            <li><a href="#" class="purple" onclick="set_style('Clear Purple')"></a></li>
            <li><a href="#" class="grey" onclick="set_style('Clear Grey')"></a></li>
          </ul>
        </div>
    </div>  </body>
</html>