Skip to content

Commit 961bb42

Browse files
authoredAug 10, 2018
Merge pull request #3137 from getnikola/config_bundles
Read bundles with configparser
2 parents 7928304 + adbc4d6 commit 961bb42

File tree

7 files changed

+132
-39
lines changed

7 files changed

+132
-39
lines changed
 

‎CHANGES.txt

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Features
1414
"{postDate} (${messages("updated")} {updateDate})". If no update
1515
time is specified, the posting time will be displayed alone.
1616
* All built-in themes now support the ``DATE_FANCINESS`` option.
17+
* Theme bundles are now parsed using the configparser module and
18+
can support newlines inside entries as well as comments
1719

1820
Bugfixes
1921
--------

‎docs/creating-a-theme.rst

+27-9
Original file line numberDiff line numberDiff line change
@@ -813,15 +813,33 @@ Doing the same for layout-reverse, sidebar-overlay and the rest is left as an ex
813813
Bundles
814814
-------
815815

816-
If you have ``webassets`` installed and the ``USE_BUNDLES`` option set to True, Nikola can put several CSS or JS files together in a larger file,
817-
which makes sites load faster. To do that, your theme needs a ``bundles`` file where the syntax is::
818-
819-
outputfile1.js=thing1.js,thing2.js,...
820-
outputfile2.css=thing1.css,thing2.css,...
821-
822-
For the Lanyon theme, it should be like this::
823-
824-
assets/css/all.css=rst_base.css,nikola_rst.css,code.css,poole.css,lanyon.css,custom.css
816+
If you have ``webassets`` installed and the ``USE_BUNDLES`` option set to True,
817+
Nikola can put several CSS or JS files together in a larger file, which can
818+
makes site load faster for some deployments. To do this, your theme needs
819+
a ``bundles`` file. The file format is a modified
820+
`config <https://docs.python.org/3/library/configparser.html>`_ file with no
821+
defined section; the basic syntax is::
822+
823+
outputfile1.js=
824+
thing1.js,
825+
thing2.js,
826+
...
827+
outputfile2.css=
828+
thing1.css,
829+
thing2.css,
830+
...
831+
832+
For the Lanyon theme, it should look like this::
833+
834+
assets/css/all.css=
835+
rst_base.css,
836+
nikola_rst.css,
837+
code.css,
838+
poole.css,
839+
lanyon.css,
840+
custom.css,
841+
842+
**Note:** trailing commas are optional
825843

826844
**Note:** Some themes also support the ``USE_CDN`` option meaning that in some cases it will load one bundle with all CSS and in other will load some CSS files
827845
from a CDN and others from a bundle. This is complicated and probably not worth the effort.

‎docs/theming.rst

+14-6
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,20 @@ parent, engine
7373
older).
7474

7575
bundles
76-
A text file containing a list of files to be turned into bundles using WebAssets.
77-
For example:
78-
79-
.. code:: text
80-
81-
assets/css/all.css=bootstrap.min.css,rst_base.css,nikola_rst.css,code.css,baguetteBox.min.css,theme.css,custom.css
76+
A `config <https://docs.python.org/3/library/configparser.html>`_ file
77+
containing a list of files to be turned into bundles using WebAssets. For
78+
example:
79+
80+
.. code:: ini
81+
82+
assets/css/all.css=
83+
bootstrap.min.css,
84+
rst_base.css,
85+
nikola_rst.css,
86+
code.css,
87+
baguetteBox.min.css,
88+
theme.css,
89+
custom.css,
8290
8391
This creates a file called "assets/css/all.css" in your output that is the
8492
combination of all the other file paths, relative to the output file.

‎nikola/data/themes/base/bundles

+20-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
assets/css/all.css=rst_base.css,nikola_rst.css,code.css,theme.css
2-
assets/css/all-nocdn.css=rst_base.css,nikola_rst.css,code.css,theme.css,baguetteBox.min.css
3-
assets/js/all.js=fancydates.js
4-
assets/js/all-nocdn.js=baguetteBox.min.js,moment-with-locales.min.js,fancydates.js
1+
; css bundles
2+
assets/css/all.css=
3+
rst_base.css,
4+
nikola_rst.css,
5+
code.css,
6+
theme.css,
7+
assets/css/all-nocdn.css=
8+
rst_base.css,
9+
nikola_rst.css,
10+
code.css,
11+
theme.css,
12+
baguetteBox.min.css,
13+
14+
; javascript bundles
15+
assets/js/all.js=
16+
fancydates.js,
17+
assets/js/all-nocdn.js=
18+
baguetteBox.min.js,
19+
moment-with-locales.min.js,
20+
fancydates.js,

