Skip to content

Commit

Permalink
merged master
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed Sep 9, 2015
2 parents c217059 + 6c10f8f commit dae3349
Show file tree
Hide file tree
Showing 866 changed files with 79,400 additions and 25,800 deletions.
2 changes: 1 addition & 1 deletion .coveragerc
@@ -1,6 +1,6 @@
[run]
source = nikola
omit = /tmp/*, _*
omit = /tmp/*, _*, nikola/packages*, nikola/data*, nikola/winutils*
[report]
exclude_lines =
pragma: no cover
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -20,3 +20,6 @@ __pycache__/

# pyenv
.python-version

# GitHub token
.pypt/gh-token
110 changes: 110 additions & 0 deletions .pypt/ghrel
@@ -0,0 +1,110 @@
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# Kw’s Release Tools/Python Project Template
# GitHub Release Creator
# Copyright © 2013-2015, Chris Warrick.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions, and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions, and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the author of this software nor the names of
# contributors to this software may be used to endorse or promote
# products derived from this software without specific prior written
# consent.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

"""
Create GitHub releases out of changelogs.
Usage: .pypt/commitlog FILE BASEDIR REPOSITORY TAG, where
FILE is the path to the file to use, which can be
a plain .md file or a CMFN file,
BASEDIR is the project directory,
REPOSITORY is the full GitHub repository name (user/repo),
TAG is the tag to write to.
All paths should be absolute.
"""

import argparse
import json
import re
import requests
import sys
from os.path import join as pjoin


def main():
"""ghrel main function."""
parser = argparse.ArgumentParser(
description="GitHub Release Creator "
"(part of Chris Warrick's Python Project Template)")
parser.add_argument('filename', metavar='FILE', nargs=1,
help='File to parse (Markdown or commitlog)')
parser.add_argument('basedir', metavar='BASEDIR', nargs=1,
help='Project directory (must contain .pypt/gh-token)')
parser.add_argument('repo', metavar='REPOSITORY', nargs=1,
help='GitHub repository (owner/repo)')
parser.add_argument('tag', metavar='TAG', nargs=1,
help='Tag to create release for (vX.Y.Z)')
args = parser.parse_args()
# nargs gets you lists, not strings
filename = args.filename[0]
basedir = args.basedir[0]
repo = args.repo[0]
tag = args.tag[0]

with open(pjoin(basedir, '.pypt', 'gh-token')) as fh:
token = fh.read().strip()

headers = {
'User-Agent': 'Kwpolska/python-project-template',
'Authorization': 'token ' + token,
}

with open(filename) as fh:
fdata = fh.read()
e = re.findall(
'#~ CHANGELOG MESSAGE START ~#\n(.*?)\n'
'#~ CHANGELOG MESSAGE END ~#',
fdata, flags=re.S)

if e:
# parse as a CMFN file, replace backticks (reST -> Markdown)
message = e[0].replace('``', '`')
else:
# parse as a plain Markdown file
message = fdata

r = requests.post(
'https://api.github.com/repos/{0}/releases'.format(repo),
data=json.dumps({'tag_name': tag, 'body': message}),
headers=headers)

if r.status_code == 201:
print("GitHub Release created: {0}".format(r.json()['html_url']))
else:
print("GitHub Release failed: {0}".format(r.text))
return 1

if __name__ == '__main__':
sys.exit(main())
13 changes: 9 additions & 4 deletions .travis.yml
@@ -1,9 +1,13 @@
before_install:
- "if [[ $NMODE == 'nikola' ]]; then sudo apt-get update -qq || true; fi"
- "if [[ $NMODE == 'nikola' ]]; then sudo apt-get --reinstall install -qq language-pack-en-base language-pack-pl-base; fi"
- "pip install --upgrade pip wheel"
language: python
cache: apt
sudo: false
addons:
apt:
packages:
- language-pack-en-base
- language-pack-pl-base
python:
- "2.7"
- "3.3"
Expand All @@ -19,17 +23,18 @@ install:
- "if [[ $NMODE == 'nikola' ]]; then pip install -r requirements-tests.txt; if [[ \"$?\" == '1' ]]; then cat /home/travis/.pip/pip.log; false; fi; fi"
- "if [[ $NMODE == 'nikola' ]]; then pip install .; fi"
- "if [[ $NMODE == 'nikola' ]]; then scripts/getbaseline.sh $(scripts/getpyver.py short); fi"
- "if [[ $NMODE == 'flake8' ]]; then pip install flake8; fi"
- "if [[ $NMODE == 'flake8' ]]; then pip install flake8 pep257; fi"
# We run tests and nikola (to see if the command is executable) OR flake8.
# We run `nikola` and `nikola help` because things may break due to human
# errors in argument parsing (cf. 96e78dd)
# WARNING: if you edit this, make sure to replicate your changes in dodo.py.
# WARNING: if you edit this, make sure to replicate your changes in dodo.py and appveyor.yml.
script:
- "if [[ $NMODE == 'nikola' ]]; then py.test --doctest-modules nikola/; fi"
- "if [[ $NMODE == 'nikola' ]]; then py.test --cov nikola --cov-report term-missing tests/; fi"
- "if [[ $NMODE == 'nikola' ]]; then nikola; fi"
- "if [[ $NMODE == 'nikola' ]]; then nikola help; fi"
- "if [[ $NMODE == 'flake8' ]]; then flake8 nikola/; fi"
- "if [[ $NMODE == 'flake8' ]]; then pep257 --count --match-dir='(?!^\\\\.)(?!data).*' nikola/; fi"
after_success:
- "if [[ $NMODE == 'nikola' ]]; then coveralls; fi"
notifications:
Expand Down
212 changes: 108 additions & 104 deletions AUTHORS.txt
@@ -1,104 +1,108 @@
Agustin Henze <https://github.com/agustinhenze>
Alberto Berti <https://github.com/azazel75>
Alex Popescu <https://github.com/al3xandru>
Alex Walters <https://github.com/tritium21>
Andreas Linz <https://github.com/KLINGTdotNET>
Areski Belaid <https://github.com/areski>
Aru Sahni <https://github.com/arusahni>
Aurelien Naldi <https://github.com/aurelien-naldi>
Ben Mather <https://github.com/bwhmather>
Boris Kaul <https://github.com/localvoid>
Brandon W. Maister <https://github.com/quodlibetor>
Bussonnier Matthias <https://gtihub.com/carreau>
Carsten Grohmann <https://github.com/CarstenGrohmann>
Casey M. Bessette <https://github.com/caseybessette>
Chris Lee <https://github.com/clee>
Chris Warrick <https://github.com/Kwpolska>
Claudio Canepa <https://github.com/ccanepa>
Damien Tournoud <https://github.com/damz>
Damián Avila <https://github.com/damianavila>
Daniel Aleksandersen <https://github.com/Aeyoun>
Daniel Devine <https://github.com/DDevine>
Daniel F. Moisset <https://github.com/dmoisset>
David Beath <https://github.com/DBeath>
Dhruv Baldawa <https://github.com/dhruvbaldawa>
Dirk Engling <https://github.com/erdgeist>
Dmitry Verkhoturov <https://github.com/paskal>
Duncan Lock <https://github.com/dflock>
Edinei Cavalcanti <https://github.com/neiesc>
Eduardo Schettino <https://github.com/schettino72>
Edwin Steele <https://github.com/edwinsteele>
Emilien Klein <https://github.com/e2jk>
Evgeni Golov <https://github.com/evgeni>
Felix Fontein <https://github.com/felixfontein>
Felix Schwarz <https://github.com/FelixSchwarz>
Grzegorz Śliwiński <https://github.com/fizyk>
Guillermo O. Freschi <https://github.com/Tordek>
Hardening <https://github.com/hardening>
Ivan Teoh <https://github.com/ivanteoh>
John Kristensen <https://github.com/jerrykan>
Joshua Barratt <https://github.com/jbarratt>
Juan Pedro Fisanotti <https://github.com/fisadev>
Kade For <https://github.com/kadefor>
Kay Hayen <https://github.com/kayhayen>
Leandro Poblet <https://github.com/DoctorMalboro>
Luis Miguel Morillas <https://github.com/lmorillas>
Manuel Kaufmann <https://github.com/humitos>
Marcelo MD <https://github.com/marcelomd>
Marcos Dione <https://github.com/StyXman>
Mariano Guerra <https://github.com/marianoguerra>
Mario Pozzo <https://github.com/camboris>
Mark Eichin <https://github.com/eichin>
Martin Bless <https://github.com/marble>
Martin Wimpress <https://github.com/wimpr1m>
Martín Gaitán <https://github.com/mgaitan>
Matias Novoa <https://github.com/mattgaviota>
Michael Joseph <https://github.com/michaeljoseph>
Michael McNeil Forbes <https://github.com/mforbes>
Michal Petrucha <https://github.com/koniiiik>
Miguel Ángel García <https://github.com/magmax>
Neil MartinsenBurrell <https://github.com/neilmb>
Niko Wenselowski <https://github.com/okin>
Nikola Kotur <https://github.com/kotnik>
Ondřej Grover <https://github.com/smartass101>
Onno Broekmans <https://github.com/onnodb>
Pablo Seminario <https://github.com/pabluk>
Patrick Wildt <https://github.com/Bluerise>
Paul Ivanov <https://github.com/ivanov>
Pelle Nilsson <https://github.com/pellenilsson>
Pierpaolo Da Fieno <https://github.com/numshub>
Puneeth Chaganti <https://github.com/punchagan>
Raimon Esteve <https://github.com/raimonesteve>
Ramiro Morales <https://github.com/ramiro>
Roberto Alsina <https://github.com/ralsina>
Rodrigo Bistolfi <https://github.com/rbistolfi>
Roger Binns <https://github.com/rogerbinns>
Roman Faizullin <https://github.com/faizrr>
Roman Imankulov <https://github.com/imankulov>
Santiago Pestarini <https://github.com/quijot>
Sean Pue <https://github.com/seanpue>
Simon van der Veldt <https://github.com/simonvanderveldt>
Stefan Näwe <https://github.com/snaewe>
Thibauld Nion <https://github.com/tibonihoo>
Thomas Burette <https://github.com/tburette>
Tim Chase <https://github.com/Gumnos>
Tolu Sonaike <https://github.com/tolusonaike>
Troy Toman <https://github.com/troytoman>
Udo Spallek <https://github.com/udono>
Yaşar Arabacı <https://github.com/yasar11732>
Yasuhiko Shiga <https://github.com/quoth>
Zhaojun Meng <https://github.com/zhaojunmeng>
dastagg <https://github.com/dastagg>
dastagg <https://github.com/dastagg>
ermeaney <https://github.com/ermeaney>
follower <https://github.com/follower>
lbiaggi <https://github.com/lbiaggi>
mrabbitt <https://github.com/mrabbitt>
nlaurens <https://github.com/nlaurens>
notfoss <https://github.com/notfoss>
phora <https://github.com/phora>
pmav99 <https://github.com/pmav99>
pwm1234 <https://github.com/pwm1234>
rafacarrascosa <https://github.com/rafacarrascosa>
yarko <https://github.com/yarko>
小明 <https://github.com/dongweiming>
* `Agustin Henze <https://github.com/agustinhenze>`_
* `Alberto Berti <https://github.com/azazel75>`_
* `Alex Popescu <https://github.com/al3xandru>`_
* `Alex Walters <https://github.com/tritium21>`_
* `Andreas Linz <https://github.com/KLINGTdotNET>`_
* `Areski Belaid <https://github.com/areski>`_
* `Aru Sahni <https://github.com/arusahni>`_
* `Aurelien Naldi <https://github.com/aurelien-naldi>`_
* `Ben Mather <https://github.com/bwhmather>`_
* `Boris Kaul <https://github.com/localvoid>`_
* `Brandon W. Maister <https://github.com/quodlibetor>`_
* `Bussonnier Matthias <https://gtihub.com/carreau>`_
* `Carlos Martín Sánchez <https://github.com/carlosvin>`_
* `Carsten Grohmann <https://github.com/CarstenGrohmann>`_
* `Casey M. Bessette <https://github.com/caseybessette>`_
* `Chris Lee <https://github.com/clee>`_
* `Chris Warrick <https://github.com/Kwpolska>`_
* `Claudio Canepa <https://github.com/ccanepa>`_
* `Damien Tournoud <https://github.com/damz>`_
* `Damián Avila <https://github.com/damianavila>`_
* `Daniel Aleksandersen <https://github.com/Aeyoun>`_
* `Daniel Devine <https://github.com/DDevine>`_
* `Daniel F. Moisset <https://github.com/dmoisset>`_
* `David Beath <https://github.com/DBeath>`_
* `Dhruv Baldawa <https://github.com/dhruvbaldawa>`_
* `Dirk Engling <https://github.com/erdgeist>`_
* `Dmitry Verkhoturov <https://github.com/paskal>`_
* `Duncan Lock <https://github.com/dflock>`_
* `Edinei Cavalcanti <https://github.com/neiesc>`_
* `Eduardo Schettino <https://github.com/schettino72>`_
* `Edwin Steele <https://github.com/edwinsteele>`_
* `Emilien Klein <https://github.com/e2jk>`_
* `Evgeni Golov <https://github.com/evgeni>`_
* `Felix Fontein <https://github.com/felixfontein>`_
* `Felix Schwarz <https://github.com/FelixSchwarz>`_
* `Grzegorz Śliwiński <https://github.com/fizyk>`_
* `Guillermo O. Freschi <https://github.com/Tordek>`_
* `Hardening <https://github.com/hardening>`_
* `Ivan Teoh <https://github.com/ivanteoh>`_
* `John Kristensen <https://github.com/jerrykan>`_
* `Joshua Barratt <https://github.com/jbarratt>`_
* `Juan Pedro Fisanotti <https://github.com/fisadev>`_
* `Juanjo Conti <https://github.com/jjconti>`_
* `Kade For <https://github.com/kadefor>`_
* `Kay Hayen <https://github.com/kayhayen>`_
* `Leandro Poblet <https://github.com/DoctorMalboro>`_
* `Luis Miguel Morillas <https://github.com/lmorillas>`_
* `Manuel Kaufmann <https://github.com/humitos>`_
* `Marcelo MD <https://github.com/marcelomd>`_
* `Marcos Dione <https://github.com/StyXman>`_
* `Mariano Guerra <https://github.com/marianoguerra>`_
* `Mario Pozzo <https://github.com/camboris>`_
* `Mark Eichin <https://github.com/eichin>`_
* `Martin Bless <https://github.com/marble>`_
* `Martin Wimpress <https://github.com/wimpr1m>`_
* `Martín Gaitán <https://github.com/mgaitan>`_
* `Matias Novoa <https://github.com/mattgaviota>`_
* `Michael Joseph <https://github.com/michaeljoseph>`_
* `Michael McNeil Forbes <https://github.com/mforbes>`_
* `Michal Petrucha <https://github.com/koniiiik>`_
* `Miguel Ángel García <https://github.com/magmax>`_
* `Neil MartinsenBurrell <https://github.com/neilmb>`_
* `Niko Wenselowski <https://github.com/okin>`_
* `Nikola Kotur <https://github.com/kotnik>`_
* `Ondřej Grover <https://github.com/smartass101>`_
* `Onno Broekmans <https://github.com/onnodb>`_
* `Pablo Seminario <https://github.com/pabluk>`_
* `Patrick Wildt <https://github.com/Bluerise>`_
* `Paul Ivanov <https://github.com/ivanov>`_
* `Pelle Nilsson <https://github.com/pellenilsson>`_
* `Pierpaolo Da Fieno <https://github.com/numshub>`_
* `Puneeth Chaganti <https://github.com/punchagan>`_
* `Raimon Esteve <https://github.com/raimonesteve>`_
* `Ramiro Morales <https://github.com/ramiro>`_
* `Roberto Alsina <https://github.com/ralsina>`_
* `Rodrigo Bistolfi <https://github.com/rbistolfi>`_
* `Roger Binns <https://github.com/rogerbinns>`_
* `Roman Faizullin <https://github.com/faizrr>`_
* `Roman Imankulov <https://github.com/imankulov>`_
* `Santiago Pestarini <https://github.com/quijot>`_
* `Sean Pue <https://github.com/seanpue>`_
* `Simon van der Veldt <https://github.com/simonvanderveldt>`_
* `Stefan Näwe <https://github.com/snaewe>`_
* `Thibauld Nion <https://github.com/tibonihoo>`_
* `Thomas Burette <https://github.com/tburette>`_
* `Tim Chase <https://github.com/Gumnos>`_
* `Tolu Sonaike <https://github.com/tolusonaike>`_
* `Troy Toman <https://github.com/troytoman>`_
* `Udo Spallek <https://github.com/udono>`_
* `Yamila Moreno <https://github.com/yamila-moreno>`_
* `Yaşar Arabacı <https://github.com/yasar11732>`_
* `Yasuhiko Shiga <https://github.com/quoth>`_
* `Zhaojun Meng <https://github.com/zhaojunmeng>`_
* `dastagg <https://github.com/dastagg>`_
* `dastagg <https://github.com/dastagg>`_
* `ermeaney <https://github.com/ermeaney>`_
* `follower <https://github.com/follower>`_
* `lbiaggi <https://github.com/lbiaggi>`_
* `mrabbitt <https://github.com/mrabbitt>`_
* `nlaurens <https://github.com/nlaurens>`_
* `notfoss <https://github.com/notfoss>`_
* `phora <https://github.com/phora>`_
* `pmav99 <https://github.com/pmav99>`_
* `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>`_

0 comments on commit dae3349

Please sign in to comment.