From 628ecd5d9d294e601c79c7509140d02dcd7a1d40 Mon Sep 17 00:00:00 2001 From: Simon Cozens Date: Thu, 23 Dec 2004 14:45:28 +0000 Subject: [PATCH] + Updated manual, thanks to Dave Howorth + update Author in Maypole::Manual git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@322 48953598-375a-da11-a14b-00016c27c3ee --- lib/Maypole/Manual.pod | 52 +++-- lib/Maypole/Manual/About.pod | 78 +++++-- lib/Maypole/Manual/Beer.pod | 78 ++++--- lib/Maypole/Manual/BuySpy.pod | 50 +++-- lib/Maypole/Manual/Flox.pod | 187 +++++++++------- lib/Maypole/Manual/Model.pod | 33 ++- lib/Maypole/Manual/Request.pod | 274 +++++++++++++---------- lib/Maypole/Manual/StandardTemplates.pod | 165 ++++++++++---- lib/Maypole/Manual/View.pod | 145 +++++++----- lib/Maypole/Manual/Workflow.pod | 123 ++++------ lib/Maypole/View/TT.pm | 13 +- 11 files changed, 711 insertions(+), 487 deletions(-) diff --git a/lib/Maypole/Manual.pod b/lib/Maypole/Manual.pod index 8de39b0..c899854 100644 --- a/lib/Maypole/Manual.pod +++ b/lib/Maypole/Manual.pod @@ -10,17 +10,20 @@ be useful. =item L - Overview of the Project -This document is a general introduction to Maypole: What it is -(a framework for Web development), what it does (at the basic -level, it converts a URL -(e.g. C) into a -method call (i.e. "perform the C method on item C<12> -in the C table") and then shows the result (here, -presumably, a description of item C<12> in your product -database)), and how it works (by MVC, a design paradigm in +This document is a general introduction to Maypole: what it is, what it +does and how it works. + +Maypole is a framework for Web development. At the basic level, it +converts a URL like C into a +method call such as "perform the C method on item C<12> in the +C table" and then shows the result: here, presumably, a +description of item C<12> in your product database, + +It is based on Model-View-Controller (MVC), a design paradigm in which each major aspect of an application's operation is -handled by a different and totally separate system). Basic -installation instructions are given. A sample Web +handled by a different and totally separate system). + +Basic installation instructions are given. A sample Web application--the Beer database--is introduced, set up, and discussed. Finally, the path a Maypole request takes as it moves through the system is described. @@ -35,13 +38,13 @@ which basically creates a class for each table in your database and provides a variety of convenient methods for manipulating each table and its relations. It integrates very smoothly with Maypole's default L, -the L