~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to doc/webapp-process.txt

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-02-13 06:22:39 UTC
  • mfrom: (3691.394.1 lp-learning)
  • mto: This revision was merged to the branch mainline in revision 3801.
  • Revision ID: pqm@pqm.ubuntu.com-20070213062239-a402748c8d082659
[trivial] documentation fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
   - SQL statements
19
19
2. Design the web application's user interface
20
20
   - Table of URLs (see later)
21
 
   - Page tempate mock-ups
 
21
   - Page template mock-ups
22
22
3. Write the Interfaces that the application will use to access the database
23
23
   - interfaces.py files
24
24
4. Write the code and templates of the application
224
224
* Where possible, use self-posting forms.  So, you would go to the URL
225
225
  "./projects/+" to get a form asking you for the information needed to
226
226
  add a new project.  When you submit the form, it POSTs to the same
227
 
  URL.  If the provided informaiton is invalid, you'll get the form back
 
227
  URL.  If the provided information is invalid, you'll get the form back
228
228
  with an error message.  Otherwise, you'll get a "success" message, or be
229
229
  redirected to the next page in the workflow.
230
230