[11949] | 1 | Installation of Ikoba |
---|
[12060] | 2 | ##################### |
---|
[10120] | 3 | |
---|
[11949] | 4 | These are generic installation instructions for the WAeUP_ ``Ikoba`` |
---|
[11952] | 5 | application and registration portal and customized versions thereof. |
---|
[10120] | 6 | |
---|
[11381] | 7 | For specific aspects of this package please refer to the local README |
---|
| 8 | file. |
---|
[10120] | 9 | |
---|
[12060] | 10 | Please note, that **only Linux-based installs** are described and |
---|
| 11 | actively supported. We recommend use of Debian_ / Ubuntu_. |
---|
[11323] | 12 | |
---|
[11381] | 13 | .. note:: This means we do not actively support Windows(tm)! |
---|
[11323] | 14 | |
---|
[11384] | 15 | .. contents:: |
---|
[11323] | 16 | |
---|
[11384] | 17 | |
---|
[11381] | 18 | Prerequisites |
---|
| 19 | ************* |
---|
[11323] | 20 | |
---|
[12060] | 21 | The Ikoba packages are based on `Grok`_, which is a Python_ framework |
---|
| 22 | for agile webapplication development. Grok_ itself is based on |
---|
| 23 | `Zope`_. |
---|
[11323] | 24 | |
---|
[11381] | 25 | Both, Grok_ and Zope_, are written in the `Python`_ programming |
---|
| 26 | language (with parts written in C). You therefore have to have |
---|
| 27 | `Python`_ installed (including `Python`_ headers). |
---|
[11323] | 28 | |
---|
| 29 | |
---|
[11381] | 30 | Preparing the System |
---|
[11323] | 31 | ==================== |
---|
| 32 | |
---|
[11949] | 33 | For a `Ikoba` install we need of course `Python`_ installed as well as |
---|
[11381] | 34 | some standard developer tools like C compilers, C libraries, etc. |
---|
[11323] | 35 | |
---|
| 36 | What you need (Debian/Ubuntu package names in brackets): |
---|
| 37 | |
---|
[11381] | 38 | * Python 2.7 (``python2.7``) |
---|
[11323] | 39 | |
---|
[11381] | 40 | * Python 2.7 development files (``python2.7-dev``) |
---|
[11323] | 41 | |
---|
[11381] | 42 | * A C-Compiler with basic C developer libraries (``build-essential``) |
---|
[11323] | 43 | |
---|
[11527] | 44 | * A subversion client (``subversion``) |
---|
[11323] | 45 | |
---|
[11527] | 46 | * XML and XSLT development libraries (``libxml2-dev``, ``libxslt1-dev``) |
---|
| 47 | |
---|
[12332] | 48 | * The "Foreign Function Interface Library" (FFI, ``libffi-dev``) and openssl |
---|
| 49 | libs (``libssl-dev``) because they are needed by the paypal Python SDK |
---|
[12060] | 50 | |
---|
[11381] | 51 | * enscript (``enscript``) [optional] |
---|
[11323] | 52 | |
---|
| 53 | This is only needed if you want test coverage reports. |
---|
| 54 | |
---|
| 55 | All these packages can be installed on Debian systems like this:: |
---|
| 56 | |
---|
[11527] | 57 | $ sudo apt-get install python2.7 python2.7-dev subversion \ |
---|
[12060] | 58 | build-essential enscript libxml2-dev libxslt1-dev \ |
---|
[12332] | 59 | libffi-dev libssl-dev |
---|
[11323] | 60 | |
---|
| 61 | Afterwards you should be able to enter:: |
---|
| 62 | |
---|
| 63 | $ python2.7 |
---|
| 64 | |
---|
[11381] | 65 | at the commandline and get a Python_ prompt. Quit the interpreter |
---|
[11323] | 66 | pressing <CTRL-D>. |
---|
| 67 | |
---|
| 68 | |
---|
| 69 | Installing `virtualenv` |
---|
| 70 | ======================= |
---|
| 71 | |
---|
[11382] | 72 | We strongly suggest use of `virtualenv`_ to create Python_ sandboxes |
---|
| 73 | where you can run your code without touching any other installations. |
---|
[11323] | 74 | |
---|
[11949] | 75 | `virtualenv`_ is also the only possibility to build a `Ikoba` install |
---|
[11382] | 76 | without the need of superuser permissions. In short: `virtualenv`_ |
---|
| 77 | will make your life easier. Use it. |
---|
[11323] | 78 | |
---|
[11382] | 79 | Detailed install instructions for `virtualenv`_ can be found on |
---|
| 80 | http://www.virtualenv.org/en/latest/virtualenv.html#installation. |
---|
[11323] | 81 | |
---|
[11382] | 82 | The short way for a user install (no superuser perms required) is like |
---|
| 83 | this:: |
---|
[11323] | 84 | |
---|
[11382] | 85 | $ curl -O https://pypi.python.org/packages/source/v/virtualenv/virtualenv-1.11.4.tar.gz#md5=9accc2d3f0ec1da479ce2c3d1fdff06e |
---|
| 86 | $ tar xvfz virtualenv-1.11.4.tar.gz |
---|
| 87 | $ cd virtualenv-1.11.4 |
---|
| 88 | $ python virtualenv.py py27 |
---|
[11323] | 89 | |
---|
[11382] | 90 | Superusers can install `virtualenv`_ system-wide much easier. On |
---|
| 91 | `Debian`_/`Ubuntu`_ systems where you have superuser permissions, you |
---|
| 92 | can install `virtualenv`_ via:: |
---|
[11323] | 93 | |
---|
[11382] | 94 | $ sudo apt-get install python-virtualenv |
---|
[11323] | 95 | |
---|
[11401] | 96 | *Or*, if `pip` is installed already (superusers can install it via |
---|
| 97 | ``sudo apt-get install python-pip`` on `Debian`_/`Ubuntu`_):: |
---|
[11323] | 98 | |
---|
[11382] | 99 | $ sudo pip install virtualenv |
---|
[11323] | 100 | |
---|
| 101 | |
---|
[11402] | 102 | Creating a Sandbox |
---|
[11323] | 103 | ================== |
---|
| 104 | |
---|
[11383] | 105 | After installing `virtualenv`_ you can install local sandboxes like |
---|
[11401] | 106 | this (if `virtualenv` is installed system-wide):: |
---|
[11323] | 107 | |
---|
[11383] | 108 | $ virtualenv --no-site-packages py27 |
---|
[11323] | 109 | |
---|
[11401] | 110 | *or* like this:: |
---|
| 111 | |
---|
| 112 | $ python /path/to/my/virtualenv.py --no-site-packages py27 |
---|
| 113 | |
---|
[11383] | 114 | where ``py27`` is a directory in the filesystem where your sandbox |
---|
| 115 | will be created. `virtualenv` will also create this directory for |
---|
[11401] | 116 | you. While you can pick any sandbox name you want, it is recommended |
---|
| 117 | to use a sandbox name that is short and at the same time reflects the |
---|
| 118 | Python version used (here: Python 2.7). |
---|
[11323] | 119 | |
---|
| 120 | By passing the ``no-site-packages`` switch we tell `virtualenv` to |
---|
[11401] | 121 | provide a clean environment without any extra-packages installed |
---|
[11383] | 122 | systemwide. More recent versions of `virtualenv`_ have this option set |
---|
| 123 | by default. |
---|
[11323] | 124 | |
---|
[11383] | 125 | Another often used option of `virtualenv`_ is ``-p``. With ``-p`` you |
---|
| 126 | can tell `virtualenv`_ which Python executable to use as base for the |
---|
| 127 | new sandbox. |
---|
| 128 | |
---|
[11323] | 129 | You now can activate the sandbox by doing:: |
---|
| 130 | |
---|
[11383] | 131 | $ source py27/bin/activate |
---|
| 132 | (py27)$ |
---|
[11323] | 133 | |
---|
[11401] | 134 | You will notice that the input prompt changes, indicating the name of |
---|
| 135 | the sandbox activated. |
---|
[11323] | 136 | |
---|
| 137 | To deactivate the sandbox at any time, enter:: |
---|
| 138 | |
---|
[11383] | 139 | (py27)$ deactivate |
---|
[11323] | 140 | |
---|
| 141 | and the prompt will be the same as before the activation. |
---|
| 142 | |
---|
| 143 | For the following steps make sure the sandbox is active. |
---|
| 144 | |
---|
| 145 | |
---|
[11402] | 146 | Getting the Sources |
---|
| 147 | =================== |
---|
[11323] | 148 | |
---|
[11401] | 149 | Now, as the sandbox is activated (see above, if not), we can fetch the |
---|
[11949] | 150 | sources for Ikoba. |
---|
[11323] | 151 | |
---|
[11949] | 152 | As Ikoba is currently available from the Subversion_ repository only, |
---|
[11401] | 153 | we use the Subversion_ client `svn` and checkout the main devel branch |
---|
[11949] | 154 | of the `waeup.ikoba` package like this:: |
---|
[11323] | 155 | |
---|
[11949] | 156 | (py27)$ svn co https://svn.waeup.org/repos/main/waeup.ikoba/trunk |
---|
[11323] | 157 | |
---|
[11949] | 158 | The command should fetch the Ikoba base package sources for you and |
---|
[11401] | 159 | will put everything in a new directory ``trunk/``. |
---|
[11323] | 160 | |
---|
| 161 | Now enter the new directory:: |
---|
| 162 | |
---|
[11401] | 163 | (py27)$ cd trunk/ |
---|
[11323] | 164 | |
---|
[11401] | 165 | and you can start building the real package. |
---|
[11323] | 166 | |
---|
[11949] | 167 | .. note:: If you not want to work with the `waeup.ikoba` package but a |
---|
[11401] | 168 | customized package (like ``waeup.aaue`` or similar), then |
---|
| 169 | you can use the above checkout command but with |
---|
[11949] | 170 | ``waeup.ikoba`` replaced by the name of the customized |
---|
[11401] | 171 | package:: |
---|
[11381] | 172 | |
---|
[11401] | 173 | (py27)$ svn co https://svn.waeup.org/repos/main/<PKG-NAME>/trunk |
---|
[11381] | 174 | |
---|
[11401] | 175 | For the exact link, please refer to the README.txt file in |
---|
| 176 | your package. |
---|
| 177 | |
---|
| 178 | |
---|
[11402] | 179 | Bootstrapping the Build |
---|
| 180 | ======================= |
---|
| 181 | |
---|
| 182 | After `Creating a Sandbox`_ and `Getting the Sources`_ we have to |
---|
| 183 | initialize the newly created development environment:: |
---|
| 184 | |
---|
| 185 | (py27)$ python bootstrap.py |
---|
| 186 | |
---|
| 187 | This should create a local ``bin/`` directory with at least a script |
---|
| 188 | ``buildout`` in it. |
---|
| 189 | |
---|
| 190 | If bootstrapping fails, chances are, that you need the `distribute` |
---|
| 191 | package installed. In a virtual environment you can install it without |
---|
[11703] | 192 | interfering with other packages installed on your server:: |
---|
[11402] | 193 | |
---|
| 194 | (py27)$ pip install --upgrade distribute |
---|
| 195 | |
---|
| 196 | Afterwards you have to retry the bootstrapping, until you get a |
---|
| 197 | working ``buildout`` script in the local ``bin/`` directory. |
---|
| 198 | |
---|
| 199 | Once the ``buildout`` script exists, you do not have to activate the |
---|
| 200 | virtual envronment any more (although you can). |
---|
| 201 | |
---|
| 202 | |
---|
[11381] | 203 | Part 1: Single Client Setup |
---|
| 204 | *************************** |
---|
| 205 | |
---|
[11949] | 206 | You can run ``Ikoba`` with a single client (useful for evaluation, |
---|
[11401] | 207 | development, etc.) or with multiple clients running in parallel. The |
---|
| 208 | latter setup is useful in productive environments with many thousands |
---|
[11402] | 209 | users and called a ``ZEO`` install. We will cover both setup |
---|
| 210 | types. The first is covered here, the latter one is covered in `Part |
---|
| 211 | 2: ZEO Install`_. |
---|
[11401] | 212 | |
---|
[11402] | 213 | |
---|
[11404] | 214 | Building the Package |
---|
| 215 | ==================== |
---|
[11323] | 216 | |
---|
[11404] | 217 | In the sources directory (``trunk/``) you have to prepare the |
---|
[11323] | 218 | project to fetch needed components (eggs), compile C-code parts, |
---|
[11404] | 219 | etc. This is done by a single command ``buildout``:: |
---|
[11323] | 220 | |
---|
[11404] | 221 | $ ./bin/buildout |
---|
[11323] | 222 | |
---|
| 223 | If this is your first install of some Grok-related project, this step |
---|
| 224 | will need some time as lots of sources have to be fetched, many |
---|
| 225 | components must be compiled, etc. |
---|
| 226 | |
---|
| 227 | This step must be redone whenever you change something in |
---|
[11404] | 228 | ``buildout.cfg``, ``buildout-zeo.cfg``, or ``setup.py``. |
---|
[11323] | 229 | |
---|
| 230 | Note that if you have more than one sandbox for a Zope-based web |
---|
| 231 | application, it will probably make sense to share the eggs between the |
---|
| 232 | different sandboxes. You can tell ``zc.buildout`` to use a central |
---|
| 233 | eggs directory by creating ``~/.buildout/default.cfg`` with the |
---|
| 234 | following contents:: |
---|
| 235 | |
---|
[11385] | 236 | [buildout] |
---|
| 237 | eggs-directory = /home/bruno/buildout-eggs |
---|
[11323] | 238 | |
---|
[11404] | 239 | where the given directory should be exist beforehand. All eggs of all |
---|
| 240 | `buildout` projects will then be stored in this directory (and not |
---|
| 241 | fetched anew if already existing there). |
---|
[11323] | 242 | |
---|
[11404] | 243 | |
---|
| 244 | Start the Instance |
---|
[11323] | 245 | ================== |
---|
| 246 | |
---|
| 247 | You should be able now to start the created instance by doing:: |
---|
| 248 | |
---|
[11949] | 249 | $ ./bin/ikobactl fg |
---|
[11323] | 250 | |
---|
[11385] | 251 | Alternatively you can do:: |
---|
[11323] | 252 | |
---|
[11404] | 253 | $ bin/paster serve parts/etc/deploy-themed.ini |
---|
[11323] | 254 | |
---|
[11949] | 255 | The port numbers where Ikoba is running on your server are defined in |
---|
| 256 | `buildout.cfg` under ``[ikoba_params]``. |
---|
[11323] | 257 | |
---|
[11404] | 258 | If you now point a browser to the right port on your server, for example:: |
---|
[11323] | 259 | |
---|
[11385] | 260 | localhost:8080 |
---|
[11323] | 261 | |
---|
| 262 | you should get a login pop-up, where you can login as superuser with |
---|
[11949] | 263 | ``grok`` and ``grok`` as username/password (Ikoba base package only!). |
---|
[11323] | 264 | |
---|
| 265 | You can stop the instance by pressing <CTRL-C>. |
---|
| 266 | |
---|
| 267 | If you are connected and logged in, |
---|
| 268 | you should be able to add the grok-based applications |
---|
[11954] | 269 | (such as ``Company``) from the menu. |
---|
[11323] | 270 | |
---|
[11954] | 271 | Add an instance of ``Company`` and click on the link next to the |
---|
[11323] | 272 | then visible entry in the list of installed applications. |
---|
| 273 | |
---|
[11404] | 274 | Running the Tests |
---|
[11323] | 275 | ================= |
---|
| 276 | |
---|
[11404] | 277 | All WAeUP_ packages come with comprehensive test suites ensuring the |
---|
| 278 | software quality also after changes and updates. |
---|
[11323] | 279 | |
---|
[11404] | 280 | The package tests are easily run by executing the test runner |
---|
| 281 | from the ``bin`` directory:: |
---|
[11323] | 282 | |
---|
[11404] | 283 | $ ./bin/test |
---|
[11323] | 284 | |
---|
[11404] | 285 | Use the ``-c`` option to get coloured output. Use the ``--pdb`` option |
---|
| 286 | to start the Python_ debugger when a test fails. |
---|
| 287 | |
---|
| 288 | |
---|
[11402] | 289 | Part 2: ZEO Install |
---|
| 290 | ******************* |
---|
[11323] | 291 | |
---|
| 292 | Each ZEO install consists of at least one ZEO server and normally two |
---|
| 293 | or more ZEO clients. While the ZEO server is meant to manage the ZODB |
---|
| 294 | database for clients, the clients connect to the outside world, listen |
---|
| 295 | for request and do the real dataprocessing. |
---|
| 296 | |
---|
| 297 | We prepared a `buildout` configuration that sets up one server |
---|
| 298 | configuration and two client configs. This configuration is in |
---|
| 299 | ``buildout-zeo.cfg``. |
---|
| 300 | |
---|
[11405] | 301 | Generating the ZEO Setup |
---|
[11323] | 302 | ======================== |
---|
| 303 | |
---|
[11949] | 304 | To install Ikoba ZEO-based you can run `buildout` with the given |
---|
[11323] | 305 | (or your own) configuration file like this:: |
---|
| 306 | |
---|
| 307 | $ ./bin/buildout -c buildout-zeo.cfg |
---|
| 308 | |
---|
| 309 | This should generate all scripts necessary to run servers, clients, |
---|
| 310 | etc. |
---|
| 311 | |
---|
[11405] | 312 | Starting ZEO Servers and Clients |
---|
[11323] | 313 | ================================ |
---|
| 314 | |
---|
| 315 | First start the server:: |
---|
| 316 | |
---|
| 317 | $ ./bin/zeo_server start |
---|
| 318 | |
---|
| 319 | Clients can be started by doing:: |
---|
| 320 | |
---|
| 321 | $ ./bin/zeo_client1 start |
---|
| 322 | $ ./bin/zeo_client2 start |
---|
| 323 | |
---|
| 324 | This will start both clients in daemon mode. |
---|
| 325 | |
---|
| 326 | Instead of ``start`` you can, as usually, start an instance in |
---|
| 327 | foreground (``fg``), etc. You know the drill. |
---|
| 328 | |
---|
| 329 | |
---|
[11405] | 330 | Manually Starting ZEO Clients |
---|
[11323] | 331 | ============================= |
---|
| 332 | |
---|
| 333 | This is normally not neccessary. |
---|
| 334 | |
---|
| 335 | ``zeo_clientN`` scripts are basically wrappers around calls to |
---|
| 336 | ``bin/paster``. You can bypass this wrapper and start a client |
---|
| 337 | 'manually' like this:: |
---|
| 338 | |
---|
| 339 | $ ./bin/paster serve --pid-file var/zeo1.pid --daemon \ |
---|
| 340 | pars/etc/zeo1.ini |
---|
| 341 | |
---|
[11405] | 342 | It is important to give a pid-file as `paster` otherwise can not start |
---|
[11323] | 343 | different clients (they would all refer to the same pid file |
---|
| 344 | `paster.pid` and refuse to start after the first client was started). |
---|
| 345 | |
---|
| 346 | |
---|
| 347 | Setup (paramters, ports, etc.) |
---|
| 348 | ============================== |
---|
| 349 | |
---|
| 350 | By default the server will listen on port 8100 for requests from |
---|
| 351 | localhost (not: from the outside world). |
---|
| 352 | |
---|
| 353 | You can change ZEO server settings in the ``[zeo_server]`` section |
---|
| 354 | of ``buildout-zeo.conf``. Run `buildout` afterwards. |
---|
| 355 | |
---|
| 356 | The clients will listen on port 8081 and 8082. You can change settings |
---|
| 357 | in ``etc/zeo1.ini.in`` and ``etc/zeo2.ini.in`` respectively. Run |
---|
| 358 | buildout after any change. |
---|
| 359 | |
---|
| 360 | If you want to change the paster wrapper for any zeo client, you can |
---|
| 361 | edit ``etc/zeo1.conf`` and/or ``etc/zeo2.conf``. Run buildout |
---|
| 362 | afterwards. |
---|
| 363 | |
---|
| 364 | |
---|
[11405] | 365 | Stopping ZEO Servers and Clients |
---|
| 366 | ================================ |
---|
[11323] | 367 | |
---|
[11405] | 368 | Given everything was started in daemon mode, first stop the clients:: |
---|
[11323] | 369 | |
---|
[11405] | 370 | $ ./bin/zeo_client1 stop |
---|
| 371 | $ ./bin/zeo_client2 stop |
---|
[11323] | 372 | |
---|
[11405] | 373 | Then stop the ZEO server:: |
---|
| 374 | |
---|
| 375 | $ ./bin/zeo_server stop |
---|
| 376 | |
---|
| 377 | |
---|
| 378 | Creating New ZEO Clients |
---|
| 379 | ======================== |
---|
| 380 | |
---|
| 381 | You want more ZEO clients to be created by `buildout`? Easy. Three |
---|
| 382 | steps are neccessary. |
---|
| 383 | |
---|
| 384 | 1. Create config files in `etc/` |
---|
| 385 | -------------------------------- |
---|
| 386 | |
---|
[11323] | 387 | Each client needs two configuration files: |
---|
| 388 | |
---|
| 389 | - ``etc/zeoN.conf`` |
---|
| 390 | configuring the paster wrapper |
---|
| 391 | |
---|
| 392 | - ``etc/zeoN.ini`` |
---|
| 393 | configuring the runtime config, ports, etc. |
---|
| 394 | |
---|
| 395 | Just copy over these files from the already existing zeo1/zeo2 files |
---|
| 396 | and replace ``zeo1`` or ``zeo2`` with your new name. |
---|
| 397 | |
---|
| 398 | 2. Update buildout-zeo.cfg |
---|
| 399 | -------------------------- |
---|
| 400 | |
---|
| 401 | Here, inside ``buildourt-zeo.cfg`` also three steps are needed. |
---|
| 402 | |
---|
| 403 | * 2.1. Create new .ini and .conf entries |
---|
| 404 | |
---|
| 405 | The .conf and .ini files in etc/ are only templates that have to be |
---|
| 406 | generated in their really used final location. In buildout-zeo.cfg |
---|
| 407 | you can care for this by creating a new ``[zeoN_ini]`` and |
---|
| 408 | ``[zeoN_conf]`` option (replacing ``N`` with a number, of course). |
---|
| 409 | |
---|
| 410 | Just copy over existing entries and replace the mentions of ``zeo1`` |
---|
| 411 | or ``zeo2`` by your ``zeoN``. |
---|
| 412 | |
---|
| 413 | * 2.2. Create a new ``zeo_clientN`` entry |
---|
| 414 | |
---|
| 415 | Then you have to create an entry that will generate the |
---|
| 416 | ``zeo_clientN`` script. Again, just copy over an existing |
---|
| 417 | ``[zeo_client1]`` entry and replace ``1`` withg your client number. |
---|
| 418 | |
---|
| 419 | * 2.3. Register the new sections in ``[buildout]`` section |
---|
| 420 | |
---|
| 421 | When done with the above: add the new section in ``[buildout]``:: |
---|
| 422 | |
---|
| 423 | [buildout] |
---|
| 424 | ... |
---|
| 425 | <old entries...> |
---|
| 426 | ... |
---|
| 427 | zope_conf_zeo_5 |
---|
| 428 | zeo5_ini |
---|
| 429 | zeo_client5 |
---|
| 430 | |
---|
| 431 | depending on how you named your new sections. |
---|
| 432 | |
---|
| 433 | 3. Rerun ``buildout`` |
---|
| 434 | --------------------- |
---|
| 435 | |
---|
| 436 | When adding or removing client/server instances, make sure to stop all |
---|
| 437 | running servers/clients before rerunning buildout. |
---|
| 438 | |
---|
| 439 | To activate the new setup, rerun buildout:: |
---|
| 440 | |
---|
| 441 | $ bin/buildout -c buildout-zeo.cfg |
---|
| 442 | |
---|
| 443 | This should generate any new clients and remove older ones or just |
---|
| 444 | update configuration files. |
---|
| 445 | |
---|
| 446 | |
---|
| 447 | Considerations |
---|
| 448 | ============== |
---|
| 449 | |
---|
| 450 | There are some things in the current buildout-zeo.cfg we might do not |
---|
| 451 | want. It extends the regular ``buildout.cfg`` so that we do not have |
---|
| 452 | to repeat most sections but the ``parts`` in ``[buildout]`` have to be |
---|
| 453 | listed. |
---|
| 454 | |
---|
| 455 | We need, however, not everything with a ZEO-deploy that is listed in a |
---|
| 456 | default buildout. We might do not need docs, no profiling, etc. Also a |
---|
[11949] | 457 | regular non-ZEO ikobactl might not make to much sense. Therefore all |
---|
[11323] | 458 | this might be subject to changes. |
---|
[11381] | 459 | |
---|
| 460 | .. _Debian: http://www.debian.org/ |
---|
| 461 | .. _Grok: http://grok.zope.org/ |
---|
| 462 | .. _Python: http://www.python.org/ |
---|
[11401] | 463 | .. _Subversion: http://subversion.apache.org/ |
---|
[11381] | 464 | .. _Ubuntu: http://www.ubuntu.com/ |
---|
| 465 | .. _virtualenv: http://www.virtualenv.org/en/latest/ |
---|
| 466 | .. _WAeUP: https://www.waeup.org/ |
---|
| 467 | .. _Zope: http://www.zope.org/ |
---|
| 468 | .. _zc.buildout: http://cheeseshop.python.org/pypi/zc.buildout |
---|