Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Merge requests
!2249
Support extra_files in RQ tasks
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Support extra_files in RQ tasks
rq-task-extra-files
into
master
Overview
3
Commits
4
Pipelines
0
Changes
7
All threads resolved!
Hide all comments
Merged
ml bonhomme
requested to merge
rq-task-extra-files
into
master
1 year ago
Overview
3
Commits
4
Pipelines
0
Changes
7
All threads resolved!
Hide all comments
Expand
closes
#1695 (closed)
0
0
Merge request reports
Compare
master
version 13
05ad3973
11 months ago
version 12
a56d38f7
11 months ago
version 11
3afbb540
11 months ago
version 10
e63831fd
11 months ago
version 9
614555b5
1 year ago
version 8
f8ee68ed
1 year ago
version 7
9f8c8ca1
1 year ago
version 6
ca72cd21
1 year ago
version 5
ca72cd21
1 year ago
version 4
ca72cd21
1 year ago
version 3
ca72cd21
1 year ago
version 2
c16efbfd
1 year ago
version 1
0b108a23
1 year ago
master (base)
and
latest version
latest version
0d5c8830
4 commits,
11 months ago
version 13
05ad3973
4 commits,
11 months ago
version 12
a56d38f7
4 commits,
11 months ago
version 11
3afbb540
3 commits,
11 months ago
version 10
e63831fd
3 commits,
11 months ago
version 9
614555b5
2 commits,
1 year ago
version 8
f8ee68ed
2 commits,
1 year ago
version 7
9f8c8ca1
2 commits,
1 year ago
version 6
ca72cd21
5 commits,
1 year ago
version 5
ca72cd21
2 commits,
1 year ago
version 4
ca72cd21
5 commits,
1 year ago
version 3
ca72cd21
2 commits,
1 year ago
version 2
c16efbfd
1 commit,
1 year ago
version 1
0b108a23
1 commit,
1 year ago
7 files
+
150
−
21
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
arkindex/images/models.py
+
2
−
1
Options
@@ -15,9 +15,10 @@ from django.utils.text import slugify
from
enumfields
import
EnumField
from
arkindex.images.managers
import
ImageServerManager
from
arkindex.project.aws
import
S3FileMixin
,
S3FileStatus
,
should_verify_cert
from
arkindex.project.aws
import
S3FileMixin
,
S3FileStatus
from
arkindex.project.fields
import
LStripTextField
,
MD5HashField
,
StripSlashURLField
from
arkindex.project.models
import
IndexableModel
from
arkindex.project.tools
import
should_verify_cert
logger
=
logging
.
getLogger
(
__name__
)
profile_uri_validator
=
URLValidator
(
schemes
=
[
"
http
"
,
"
https
"
],
message
=
"
Invalid IIIF profile URI
"
)
Loading