Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: getnikola/nikola
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 85617e3d2582
Choose a base ref
...
head repository: getnikola/nikola
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b0bf8dedf0e8
Choose a head ref
  • 8 commits
  • 3 files changed
  • 2 contributors

Commits on May 12, 2015

  1. Copy the full SHA
    2bb9cc1 View commit details
  2. better/more pythonic style

    bnmnetp committed May 12, 2015
    Copy the full SHA
    70551fc View commit details
  3. Copy the full SHA
    7a63bb1 View commit details
  4. Copy the full SHA
    054dd2b View commit details
  5. Copy the full SHA
    f8cf72d View commit details
  6. Copy the full SHA
    9584470 View commit details
  7. fix merge conflict

    bnmnetp committed May 12, 2015
    Copy the full SHA
    79e2878 View commit details
  8. Merge pull request #1716 from bnmnetp/master

    Look for DOIT_CONFIG in config so it can be set in conf.py (Fix #1715)
    ralsina committed May 12, 2015
    Copy the full SHA
    b0bf8de View commit details
Showing with 4 additions and 0 deletions.
  1. +2 −0 AUTHORS.txt
  2. +1 −0 nikola/__main__.py
  3. +1 −0 nikola/nikola.py
2 changes: 2 additions & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
@@ -102,3 +102,5 @@ pwm1234 <https://github.com/pwm1234>
rafacarrascosa <https://github.com/rafacarrascosa>
yarko <https://github.com/yarko>
小明 <https://github.com/dongweiming>
Brad Miller <https://github.com/bnmnetp>

1 change: 1 addition & 0 deletions nikola/__main__.py
Original file line number Diff line number Diff line change
@@ -252,6 +252,7 @@ def load_tasks(self, cmd, opt_values, pos_args):
'outfile': sys.stderr,
}
DOIT_CONFIG['default_tasks'] = ['render_site', 'post_render']
DOIT_CONFIG.update(self.nikola._doit_config)
tasks = generate_tasks(
'render_site',
self.nikola.gen_tasks('render_site', "Task", 'Group of tasks to render the site.'))
1 change: 1 addition & 0 deletions nikola/nikola.py
Original file line number Diff line number Diff line change
@@ -286,6 +286,7 @@ def __init__(self, **config):
self.colorful = config.pop('__colorful__', False)
self.invariant = config.pop('__invariant__', False)
self.quiet = config.pop('__quiet__', False)
self._doit_config = config.pop('DOIT_CONFIG', {})
self.original_cwd = config.pop('__cwd__', False)
self.configuration_filename = config.pop('__configuration_filename__', False)
self.configured = bool(config)