wiki:DeveloperGuidelines/Eclipse

Version 40 (modified by Pat Tressel, 13 years ago) ( diff )

--

Developer Guidelines - Eclipse

Eclipse is a full IDE supporting Debugging & Code Completion.

PyDev is an Eclipse module which supports Python.

Installation

An Eclipse install with PyDev included is available in the 75Mb zip file which also includes Web2Py & Eden:

or install manually:

  1. Install Java JDK
  2. Install Eclipse (setup for 3.6 is documented below):
    • Look for "Latest release" on the downloads page.
    • (For Linux, and also apt-get install eclipse-platform but may get old version.)
  3. If using JDK 6u21: modify eclipse.ini
  4. 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
  5. Recommend installing Psyco to speed-up Python in Eclipse:

Configuration

  1. Set up the Python Interpreter:
    1. Window > Preferences > PyDev > Interpreter - Python
    2. New, Browse to python26/python.exe (or python27/python.exe if using 2.7), OK, OK
  2. 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, e.g.: "web2py", Next
    5. untick "Create default 'src' folder and add it to the pythonpath"
  3. Debug Configuration: Run > Debug Configurations > Python Run
    1. Name: Enter a name, e.g. web2py or eden.
    2. Project: Browse to web2py
    3. Main Module: Browse to web2py.py
    4. Arguments tab: Program Arguments: -a password (Choose a password for web2py and substitute it for "password".)
    5. Apply, Debug
    6. unblock in Windows Firewall
  4. If you want a HTML and JS editor (with syntax highlighting) in Eclipse:
    1. Help menu > Install New Software
    2. Work with: http://download.eclipse.org/releases/helios
    3. Add, OK
    4. Select Web, XML and Java EE Development
    5. (If present) select Web Tool Platform
    6. (If you get a conflicting dependency error, deselect the problem tool.)
    7. Tick to trust certificate, Restart now
  1. Miscellaneous suggestions:
    1. Right-click on Java perspective in top-right & select Close
    2. Window menu > Open Perspective > Other > Debug
    3. Window menu > Show View > Expressions
    4. right-click on toolbar > Customise Perspective > untick PyDev Debug, Run & External Tools
    5. Window menu > Preferences > General > Editors > File Associations > *.html
      • If Text Editor is not in the list of associated editors: Add (lower one), Text Editor, OK.
      • Select Text Editor, click default, OK.
      • Select Web Page Editor, remove, OK.
      • Select Web Browser, remove, OK.
    6. Windows > Preferences > General > Editors > Text Editors > tick Show line numbers
    7. Windows > Preferences > General > Workspace > tick 'Refresh on access', untick 'Build automatically'
    8. To show a margin line at 80 chars in the editor (to assist in our vain attempt to keep within that width): Windows > Preferences > General > Editors > Text Editors > tick Show Print Margin and set the margin to 80.
    9. You may want to change the layout of the window by dragging sections to convenient regions of the window and resizing them. Combine less-used sections as tabs in the same region.

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

Accessing private data

Some data is marked as private to let other developers know they shouldn't access this directly

  • e.g. in s3xrc.py we have S3Resource.__set & S3Resource.__query

This then means that Eclipse can't see these attributes as self.__set, etc.

Instead need to use:

xxx._ClassName__AttributeName

e.g.:

resource._S3Resource__query
resource._S3Resource__set

Bzr integration (optional)

Other Configuration Guides (should not be required):


DeveloperGuidelines

Note: See TracWiki for help on using the wiki.