Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
055c785b
Commit
055c785b
authored
Jul 31, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More code fossils
parent
bbc95d18
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
3 additions
and
52 deletions
+3
-52
src/Products/PluginIndexes/DateIndex/DateIndex.py
src/Products/PluginIndexes/DateIndex/DateIndex.py
+0
-2
src/Products/PluginIndexes/DateIndex/tests/test_DateIndex.py
src/Products/PluginIndexes/DateIndex/tests/test_DateIndex.py
+0
-5
src/Products/PluginIndexes/DateRangeIndex/DateRangeIndex.py
src/Products/PluginIndexes/DateRangeIndex/DateRangeIndex.py
+0
-2
src/Products/PluginIndexes/DateRangeIndex/tests/test_DateRangeIndex.py
...PluginIndexes/DateRangeIndex/tests/test_DateRangeIndex.py
+0
-5
src/Products/PluginIndexes/FieldIndex/FieldIndex.py
src/Products/PluginIndexes/FieldIndex/FieldIndex.py
+0
-2
src/Products/PluginIndexes/FieldIndex/tests/testFieldIndex.py
...Products/PluginIndexes/FieldIndex/tests/testFieldIndex.py
+0
-6
src/Products/PluginIndexes/KeywordIndex/KeywordIndex.py
src/Products/PluginIndexes/KeywordIndex/KeywordIndex.py
+0
-2
src/Products/PluginIndexes/KeywordIndex/tests/testKeywordIndex.py
...ucts/PluginIndexes/KeywordIndex/tests/testKeywordIndex.py
+0
-6
src/Products/PluginIndexes/TopicIndex/FilteredSet.py
src/Products/PluginIndexes/TopicIndex/FilteredSet.py
+1
-2
src/Products/PluginIndexes/TopicIndex/TopicIndex.py
src/Products/PluginIndexes/TopicIndex/TopicIndex.py
+0
-2
src/Products/PluginIndexes/TopicIndex/tests/testTopicIndex.py
...Products/PluginIndexes/TopicIndex/tests/testTopicIndex.py
+0
-6
src/Products/PluginIndexes/common/UnIndex.py
src/Products/PluginIndexes/common/UnIndex.py
+1
-2
src/Products/PluginIndexes/common/tests/test_UnIndex.py
src/Products/PluginIndexes/common/tests/test_UnIndex.py
+1
-5
src/Products/PluginIndexes/common/tests/test_util.py
src/Products/PluginIndexes/common/tests/test_util.py
+0
-5
No files found.
src/Products/PluginIndexes/DateIndex/DateIndex.py
View file @
055c785b
...
@@ -11,8 +11,6 @@
...
@@ -11,8 +11,6 @@
#
#
##############################################################################
##############################################################################
"""Date index.
"""Date index.
$Id$
"""
"""
import
time
import
time
...
...
src/Products/PluginIndexes/DateIndex/tests/test_DateIndex.py
View file @
055c785b
...
@@ -11,8 +11,6 @@
...
@@ -11,8 +11,6 @@
#
#
##############################################################################
##############################################################################
"""DateIndex unit tests.
"""DateIndex unit tests.
$Id$
"""
"""
import
unittest
import
unittest
...
@@ -282,6 +280,3 @@ def test_suite():
...
@@ -282,6 +280,3 @@ def test_suite():
suite
=
unittest
.
TestSuite
()
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
DI_Tests
)
)
suite
.
addTest
(
unittest
.
makeSuite
(
DI_Tests
)
)
return
suite
return
suite
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'test_suite'
)
src/Products/PluginIndexes/DateRangeIndex/DateRangeIndex.py
View file @
055c785b
...
@@ -11,8 +11,6 @@
...
@@ -11,8 +11,6 @@
#
#
##############################################################################
##############################################################################
"""Date range index.
"""Date range index.
$Id$
"""
"""
import
os
import
os
...
...
src/Products/PluginIndexes/DateRangeIndex/tests/test_DateRangeIndex.py
View file @
055c785b
...
@@ -11,8 +11,6 @@
...
@@ -11,8 +11,6 @@
#
#
##############################################################################
##############################################################################
"""DateRangeIndex unit tests.
"""DateRangeIndex unit tests.
$Id$
"""
"""
import
unittest
import
unittest
...
@@ -218,6 +216,3 @@ def test_suite():
...
@@ -218,6 +216,3 @@ def test_suite():
suite
=
unittest
.
TestSuite
()
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
DRI_Tests
)
)
suite
.
addTest
(
unittest
.
makeSuite
(
DRI_Tests
)
)
return
suite
return
suite
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'test_suite'
)
src/Products/PluginIndexes/FieldIndex/FieldIndex.py
View file @
055c785b
...
@@ -11,8 +11,6 @@
...
@@ -11,8 +11,6 @@
#
#
##############################################################################
##############################################################################
"""Simple column indices.
"""Simple column indices.
$Id$
"""
"""
from
App.special_dtml
import
DTMLFile
from
App.special_dtml
import
DTMLFile
...
...
src/Products/PluginIndexes/FieldIndex/tests/testFieldIndex.py
View file @
055c785b
...
@@ -11,12 +11,9 @@
...
@@ -11,12 +11,9 @@
#
#
##############################################################################
##############################################################################
"""FieldIndex unit tests.
"""FieldIndex unit tests.
$Id$
"""
"""
import
unittest
import
unittest
import
Testing
import
Zope2
import
Zope2
Zope2
.
startup
()
Zope2
.
startup
()
...
@@ -227,6 +224,3 @@ def test_suite():
...
@@ -227,6 +224,3 @@ def test_suite():
return
unittest
.
TestSuite
((
return
unittest
.
TestSuite
((
unittest
.
makeSuite
(
FieldIndexTests
),
unittest
.
makeSuite
(
FieldIndexTests
),
))
))
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'test_suite'
)
src/Products/PluginIndexes/KeywordIndex/KeywordIndex.py
View file @
055c785b
...
@@ -11,8 +11,6 @@
...
@@ -11,8 +11,6 @@
#
#
##############################################################################
##############################################################################
"""Keyword index.
"""Keyword index.
$Id$
"""
"""
from
logging
import
getLogger
from
logging
import
getLogger
...
...
src/Products/PluginIndexes/KeywordIndex/tests/testKeywordIndex.py
View file @
055c785b
...
@@ -11,12 +11,9 @@
...
@@ -11,12 +11,9 @@
#
#
##############################################################################
##############################################################################
"""KeywordIndex unit tests.
"""KeywordIndex unit tests.
$Id$
"""
"""
import
unittest
import
unittest
import
Testing
import
Zope2
import
Zope2
Zope2
.
startup
()
Zope2
.
startup
()
...
@@ -273,6 +270,3 @@ def test_suite():
...
@@ -273,6 +270,3 @@ def test_suite():
suite
=
unittest
.
TestSuite
()
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
TestKeywordIndex
)
)
suite
.
addTest
(
unittest
.
makeSuite
(
TestKeywordIndex
)
)
return
suite
return
suite
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'test_suite'
)
src/Products/PluginIndexes/TopicIndex/FilteredSet.py
View file @
055c785b
...
@@ -11,9 +11,8 @@
...
@@ -11,9 +11,8 @@
#
#
##############################################################################
##############################################################################
"""Filtered set.
"""Filtered set.
$Id$
"""
"""
from
logging
import
getLogger
from
logging
import
getLogger
import
sys
import
sys
...
...
src/Products/PluginIndexes/TopicIndex/TopicIndex.py
View file @
055c785b
...
@@ -11,8 +11,6 @@
...
@@ -11,8 +11,6 @@
#
#
##############################################################################
##############################################################################
"""Topic index.
"""Topic index.
$Id$
"""
"""
from
logging
import
getLogger
from
logging
import
getLogger
...
...
src/Products/PluginIndexes/TopicIndex/tests/testTopicIndex.py
View file @
055c785b
...
@@ -11,12 +11,9 @@
...
@@ -11,12 +11,9 @@
#
#
##############################################################################
##############################################################################
"""TopicIndex unit tests.
"""TopicIndex unit tests.
$Id$
"""
"""
import
unittest
import
unittest
import
Testing
import
Zope2
import
Zope2
Zope2
.
startup
()
Zope2
.
startup
()
...
@@ -97,6 +94,3 @@ def test_suite():
...
@@ -97,6 +94,3 @@ def test_suite():
return
unittest
.
TestSuite
((
return
unittest
.
TestSuite
((
unittest
.
makeSuite
(
TestTopicIndex
),
unittest
.
makeSuite
(
TestTopicIndex
),
))
))
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'test_suite'
)
src/Products/PluginIndexes/common/UnIndex.py
View file @
055c785b
...
@@ -11,9 +11,8 @@
...
@@ -11,9 +11,8 @@
#
#
##############################################################################
##############################################################################
"""Base for bi-directional indexes.
"""Base for bi-directional indexes.
$Id$
"""
"""
from
cgi
import
escape
from
cgi
import
escape
from
logging
import
getLogger
from
logging
import
getLogger
import
sys
import
sys
...
...
src/Products/PluginIndexes/common/tests/test_UnIndex.py
View file @
055c785b
...
@@ -11,9 +11,8 @@
...
@@ -11,9 +11,8 @@
#
#
#############################################################################
#############################################################################
""" Tests for common UnIndex features.
""" Tests for common UnIndex features.
$Id$
"""
"""
import
unittest
import
unittest
class
UnIndexTests
(
unittest
.
TestCase
):
class
UnIndexTests
(
unittest
.
TestCase
):
...
@@ -78,6 +77,3 @@ def test_suite():
...
@@ -78,6 +77,3 @@ def test_suite():
suite
=
unittest
.
TestSuite
()
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
UnIndexTests
))
suite
.
addTest
(
unittest
.
makeSuite
(
UnIndexTests
))
return
suite
return
suite
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'test_suite'
)
src/Products/PluginIndexes/common/tests/test_util.py
View file @
055c785b
...
@@ -11,8 +11,6 @@
...
@@ -11,8 +11,6 @@
#
#
##############################################################################
##############################################################################
"""Unit tests for util module.
"""Unit tests for util module.
$Id$
"""
"""
import
unittest
import
unittest
...
@@ -60,6 +58,3 @@ def test_suite():
...
@@ -60,6 +58,3 @@ def test_suite():
suite
=
unittest
.
TestSuite
()
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
parseIndexRequestTests
))
suite
.
addTest
(
unittest
.
makeSuite
(
parseIndexRequestTests
))
return
suite
return
suite
if
__name__
==
'__main__'
:
unittest
.
main
(
defaultTest
=
'test_suite'
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment