Correcting README and example to reflect new changes
diff --git a/README.md b/README.md
index 7f996ea..7b861e8 100644
--- a/README.md
+++ b/README.md
@@ -68,13 +68,26 @@
** Including the scripts in a web page **
To use NDN.JS in a web page, one of two scripts must be included using a <script> tag:
-1. ndn-js.js, a combined, compressed library designed for efficient distribution. It can
-be built using js/tools/build/make-js.sh This is used in examples/ndn-ping.html
+ndn-js.js is a combined library (and ndn-js.min.js is a compressed version of the combined library),
+designed for efficient distribution. Bother can be either build in ./build/ndn-js.min.js using
+the following commands:
-2. Helper.js, which loads each component script independently. This is used in most of
-the tests in testing/
+ ./waf configure
+ ./waf
-** Example to retrieve content **
+Or downloaded from the `downloads` branch (https://github.com/named-data/ndn-js/tree/downloads):
+
+- http://raw.github.com/named-data/ndn-js/downloads/ndn-js.js
+- http://raw.github.com/named-data/ndn-js/downloads/ndn-js.min.js
+
+** Examples **
+
+*** ndn-ping
+
+You can check out `examples/ndn-ping.html` to see an example how to implement ndn-ping in NDN.js
+
+*** Example to retrieve content ***
+
A simple example of the current API to express an Interest and receive data:
var ndn = new NDN(); // connect to a default hub/proxy
@@ -105,7 +118,6 @@
-
FIREFOX ADD-ON FOR THE NDN PROTOCOL
-----------------------------------
diff --git a/examples/ndnping/ndn-ping.html b/examples/ndnping/ndn-ping.html
index 9327c09..203d59e 100644
--- a/examples/ndnping/ndn-ping.html
+++ b/examples/ndnping/ndn-ping.html
@@ -10,9 +10,9 @@
<!--
ndn-js.js
is a concatented, compressed version of the library,
- built in tools/build
+ built in/build
-->
-<script type="text/javascript" src="ndn-js.js"></script>
+<script type="text/javascript" src="../../build/ndn-js.js"></script>
<script type="text/javascript" src="ndn-ping.js"></script>
</head>
@@ -25,7 +25,7 @@
/<topo-prefix>/ping/<random-number></em>.
<h2>NDN Testbed Status</h2>
- <p>Testbed content ping results retrieved using <a href="http://github.com/remap/ndn-js">NDN.js</a>, a javascript client library for NDN.</p>
+ <p>Testbed content ping results retrieved using <a href="http://github.com/named-data/ndn-js">NDN.js</a>, a javascript client library for NDN.</p>
<table border="0" width="40%" id="pingreport" style="margin-left:20px">
</table>
<p> </p>