From e89e6155b2c48a68b291dd775f526d41d0f2a9c2 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Thu, 11 Jul 2024 17:04:23 -0400 Subject: [PATCH] official repo is at github.com --- pages/FFI/FFI_with_C.md | 2 +- pages/download.md | 7 +++---- pages/ide.md | 2 +- pages/index.md | 2 +- pages/internal/bootstrap.md | 2 +- pages/internal/index.md | 4 ++-- pages/internal/regression.md | 2 +- pages/internal/workflow.md | 2 +- pages/on_mac.md | 4 ++-- pages/vim/index.md | 2 +- 10 files changed, 14 insertions(+), 15 deletions(-) diff --git a/pages/FFI/FFI_with_C.md b/pages/FFI/FFI_with_C.md index c6686cc..e664d8d 100644 --- a/pages/FFI/FFI_with_C.md +++ b/pages/FFI/FFI_with_C.md @@ -278,7 +278,7 @@ Same example with calls to `exec`, where we use the external program `sdl-config The example extern_methods.nit illustrates a normal use of the Nit FFI. -* [[examples/extern_methods.nit|http://nitlanguage.org/nit.git/blob/HEAD:/examples/extern_methods.nit]] (not yet updated) +* [[examples/extern_methods.nit|https://github.com/nitlang/nit/blob/HEAD/examples/extern_methods.nit]] (not yet updated) ---> # References diff --git a/pages/download.md b/pages/download.md index f4b8a0f..546dea1 100644 --- a/pages/download.md +++ b/pages/download.md @@ -4,15 +4,14 @@ Nit is still in heavy development. -The main way to get to get it from its [[git repository|http://nitlanguage.org/nit.git]] +The main way to get to get it from its [[git repository|https://github.com/nitlang/nit.git]] ~~~sh -$ git clone http://nitlanguage.org/nit.git +$ git clone https://github.com/nitlang/nit.git ~~~sh -or to download the latest [[snapshot|http://nitlanguage.org/nit.git/snapshot/HEAD.tar.gz]] (tar.gz) +or to download the latest [[snapshot|https://github.com/nitlang/nit/archive/refs/heads/master.tar.gz]] (tar.gz) -A [[github mirror|https://github.com/nitlang/nit]] is also available. ## Get dependencies diff --git a/pages/ide.md b/pages/ide.md index 8eb0cba..2f0ce63 100644 --- a/pages/ide.md +++ b/pages/ide.md @@ -13,4 +13,4 @@ Currently, there is supported externals tools (not necessary IDE) * gtksourceview (used by gedit, Anjuta and several other projects) * gnu source-highlight -For the last ones, see the [[misc/|http://nitlanguage.org/nit.git/tree/master:/misc/]] directory of the archive for installation directives. +For the last ones, see the [[misc/|https://github.com/nitlang/nit/tree/HEAD/misc/]] directory of the archive for installation directives. diff --git a/pages/index.md b/pages/index.md index 84d73d6..fed62e3 100644 --- a/pages/index.md +++ b/pages/index.md @@ -57,7 +57,7 @@ Nit will help you write bug-free programs Get Nit from its Git repository: ~~~sh -$ git clone http://nitlanguage.org/nit.git +$ git clone https://github.com/nitlang/nit.git ~~~ Ensure that dependencies (and recommendations) are installed: diff --git a/pages/internal/bootstrap.md b/pages/internal/bootstrap.md index c7a739d..2fb8ec5 100644 --- a/pages/internal/bootstrap.md +++ b/pages/internal/bootstrap.md @@ -5,7 +5,7 @@ The Nit tools are written in Nit, it means you need a Nit compiler in order to c During the make, the original Nit compiler is compiled from C code (in `/c_src`). ~~~sh -$ git clone http://nitlanguage.org/nit.git +$ git clone https://github.com/nitlang/nit.git $ cd nit $ make $ cd src diff --git a/pages/internal/index.md b/pages/internal/index.md index fadcffe..1decb33 100644 --- a/pages/internal/index.md +++ b/pages/internal/index.md @@ -29,9 +29,9 @@ Nit is a target framework for novel compilation techniques and object-oriented r ## Devel documentation -* The [[NOTICE|http://nitlanguage.org/nit.git/blob/master:/NOTICE]] file that states authorship and licences. +* The [[NOTICE|https://github.com/nitlang/nit/blob/HEAD/NOTICE]] file that states authorship and licences. * The [[documentation|http://nitlanguage.org/doc/nitc/]] of the source-code (generated with nitdoc). -* The main [[README|http://nitlanguage.org/nit.git/blob/master:/README.md]] of the source-code. +* The main [[README|https://github.com/nitlang/nit/blob/HEAD/README.md]] of the source-code. ## How-tos and specific documentation diff --git a/pages/internal/regression.md b/pages/internal/regression.md index 0fb0bde..18a9cea 100644 --- a/pages/internal/regression.md +++ b/pages/internal/regression.md @@ -2,7 +2,7 @@ The directory `tests` contains various small Nit programs used to check that the compiler is not broken. -* [[tests/README|http://nitlanguage.org/nit.git/blob/master:/tests/README.md]] +* [[tests/README|https://github.com/nitlang/nit/blob/HEAD/tests/README.md]] To run the full regression test-suite, run: diff --git a/pages/internal/workflow.md b/pages/internal/workflow.md index d9e3e1e..8e61eb9 100644 --- a/pages/internal/workflow.md +++ b/pages/internal/workflow.md @@ -1,6 +1,6 @@ ## Repos and Branches -The official Nit repository is [[http://nitlanguage.org/nit.git]]. +The official Nit repository is [[https://github.com/nitlang/nit.git]]. A [[Github mirror|https://github.com/nitlang/nit]] is also available for social coding. The **master** branch is the most stable, up-to-date and trustworthy : diff --git a/pages/on_mac.md b/pages/on_mac.md index 89a3bd6..24a23ef 100644 --- a/pages/on_mac.md +++ b/pages/on_mac.md @@ -15,7 +15,7 @@ $ sudo port install boehmgc ccache graphviz libunwind-headers pkgconfig Install and compile Nit ~~~sh -$ git clone http://nitlanguage.org/nit.git +$ git clone https://github.com/nitlang/nit.git $ cd nit $ make ~~~ @@ -51,7 +51,7 @@ $ brew install boehmgc ccache graphviz libunwind-headers pkgconfig Install and compile Nit ~~~sh -$ git clone http://nitlanguage.org/nit.git +$ git clone https://github.com/nitlang/nit.git $ cd nit $ make ~~~ diff --git a/pages/vim/index.md b/pages/vim/index.md index 30cdcd1..172ae83 100644 --- a/pages/vim/index.md +++ b/pages/vim/index.md @@ -1,6 +1,6 @@ # Nit for Vim -Nit comes with a support for the editor [[vim|http://www.vim.org/]] in the directory [[misc/vim|http://nitlanguage.org/nit.git/tree/HEAD:/misc/vim]]. +Nit comes with a support for the editor [[vim|http://www.vim.org/]] in the directory [[misc/vim|https://github.com/nitlang/nit/tree/HEAD/misc/vim]].
Preview of the Nit bundde for vim