addon-sdk/source/README

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 Add-on SDK README
     2 ==================
     4 Before proceeding, please make sure you've installed Python 2.5,
     5 2.6, or 2.7 (if it's not already on your system):
     7   http://python.org/download/
     9 Note that Python 3 is not supported.
    11 For Windows users, MozillaBuild (https://wiki.mozilla.org/MozillaBuild)
    12 will install the correct version of Python and the MSYS package, which
    13 will make it easier to work with the SDK.
    15 To get started, first enter the same directory that this README file
    16 is in (the SDK's root directory) using a shell program. On Unix systems
    17 or on Windows with MSYS, you can execute the following command:
    19   source bin/activate
    21 Windows users using cmd.exe should instead run:
    23   bin\activate.bat
    25 Then go to https://developer.mozilla.org/en-US/Add-ons/SDK/
    26 to browse the SDK documentation.
    28 If you get an error when running cfx or have any other problems getting
    29 started, see the "Troubleshooting" guide at:
    30 https://developer.mozilla.org/en-US/Add-ons/SDK/Tutorials/Troubleshooting
    32 Bugs
    33 -------
    35 * file a bug: https://bugzilla.mozilla.org/enter_bug.cgi?product=Add-on%20SDK
    38 Style Guidelines
    39 --------------------
    41 * https://github.com/mozilla/addon-sdk/wiki/Coding-style-guide

mercurial