website knows about new URLs

This commit is contained in:
Araq
2015-06-15 01:30:25 +02:00
parent d6f94091ed
commit 8c671d22d6
6 changed files with 24 additions and 24 deletions

View File

@@ -9,10 +9,10 @@ should be in your ``$PATH`` (most likely the case). Note that some few Linux
distributions do not ship with a GCC compiler preinstalled - then you have to
install it.
Install Nim by downloading the appropriate ``.zip`` file and extracting it
Install Nim by downloading the appropriate ``.zip`` file and extracting it
to a directory of your choice. The Nim Compiler will stay in this
directory (unless you copy it somewhere else). The compiler does not need
write access to its directory, so copying the nim folder to ``/opt``
directory (unless you copy it somewhere else). The compiler does not need
write access to its directory, so copying the nim folder to ``/opt``
works.
Then run the following command::
@@ -26,7 +26,7 @@ manually. An alternative is to create a symbolic link in ``/usr/bin``::
[sudo] ln -s $your_install_dir/bin/nim /usr/bin/nim
There are also ``install.sh`` and ``deinstall.sh`` scripts for distributing
There are also ``install.sh`` and ``deinstall.sh`` scripts for distributing
the files over the UNIX hierarchy. However, updating your Nim installation
is more cumbersome then.
@@ -35,8 +35,8 @@ Installation on the Macintosh
-----------------------------
Only MacOS X is supported.
Since MacOS X is UNIX based too, it works like the installation on Linux.
However, for unknown reasons the symbolic link method does not work on MacOS X.
Since MacOS X is UNIX based too, it works like the installation on Linux.
However, for unknown reasons the symbolic link method does not work on MacOS X.
You need to install Apple's developer's tools for the GNU Compiler Collection.
@@ -64,5 +64,5 @@ However, most testing is done with GCC.
Bootstrapping from Github
-------------------------
Take a look at the readme file on github `here <https://github.com/Araq/Nim#readme>`_
Take a look at the readme file on github `here <https://github.com/nim-lang/Nim#readme>`_
for instructions.

View File

@@ -1,4 +1,4 @@
This package contains the Nim compiler, Nim's stdlib, tools and
This package contains the Nim compiler, Nim's stdlib, tools and
documentation.
Nim is a compiled, garbage-collected systems programming language which has
@@ -7,12 +7,12 @@ efficiency, expressiveness, elegance (in the order of priority).
Read install.txt for instructions of how to build and install it.
The compiler and the standard library are licensed under the MIT license,
except for some modules where the documentation suggests otherwise. This means
that you can use any license for your own programs developed with Nim,
The compiler and the standard library are licensed under the MIT license,
except for some modules where the documentation suggests otherwise. This means
that you can use any license for your own programs developed with Nim,
allowing you to create commercial applications.
Read copying.txt for more details.
Copyright (c) 2006-2014 Andreas Rumpf.
Copyright (c) 2006-2015 Andreas Rumpf.
All rights reserved.

View File

@@ -6,7 +6,7 @@ Nim's Community
Forum
-----
The `Nim forum <http://forum.nim-lang.org/>`_ is the place where most
The `Nim forum <http://forum.nim-lang.org/>`_ is the place where most
discussions related to the language happen. It not only includes discussions
relating to the design of Nim but also allows for beginners to ask questions
relating to Nim.
@@ -44,14 +44,14 @@ Nim's Community
Github
------
Nim's `source code <http://github.com/Araq/Nim>`_ is hosted on Github.
Together with the `wiki <http://github.com/Araq/Nim/wiki>`_ and
`issue tracker <http://github.com/Araq/Nim/issues>`_.
Nim's `source code <http://github.com/nim-lang/Nim>`_ is hosted on Github.
Together with the `wiki <http://github.com/nim-lang/Nim/wiki>`_ and
`issue tracker <http://github.com/nim-lang/Nim/issues>`_.
Github also hosts other projects relating to Nim. These projects are a part
of the `nim-lang organisation <http://github.com/nim-lang>`_.
This includes the `Nimble package manager <https://github.com/nim-lang/nimble>`_
and its `package repository <http://github.com/nim-lang/packages>`_.
and its `package repository <http://github.com/nim-lang/packages>`_.
.. container:: standout
@@ -76,7 +76,7 @@ Nim's Community
-------------
When asking a question relating to Nim, be sure to use the
`Nim <http://stackoverflow.com/questions/tagged/nim>`_ tag in your
`Nim <http://stackoverflow.com/questions/tagged/nim>`_ tag in your
question.
.. container:: standout
@@ -85,8 +85,8 @@ Nim's Community
-----------
There are always many things to be done in the main
`Nim repository <https://github.com/Araq/Nim>`_, check out the
`issues <https://github.com/Araq/Nim/issues>`_ for
`Nim repository <https://github.com/nim-lang/Nim>`_, check out the
`issues <https://github.com/nim-lang/Nim/issues>`_ for
things to do; pull requests are always welcome. You can
also contribute to the many other projects hosted by the
`nim-lang <https://github.com/nim-lang>`_ organisation on github. If you
@@ -107,7 +107,7 @@ Nim's Community
.. raw:: html
<iframe style="border: 0; margin: 0; padding: 0;"
src="https://www.gittip.com/Araq/widget.html"
src="https://www.gittip.com/nim-lang/widget.html"
width="64pt" height="22pt"></iframe>
Paypal

View File

@@ -44,7 +44,7 @@ Installation from github
Use the following commands to build the compiler from source.
Change the branch to suit your needs::
git clone -b master git://github.com/Araq/Nim.git
git clone -b master git://github.com/nim-lang/Nim.git
cd Nim
git clone -b master --depth 1 git://github.com/nim-lang/csources
cd csources && sh build.sh

View File

@@ -85,5 +85,5 @@ Roadmap to 1.0
==============
Please have a look at
this `wiki page <https://github.com/Araq/Nim/wiki/Roadmap>`_ for
this `wiki page <https://github.com/nim-lang/Nim/wiki/Roadmap>`_ for
an up-to-date overview.

View File

@@ -28,7 +28,7 @@ Learning Nim
- | `Nim on Rosetta Code <http://rosettacode.org/wiki/Category:Nimrod>`_
| Many different Nim code examples comparable to other languages for reference.
- | `Nim for C/C++ Programmers <https://github.com/Araq/Nim/wiki/Nim-for-C-programmers>`_
- | `Nim for C/C++ Programmers <https://github.com/nim-lang/Nim/wiki/Nim-for-C-programmers>`_
| A useful cheat-sheet for those most familiar with C/C++ languages.