Changeset 254:2bead8ef812d

Show
Ignore:
Timestamp:
05/06/11 23:35:03 (12 months ago)
Author:
Menno Smits <menno@…>
Branch:
default
Message:

small doc tweaks

Files:
4 modified

Legend:

Unmodified
Added
Removed
  • doc-src/conf.py

    r238 r254  
    11# -*- 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. 
    102# 
    113# All configuration values have a default; values that are commented out 
    124# serve to show the default. 
    135 
    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('..')) 
     6import sys 
     7from os import path 
     8 
     9sys.path.insert(0, path.abspath(path.join(path.dirname(__file__), '..'))) 
    2010 
    2111import imapclient 
     
    4434# General information about the project. 
    4535project = u'IMAPClient' 
    46 copyright = u'2010, Menno Smits' 
     36copyright = u'2011, Menno Smits' 
    4737 
    4838# The version info for the project you're documenting, acts as replacement for 
  • doc-src/index.rst

    r251 r254  
    66 
    77:Author: `Menno Smits <http://freshfoo.com>`_ 
    8 :Version: |release| 
    9 :Date: 2011/06/05 
     8:Version: |version| / |release| 
     9:Date: |today| 
    1010:Homepage: http://imapclient.freshfoo.com 
    1111:Download: http://pypi.python.org/pypi/IMAPClient/ 
    12 :Documentation: http://freshfoo.com/projects/imapclient/docs/ 
     12:Documentation: http://imapclient.readthedocs.org/ 
    1313:License: `New BSD License <http://en.wikipedia.org/wiki/BSD_licenses>`_ 
    1414:Support: `Mailing List <http://librelist.com/browser/imapclient/>`_ 
     
    2626 
    2727IMAPClient is straight forward it use, but it can be useful to have at 
    28 least a general understanding of the IMAP protocol. `RFC3501 
     28least a general understanding of the IMAP protocol. `RFC 3501 
    2929<http://www.faqs.org/rfcs/rfc3501.html>`_ explains IMAP in 
    3030detail. Other RFCs also apply to various extensions to the base 
     
    118118Any method that takes a folder name will accept a standard string or a 
    119119unicode string. Unicode strings will be transparently encoded using 
    120 modified UTF-7 as specified by `RFC-3501 section 5.1.3 
     120modified UTF-7 as specified by `RFC 3501 section 5.1.3 
    121121<http://tools.ietf.org/html/rfc3501#section-5.1.3>`_.  This allows for 
    122122arbitrary unicode characters (eg. non-English characters) to be used 
  • imapclient/__init__.py

    r253 r254  
    33# Please see http://en.wikipedia.org/wiki/BSD_licenses 
    44 
    5 __version__ = '0.8' 
     5__version__ = '0.8-dev' 
    66__author__ = 'Menno Smits <menno@freshfoo.com>' 
    77 
  • imapclient/imapclient.py

    r250 r254  
    168168        *shared*. 
    169169 
    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. 
    171171        """ 
    172172        typ, data = self._imap.namespace() 
     
    488488        criteria. It defaults to US-ASCII. 
    489489 
    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>`_ 
    491491        for more details. 
    492492        """ 
     
    525525 
    526526        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. 
    528528 
    529529        Note that SORT is an extension to the IMAP4 standard so it may