Changes between Version 3 and Version 4 of GoFlow_Doc


Ignore:
Timestamp:
Jun 14, 2008, 3:32:30 PM (16 years ago)
Author:
GoFlow administrator
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GoFlow_Doc

    v3 v4  
    33
    44= !GoFlow User Guide =
    5 GoFlow is a ''django component''(project to provide application modules to another project django) to add workflow features to a project django.
     5GoFlow is a ''django component'' which adds workflow features to a django project.
    66
    7 We'll learn here to use this module, starting a project django very simple ("Hello world"), then gradually adding features.
     7We'll learn here how to use this module, starting with a very simple "Hello world" django project, and then gradually add features.
    88
    99== Prerequisite ==
    10 Create a directory, and copy the directory ''goflow''in this directory (you can also place it in any directory PYTHONPATH).
     10Create a directory, and copy the directory ''goflow'' to this directory (you can also place it in any directory in your PYTHONPATH).
    1111
    1212''Note'':
    13    In what follows, using filenames on, while the documentation Django
    14    advocates the use of absolute paths, this is voluntary, in order to simplify
    15    expressions and to be neutral vis-à-vis the platform (and it works, at least under Windows)
     13   In what follows, the use of relative paths, while the Django documentation
     14   advocates the use of absolute paths, is voluntary. This is done in order to simplify expressions   
     15   and to be platform independant (and it works, at least under Windows.)
    1616
    1717== 1. Project "Hello World" ==
     
    3232   )
    3333}}}
    34    The application ''workflow'' contains the "static" model data (modeling
    35    process), and application ''forums'' contains the dynamic part, or runtime.
     34   The ''workflow'' application contains the "static" model data (modeling
     35   process), and the ''instances'' application contains the dynamic part or runtime.
    3636
    37   * Setting up the party's database file settings, for example like this:
     37  * Setting up the database part of the settings file, for example like this:
    3838{{{
    3939   DATABASE_ENGINE = 'sqlite3'
     
    4141}}}
    4242
    43   * Add the following lines 2 in ''urls.py''  file:
     43  * Add the following two lines in the ''urls.py''  file:
    4444{{{
    4545   urlpatterns = patterns ('',
     
    5252}}}
    5353
    54   * Create now the database server and starting with:
     54  * Create now the database server and start it as this:
    5555{{{
    5656   python manage.py syncdb - pythonpath =..
Back to Top