summaryrefslogtreecommitdiff
path: root/docs/users_guide/gettingStarted.rst
blob: de4159f14e9bc3ce44a19e7b8f1efcd95289c405 (plain)
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
Getting Started
===============

(gettingStarted)

Requirements
------------

(gettingStarted.requirements)

Cheetah requires Python release 2.7 (there are plans to support 3.4+).
It is known to run on Linux, Windows, FreeBSD and Solaris,
and should run anywhere Python runs.

99% of Cheetah is written in Python. There is one small C module
({\_namemapper.so}) for speed, but Cheetah automatically falls back
to a Python equivalent ({NameMapper.py}) if the C module is not
available.

Cheetah can use an additional module Markdown but it's not strictly required.

Installation
------------

(gettingStarted.install)

To install Cheetah in your system-wide Python library:


#. Login as a user with privileges to install system-wide Python
   packages. On POSIX systems (AIX, Solaris, Linux, IRIX, etc.), the
   command is normally 'su root'. On non-POSIX systems such as Windows
   NT, login as an administrator.

#. Run {pip install Cheetah3} at the command prompt.

#. Or download source code and run {python setup.py install}.

#. The setup program will install the wrapper script { cheetah} to
   wherever it usually puts Python binaries ("/usr/bin/", "bin/" in
   the Python install directory, etc.)

#. If you cannot login as as an administrator install Cheetah as user to your
   own home directory: add option {--user} to commands: either
   {pip install --user Cheetah3} or {python setup.py install --user}.

Cheetah's installation is managed by Python's Distribution
Utilities ('distutils'). There are many options for customization.
Type {python setup.py help} for more information.

To install Cheetah in an alternate location - someplace outside
Python's {site-packages/} directory, use one of these options:

::

        python setup.py install --home /home/tavis
        python setup.py install --install-lib /home/tavis/lib/python

Either way installs to /home/tavis/lib/python/Cheetah/ . Of course,
/home/tavis/lib/python must be in your Python path in order for
Python to find Cheetah.

Files
-----

(gettingstarted.files)

If you do the systemwide install, all Cheetah modules are installed
in the { site-packages/Cheetah/} subdirectory of your standard
library directory; e.g.,
/opt/Python2.2/lib/python2.2/site-packages/Cheetah.

Two commands are installed in Python's {bin/} directory or a system
bin directory: {cheetah} (section gettingStarted.cheetah) and
{cheetah-compile} (section howWorks.cheetah-compile).

Uninstalling
------------

(gettingstarted.uninstalling)

To uninstall Cheetah, merely delete the site-packages/Cheetah/
directory. Then delete the "cheetah" and "cheetah-compile" commands
from whichever bin/ directory they were put in.

The 'cheetah' command
---------------------

(gettingStarted.cheetah)

Cheetah comes with a utility {cheetah} that provides a command-line
interface to various housekeeping tasks. The command's first
argument is the name of the task. The following commands are
currently supported:

::

    cheetah compile [options] [FILES ...]     : Compile template definitions
    cheetah fill [options] [FILES ...]        : Fill template definitions
    cheetah help                              : Print this help message
    cheetah options                           : Print options help message
    cheetah test                              : Run Cheetah's regression tests
    cheetah version                           : Print Cheetah version number

You only have to type the first letter of the command: {cheetah c}
is the same as {cheetah compile}.

The test suite is described in the next section. The {compile}
command will be described in section howWorks.cheetah-compile, and
the {fill} command in section howWorks.cheetah-fill.

The depreciated {cheetah-compile} program does the same thing as
{cheetah compile}.

Testing your installation
-------------------------

(gettingStarted.test)

After installing Cheetah, you can run its self-test routine to
verify it's working properly on your system. Change directory to
any directory you have write permission in (the tests write
temporary files). Do not run the tests in the directory you
installed Cheetah from, or you'll get unnecessary errors. Type the
following at the command prompt:

::

    cheetah test

The tests will run for about three minutes and print a
success/failure message. If the tests pass, start Python in
interactive mode and try the example in the next section.

