Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ant.sr
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
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
Anton Sarukhanov
ant.sr
Commits
4277f4d9
Commit
4277f4d9
authored
4 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
WIP Photos: case insensitive file extensions, fix config.
parent
e5f02999
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#247
passed with stages
in 1 minute and 40 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
my_plugins/photos/__init__.py
+11
-9
11 additions, 9 deletions
my_plugins/photos/__init__.py
pelicanconf.py
+1
-1
1 addition, 1 deletion
pelicanconf.py
with
12 additions
and
10 deletions
my_plugins/photos/
photos
.py
→
my_plugins/photos/
__init__
.py
+
11
−
9
View file @
4277f4d9
...
@@ -402,6 +402,11 @@ def galleries_string_decompose(gallery_string):
...
@@ -402,6 +402,11 @@ def galleries_string_decompose(gallery_string):
def
process_gallery
(
generator
,
content
,
location
):
def
process_gallery
(
generator
,
content
,
location
):
RE_PHOTO
=
re
.
compile
(
'
.*\.jpg
'
,
re
.
I
)
RE_VIDEO
=
re
.
compile
(
'
.*\.mp4
'
,
re
.
I
)
RE_HIDDEN_FILE
=
re
.
compile
(
'
^\..*
'
)
RE_TEXT_FILE
=
re
.
compile
(
'
.*\.txt
'
,
re
.
I
)
content
.
photo_gallery
=
[]
content
.
photo_gallery
=
[]
galleries
=
galleries_string_decompose
(
location
)
galleries
=
galleries_string_decompose
(
location
)
...
@@ -439,18 +444,15 @@ def process_gallery(generator, content, location):
...
@@ -439,18 +444,15 @@ def process_gallery(generator, content, location):
title
=
gallery
[
'
title
'
]
title
=
gallery
[
'
title
'
]
for
item
in
sorted
(
os
.
listdir
(
dir_gallery
)):
for
item
in
sorted
(
os
.
listdir
(
dir_gallery
)):
if
item
.
startswith
(
'
.
'
):
if
any
(
regex
.
match
(
item
)
for
regex
in
(
RE_HIDDEN_FILE
,
RE_TEXT_FILE
)):
continue
if
item
.
endswith
(
'
.txt
'
):
continue
continue
if
item
in
blacklist
:
if
item
in
blacklist
:
continue
continue
if
item
.
endswith
(
'
.mp4.jpg
'
):
if
RE_VIDEO
.
match
(
item
)
and
os
.
path
.
isfile
(
if
os
.
path
.
isfile
(
os
.
path
.
join
(
dir_gallery
,
os
.
path
.
splitext
(
item
)[
0
])):
os
.
path
.
join
(
dir_gallery
,
os
.
path
.
splitext
(
item
)[
0
])):
continue
continue
thumb
=
os
.
path
.
splitext
(
item
)[
0
]
+
'
t.jpg
'
thumb
=
os
.
path
.
splitext
(
item
)[
0
]
+
'
t.jpg
'
if
item
.
endswith
(
'
.jpg
'
):
if
RE_PHOTO
.
match
(
item
):
enqueue_resize
(
enqueue_resize
(
os
.
path
.
join
(
dir_gallery
,
item
),
os
.
path
.
join
(
dir_gallery
,
item
),
os
.
path
.
join
(
dir_photo
,
item
),
os
.
path
.
join
(
dir_photo
,
item
),
...
@@ -459,7 +461,7 @@ def process_gallery(generator, content, location):
...
@@ -459,7 +461,7 @@ def process_gallery(generator, content, location):
os
.
path
.
join
(
dir_gallery
,
item
),
os
.
path
.
join
(
dir_gallery
,
item
),
os
.
path
.
join
(
dir_thumb
,
thumb
),
os
.
path
.
join
(
dir_thumb
,
thumb
),
generator
.
settings
[
'
PHOTO_THUMB
'
])
generator
.
settings
[
'
PHOTO_THUMB
'
])
elif
item
.
endswith
(
'
.mp4
'
):
elif
RE_VIDEO
.
match
(
item
):
enqueue_copy
(
enqueue_copy
(
os
.
path
.
join
(
dir_gallery
,
item
),
os
.
path
.
join
(
dir_gallery
,
item
),
os
.
path
.
join
(
generator
.
output_path
,
dir_photo
,
item
),
os
.
path
.
join
(
generator
.
output_path
,
dir_photo
,
item
),
...
...
This diff is collapsed.
Click to expand it.
pelicanconf.py
+
1
−
1
View file @
4277f4d9
...
@@ -9,7 +9,7 @@ SITENAME = 'Anton Sarukhanov'
...
@@ -9,7 +9,7 @@ SITENAME = 'Anton Sarukhanov'
SITESUBTITLE
=
'
Full-Stack Developer
'
SITESUBTITLE
=
'
Full-Stack Developer
'
SITEURL
=
os
.
environ
.
get
(
'
SITEURL
'
)
SITEURL
=
os
.
environ
.
get
(
'
SITEURL
'
)
PLUGIN_PATHS
=
[
'
plugins
'
]
PLUGIN_PATHS
=
[
'
my_
plugins
'
]
PLUGINS
=
[
'
advthumbnailer
'
,
'
photos
'
]
PLUGINS
=
[
'
advthumbnailer
'
,
'
photos
'
]
# Photos
# Photos
...
...
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