Changeset 254:2bead8ef812d
- Timestamp:
- 05/06/11 23:35:03 (12 months ago)
- Author:
- Menno Smits <menno@…>
- Branch:
- default
- Message:
-
small doc tweaks
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r238
|
r254
|
|
| 1 | 1 | # -*- coding: utf-8 -*- |
| 2 | | # |
| 3 | | # IMAPClient documentation build configuration file, created by |
| 4 | | # sphinx-quickstart on Fri Oct 1 12:26:06 2010. |
| 5 | | # |
| 6 | | # This file is execfile()d with the current directory set to its containing dir. |
| 7 | | # |
| 8 | | # Note that not all possible configuration values are present in this |
| 9 | | # autogenerated file. |
| 10 | 2 | # |
| 11 | 3 | # All configuration values have a default; values that are commented out |
| 12 | 4 | # serve to show the default. |
| 13 | 5 | |
| 14 | | import sys, os |
| 15 | | |
| 16 | | # If extensions (or modules to document with autodoc) are in another directory, |
| 17 | | # add these directories to sys.path here. If the directory is relative to the |
| 18 | | # documentation root, use os.path.abspath to make it absolute, like shown here. |
| 19 | | sys.path.insert(0, os.path.abspath('..')) |
| | 6 | import sys |
| | 7 | from os import path |
| | 8 | |
| | 9 | sys.path.insert(0, path.abspath(path.join(path.dirname(__file__), '..'))) |
| 20 | 10 | |
| 21 | 11 | import imapclient |
| … |
… |
|
| 44 | 34 | # General information about the project. |
| 45 | 35 | project = u'IMAPClient' |
| 46 | | copyright = u'2010, Menno Smits' |
| | 36 | copyright = u'2011, Menno Smits' |
| 47 | 37 | |
| 48 | 38 | # The version info for the project you're documenting, acts as replacement for |
-
|
r251
|
r254
|
|
| 6 | 6 | |
| 7 | 7 | :Author: `Menno Smits <http://freshfoo.com>`_ |
| 8 | | :Version: |release| |
| 9 | | :Date: 2011/06/05 |
| | 8 | :Version: |version| / |release| |
| | 9 | :Date: |today| |
| 10 | 10 | :Homepage: http://imapclient.freshfoo.com |
| 11 | 11 | :Download: http://pypi.python.org/pypi/IMAPClient/ |
| 12 | | :Documentation: http://freshfoo.com/projects/imapclient/docs/ |
| | 12 | :Documentation: http://imapclient.readthedocs.org/ |
| 13 | 13 | :License: `New BSD License <http://en.wikipedia.org/wiki/BSD_licenses>`_ |
| 14 | 14 | :Support: `Mailing List <http://librelist.com/browser/imapclient/>`_ |
| … |
… |
|
| 26 | 26 | |
| 27 | 27 | IMAPClient is straight forward it use, but it can be useful to have at |
| 28 | | least a general understanding of the IMAP protocol. `RFC3501 |
| | 28 | least a general understanding of the IMAP protocol. `RFC 3501 |
| 29 | 29 | <http://www.faqs.org/rfcs/rfc3501.html>`_ explains IMAP in |
| 30 | 30 | detail. Other RFCs also apply to various extensions to the base |
| … |
… |
|
| 118 | 118 | Any method that takes a folder name will accept a standard string or a |
| 119 | 119 | unicode string. Unicode strings will be transparently encoded using |
| 120 | | modified UTF-7 as specified by `RFC-3501 section 5.1.3 |
| | 120 | modified UTF-7 as specified by `RFC 3501 section 5.1.3 |
| 121 | 121 | <http://tools.ietf.org/html/rfc3501#section-5.1.3>`_. This allows for |
| 122 | 122 | arbitrary unicode characters (eg. non-English characters) to be used |
-
|
r253
|
r254
|
|
| 3 | 3 | # Please see http://en.wikipedia.org/wiki/BSD_licenses |
| 4 | 4 | |
| 5 | | __version__ = '0.8' |
| | 5 | __version__ = '0.8-dev' |
| 6 | 6 | __author__ = 'Menno Smits <menno@freshfoo.com>' |
| 7 | 7 | |
-
|
r250
|
r254
|
|
| 168 | 168 | *shared*. |
| 169 | 169 | |
| 170 | | See `RFC-2342 <http://tools.ietf.org/html/rfc2342>`_ for more details. |
| | 170 | See `RFC 2342 <http://tools.ietf.org/html/rfc2342>`_ for more details. |
| 171 | 171 | """ |
| 172 | 172 | typ, data = self._imap.namespace() |
| … |
… |
|
| 488 | 488 | criteria. It defaults to US-ASCII. |
| 489 | 489 | |
| 490 | | See `RFC-3501 section 6.4.4 <http://tools.ietf.org/html/rfc3501#section-6.4.4>`_ |
| | 490 | See `RFC 3501 section 6.4.4 <http://tools.ietf.org/html/rfc3501#section-6.4.4>`_ |
| 491 | 491 | for more details. |
| 492 | 492 | """ |
| … |
… |
|
| 525 | 525 | |
| 526 | 526 | The *criteria* argument is as per search(). |
| 527 | | See `RFC-5256 <http://tools.ietf.org/html/rfc5256>`_ for full details. |
| | 527 | See `RFC 5256 <http://tools.ietf.org/html/rfc5256>`_ for full details. |
| 528 | 528 | |
| 529 | 529 | Note that SORT is an extension to the IMAP4 standard so it may |