Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-lister
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Platform
Development
swh-lister
Commits
b6c5865a
Verified
Commit
b6c5865a
authored
6 years ago
by
Antoine R. Dumont
Browse files
Options
Downloads
Patches
Plain Diff
swh.lister.paging_lister: Improve lister's base class name
Also drop the SWH prefix as this is redundant.
parent
4c4aa0ea
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
swh/lister/core/paging_lister.py
+4
-4
4 additions, 4 deletions
swh/lister/core/paging_lister.py
swh/lister/core/tests/test_lister.py
+1
-1
1 addition, 1 deletion
swh/lister/core/tests/test_lister.py
swh/lister/gitlab/lister.py
+2
-2
2 additions, 2 deletions
swh/lister/gitlab/lister.py
with
7 additions
and
7 deletions
swh/lister/core/paging_lister.py
+
4
−
4
View file @
b6c5865a
...
...
@@ -9,7 +9,7 @@ from .lister_transports import SWHListerHttpTransport
from
.lister_base
import
SWHListerBase
class
SWHPaging
Lister
(
SWHListerBase
):
class
PageByPage
Lister
(
SWHListerBase
):
"""
Lister* intermediate class for any service that follows the simple
pagination page pattern.
...
...
@@ -126,11 +126,11 @@ class SWHPagingLister(SWHListerBase):
self
.
db_session
=
self
.
mk_session
()
class
SWHPaging
HttpLister
(
SWHListerHttpTransport
,
SWHPaging
Lister
):
class
PageByPage
HttpLister
(
SWHListerHttpTransport
,
PageByPage
Lister
):
"""
Convenience class for ensuring right lookup and init order when
combining
SWHPaging
Lister and SWHListerHttpTransport.
combining
PageByPage
Lister and SWHListerHttpTransport.
"""
def
__init__
(
self
,
api_baseurl
=
None
,
override_config
=
None
):
SWHListerHttpTransport
.
__init__
(
self
,
api_baseurl
=
api_baseurl
)
SWHPaging
Lister
.
__init__
(
self
,
override_config
=
override_config
)
PageByPage
Lister
.
__init__
(
self
,
override_config
=
override_config
)
This diff is collapsed.
Click to expand it.
swh/lister/core/tests/test_lister.py
+
1
−
1
View file @
b6c5865a
...
...
@@ -24,7 +24,7 @@ class HttpListerTesterBase(abc.ABC):
"""
Base testing class for subclasses of
swh.lister.core.indexing_lister.SWHIndexingHttpLister.
swh.lister.core.paging_lister.
SWHPaging
HttpLister
swh.lister.core.paging_lister.
PageByPage
HttpLister
See swh.lister.github.tests.test_gh_lister for an example of how
to customize for a specific listing service.
...
...
This diff is collapsed.
Click to expand it.
swh/lister/gitlab/lister.py
+
2
−
2
View file @
b6c5865a
...
...
@@ -6,11 +6,11 @@ import random
import
re
import
time
from
..core.paging_lister
import
SWHPaging
HttpLister
from
..core.paging_lister
import
PageByPage
HttpLister
from
.models
import
GitLabModel
class
GitLabLister
(
SWHPaging
HttpLister
):
class
GitLabLister
(
PageByPage
HttpLister
):
# Template path expecting an integer that represents the page id
PATH_TEMPLATE
=
'
/projects?page=%d&order_by=id&sort=asc&simple=true
'
API_URL_INDEX_RE
=
re
.
compile
(
r
'
^.*/projects.*page=(\d+).*
'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment