# HG changeset patch # User Kai T. Ohlhus # Date 1477962208 -3600 # Node ID e7efa40deb172a8ce2e538382ebe800c3c1098fe # Parent 25149c27c7945f058fdcf68af05c49b91673f960 Fix URLs, Images, Titles to be up with Alex original style. diff -r 25149c27c794 -r e7efa40deb17 README.md --- a/README.md Tue Nov 01 02:01:18 2016 +0100 +++ b/README.md Tue Nov 01 02:03:28 2016 +0100 @@ -73,7 +73,7 @@ To build the static website, you need to install [Jekyll][6] and a few more tools from [Rubygems][7]. Just type - gem install jekyll jekyll-octicons pygments.rb + gem install jekyll pygments.rb [7]: https://rubygems.org/ diff -r 25149c27c794 -r e7efa40deb17 _includes/footer.html --- a/_includes/footer.html Tue Nov 01 02:01:18 2016 +0100 +++ b/_includes/footer.html Tue Nov 01 02:03:28 2016 +0100 @@ -20,10 +20,10 @@
{{site.irc_channel}}
-
Reporting Bugs
-
Support Expectations
-
Commercial Support
-
Donate
+
Reporting Bugs
+
Support Expectations
+
Commercial Support
+
Donate
@@ -45,7 +45,7 @@
-

Octave is free software under the GNU General Public License.

+

Octave is free software under the GNU General Public License.

