Changes between Version 4 and Version 5 of DeveloperGuidelines/Basics


Ignore:
Timestamp:
07/04/13 10:06:27 (12 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Basics

    v4 v5  
    4747python web2py.py -S eden -M
    4848}}}
    49 To create data you will need to use the {{{db.commit()}}} command.
     49To have database changes be persistent (e.g. to see via Web UI), you will need to commit the transactions: {{{db.commit()}}}.
     50
     51=== Python ===
     52Indentation matters (use 4 spaces instead of Tabs)
     53* http://diveintopython.net
     54* http://openbookproject.net/thinkcs/python/english2e/
     55* http://software-carpentry.org
     56* Python v2 documentation: http://docs.python.org/ (We are currently using v2.7.)
     57* lxml (XML I/O): http://codespeak.net/lxml/tutorial.html
     58