Changeset 264:fbc4d5736197
- Timestamp:
- 06/06/11 22:46:44 (12 months ago)
- Author:
- Menno Smits <menno@…>
- Branch:
- default
- Message:
-
Added meta-documentation
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r231
|
r264
|
|
| 17 | 17 | idle_check() and idle_done() methods. See the example in |
| 18 | 18 | imapclient/examples/idle_example.py. |
| | 19 | |
| | 20 | Sphinx Based Docs (#5) [NEW] |
| | 21 | ---------------------------- |
| | 22 | Full documentation is now available under doc/html in the source |
| | 23 | distribution and at http://imapclient.readthedocs.org/ online. |
| 19 | 24 | |
| 20 | 25 | Minor Features |
-
|
r197
|
r264
|
|
| 55 | 55 | |
| 56 | 56 | |
| 57 | | Mailing List |
| 58 | | ------------ |
| 59 | | The IMAPClient mailing list can be used to ask IMAPClient related |
| 60 | | questions and report bugs. |
| 61 | | |
| 62 | | * To send to the list and subscribe send an email to imapclient@librelist.com |
| 63 | | * Archives of the list are available at http://librelist.com/browser/imapclient/ |
| 64 | | * See http://librelist.com/help.html for more information about the mailing list |
| 65 | | |
| 66 | | |
| 67 | 57 | Using IMAPClient |
| 68 | 58 | ---------------- |
| … |
… |
|
| 82 | 72 | available. See http://packages.python.org/distribute/ for more info. |
| 83 | 73 | |
| | 74 | |
| | 75 | Documentation |
| | 76 | ------------- |
| | 77 | HTML documentation can be found at doc/html in the source |
| | 78 | distribution. The documentation is also available online at: |
| | 79 | |
| | 80 | http://imapclient.readthedocs.org/ |
| | 81 | |
| | 82 | The Sphinx source is at doc/src. If Sphinx is installed, the |
| | 83 | documentation can be rebuilt using: |
| | 84 | |
| | 85 | python setup.py sphinx_build |
| | 86 | |
| 84 | 87 | See imapclient/examples/example.py for a sample of how to use |
| 85 | 88 | IMAPClient. If the IMAPClient was installed from PyPI the examples |
| 86 | | subdirectory can be found under whereever the imapclient package is |
| 87 | | installed. |
| | 89 | subdirectory can be found under the imapclient package installation |
| | 90 | directory. |
| 88 | 91 | |
| 89 | | The code is well documented. See the docstrings for more usage |
| 90 | | information. |
| | 92 | |
| | 93 | Mailing List |
| | 94 | ------------ |
| | 95 | The IMAPClient mailing list can be used to ask IMAPClient related |
| | 96 | questions and report bugs. |
| | 97 | |
| | 98 | * To send to the list and subscribe send an email to imapclient@librelist.com |
| | 99 | * Archives of the list are available at http://librelist.com/browser/imapclient/ |
| | 100 | * See http://librelist.com/help.html for more information about the mailing list |
| 91 | 101 | |
| 92 | 102 | |
| … |
… |
|
| 125 | 135 | Unit Tests |
| 126 | 136 | ---------- |
| 127 | | There are comprehensive unit tests for the FETCH response parser and a |
| 128 | | growing number of other parts of the code. These tests use the |
| 129 | | unittest2 package which is also included as the standard unittest |
| 130 | | package in Python 2.7 and 3.2. |
| | 137 | There are comprehensive unit tests for the server response parser and |
| | 138 | a number of other parts of the code. These tests use the unittest2 |
| | 139 | package which is also included as the standard unittest package in |
| | 140 | Python 2.7 and 3.2. |
| 131 | 141 | |
| 132 | 142 | Where unittest2 is included in the standard library (eg. Python 2.7 |