wiki:DeveloperGuidelines/Eclipse

Version 15 (modified by Fran Boon, 14 years ago) ( diff )

--

Eclipse

Eclipse is a full IDE supporting Debugging & Code Completion.

PyDev is an Eclipse module which supports Python.

Installation

  1. Install Java JDK
  2. Install Eclipse 3.6
  3. Install PyDev through Eclipse:
    1. Help menu > Install New Software
    2. Work with: http://pydev.org/updates
    3. Add, OK
    4. tick PyDev (can exclude the optional PyDev Mylyn Integration), Next, Next, Accept, Finish
    5. tick to trust certificate, Restart now
  4. Set up the Python Interpreter:
    1. Window > Preferences > PyDev > Interpreter - Python
    2. New, Browse to python26/python.exe, OK, OK
  5. Add a new PyDev Project:
    1. File > New > Project > PyDev Project > Next
    2. untick Use Default
    3. Browse to the web2py directory
    4. Give the project a name: eden, Next
    5. untick 'Create default 'src' folder and add it to the pythonpath'
  6. Debug Configuration: Run > Debug Configurations > Python Run
    1. Name: Sahana Eden
    2. Project: Browse to eden
    3. Main Module: Browse to web2py.py
    4. Arguments tab: Program Arguments: -a password
    5. Apply, Debug
    6. unblock in Windows Firewall

Other Installation Guides (should not be required):

Bzr integration (optional)

Configuration

  • Right-click on Java perspective in top-right & select Close
  • Window menu > Open Perspective > Other > Debug
  • Window menu > Show View > Expressions
  • right-click on toolbar > Customise Perspective > untick PyDev Debug, Run & External Tools

Debugging with Eclipse

  • Set and remove breakpoints by double clicking in the margin of the code file
  • Click the 'Debug Sahana Eden' button
  • F5 Step into functions
  • F6 Step over lines
  • F7 Step out of functions
  • Use expressions (drag and drop from code) or right-click > watch

DeveloperGuidelines

Note: See TracWiki for help on using the wiki.