docs: Moving release note to docs/source, so it is visible on ndnSIM website
Change-Id: I211ac6e3a723a9b5f7310741334818af7fac2b19
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
deleted file mode 100644
index d707391..0000000
--- a/RELEASE_NOTES.md
+++ /dev/null
@@ -1,77 +0,0 @@
-ndnSIM Release Notes
-====================
-
-This file contains ndnSIM release notes.
-
-All of the ndnSIM documentation is accessible from the [ndnSIM website](http://ndnsim.net).
-
-Release 2.0
------------
-
-### Overview
-
-ndnSIM 2.0 is a new release of NS-3 based Named Data Networking (NDN) simulator that went
-through extensive refactoring and rewriting. The key new features of the new version:
-
-- ndnSIM no longer re-implements basic NDN primitives and directly uses implementation from
- [ndn-cxx library (NDN C++ library with eXperimental eXtensions)](http://named-data.net/doc/ndn-cxx/).
-
-- All NDN forwarding and management is implemented directly using source code of
- [Named Data Networking Forwarding Daemon (NFD)](http://named-data.net/doc/NFD/). The
- current code is based on `a22a2172611b1cb93b2e2f53d9d5da122b384f3e` commit of
- [NFD repository](https://github.com/named-data/NFD/tree/a22a2172611b1cb93b2e2f53d9d5da122b384f3e).
-
- Note RIB Manager is not yet available in ndnSIM.
-
-* Packet format changed to the [NDN packet format](http://named-data.net/doc/ndn-tlv/).
-
-* Code style changes to conform to
- [ndn-cxx Code Style and Coding Guidelines](http://named-data.net/doc/ndn-cxx/current/code-style.html)
- This change also includes renaming of the header and source files: `*.h` -> `*.hpp`, `*.cc` -> `*.cpp`
-
-* ndnSIM now uses C++11.
-
-### New Features
-
-- Integration with NFD codebase:
- - A realistic behavior is added to the simulations.
- - Forwarding plane extensions can be used in both ndnSIM simulations and real NFD deployment.
-- Per namespace forwarding strategies for different namespaces (one strategy per namespace).
-- New examples:
- * `ndn-load-balancer`
- * `ndn-grid-multiple-strategies`
- * `ndn-different-strategy-per-prefix`
- * Basic examples using python bindings: `ndn-simple.py` and `ndn-grid.py`
-- Use of the the full-featured NDN packet format.
-- Full-featured support for Interest selectors.
-- Full-featured crypto operations can be simulated (disabled by default).
-- FibHelper to manage FIB entries.
-- StrategyChoiceHelper to manage per-namespace forwarding strategy selection.
-
-### Changes
-
-- HopCount tracing now includes only one way network-level hop count (e.g., the number of
- physical links traversed by a packet). Previously, this tracing was round-trip and included
- applications hops.
-- Python bindings have changed and, due to limitations of pybindgen, currently cover a smaller
- subset of C++ code
- ([Task #2341](http://redmine.named-data.net/issues/2341)).
-- LinkControlHelper now uses ErrorRate to simulate link failure/recovery. Previously it was
- relying on Up/Down flag on NDN level.
-- The Face abstraction of NFD is now used.
-
-### Bug fixes
-
-- Fix processing files with customized LossRate or Queue model in AnnotatedTopologyReader
- [Bug #2354](http://redmine.named-data.net/issues/2354).
-
-### Removals
-
-- PyNDN emulation
-- (temporarily) ApiFace. Will be replaced with emulation of ndn-cxx `ndn::Face` in future releases
- ([Issue #2370](http://redmine.named-data.net/issues/2370)).
-- (temporarily) UdpFace, TcpFace
- ([Issue #2371](http://redmine.named-data.net/issues/2371)).
-- Limits, LimitsWindow, LimitsRate.
-- PIT, FIB with "replacement" policies.
-- Old deprecated packet formats.
diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst
new file mode 120000
index 0000000..df69647
--- /dev/null
+++ b/RELEASE_NOTES.rst
@@ -0,0 +1 @@
+docs/source/RELEASE_NOTES.rst
\ No newline at end of file
diff --git a/docs/source/RELEASE_NOTES.rst b/docs/source/RELEASE_NOTES.rst
new file mode 100644
index 0000000..3b33d33
--- /dev/null
+++ b/docs/source/RELEASE_NOTES.rst
@@ -0,0 +1,81 @@
+ndnSIM Release Notes
+====================
+
+This file contains ndnSIM release notes.
+
+All of the ndnSIM documentation is accessible from the `ndnSIM website <http://ndnsim.net>`__.
+
+Release 2.0
+-----------
+
+Overview
+~~~~~~~~
+
+ndnSIM 2.0 is a new release of NS-3 based Named Data Networking (NDN) simulator that went through
+extensive refactoring and rewriting. The key new features of the new version:
+
+- ndnSIM no longer re-implements basic NDN primitives and directly uses implementation from
+ `ndn-cxx library (NDN C++ library with eXperimental
+ eXtensions) <http://named-data.net/doc/ndn-cxx/>`__.
+
+- All NDN forwarding and management is implemented directly using source code of `Named Data
+ Networking Forwarding Daemon (NFD) <http://named-data.net/doc/NFD/>`__. The current code is based
+ on ``a22a2172611b1cb93b2e2f53d9d5da122b384f3e`` commit of `NFD
+ repository <https://github.com/named-data/NFD/tree/a22a2172611b1cb93b2e2f53d9d5da122b384f3e>`__.
+
+Note RIB Manager is not yet available in ndnSIM.
+
+- Packet format changed to the `NDN packet format <http://named-data.net/doc/ndn-tlv/>`__.
+
+- Code style changes to conform to `ndn-cxx Code Style and Coding
+ Guidelines <http://named-data.net/doc/ndn-cxx/current/code-style.html>`__ This change also
+ includes renaming of the header and source files: ``*.h`` -> ``*.hpp``, ``*.cc`` -> ``*.cpp``
+
+- ndnSIM now uses C++11.
+
+New Features
+~~~~~~~~~~~~
+
+- Integration with NFD codebase:
+- A realistic behavior is added to the simulations.
+- Forwarding plane extensions can be used in both ndnSIM simulations and real NFD deployment.
+- Per namespace forwarding strategies for different namespaces (one strategy per namespace).
+- New examples:
+- ``ndn-load-balancer``
+- ``ndn-grid-multiple-strategies``
+- ``ndn-different-strategy-per-prefix``
+- Basic examples using python bindings: ``ndn-simple.py`` and ``ndn-grid.py``
+- Use of the the full-featured NDN packet format.
+- Full-featured support for Interest selectors.
+- Full-featured crypto operations can be simulated (disabled by default).
+- FibHelper to manage FIB entries.
+- StrategyChoiceHelper to manage per-namespace forwarding strategy selection.
+
+Changes
+~~~~~~~
+
+- HopCount tracing now includes only one way network-level hop count (e.g., the number of physical
+ links traversed by a packet). Previously, this tracing was round-trip and included applications
+ hops.
+- Python bindings have changed and, due to limitations of pybindgen, currently cover a smaller
+ subset of C++ code (`Task #2341 <http://redmine.named-data.net/issues/2341>`__).
+- LinkControlHelper now uses ErrorRate to simulate link failure/recovery. Previously it was relying
+ on Up/Down flag on NDN level.
+- The Face abstraction of NFD is now used.
+
+Bug fixes
+~~~~~~~~~
+
+- Fix processing files with customized LossRate or Queue model in AnnotatedTopologyReader `Bug
+ #2354 <http://redmine.named-data.net/issues/2354>`__.
+
+Removals
+~~~~~~~~
+
+- PyNDN emulation
+- (temporarily) ApiFace. Will be replaced with emulation of ndn-cxx ``ndn::Face`` in future
+ releases (`Issue #2370 <http://redmine.named-data.net/issues/2370>`__).
+- (temporarily) UdpFace, TcpFace (`Issue #2371 <http://redmine.named-data.net/issues/2371>`__).
+- Limits, LimitsWindow, LimitsRate.
+- PIT, FIB with "replacement" policies.
+- Old deprecated packet formats.
diff --git a/docs/source/_templates/indexcontent.html b/docs/source/_templates/indexcontent.html
index 4b07a6e..6a44ca6 100644
--- a/docs/source/_templates/indexcontent.html
+++ b/docs/source/_templates/indexcontent.html
@@ -56,6 +56,7 @@
<p><strong>Meta information:</strong></p>
<table class="contentstable" align="center"><tr>
<td width="50%" valign="top">
+ <p class="biglink"><a class="biglink" href="{{ pathto("RELEASE_NOTES") }}">Release Notes</a></p>
<p class="biglink"><a class="biglink" href="{{ pathto("meta/bugs") }}">Reporting bugs</a></p>
<p class="biglink"><a class="biglink" href="{{ pathto("meta/about") }}">About the documentation</a></p>
</td><td width="50%" valign="top">
diff --git a/docs/source/tutorial.rst b/docs/source/tutorial.rst
index ac809c1..9b777eb 100644
--- a/docs/source/tutorial.rst
+++ b/docs/source/tutorial.rst
@@ -38,6 +38,7 @@
:glob:
meta/*
+ RELEASE_NOTES
-------