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
|
\documentclass{manual}
\title{Mod\_python Manual}
\author{Gregory Trubetskoy}
% Please at least include a long-lived email address;
% the rest is at your discretion.
\authoraddress{
E-mail: \email{grisha@modpython.org}
}
% do not mess with the 2 lines below, they are written by make dist
\release{2.7.8}
\date{April 19, 2002}
\makeindex % tell \index to actually write the .idx file
\makemodindex % If this contains a lot of module sections.
\begin{document}
\maketitle
% This makes the contents more accessible from the front page of the HTML.
\ifhtml
\chapter*{Front Matter\label{front}}
\fi
\input{copyright}
\begin{abstract}
\noindent
Mod_python allows embedding Python within the Apache server for a considerable
boost in performance and added flexibility in designing web based
applications.
This document aims to be the only necessary and authoritative source of
information about mod_python, usable as a comprehensive refence, a user guide
and a tutorial all-in-one.
\begin{seealso}
\seetitle[http://www.python.org/]
{Python Language Web Site}{for information on the Python language}
\seetitle[http://httpd.apache.org/]
{Apache Server Web Site}{for information on the Apache server}
\end{seealso}
\end{abstract}
\tableofcontents
\input{modpython1} % Introduction
\input{modpython2} % Installation
\input{modpython3} % Tutorial
\input{modpython4} % Python API
\input{modpython5} % Apache directives
\input{modpython6} % Handlers
\appendix
\input{appendixa} % Windows Install
\input{appendixb} % VMS Install
\input{modpython.ind}
\end{document}
|