Show
Ignore:
Timestamp:
02/05/11 14:29:46 (16 months ago)
Author:
Menno Smits <menno@…>
Branch:
default
Children:
205:acd252641599, 241:02267ec2f100
Tags:
0.7
Message:

Updated copyright dates to 2011 and fixed a number of incorrect and missing file headers.

Location:
imapclient
Files:
14 modified

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 
    15__version__ = '0.7' 
    26__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 
    15from imapclient import IMAPClient 
    26 
  • imapclient/fixed_offset.py

    r156 r204  
    1 # Copyright (c) 2010, Menno Smits 
     1# Copyright (c) 2011, Menno Smits 
    22# Released subject to the New BSD License 
    33# Please see http://en.wikipedia.org/wiki/BSD_licenses 
  • imapclient/imapclient.py

    r202 r204  
    1 # Copyright (c) 2010, Menno Smits 
     1# Copyright (c) 2011, Menno Smits 
    22# Released subject to the New BSD License 
    33# 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 
    15""" 
    26Work-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 
    15""" 
    26A 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 
    15""" 
    26Parsing for IMAP command responses with focus on FETCH responses as 
  • imapclient/test/__init__.py

    r197 r204  
    1 # Copyright (c) 2010, Menno Smits 
     1# Copyright (c) 2011, Menno Smits 
    22# Released subject to the New BSD License 
    33# Please see http://en.wikipedia.org/wiki/BSD_licenses 
  • imapclient/test/test_IMAPClient.py

    r198 r204  
    1 # Copyright (c) 2010, Menno Smits 
     1# Copyright (c) 2011, Menno Smits 
    22# Released subject to the New BSD License 
    33# Please see http://en.wikipedia.org/wiki/BSD_licenses 
  • imapclient/test/test_fixed_offset.py

    r198 r204  
    1 # Copyright (c) 2010, Menno Smits 
     1# Copyright (c) 2011, Menno Smits 
    22# Released subject to the New BSD License 
    33# 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 
    244 
    255from 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 
    164 
    175''' 
  • imapclient/test/testable_imapclient.py

    r156 r204  
    1 # Copyright (c) 2010, Menno Smits 
     1# Copyright (c) 2011, Menno Smits 
    22# Released subject to the New BSD License 
    33# 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 
    15def find_unittest2(): 
    26    import unittest