various lib and contrib doc: points to new github repo
authorJean Privat <jean@pryen.org>
Fri, 21 Aug 2015 21:54:41 +0000 (17:54 -0400)
committerJean Privat <jean@pryen.org>
Fri, 21 Aug 2015 22:56:55 +0000 (18:56 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

contrib/online_ide/www/js/functions.js
contrib/opportunity/README.md
contrib/pep8analysis/www/index.html
contrib/tnitter/src/action.nit
examples/emscripten/fibonacci/www/index.html
lib/graphs/digraph.nit
share/man/nitdoc.md

index 816f70d..688da9b 100644 (file)
@@ -50,11 +50,11 @@ function load_nit_lib() {
        if (!lib_files_loaded)
        {
                // We get the 'nit' folder content on github.
-               $.get("https://api.github.com/repos/privat/nit/contents/?access_token=" + github_acces_token, function(data) {
+               $.get("https://api.github.com/repos/nitlang/nit/contents/?access_token=" + github_acces_token, function(data) {
                        for (var i = 0; i < data.length; i++) {
                                if (data[i].name == "lib") {
                                        // We get the list of all files in the 'lib' folder.
-                                       $.get("https://api.github.com/repos/privat/nit/git/trees/" + data[i].sha + "?recursive=1&access_token=" + github_acces_token, function(data) {
+                                       $.get("https://api.github.com/repos/nitlang/nit/git/trees/" + data[i].sha + "?recursive=1&access_token=" + github_acces_token, function(data) {
                                                for (var i = 0; i < data.tree.length; i++) {
                                                        if (data.tree[i].type == "blob") {
                                                                lib_files_number++;
index 32eb786..a328f69 100644 (file)
@@ -1,6 +1,6 @@
 Opportunity is a web-application written in Nit to plan meetups with people in real-life (or on the internet, why not !).
 
-It runs on Nit's official web server: Nitcorn, available along with the compiler for the language on Github <https://github.com/privat/nit>.
+It runs on Nit's official web server: Nitcorn, available along with the compiler for the language on Github <https://github.com/nitlang/nit>.
 
 # Compile and execute
 
index 03a90a6..6f7598a 100644 (file)
       </ul>
 
       <ul class="nav navbar-nav pull-right">
-        <li><a href="https://github.com/privat/nit/tree/master/contrib/pep8analysis/">Source and manual</a></li>
+        <li><a href="https://github.com/nitlang/nit/tree/master/contrib/pep8analysis/">Source and manual</a></li>
         <li><a href="https://code.google.com/p/pep8-1/">Pep/8 project</a></li>
       </ul>
     </div>
index d054b49..d95cfe3 100644 (file)
@@ -53,7 +53,7 @@ class Tnitter
 
     <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
       <ul class="nav navbar-nav">
-        <li><a href="https://github.com/privat/nit/">Nit repository</a></li>
+        <li><a href="https://github.com/nitlang/nit/">Nit repository</a></li>
       </ul>
 
       <ul class="nav navbar-nav pull-right">
index e0195f6..a632465 100644 (file)
@@ -54,8 +54,8 @@
 
 <div class="container">
        <h1>Fibonacci calculator</h1>
-       <a href="https://github.com/privat/nit/blob/master/examples/fibonacci.nit">Nit source</a><br>
-       <a href="https://github.com/privat/nit/blob/master/examples/emscripten/fibonacci/www/index.html">HTML source</a>
+       <a href="https://github.com/nitlang/nit/blob/master/examples/fibonacci.nit">Nit source</a><br>
+       <a href="https://github.com/nitlang/nit/blob/master/examples/emscripten/fibonacci/www/index.html">HTML source</a>
 
        <h2>Status</h2>
        <p id="loading">Loading...</p>
index 00807d3..8f45495 100644 (file)
@@ -99,7 +99,7 @@
 # # Then call "dot -Tpng -o graph.png"
 # ~~~
 #
-# ![A graph drawing produced by Graphviz](https://github.com/privat/nit/blob/master/lib/graph.png)
+# ![A graph drawing produced by Graphviz](https://github.com/nitlang/nit/blob/master/lib/graph.png)
 #
 # Other methods
 # =============
index b73e217..4cc009f 100644 (file)
@@ -48,7 +48,7 @@ Use `%f` for filename, `%l` for first line, and `%L` for last line.
 
 For instance, the [standard library] use the following value to link to files in GitHub:
 
-    "https://github.com/privat/nit/blob/$(git rev-parse HEAD)/%f#L%l-%L"
+    "https://github.com/nitlang/nit/blob/$(git rev-parse HEAD)/%f#L%l-%L"
 
 Here, the `git rev-parse HEAD` is used to link to the current snapshot revision of the file.