From e946532b9b9cc13b2ea3a7ab76e160c3e51c6d98 Mon Sep 17 00:00:00 2001 From: Martin Trigaux Date: Tue, 27 Oct 2020 14:22:14 +0100 Subject: [PATCH] [REV] conf: revert f93fb12e6bce55 Revert "[FIX] technical: Sphinx deprecation warnings" Nightly servers still use sphinx 1.7 Revert until we have updated the server to newer versions --- conf.py | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/conf.py b/conf.py index a45f736b9..848924ac2 100644 --- a/conf.py +++ b/conf.py @@ -326,22 +326,22 @@ LANGUAGES = { } def setup(app): - app.add_css_file('accounting.css') - app.add_css_file('legal.css') - app.add_js_file('prefixfree.min.js') - app.add_js_file('atom.js') - app.add_js_file('immutable.js') - app.add_js_file('react.min.js') - app.add_js_file('accounts.js') - app.add_js_file('chart-of-accounts.js') - app.add_js_file('entries.js') - app.add_js_file('reconciliation.js') - app.add_js_file('misc.js') + app.add_stylesheet('accounting.css') + app.add_stylesheet('legal.css') + app.add_javascript('prefixfree.min.js') + app.add_javascript('atom.js') + app.add_javascript('immutable.js') + app.add_javascript('react.min.js') + app.add_javascript('accounts.js') + app.add_javascript('chart-of-accounts.js') + app.add_javascript('entries.js') + app.add_javascript('reconciliation.js') + app.add_javascript('misc.js') - app.add_js_file('inventory.js') - app.add_js_file('coa-valuation.js') - app.add_js_file('coa-valuation-continental.js') - app.add_js_file('coa-valuation-anglo-saxon.js') + app.add_javascript('inventory.js') + app.add_javascript('coa-valuation.js') + app.add_javascript('coa-valuation-continental.js') + app.add_javascript('coa-valuation-anglo-saxon.js') app.connect('html-page-context', canonicalize) app.add_config_value('canonical_root', None, 'env')