Certain test failures are insignificant:

    Python 2.3 changed the string representation of booleans, and the
    tests haven't yet been updated to reflect this.

    Certain tests run "cheetah" as a subcommand. The failure may mean
    the command wasn't found in your system path. (What happens if you
    run "cheetah" on the command line?) The failure also happens on
    some Windows systems for unknown reasons. This failure has never
    been observed outside the test suite. Long term, we plan to rewrite
    the tests to do a function call rather than a subcommand, which
    will also make the tests run significantly faster.

    The test tried to write a temporary module in the current directory
    and {import} it. Reread the first paragraph in this section about
    the current directory.

    May be the same problem as SampleBaseClass; let us know if changing
    the current directory doesn't work.


If any other tests fail, please send a message to the e-mail list
with a copy of the test output and the following details about your
installation:


#. your version of Cheetah

#. your version of Python

#. your operating system

#. whether you have changed anything in the Cheetah installation


Quickstart tutorial
-------------------

(gettingStarted.tutorial)

This tutorial briefly introduces how to use Cheetah from the Python
prompt. The following chapters will discuss other ways to use
templates and more of Cheetah's features.

The core of Cheetah is the {Template} class in the
{Cheetah.Template} module. The following example shows how to use
the {Template} class in an interactive Python session. {t} is the
Template instance. Lines prefixed with {>>>} and {...} are user
input. The remaining lines are Python output.

::

    >>> from Cheetah.Template import Template
    >>> templateDef = """
    ... <HTML>
    ... <HEAD><TITLE>$title</TITLE></HEAD>
    ... <BODY>
    ... $contents
    ... ## this is a single-line Cheetah comment and won't appear in the output
    ... #* This is a multi-line comment and won't appear in the output
    ...    blah, blah, blah
    ... *#
    ... </BODY>
    ... </HTML>"""
    >>> nameSpace = {'title': 'Hello World Example', 'contents': 'Hello World!'}
    >>> t = Template(templateDef, searchList=[nameSpace])
    >>> print t

    <HTML>
    <HEAD><TITLE>Hello World Example</TITLE></HEAD>
    <BODY>
    Hello World!
    </BODY>
    </HTML>
    >>> print t    # print it as many times as you want
          [ ... same output as above ... ]
    >>> nameSpace['title'] = 'Example #2'
    >>> nameSpace['contents'] = 'Hiya Planet Earth!'
    >>> print t   # Now with different plug-in values.
    <HTML>
    <HEAD><TITLE>Example #2</TITLE></HEAD>
    <BODY>
    Hiya Planet Earth!
    </BODY>
    </HTML>

Since Cheetah is extremely flexible, you can achieve the same
result this way:

::

    >>> t2 = Template(templateDef)
    >>> t2.title = 'Hello World Example!'
    >>> t2.contents = 'Hello World'
    >>> print t2
          [ ... same output as the first example above ... ]
    >>> t2.title = 'Example #2'
    >>> t2.contents = 'Hello World!'
    >>> print t2
         [ ... same as Example #2 above ... ]

Or this way:

::

    >>> class Template3(Template):
    >>>     title = 'Hello World Example!'
    >>>     contents = 'Hello World!'
    >>> t3 = Template3(templateDef)
    >>> print t3
         [ ... you get the picture ... ]

The template definition can also come from a file instead of a
string, as we will see in section howWorks.constructing.

The above is all fine for short templates, but for long templates
or for an application that depends on many templates in a
hierarchy, it's easier to store the templates in separate \*.tmpl
files and use the { cheetah compile} program to convert them into
Python classes in their own modules. This will be covered in
section howWorks.cheetah-compile.

As an appetizer, we'll just briefly mention that you can store
constant values { inside} the template definition, and they will be
converted to attributes in the generated class. You can also create
methods the same way. You can even use inheritance to arrange your
templates in a hierarchy, with more specific templates overriding
certain parts of more general templates (e.g., a "page" template
overriding a sidebar in a "section" template).

For the minimalists out there, here's a template definition,
instantiation and filling all in one Python statement:

::

    >>> print Template("Templates are pretty useless without placeholders.")
    Templates are pretty useless without placeholders.

You use a precompiled template the same way, except you don't
provide a template definition since it was already established:

::

    from MyPrecompiledTemplate import MyPrecompiledTemplate
    t = MyPrecompiledTemplate()
    t.name = "Fred Flintstone"
    t.city = "Bedrock City"
    print t