Skip to content

Commit 21cb66c

Browse files
committed
DOC: Various fixes and inclusion of lonely files.
Docs now build without warning.
1 parent 2d4714b commit 21cb66c

File tree

7 files changed

+12
-4
lines changed

7 files changed

+12
-4
lines changed

doc/source/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ File Formats
2121
:toctree: generated
2222

2323
analyze
24-
dicom
2524
spm2analyze
2625
spm99analyze
2726
gifti
2827
minc
28+
nicom
2929
nifti1
3030
parrec
3131
trackvis

doc/source/dicom/dcm2nii_algorithms.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
dcm2nii_ is an open source DICOM_ to nifti_ conversion program, written
88
by Chris Rorden, in Delphi (object orientated pascal). It's part of
99
Chris' popular mricron_ collection of programs. The source appears to
10-
be best found on the mricron nitrc_ site. It's BSD_ licensed.
10+
be best found on the `mricron NITRC site`_. It's BSD_ licensed.
11+
12+
.. _mricron NITRC site: http://www.nitrc.org/projects/mricron
1113

1214
These are working notes looking at Chris' algorithms for working with
1315
DICOM.

doc/source/dicom/dicom.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ Contents:
1515
dicom_mosaic
1616
siemens_csa
1717
spm_dicom
18+
dcm2nii_algorithms

doc/source/gitwash/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Contents:
1313
following_latest
1414
patching
1515
git_development
16+
dot2_dot3
1617
git_resources
1718

1819

doc/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,5 @@ search* located in the sidebar of the NiBabel home page.
7575

7676
manual
7777
devguide
78+
devdiscuss
7879
api

doc/source/manual.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ NiBabel Manual
88

99
installation
1010
gettingstarted
11+
installing_data
1112
dicom/dicom
1213
legal
1314
changelog

nibabel/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
from .info import __version__, long_description as __doc__
1313
__doc__ += """
14-
Quickstart
15-
============
14+
Quickstart
15+
==========
1616
1717
::
1818
@@ -31,6 +31,8 @@
3131
3232
new_image = nib.Nifti1Image(data, affine)
3333
nib.save(new_image, 'new_image.nii.gz')
34+
35+
For more detailed information see the :ref:`manual`.
3436
"""
3537
# module imports
3638
from . import analyze as ana

0 commit comments

Comments
 (0)