]> git.donarmstrong.com Git - neurodebian.git/blob - sphinx/index.rst
Fix broken link
[neurodebian.git] / sphinx / index.rst
1 .. _WELCOme:
2
3 *********************************************
4  The Ultimate Neuroscience Software Platform
5 *********************************************
6
7 NeuroDebian provides a large collection of popular neuroscience research
8 software for the Debian_ operating system as well as Ubuntu_ and other
9 derivatives. Popular packages include FSL, Freesurfer, AFNI, PyMVPA and
10 :ref:`many others <pkg_tocs>`. While we do strive to maintain a high level of
11 quality, we make no guarantee that a given package works as expected, so use
12 them at your own risk. If you do encounter problems or you just like to say
13 thanks, simply :ref:`send us an email <chap_contacts>`.
14
15 Learn more about NeuroDebian, the goals of this project, and help us |spread|!
16
17   Halchenko, Y. O. & Hanke, M. (2012). `Open is not enough. Let’s take the
18   next step: An integrated, community-driven computing platform for neuroscience
19   <http://www.frontiersin.org/Neuroinformatics/10.3389/fninf.2012.00022/full>`_.
20   *Frontiers in Neuroinformatics*, 6:22.
21
22 .. raw:: html
23
24   <div class="linkmore"><a href="/publications.html">more publications</a></div>
25   <div class="clearer"></div>
26   <!-- for dynamic quote update via javascript -->
27   <hr />
28   <div id="randomquote" title="Feedback from the community">
29
30 .. quotes::
31    :random: 1
32
33 .. raw:: html
34
35   </div><!-- randomquote -->
36   <div class="linkmore"><a href="/testimonials.html">more testimonials</a></div>
37
38 .. _Ubuntu: http://www.ubuntu.com
39
40 .. _repository_howto:
41 .. _chap_installation:
42
43 Get NeuroDebian
44 ===============
45
46 .. include:: reposetup.rst
47
48 .. _news:
49
50 News
51 ====
52
53 .. raw:: html
54
55  <script src="_static/jquery.livetwitter.min.js"></script>
56  <div id="identica_widget"></div>
57  <script type="text/javascript">
58  $("#identica_widget").liveTwitter('neurodebian',
59                                    {service: 'identi.ca',
60                                     mode: 'user_timeline',
61                                     limit: 10,
62                                     rate: 300000});
63  </script>
64  <div class="nojavascriptinstructions">
65  The news widget requires javascript
66  </div>
67
68 .. _identi.ca: http://identi.ca/neurodebian
69 .. _twitter: http://twitter.com/NeuroDebian
70
71
72 .. raw:: html
73
74   <hr />
75   <div id="sitemap">
76
77 * **About**
78 * :ref:`The Team <chap_team>`
79 * :ref:`FAQ <faq>`
80 * :ref:`Blog <blog>`
81 * :ref:`chap_popularity`
82 * :ref:`chap_publications`
83 * :ref:`chap_acknowledgements`
84 * :ref:`testimonials`
85 * :ref:`coffeeart`
86
87 .. start a new list
88
89 * **Services**
90 * :ref:`Software <pkg_tocs>`
91 * :ref:`Data <toc_pkgs_for_suite_data>`
92 * :ref:`Appliance <chap_vm>`
93
94 .. start a new list
95
96 * **Community**
97 * :ref:`Contacts <chap_contacts>`
98 * :ref:`Mailing lists <chap_mailinglists>`
99 * `OpenHatch <https://openhatch.org/+projects/NeuroDebian>`_
100 * `Identi.ca <http://identi.ca/neurodebian>`_
101 * `Twitter <http://twitter.com/NeuroDebian>`_
102 * `Google+ <https://plus.google.com/104292290917252528951>`_
103 * `YouTube <http://www.youtube.com/neurodebian>`_
104 * `GitHub <https://github.com/neurodebian>`_
105
106 .. start a new list
107
108 * **Related**
109 * `Debian <http://www.debian.org>`_
110 * `Debian Med <http://www.debian.org/devel/debian-med>`_
111 * `INCF <http://software.incf.org/software/neurodebian>`_
112 * `NITRC <http://www.nitrc.org/projects/neurodebian>`_
113
114 .. raw:: html
115
116   </div><div class="clearer"></div>
117   <hr />
118
119
120 .. toctree::
121    :hidden:
122
123    blog/index
124    faq
125    thanks
126    popularity
127    about
128    pkgs
129    spread
130    vm
131    publications
132    coffeeart
133    photoalbum
134    projects
135    testimonials
136    testimonials-topics
137    vm_welcome
138    derivatives
139
140 .. are these supposed to be visible?
141 .. toctree::
142    :hidden:
143
144    machines
145    todo
146
147 .. toctree::
148    :hidden:
149    :glob:
150
151    pkgs/*
152    pkglists/*
153
154 .. probably should be purged altogether
155 .. toctree::
156    :hidden:
157
158    livecd
159    quotes-nihr01
160    quotes-nitrc
161
162 .. include:: link_names.txt
163 .. include:: substitutions.txt
164
165 .. raw:: html
166
167   <script type="text/javascript">
168   $(document).ready(function($) {
169     //setInterval(function(){
170       $.get('testimonials.html', function(data) {
171           var quotes = $("blockquote", data);
172           var idx = Math.floor(quotes.length * Math.random());
173           $('#randomquote').html(quotes[idx]);
174       }); // update callback
175     //}, 60000); // set interval
176   }); // doc ready
177   //$("h1").html("NeuroDebian <span style=\"font-size:14px\">&mdash; the ultimate neuroscience software platform</span>")
178
179   function foldbuttontoggle(foldname) {
180       var foldid = '#' + foldname;
181       var buttonid = foldid + 'button';
182       $(buttonid).on('click', function() {
183         $('#' + foldname).slideToggle();
184         if ($(buttonid).html() == "↓↓↓") {
185           $(buttonid).html("&uarr;&uarr;&uarr;");
186         }
187         else {
188           $(buttonid).html("&darr;&darr;&darr;");
189         }
190       });
191       $(foldid).slideUp();
192       $(buttonid).html("&darr;&darr;&darr;");
193   };
194
195   </script>