Skip to content

Commit 1220595

Browse files
committedAug 8, 2018
Limit #3133 so that gallery-centric sites are possible
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
1 parent 79dcd88 commit 1220595

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed
 

‎CHANGES.txt

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
1-
New in v8.0.0b3 (changes since Beta 2)
2-
======================================
1+
New since Beta 3
2+
================
33

44
.. to be merged into one "new in v8.0.0" entry later
55
66
Features
77
--------
88

9+
* Don’t generate gallery index if the destination directory is
10+
site root and it would conflict with blog index (Issue #3133)
11+
12+
Bugfixes
13+
--------
14+
15+
New in v8.0.0b3 (changes since Beta 2)
16+
======================================
17+
18+
Features
19+
--------
20+
921
* New data_file option for chart shortcode and directive (Issue #3129)
1022
* Show the filename of the missing file when ``nikola serve`` can't
1123
find a file (i.e. when an 404 error occurs).

‎nikola/plugins/task/galleries.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ def set_site(self, site):
9292
'preserve_exif_data': site.config['PRESERVE_EXIF_DATA'],
9393
'exif_whitelist': site.config['EXIF_WHITELIST'],
9494
'preserve_icc_profiles': site.config['PRESERVE_ICC_PROFILES'],
95+
'index_path': site.config['INDEX_PATH'],
96+
'disable_indexes': site.config['DISABLE_INDEXES'],
9597
}
9698

9799
# Verify that no folder in GALLERY_FOLDERS appears twice
@@ -370,7 +372,9 @@ def find_galleries(self):
370372
# index will collide with the main page for the site.
371373
# Don't generate the top-level gallery index in that
372374
# case.
373-
if output_folder or root != input_folder:
375+
# FIXME: also ignore pages named index
376+
if (output_folder or root != input_folder and
377+
(not self.kw['disable_indexes'] and self.kw['index_path'] == '')):
374378
self.gallery_list.append((root, input_folder, output_folder))
375379

376380
def create_galleries_paths(self):

0 commit comments

Comments
 (0)
Please sign in to comment.