Update of /cvsroot/pymerase/Docs/output
In directory sc8-pr-cvs1:/tmp/cvs-serv383
Added Files:
output_modules.tex
Log Message:
First version of latex output module docs
--- NEW FILE: output_modules.tex ---
% Pymerase Docs - Output Modules
% Copyright (c) California Institute of Technology
%
% Authors: Brandon King
% $Revision: 1.1 $
% Modified $Date: 2003/05/06 21:09:24 $
\documentclass{article}
\usepackage{graphicx}
\usepackage{color}
\usepackage[margin=3cm,noheadfoot]{geometry}
\setlength{\parindent}{0in}
\setlength{\parskip}{2mm}
%colors
\newcommand{\cb}{\color{blue}}
%new commands
\newcommand{\pymlink}{http://pymerase.sf.net}
%document
\begin{document}
%title page
\begin{titlepage}
\title{\cb Pymerase Docs - Output Modules
}
\author{Brandon King \\
Copyright \copyright California Institute of Technology}
\date{Version 0.1.1\\\today}
\maketitle
\thispagestyle{empty}
\end{titlepage}
\tableofcontents
\thispagestyle{empty}
\newpage
%Document Body
\setcounter{page}{1}
\section{\cb Output Modules}
\subsection{\cb Overview}
\subsubsection{\cb Status Key}
\begin{tabular}{ll}
\bf Label & \bf Description \\
Release & Stable release. \\
Beta & Functional, has bugs, needs testing. \\
Alpha & Functional, lots of bugs, not finished, needs testing. \\
WP & Work in progress, Non-Functional. \\
Abandoned & Abandoned, Non-Functional. \\
Planning & In Plan phase, little or no code exists.
\end{tabular}
\subsubsection{\cb Current CVS Checkout}
\begin{tabular}{lccl}
\bf Output Module & \bf Status & \bf Prev. Status &
\bf Description \\
CreateDBAPI & Beta & Beta & Python Database API (Currently \\
& & & PostgreSQL Support) \\
CreateDBEditor & Abandoned & Alpha & Prototype CGI \\
& & & Scripts for accessing DB \\
CreateGraphvizUML & Beta & Beta & Generates dot files for \\
& & & use with Graphviz. \\
CreateHtmlForms & Abandoned & Alpha & Prototype Html Forms \\
& & & used with CreateDBEditor. \\
CreatePyTkDBWidgets & Alpha & Alpha & Creates Python \\
& & & Tkinter DBAPI Aware Widgets \\
CreatePyTkWidgets & Alpha & Alpha & Creates Python \\
& & & Tkinter Widget Lib for GUI Building \\
CreatePythonAPI & WP & WP & Python Object Model \\
CreateReport & Beta & Beta & Creates a Report text file \\
& & & describing your model. \\
CreateSQL & Beta & Beta & Creates SQL statements creating \\
& & & a database \\
CreateTableXML & Beta & Beta & Generates Table.dtd XML \\
& & & files. Provides more information \\
iPymerase & Beta & Beta & Exposes an ipython interpreter \\
& & & for exploring Pymerase API.
\end{tabular}
\subsubsection{\cb System Requirements}
\begin{tabular}{lll}
\bf Output Module & \bf Python Module Req. & \bf Other Requirements \\
CreateDBAPI & Pygresql (pgdb), mxDatetime (mx.DateTime) & Postgresql \\
CreateGraphvizUML & None & Graphviz (dot) \\
CreatePyTkDBWidgets & CreateDBAPI, Tkinter (Standard package) &
None \\
CreatePyTkWidgets & Tkinter (Standard package) & None \\
CreatePythonAPI & mxDateTime & None \\
CreateReport & None & None \\
CreateSQL & None & PostgreSQL \\
CreateTableXML & None & None \\
iPymerase & None & ipython
\end{tabular}
\end{document}
|