Skip to content

Commit

Permalink
Update license headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
faassen committed Sep 16, 2008
1 parent 75727ad commit b7c3ca7
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 10 deletions.
16 changes: 14 additions & 2 deletions src/hurry/query/__init__.py
@@ -1,3 +1,15 @@
# Copyright (c) 2007 Infrae. All rights reserved.
# See also LICENSE.txt
##############################################################################
#
# Copyright (c) 2005-2008 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################

from query import And, Or, Eq, NotEq, Between, In, Ge, Le, Text
16 changes: 14 additions & 2 deletions src/hurry/query/interfaces.py
@@ -1,5 +1,17 @@
# Copyright (c) 2007 Infrae. All rights reserved.
# See also LICENSE.txt
##############################################################################
#
# Copyright (c) 2005-2008 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################

from zope.interface import Interface

class IQuery(Interface):
Expand Down
16 changes: 14 additions & 2 deletions src/hurry/query/query.py
@@ -1,5 +1,17 @@
# Copyright (c) 2007 Infrae. All rights reserved.
# See also LICENSE.txt
##############################################################################
#
# Copyright (c) 2005-2008 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################

from zope.interface import implements

from zope.app import zapi
Expand Down
16 changes: 14 additions & 2 deletions src/hurry/query/tests.py
@@ -1,5 +1,17 @@
# Copyright (c) 2007 Infrae. All rights reserved.
# See also LICENSE.txt
##############################################################################
#
# Copyright (c) 2005-2008 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################

import unittest
from zope.testing import doctest

Expand Down
16 changes: 14 additions & 2 deletions src/hurry/query/value.py
@@ -1,5 +1,17 @@
# Copyright (c) 2007 Infrae. All rights reserved.
# See also LICENSE.txt
##############################################################################
#
# Copyright (c) 2005-2008 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################

from zc.catalog.interfaces import IValueIndex
from hurry.query import query

Expand Down

0 comments on commit b7c3ca7

Please sign in to comment.