Skip to content

Commit b6fcb50

Browse files
committed
fix: resolved conflict
2 parents dbd7bfc + ad95b4e commit b6fcb50

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+514
-407
lines changed

.mailmap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ Kevin S. Hahn <[email protected]> Kevin S. Hahn <[email protected]>
2727
Basile Pinsard <[email protected]> bpinsard <[email protected]>
2828
Basile Pinsard <[email protected]> bpinsard <[email protected]>
2929
30+
Ben Cipollini <[email protected]> Ben Cipollini <[email protected]>
31+
Chris Markiewicz <[email protected]> Christopher J. Markiewicz <[email protected]>

Changelog

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,27 @@ NiBabel
2222
Most work on NiBabel so far has been by Matthew Brett (MB), Michael Hanke (MH)
2323
and Stephan Gerhard (SG).
2424

25+
References like "pr/298" refer to github pull request numbers.
26+
27+
* 2.0.1 (Saturday 27 June 2015)
28+
29+
Contributions from Ben Cipollini, Chris Markiewicz, Alexandre Gramfort,
30+
Clemens Bauer, github user freec84.
31+
32+
* Bugfix release with minor new features;
33+
* Added ``axis`` parameter to ``concat_images`` (pr/298) (Ben Cipollini);
34+
* Fix for unsigned integer data types in ECAT images (pr/302) (MB, test data
35+
and issue report from Github user freec84);
36+
* Added new ECAT and Freesurfer data files to automated testing;
37+
* Fix for Freesurfer labels error on early numpies (pr/307) (Alexandre
38+
Gramfort);
39+
* Fixes for PAR / REC header parsing (pr/312) (MB, issue reporting and test
40+
data by Clemens C. C. Bauer);
41+
* Workaround for reading Freesurfer ico7 surface files (pr/315) (Chris
42+
Markiewicz);
43+
* Changed to github pages for doc hosting;
44+
* Changed docs to point to [email protected] mailing list.
45+
2546
* 2.0.0 (Tuesday 9 December 2014)
2647

2748
This release had large contributions from Eric Larson, Brendan Moloney,

Makefile

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ HTML_DIR=build/html
33
LATEX_DIR=build/latex
44
WWW_DIR=build/website
55
DOCSRC_DIR=doc
6-
SF_USER ?= matthewbrett
6+
PROJECT=nibabel
77
#
88
# The Python executable to be used
99
#
@@ -121,23 +121,23 @@ gitwash-update: build
121121
# Website
122122
#
123123

