Changeset 204:ea3eff2a866a for imapclient
- Timestamp:
- 02/05/11 14:29:46 (16 months ago)
- Branch:
- default
- Children:
- 205:acd252641599, 241:02267ec2f100
- Tags:
- 0.7
- Location:
- imapclient
- Files:
-
- 14 modified
-
__init__.py (modified) (1 diff)
-
examples/example.py (modified) (1 diff)
-
fixed_offset.py (modified) (1 diff)
-
imapclient.py (modified) (1 diff)
-
imaplib_ssl_fix.py (modified) (1 diff)
-
response_lexer.py (modified) (1 diff)
-
response_parser.py (modified) (1 diff)
-
test/__init__.py (modified) (1 diff)
-
test/test_IMAPClient.py (modified) (1 diff)
-
test/test_fixed_offset.py (modified) (1 diff)
-
test/test_imap_utf7.py (modified) (1 diff)
-
test/test_response_parser.py (modified) (1 diff)
-
test/testable_imapclient.py (modified) (1 diff)
-
test/util.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
imapclient/__init__.py
r203 r204 1 # Copyright (c) 2011, Menno Smits 2 # Released subject to the New BSD License 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses 4 1 5 __version__ = '0.7' 2 6 __author__ = 'Menno Smits <menno@freshfoo.com>' -
imapclient/examples/example.py
r174 r204 1 # Copyright (c) 2011, Menno Smits 2 # Released subject to the New BSD License 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses 4 1 5 from imapclient import IMAPClient 2 6 -
imapclient/fixed_offset.py
r156 r204 1 # Copyright (c) 201 0, Menno Smits1 # Copyright (c) 2011, Menno Smits 2 2 # Released subject to the New BSD License 3 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses -
imapclient/imapclient.py
r202 r204 1 # Copyright (c) 201 0, Menno Smits1 # Copyright (c) 2011, Menno Smits 2 2 # Released subject to the New BSD License 3 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses -
imapclient/imaplib_ssl_fix.py
r164 r204 1 # Copyright (c) 2011, Menno Smits 2 # Released subject to the New BSD License 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses 4 1 5 """ 2 6 Work-around for Python Issue 5943 (http://bugs.python.org/issue5949). -
imapclient/response_lexer.py
r182 r204 1 # Copyright (c) 2011, Menno Smits 2 # Released subject to the New BSD License 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses 4 1 5 """ 2 6 A lexical analyzer class for IMAP responses. -
imapclient/response_parser.py
r195 r204 1 # Copyright (c) 2011, Menno Smits 2 # Released subject to the New BSD License 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses 4 1 5 """ 2 6 Parsing for IMAP command responses with focus on FETCH responses as -
imapclient/test/__init__.py
r197 r204 1 # Copyright (c) 201 0, Menno Smits1 # Copyright (c) 2011, Menno Smits 2 2 # Released subject to the New BSD License 3 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses -
imapclient/test/test_IMAPClient.py
r198 r204 1 # Copyright (c) 201 0, Menno Smits1 # Copyright (c) 2011, Menno Smits 2 2 # Released subject to the New BSD License 3 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses -
imapclient/test/test_fixed_offset.py
r198 r204 1 # Copyright (c) 201 0, Menno Smits1 # Copyright (c) 2011, Menno Smits 2 2 # Released subject to the New BSD License 3 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses -
imapclient/test/test_imap_utf7.py
r198 r204 1 # The contents of this file has been derived code from the Twisted project 2 # (http://twistedmatrix.com/). The original author is Jp Calderone. 3 4 # Twisted project license follows: 5 6 # Permission is hereby granted, free of charge, to any person obtaining 7 # a copy of this software and associated documentation files (the 8 # "Software"), to deal in the Software without restriction, including 9 # without limitation the rights to use, copy, modify, merge, publish, 10 # distribute, sublicense, and/or sell copies of the Software, and to 11 # permit persons to whom the Software is furnished to do so, subject to 12 # the following conditions: 13 # 14 # The above copyright notice and this permission notice shall be 15 # included in all copies or substantial portions of the Software. 16 # 17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 18 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 19 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 20 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 21 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 22 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 23 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 1 # Copyright (c) 2011, Menno Smits 2 # Released subject to the New BSD License 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses 24 4 25 5 from imapclient.imap_utf7 import decode, encode, FolderNameError -
imapclient/test/test_response_parser.py
r199 r204 1 # This program is free software; you can redistribute it and/or modify 2 # it under the terms of the GNU General Public License as published by 3 # the Free Software Foundation; either version 2 of the License, or 4 # (at your option) any later version. 5 # 6 # This program is distributed in the hope that it will be useful, 7 # but WITHOUT ANY WARRANTY; without even the implied warranty of 8 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 9 # GNU Library General Public License for more details. 10 # 11 # You should have received a copy of the GNU General Public License 12 # along with this program; if not, write to the Free Software 13 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 14 15 # Copyright 2010 Menno Smits 1 # Copyright (c) 2011, Menno Smits 2 # Released subject to the New BSD License 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses 16 4 17 5 ''' -
imapclient/test/testable_imapclient.py
r156 r204 1 # Copyright (c) 201 0, Menno Smits1 # Copyright (c) 2011, Menno Smits 2 2 # Released subject to the New BSD License 3 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses -
imapclient/test/util.py
r198 r204 1 # Copyright (c) 2011, Menno Smits 2 # Released subject to the New BSD License 3 # Please see http://en.wikipedia.org/wiki/BSD_licenses 4 1 5 def find_unittest2(): 2 6 import unittest
