changeset 74:5e297505996c kai

Some minor content changes.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Thu, 13 Oct 2016 17:53:12 +0200
parents 7d73884411b6
children 333306af2e72
files bugs.md download.md index.md license.md
diffstat 4 files changed, 35 insertions(+), 23 deletions(-) [+]
line wrap: on
line diff
--- a/bugs.md	Thu Oct 13 17:52:09 2016 +0200
+++ b/bugs.md	Thu Oct 13 17:53:12 2016 +0200
@@ -15,16 +15,16 @@
 <p>
 <div class="alert">
 {% octicon stop class:"octicon-stop-octave" %}
-Please do <strong>not</strong> send bug reports to the
-<samp>help-octave@gnu.org</samp> mailing list.
-Most users of Octave do not want to receive bug reports.
+Please do <strong>not</strong> send any bug reports to the
+<samp>help@octave.org</samp> mailing list.
+Most Octave users do not want to receive bug reports.
 </div>
 </p>
 
 <p>
 <div class="alert">
 {% octicon stop class:"octicon-stop-octave" %}
-<strong>Before</strong> reporting a new bug, read the guidelines below.
+<strong>Before</strong> reporting a new bug, please read the guidelines below.
 </div>
 </p>
 
--- a/download.md	Thu Oct 13 17:52:09 2016 +0200
+++ b/download.md	Thu Oct 13 17:53:12 2016 +0200
@@ -1,6 +1,6 @@
 ---
 layout: default
-title: Install
+title: Download
 menu: true
 ---
 
@@ -16,7 +16,7 @@
 hg clone http://www.octave.org/hg/octave
 {% endhighlight %}
 
-More information is given [here]({{ "contribute.html" | relative_url }}).
+[More information]({{ "get-involved.html" | relative_url }}).
 
 [1]: https://www.mercurial-scm.org
 
@@ -50,6 +50,13 @@
 
 
 
+# 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/).
+
+
+
 ## BSD
 
 Executable versions of Octave for BSD systems are provided
@@ -60,9 +67,3 @@
 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/).
--- a/index.md	Thu Oct 13 17:52:09 2016 +0200
+++ b/index.md	Thu Oct 13 17:53:12 2016 +0200
@@ -18,7 +18,7 @@
 [1]: http://www.octave.org
 [2]: http://octave.sourceforge.net/packages.php
 [3]: https://www.mathworks.com/matlab
-[4]: https://www.gnu.org/copyleft/gpl.html
+[4]: {{ "license.html" | relative_url }}
 [screen]: {{ "/img/screenshot-2016.png" | relative_url }}
 [screen-small]: {{ "/img/screenshot-2016-small.png" | relative_url }}
 
@@ -26,14 +26,19 @@
 
 ---
 
-# [{% octicon rss class:"octicon-rss-octave" %}]({{ "/feed.xml" | relative_url }}) News
+# [{% octicon rss class:"octicon-rss-octave" %}][Feed] [News]
 
 {% for post in site.posts limit:3 %}
 - [{{ post.title }}]({{ post.url | relative_url }})
-  ({{ post.date | date: "%b %-d, %Y" }}):
-  <span class="post-small">{{ post.excerpt | strip_html}}
+  ({{ post.date | date: "%b %-d, %Y" }})
+
+  <div class="news-content">
+  {{ post.excerpt }}
+  </div>
 {% endfor %}
 
+[Feed]: {{ "feed.xml" | relative_url }}
+[News]: {{ "news.html" | relative_url }}
 
 
 ---
@@ -44,19 +49,25 @@
   **vectors** and **matrices**:
 
 {% highlight octave %}
-b = [4; 9; 2] % Column vector
+b = [4; 9; 2]; % Column vector
 A = [ 3 4 5;
       1 3 1;
-      3 5 9 ]
+      3 5 9 ];
 x = A \ b     % Solve $Ax = b$ by inverting A
 {% endhighlight %}
 
 - Visualize data with **high-level plot commands** in 2D and 3D:
 
 {% highlight octave %}
-x = -10:0.1:10 % Create an evenly-spaced vector from -10..10
-y = sin(x)     % y is also a vector
-plot(x,y)
+% Create an evenly-spaced vector from -10 to 10
+x = -10:0.1:10;
+y = sin(x);     % y is also a vector
+plot(x,y);
+title("Simple 2-D Plot");
+xlabel("x");
+ylabel("sin (x)");
 {% endhighlight %}
 
-![Sine plot]({{ "/img/plot.png" | relative_url }})
+[![Sine plot][plot]][plot]
+
+[plot]: {{ "/img/plot.png" | relative_url }}
--- a/license.md	Thu Oct 13 17:52:09 2016 +0200
+++ b/license.md	Thu Oct 13 17:53:12 2016 +0200
@@ -31,4 +31,4 @@
 
 [1]: https://www.gnu.org/copyleft/gpl.html
 [2]: https://www.fsf.org/
-[3]: contribute.html
+[3]: {{ "get-involved.html" | relative_url }}