# HG changeset patch # User Kai T. Ohlhus # Date 1476194452 -7200 # Node ID 9ed0088bf27f549e1de5c88e014af89453c79f73 # Parent 2e2e9feba1f3090ca3c0c791e53a762959dc3dc6 Remove the fancy download stuff. Make plain static page. diff -r 2e2e9feba1f3 -r 9ed0088bf27f _includes/footer.html --- a/_includes/footer.html Tue Oct 11 15:59:18 2016 +0200 +++ b/_includes/footer.html Tue Oct 11 16:00:52 2016 +0200 @@ -13,18 +13,4 @@ x.className = "topnav"; } } - -function openCity(evt, cityName) { - var i, tabcontent, tablinks; - tabcontent = document.getElementsByClassName("tabcontent"); - for (i = 0; i < tabcontent.length; i++) { - tabcontent[i].style.display = "none"; - } - tablinks = document.getElementsByClassName("tablinks"); - for (i = 0; i < tablinks.length; i++) { - tablinks[i].className = tablinks[i].className.replace(" active", ""); - } - document.getElementById(cityName).style.display = "block"; - evt.currentTarget.className += " active"; -} diff -r 2e2e9feba1f3 -r 9ed0088bf27f _includes/install.html --- a/_includes/install.html Tue Oct 11 15:59:18 2016 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,62 +0,0 @@ - - -
-

- The latest released version of Octave is always available from - ftp://ftp.gnu.org/gnu/octave. -

-

- If you are interested in working with the latest version of the - Octave sources, check out - the resources for developers. -

-
- -
-

- Executable versions of Octave for GNU/Linux systems are provided - by the individual distributions. Distributions known to package - Octave include: Debian, - Fedora, - Gentoo, - and SuSE. These packages are - created by volunteers. The delay between an Octave source release - and the availability of a package for a particular GNU/Linux - distribution varies. The Octave project has no control over that - process. -

-
- -
-

- The Wiki has some instructions for - installing - Octave on OS X systems. -

-
- -
-

- Executable versions of Octave for BSD systems are provided - by the individual distributions. - Both FreeBSD - and OpenBSD have Octave - packages. These packages are created by volunteers. The delay - between an Octave source release and the availability of a package - for a particular GNU/Linux distribution varies. The Octave - project has no control over that process. -

-
- -
-

- Windows binaries with corresponding source code can be downloaded from - https://ftp.gnu.org/gnu/octave/windows/ -

-
diff -r 2e2e9feba1f3 -r 9ed0088bf27f css/octave.css --- a/css/octave.css Tue Oct 11 15:59:18 2016 +0200 +++ b/css/octave.css Tue Oct 11 16:00:52 2016 +0200 @@ -195,58 +195,3 @@ margin-right: 10%; } } - -ul.tab { - list-style-type: none; - margin: 0; - padding: 0; - overflow: hidden; - background-color: #0790c0; -} - -ul.tab li { - float: left; -} - -ul.tab li a { - display: inline-block; - color: white; - text-align: center; - padding: 14px 16px; - text-decoration: none; - transition: 0.3s; - font-size: 20px; -} - -ul.tab li a:hover { - background-color: #555; -} - -ul.tab li a:focus, .active { - background-color: #555; -} - -.tabcontent { - display: none; - padding: 6px 12px; - -webkit-animation: fadeEffect 1s; - animation: fadeEffect 1s; -} - -@-webkit-keyframes fadeEffect { - from { - opacity: 0; - } - to { - opacity: 1; - } -} - -@keyframes fadeEffect { - from { - opacity: 0; - } - to { - opacity: 1; - } -} diff -r 2e2e9feba1f3 -r 9ed0088bf27f download.md --- a/download.md Tue Oct 11 15:59:18 2016 +0200 +++ b/download.md Tue Oct 11 16:00:52 2016 +0200 @@ -4,4 +4,65 @@ menu: true --- -{% include install.html %} +## Source + +The latest released version of Octave is always available from +[ftp://ftp.gnu.org/gnu/octave](ftp://ftp.gnu.org/gnu/octave). + +If you are interested in working with the latest version of the +Octave sources, just clone the [Mercurial][1] development repository + +{% highlight text %} +hg clone http://www.octave.org/hg/octave +{% endhighlight %} + +More information is given [here]({{ "contribute.html" | relative_url }}). + +[1]: https://www.mercurial-scm.org + + + +## GNU/Linux + +Executable versions of Octave for GNU/Linux systems are provided +by the individual distributions. +Distributions known to package Octave include: +[Debian][2], [Ubuntu][3], [Fedora][4], [Gentoo][5], and [openSUSE][6]. +These packages are created by volunteers. +The delay between an Octave source release and the availability +of a package for a particular GNU/Linux distribution varies. +The Octave project has no control over that process. + +[2]: https://packages.debian.org/octave +[3]: http://packages.ubuntu.com/octave +[4]: https://apps.fedoraproject.org/packages/octave +[5]: https://packages.gentoo.org/packages/sci-mathematics/octave +[6]: https://en.opensuse.org/Octave + + + +## Mac + +The Wiki has some instructions for +[installing Octave on OS X systems][7]. + +[7]: http://wiki.octave.org/Octave_for_MacOS_X + + + +## BSD + +Executable versions of Octave for BSD systems are provided +by the individual distributions. +Both FreeBSD +and OpenBSD have Octave +packages. These packages are created by volunteers. The delay +between an Octave source release and the availability of a package +for a particular GNU/Linux distribution varies. The Octave +project has no control over that process. + + +# Windows + +Windows binaries with corresponding source code can be downloaded from +[https://ftp.gnu.org/gnu/octave/windows/](https://ftp.gnu.org/gnu/octave/windows/).