]> git.donarmstrong.com Git - neurodebian.git/blob - sphinx/index.rst
Placeholder for reportbug instructions
[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 would just like to thank
13 us, simply `send us an email <#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:`Team <chap_team>`
79 * :ref:`chap_popularity`
80 * :ref:`FAQ <faq>`
81 * :ref:`Blog <blog>`
82 * :ref:`chap_publications`
83 * :ref:`testimonials`
84 * :ref:`coffeeart`
85
86 .. start a new list
87
88 * **Services**
89 * :ref:`Software <pkg_tocs>`
90 * :ref:`Data <toc_pkgs_for_suite_data>`
91 * :ref:`Appliance <chap_vm>`
92
93 .. start a new list
94
95 * **Community**
96 * :ref:`Mailing lists <chap_mailinglists>`
97 * `OpenHatch <https://openhatch.org/+projects/NeuroDebian>`_
98 * `Identi.ca <http://identi.ca/neurodebian>`_
99 * `Twitter <http://twitter.com/NeuroDebian>`_
100 * `Google+ <https://plus.google.com/104292290917252528951>`_
101 * `YouTube <http://www.youtube.com/neurodebian>`_
102 * `GitHub <https://github.com/neurodebian>`_
103
104 .. start a new list
105
106 * **Related**
107 * `Debian <http://www.debian.org>`_
108 * `Debian Med <http://www.debian.org/devel/debian-med>`_
109 * `INCF <http://software.incf.org/software/neurodebian>`_
110 * `NITRC <http://www.nitrc.org/projects/neurodebian>`_
111
112 .. raw:: html
113
114   </div><div class="clearer"></div>
115   <hr />
116
117
118 .. toctree::
119    :hidden:
120
121    blog/index
122    faq
123    pkgs
124    spread
125    vm
126    publications
127    coffeeart
128    photoalbum
129    projects
130    testimonials
131    testimonials-topics
132    vm_welcome
133    derivatives
134
135 .. are these supposed to be visible?
136 .. toctree::
137    :hidden:
138
139    machines
140    todo
141
142 .. toctree::
143    :hidden:
144    :glob:
145
146    pkgs/*
147    pkglists/*
148
149 .. probably should be purged altogether
150 .. toctree::
151    :hidden:
152
153    livecd
154    quotes-nihr01
155    quotes-nitrc
156    dump
157
158 .. include:: link_names.txt
159 .. include:: substitutions.txt
160
161 .. raw:: html
162
163   <script type="text/javascript">
164   $(document).ready(function($) {
165     //setInterval(function(){
166       $.get('testimonials.html', function(data) {
167           var quotes = $("blockquote", data);
168           var idx = Math.floor(quotes.length * Math.random());
169           $('#randomquote').html(quotes[idx]);
170       }); // update callback
171     //}, 60000); // set interval
172   }); // doc ready
173   //$("h1").html("NeuroDebian <span style=\"font-size:14px\">&mdash; the ultimate neuroscience software platform</span>")
174
175   function foldbuttontoggle(foldname) {
176       var foldid = '#' + foldname;
177       var buttonid = foldid + 'button';
178       $(buttonid).on('click', function() {
179         $('#' + foldname).slideToggle();
180         if ($(buttonid).html() == "↓↓↓") {
181           $(buttonid).html("&uarr;&uarr;&uarr;");
182         }
183         else {
184           $(buttonid).html("&darr;&darr;&darr;");
185         }
186       });
187       $(foldid).slideUp();
188       $(buttonid).html("&darr;&darr;&darr;");
189   };
190
191   </script>