‎nikola/data/themes/bootblog4/bundles

+29-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
1-
assets/css/all-nocdn.css=bootstrap.min.css,rst_base.css,nikola_rst.css,code.css,baguetteBox.min.css,theme.css,bootblog.css,custom.css
2-
assets/css/all.css=rst_base.css,nikola_rst.css,code.css,baguetteBox.min.css,theme.css,bootblog.css,custom.css
3-
assets/js/all-nocdn.js=jquery.min.js,popper.min.js,bootstrap.min.js,baguetteBox.min.js,moment-with-locales.min.js,fancydates.min.js
4-
assets/js/all.js=fancydates.min.js
1+
; css bundles
2+
assets/css/all-nocdn.css=
3+
bootstrap.min.css,
4+
rst_base.css,
5+
nikola_rst.css,
6+
code.css,
7+
baguetteBox.min.css,
8+
theme.css,
9+
bootblog.css,
10+
custom.css,
11+
assets/css/all.css=
12+
rst_base.css,
13+
nikola_rst.css,
14+
code.css,
15+
baguetteBox.min.css,
16+
theme.css,
17+
bootblog.css,
18+
custom.css,
19+
20+
; javascript bundles
21+
assets/js/all-nocdn.js=
22+
jquery.min.js,
23+
popper.min.js,
24+
bootstrap.min.js,
25+
baguetteBox.min.js,
26+
moment-with-locales.min.js,
27+
fancydates.min.js,
28+
assets/js/all.js=
29+
fancydates.min.js,

‎nikola/data/themes/bootstrap4/bundles

+27-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
assets/css/all-nocdn.css=bootstrap.min.css,rst_base.css,nikola_rst.css,code.css,baguetteBox.min.css,theme.css,custom.css
2-
assets/css/all.css=rst_base.css,nikola_rst.css,code.css,baguetteBox.min.css,theme.css,custom.css
3-
assets/js/all-nocdn.js=jquery.min.js,popper.min.js,bootstrap.min.js,baguetteBox.min.js,moment-with-locales.min.js,fancydates.min.js
4-
assets/js/all.js=fancydates.min.js
1+
; css bundles
2+
assets/css/all-nocdn.css=
3+
bootstrap.min.css,
4+
rst_base.css,
5+
nikola_rst.css,
6+
code.css,
7+
baguetteBox.min.css,
8+
theme.css,
9+
custom.css,
10+
assets/css/all.css=
11+
rst_base.css,
12+
nikola_rst.css,
13+
code.css,
14+
baguetteBox.min.css,
15+
theme.css,
16+
custom.css,
17+
18+
; javascript bundles
19+
assets/js/all-nocdn.js=
20+
jquery.min.js,
21+
popper.min.js,
22+
bootstrap.min.js,
23+
baguetteBox.min.js,
24+
moment-with-locales.min.js,
25+
fancydates.min.js,
26+
assets/js/all.js=
27+
fancydates.min.js

‎nikola/plugins/task/bundles.py

+13-12
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
"""Bundle assets using WebAssets."""
2828

2929

30+
import configparser
31+
import io
32+
import itertools
3033
import os
3134

3235
try:
@@ -125,19 +128,17 @@ def build_bundle(output, inputs):
125128

126129
def get_theme_bundles(themes):
127130
"""Given a theme chain, return the bundle definitions."""
128-
bundles = {}
129131
for theme_name in themes:
130132
bundles_path = os.path.join(
131133
utils.get_theme_path(theme_name), 'bundles')
132134
if os.path.isfile(bundles_path):
133-
with open(bundles_path) as fd:
134-
for line in fd:
135-
try:
136-
name, files = line.split('=')
137-
files = [f.strip() for f in files.split(',')]
138-
bundles[name.strip().replace('/', os.sep)] = files
139-
except ValueError:
140-
# for empty lines
141-
pass
142-
break
143-
return bundles
135+
config = configparser.ConfigParser()
136+
header = io.StringIO('[bundles]\n')
137+
with open(bundles_path, 'rt') as fd:
138+
config.read_file(itertools.chain(header, fd))
139+
bundles = {}
140+
for name, files in config['bundles'].items():
141+
name = name.strip().replace('/', os.sep)
142+
files = [f.strip() for f in files.split(',') if f.strip()]
143+
bundles[name] = files
144+
return bundles

0 commit comments

Comments
 (0)
Please sign in to comment.