Copyright © 1998-{{ site.time | date: "%Y" }} John W. Eaton. This work is licensed under a diff -r 25149c27c794 -r e7efa40deb17 _includes/header.html --- a/_includes/header.html Tue Nov 01 02:01:18 2016 +0100 +++ b/_includes/header.html Tue Nov 01 02:03:28 2016 +0100 @@ -4,7 +4,7 @@
  • - + {{ site.title }}

    @@ -12,7 +12,7 @@
  • - +
      @@ -24,7 +24,7 @@ {% endif %} {% endfor %}
    • - Docs + Docs
    diff -r 25149c27c794 -r e7efa40deb17 bugs.md --- a/bugs.md Tue Nov 01 02:01:18 2016 +0100 +++ b/bugs.md Tue Nov 01 02:03:28 2016 +0100 @@ -1,7 +1,7 @@ --- layout: page title: Bugs -menu: true +menu: false --- GNU Octave uses the bug tracker at [Savannah][1]. diff -r 25149c27c794 -r e7efa40deb17 donate.md --- a/donate.md Tue Nov 01 02:01:18 2016 +0100 +++ b/donate.md Tue Nov 01 02:03:28 2016 +0100 @@ -16,8 +16,6 @@
    -- **[Free Software Foundation donation page][1]** - If you are already an Octave user and would like to see it improve more rapidly, then please donate so that we can spend more of our time working on Octave. If we could raise as little as $300,000/year, @@ -31,10 +29,9 @@ Do you expect Octave to improve on a $0 budget while the proprietary tools are well-funded by your license fees? -Consider [hiring someone][2] to implement the specific features you need. - -Bitcoin donations also accepted at this address: [1E6HchBMX1EfiJQhSUanuF4VYKk552tEHF][3] +Consider [hiring someone][1] to implement the specific features you need. -[1]: https://crm.fsf.org/civicrm/contribute/transact?reset=1&id=10 -[2]: {{ "commercial-support.html" | relative_url }} -[3]: bitcoin:1E6HchBMX1EfiJQhSUanuF4VYKk552tEHF +Bitcoin donations also accepted at this address: [1E6HchBMX1EfiJQhSUanuF4VYKk552tEHF][2] + +[1]: {{ "commercial-support.html" | relative_url }} +[2]: bitcoin:1E6HchBMX1EfiJQhSUanuF4VYKk552tEHF diff -r 25149c27c794 -r e7efa40deb17 download.md --- a/download.md Tue Nov 01 02:01:18 2016 +0100 +++ b/download.md Tue Nov 01 02:03:28 2016 +0100 @@ -1,6 +1,6 @@ --- layout: page -title: Install +title: Download menu: true --- diff -r 25149c27c794 -r e7efa40deb17 get-involved.md --- a/get-involved.md Tue Nov 01 02:01:18 2016 +0100 +++ b/get-involved.md Tue Nov 01 02:03:28 2016 +0100 @@ -1,6 +1,6 @@ --- layout: page -title: Contribute +title: Get Involved menu: true --- diff -r 25149c27c794 -r e7efa40deb17 index.html --- a/index.html Tue Nov 01 02:01:18 2016 +0100 +++ b/index.html Tue Nov 01 02:03:28 2016 +0100 @@ -6,12 +6,12 @@

    - + GNU Octave

    Scientific Programming Language

    @@ -62,19 +62,18 @@
    {% highlight matlab %} -x = -10:0.1:10 % Create an evenly-spaced vector from -10..10 -y = sin(x) % y is also a vector -plot(x,y) +x = -10:0.1:10 # Create an evenly-spaced vector from -10..10 +y = sin (x) # y is also a vector +plot (x, y) {% endhighlight %}
    - More Examples
    @@ -85,7 +84,7 @@
    @@ -112,7 +111,7 @@

    Development

    - Octave is free software licensed under the GNU General Public License (GPL). Assuming you have Mercurial installed on your machine you may obtain the latest development version of Octave sources with the following command: + Octave is free software licensed under the GNU General Public License (GPL). Assuming you have Mercurial installed on your machine you may obtain the latest development version of Octave sources with the following command:

    hg clone http://www.octave.org/hg/octave

    @@ -126,16 +125,16 @@ {% assign latest_post = site.posts.first %} {% if latest_post %}

    - + RSS

    - {{ latest_post.title }} + {{ latest_post.title }}

    -
    {{ latest_post.content }}
    +
    {{ latest_post.excerpt }}
    {% endif %} @@ -143,11 +142,11 @@
    diff -r 25149c27c794 -r e7efa40deb17 license.md --- a/license.md Tue Nov 01 02:01:18 2016 +0100 +++ b/license.md Tue Nov 01 02:03:28 2016 +0100 @@ -1,5 +1,5 @@ --- -layout: default +layout: page title: License menu: false --- diff -r 25149c27c794 -r e7efa40deb17 missing.md --- a/missing.md Tue Nov 01 02:01:18 2016 +0100 +++ b/missing.md Tue Nov 01 02:03:28 2016 +0100 @@ -1,5 +1,5 @@ --- -layout: default +layout: page title: Missing functions menu: false --- diff -r 25149c27c794 -r e7efa40deb17 news.md --- a/news.md Tue Nov 01 02:01:18 2016 +0100 +++ b/news.md Tue Nov 01 02:03:28 2016 +0100 @@ -1,10 +1,14 @@ --- -layout: default +layout: page title: News -menu: false +menu: true --- -[**{% octicon rss class:"octicon-rss-octave" %} News feed**][Feed] + + + RSS + + {% for post in site.posts %} {% if post.title == "News Archive" %} diff -r 25149c27c794 -r e7efa40deb17 support.md --- a/support.md Tue Nov 01 02:01:18 2016 +0100 +++ b/support.md Tue Nov 01 02:03:28 2016 +0100 @@ -1,6 +1,6 @@ --- layout: page -title: Help/Support +title: Support/Help menu: true --- @@ -57,21 +57,30 @@ You can also [subscribe][9] to `{{ site.help_email }}` or try to search in the mailing list archive for an answer: +
    +
    - - - + + +
    +
    + +
    +
    - - +
    +
    + +
    +
    @@ -80,7 +89,8 @@ {{ site.help_email }} mailing list. Most Octave users do not want to receive bug reports.
    -

    +
    +
    - **IRC Chat**: Too impatient for email? You can find Octave developers and users on the