You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ad...@apache.org on 2016/05/29 00:21:47 UTC

incubator-mynewt-site git commit: fixed broken links to repo tutorials

Repository: incubator-mynewt-site
Updated Branches:
  refs/heads/master b55ab2bcf -> 8e6f2c683


fixed broken links to repo tutorials


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/commit/8e6f2c68
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/tree/8e6f2c68
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/diff/8e6f2c68

Branch: refs/heads/master
Commit: 8e6f2c6836d501db3dcba6db092ded0bb236cda5
Parents: b55ab2b
Author: aditihilbert <ad...@runtime.io>
Authored: Sat May 28 17:21:41 2016 -0700
Committer: aditihilbert <ad...@runtime.io>
Committed: Sat May 28 17:21:41 2016 -0700

----------------------------------------------------------------------
 docs/network/ble/nimble_setup.md    | 2 +-
 docs/os/tutorials/event_queue.md    | 2 +-
 docs/os/tutorials/repo/add_repos.md | 2 +-
 docs/os/tutorials/tutorials.md      | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8e6f2c68/docs/network/ble/nimble_setup.md
----------------------------------------------------------------------
diff --git a/docs/network/ble/nimble_setup.md b/docs/network/ble/nimble_setup.md
index 8644caf..5ad94a3 100644
--- a/docs/network/ble/nimble_setup.md
+++ b/docs/network/ble/nimble_setup.md
@@ -7,7 +7,7 @@ This tutorial assumes that you have already installed the newt tool and are fami
 
 ### Create the application directory
 
-You start by creating a project space for your own application work using the Newt tool (`my_proj1` in this example) and installing all the additional apps and libraries available by adding the repo `apache-mynewt-core`. See the tutorial on [adding a repo](../../os/tutorials/add_repos.md) for more on working with repos.
+You start by creating a project space for your own application work using the Newt tool (`my_proj1` in this example) and installing all the additional apps and libraries available by adding the repo `apache-mynewt-core`. See the tutorial on [adding a repo](../../os/tutorials/repo/add_repos.md) for more on working with repos.
 
 ```
 ~/dev$ newt new my_proj1

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8e6f2c68/docs/os/tutorials/event_queue.md
----------------------------------------------------------------------
diff --git a/docs/os/tutorials/event_queue.md b/docs/os/tutorials/event_queue.md
index 2c3406f..880d9b5 100644
--- a/docs/os/tutorials/event_queue.md
+++ b/docs/os/tutorials/event_queue.md
@@ -20,7 +20,7 @@ You will  use inputs from 3 sources to toggle 3 GPIO outputs on my STM32F3discov
 
 #### Create project
 
-You start by creating a project and populating it with repositories incubator-mynewt-core and mynewt_stm32f3. See [STM32F3 tutorial](STM32F303.md) if you need help with this. You can also read the tutorial on [Additional Repositories](add_repos.md) for a more thorough understanding. 
+You start by creating a project and populating it with repositories incubator-mynewt-core and mynewt_stm32f3. See [STM32F3 tutorial](STM32F303.md) if you need help with this. You can also read the tutorial on [Additional Repositories](repo/add_repos.md) for a more thorough understanding. 
 
 <br> 
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8e6f2c68/docs/os/tutorials/repo/add_repos.md
----------------------------------------------------------------------
diff --git a/docs/os/tutorials/repo/add_repos.md b/docs/os/tutorials/repo/add_repos.md
index 6c2137b..22098fa 100644
--- a/docs/os/tutorials/repo/add_repos.md
+++ b/docs/os/tutorials/repo/add_repos.md
@@ -6,7 +6,7 @@ A repository is a version-ed Mynewt project, which is a collection of Mynewt pac
 
 What differentiates a repository from a Mynewt project is the presence of a
 `repository.yml` file describing the repository. This will be described 
-below. For a basic understanding of repositories you may read the [Newt Tool Manual](../../newt/newt_intro.md) and [How to create repos](create_repo.md).
+below. For a basic understanding of repositories you may read the [Newt Tool Manual](../../../newt/newt_intro.md) and [How to create repos](create_repo.md).
 
 **Note:** For the remainder of this document we'll use the term repo as shorthand for a Mynewt repository.
 

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-site/blob/8e6f2c68/docs/os/tutorials/tutorials.md
----------------------------------------------------------------------
diff --git a/docs/os/tutorials/tutorials.md b/docs/os/tutorials/tutorials.md
index c7f8207..3cd4e7a 100644
--- a/docs/os/tutorials/tutorials.md
+++ b/docs/os/tutorials/tutorials.md
@@ -20,7 +20,7 @@ The tutorials fall into a few broad categories. Some examples in each category a
     * [Blinky on nRF52 Development Kit from Nordic Semiconductor](nRF52.md) **Note:** This supports BLE.
     
 * Navigating the code and adding functionality  
-    * [Adding more repositories to your project](add_repos.md)
+    * [Adding more repositories to your project](repo/add_repos.md)
     * [Adding a unit test for a package](unit_test.md)
     * [Adding task to manage multiple events](event_queue.md)