124-
website: website-stamp
125-
website-stamp: $(WWW_DIR) htmldoc pdfdoc
124+
html: html-stamp
125+
html-stamp: $(WWW_DIR) htmldoc
126126
cp -r $(HTML_DIR)/* $(WWW_DIR)
127-
cp $(LATEX_DIR)/*.pdf $(WWW_DIR)
128127
touch $@
129128

129+
pdf: pdf-stamp
130+
pdf-stamp: $(WWW_DIR) pdfdoc
131+
cp $(LATEX_DIR)/*.pdf $(WWW_DIR)
132+
touch $@
130133

131-
upload-website: website
132-
rsync -rzhvp --delete --chmod=Dg+s,g+rw $(WWW_DIR)/* \
133-
web.sourceforge.net:/home/groups/n/ni/niftilib/htdocs/nibabel/
134-
135-
# This one udates for the specific user named at the top of the makefile
136-
upload-htmldoc: htmldoc upload-htmldoc-$(SF_USER)
134+
website: website-stamp
135+
website-stamp: $(WWW_DIR) html-stamp pdf-stamp
136+
cp -r $(HTML_DIR)/* $(WWW_DIR)
137+
touch $@
137138

138-
upload-htmldoc-%: htmldoc
139-
rsync -rzhvp --delete --chmod=Dg+s,g+rw $(HTML_DIR)/* \
140-
$*,[email protected]:/home/groups/n/ni/nipy/htdocs/nibabel/
139+
upload-html: html-stamp
140+
./tools/upload-gh-pages.sh $(WWW_DIR) $(PROJECT)
141141

142142
#
143143
# Sources

README.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
.. Following contents should be from LONG_DESCRIPTION in nibabel/info.py
88
9+
910
=======
1011
NiBabel
1112
=======
@@ -27,10 +28,10 @@ DICOM_. NiBabel is the successor of PyNIfTI_.
2728
.. _MINC2:
2829
https://en.wikibooks.org/wiki/MINC/Reference/MINC2.0_File_Format_Reference
2930
.. _PyNIfTI: http://niftilib.sourceforge.net/pynifti/
30-
.. _GIFTI: http://www.nitrc.org/projects/gifti
31-
.. _MGH: http://surfer.nmr.mgh.harvard.edu/fswiki/FsTutorial/MghFormat
31+
.. _GIFTI: https://www.nitrc.org/projects/gifti
32+
.. _MGH: https://surfer.nmr.mgh.harvard.edu/fswiki/FsTutorial/MghFormat
3233
.. _ECAT: http://xmedcon.sourceforge.net/Docs/Ecat
33-
.. _Freesurfer: http://surfer.nmr.mgh.harvard.edu
34+
.. _Freesurfer: https://surfer.nmr.mgh.harvard.edu
3435
.. _DICOM: http://medical.nema.org/
3536

3637
The various image format classes give full or selective access to header (meta)
@@ -40,7 +41,7 @@ Website
4041
=======
4142

4243
Current documentation on nibabel can always be found at the `NIPY nibabel
43-
website <http://nipy.org/nibabel>`_.
44+
website <https://nipy.github.io/nibabel>`_.
4445

4546
Mailing Lists
4647
=============
@@ -60,8 +61,8 @@ You can find our sources and single-click downloads:
6061
* Download `current development version`_ as a zip file;
6162
* Downloads of all `available releases`_.
6263

63-
.. _main repository: http://github.com/nipy/nibabel
64-
.. _Documentation: http://nipy.org/nibabel
64+
.. _main repository: https://github.com/nipy/nibabel
65+
.. _Documentation: https://nipy.github.io/nibabel
6566
.. _current release: https://pypi.python.org/pypi/nibabel
6667
.. _current development version: https://github.com/nipy/nibabel/archive/master.zip
6768
.. _available releases: https://github.com/nipy/nibabel/releases

doc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,5 +97,5 @@ doctest: api-clean
9797
gitwash-update:
9898
python ../tools/gitwash_dumper.py source nibabel --github-user=nipy \
9999
--project-url=http://nipy.org/nibabel \
100-
--project-ml-url=http://mail.scipy.org/mailman/listinfo/nipy-devel
100+
--project-ml-url=https://mail.python.org/mailman/listinfo/neuroimaging
101101

doc/source/_templates/indexsidebar.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
<h3>Quick links</h3>
22

33
<ul>
4-
<li><a href="http://pypi.python.org/pypi/nibabel">Nibabel pypi</a></li>
5-
<li><a href="http://github.com/nipy/nibabel">Git repository</a></li>
6-
<li><a href="http://mail.scipy.org/pipermail/nipy-devel">Mailing list archive</a></li>
4+
<li><a href="https://pypi.python.org/pypi/nibabel">Nibabel pypi</a></li>
5+
<li><a href="https://github.com/nipy/nibabel">Git repository</a></li>
6+
<li><a href="https://mail.python.org/pipermail/neuroimaging">Mailing list archive</a></li>
77
</ul>
88

9-
<script type="text/javascript" src="http://www.ohloh.net/projects/480908/widgets/project_partner_badge"></script>
9+
<script type="text/javascript" src="https://www.ohloh.net/projects/480908/widgets/project_partner_badge"></script>
1010

1111
<h3>Search mailing list archive</h3>
1212
<script type="text/javascript">
1313
function mlsearch(curobj)
1414
{
15-
curobj.q.value="site:mail.scipy.org/pipermail/nipy-devel/ "+curobj.userquery.value
15+
curobj.q.value="site:mail.python.org/pipermail/neuroimaging/ "+curobj.userquery.value
1616
}
1717
</script>
18-
<form action="http://www.google.com/search" method="get" onSubmit="mlsearch(this)">
18+
<form action="https://www.google.com/search" method="get" onSubmit="mlsearch(this)">
1919
<input name="userquery" size="18" type="text" /> <input type="submit" value="Go" />
2020
<input name="q" type="hidden" />
2121
</form>

doc/source/_templates/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{% block rootrellink %}
55
<li><a href="http://nipy.org/">Community</a> |&nbsp;</li>
66
<li><a href="{{ pathto('index') }}">NiBabel Home</a> |&nbsp;</li>
7-
<li><a href="http://projects.scipy.org/mailman/listinfo/nipy-devel">Mailing list</a> |&nbsp;</li>
7+
<li><a href="https://mail.python.org/mailman/listinfo/neuroimaging">Mailing list</a> |&nbsp;</li>
88
<li><a href="legal.html">License</a> |&nbsp;</li>
99
{% endblock %}
1010

doc/source/conf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373

7474
# General information about the project.
7575
project = u'NiBabel'
76-
copyright = u'2006-2014, %(MAINTAINER)s <%(AUTHOR_EMAIL)s>' % rel
76+
copyright = u'2006-2015, %(MAINTAINER)s <%(AUTHOR_EMAIL)s>' % rel
7777

7878
# The version info for the project you're documenting, acts as replacement for
7979
# |version| and |release|, also used in various other places throughout the
@@ -216,6 +216,7 @@
216216
# Output file base name for HTML help builder.
217217
htmlhelp_basename = 'nibabeldoc'
218218

219+
mathjax_path = 'https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'
219220

220221
# -- Options for LaTeX output --------------------------------------------------
221222

@@ -251,7 +252,7 @@
251252

252253

253254
# Example configuration for intersphinx: refer to the Python standard library.
254-
intersphinx_mapping = {'http://docs.python.org/': None}
255+
intersphinx_mapping = {'https://docs.python.org/': None}
255256

256257
# Config of plot_directive
257258
plot_include_source = True

doc/source/devel/data_pkg_design.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ There is an example nipy data package ``nipy-examplepkg`` in the
288288
``examples`` directory of the NIPY repository.
289289

290290
The machinery for creating and maintaining data packages is available at
291-
http://github.com/nipy/data-packaging.
291+
https://github.com/nipy/data-packaging.
292292

293293
See the ``README.txt`` file there for more information.
294294

doc/source/devel/data_pkg_discuss.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ Issues
275275
******
276276

277277
From a brief scan of the `debian package management documentation
278-
<http://www.debian.org/doc/manuals/debian-reference/ch02.en.html>`_.
278+
<https://www.debian.org/doc/manuals/debian-reference/ch02.en.html>`_.
279279

280280
Dependency management
281281
=====================
@@ -292,7 +292,7 @@ Authentication and validation
292292
For dependency and validation, see the `Debian secure apt`_ page. One related
293293
proposal would be:
294294

295-
.. _Debian secure apt: http://wiki.debian.org/SecureApt
295+
.. _Debian secure apt: https://wiki.debian.org/SecureApt
296296

297297
* Each package instantiation would carry a table of checksums for the files
298298
within. Someone using this instantiation would check the checksums to confirm

0 commit comments

Comments
 (0)