File tree 2 files changed +19
-3
lines changed
2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1
- New in v8.0.0b3 (changes since Beta 2)
2
- ======================================
1
+ New since Beta 3
2
+ ================
3
3
4
4
.. to be merged into one "new in v8.0.0" entry later
5
5
6
6
Features
7
7
--------
8
8
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
+
9
21
* New data_file option for chart shortcode and directive (Issue #3129)
10
22
* Show the filename of the missing file when ``nikola serve `` can't
11
23
find a file (i.e. when an 404 error occurs).
Original file line number Diff line number Diff line change @@ -92,6 +92,8 @@ def set_site(self, site):
92
92
'preserve_exif_data' : site .config ['PRESERVE_EXIF_DATA' ],
93
93
'exif_whitelist' : site .config ['EXIF_WHITELIST' ],
94
94
'preserve_icc_profiles' : site .config ['PRESERVE_ICC_PROFILES' ],
95
+ 'index_path' : site .config ['INDEX_PATH' ],
96
+ 'disable_indexes' : site .config ['DISABLE_INDEXES' ],
95
97
}
96
98
97
99
# Verify that no folder in GALLERY_FOLDERS appears twice
@@ -370,7 +372,9 @@ def find_galleries(self):
370
372
# index will collide with the main page for the site.
371
373
# Don't generate the top-level gallery index in that
372
374
# 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' ] == '' )):
374
378
self .gallery_list .append ((root , input_folder , output_folder ))
375
379
376
380
def create_galleries_paths (self ):
You can’t perform that action at this time.
0 commit comments