website improvements

This commit is contained in:
Araq
2014-12-26 14:47:21 +01:00
parent 4144b2d867
commit 4db50dcd84
6 changed files with 12 additions and 10 deletions

View File

@@ -21,6 +21,7 @@ Low priority:
- support for exception propagation? (hard to implement)
- the copying of the 'ref Promise' into the thead local storage only
happens to work due to the write barrier's implementation
- clean up the C code generator. Full of cruft.
Misc

View File

@@ -100,8 +100,9 @@ pre .end { background:url("images/tabEnd.png") no-repeat left bottom; }
height:844px;
background:url("images/glow-line-vert.png") no-repeat; }
#slideshow { position:absolute; top:10px; left:10px; width:700px; }
#slideshow > div { visibility:hidden; opacity:0; position:absolute; transition:visibility 0s linear 1s, opacity 1s ease-in-out; }
#slideshow { position:absolute; top:10px; left:10px; width:700px; height: 1000px; }
#slideshow > div {
visibility:hidden; opacity:0; position:absolute; transition:visibility 0s linear 1s, opacity 1s ease-in-out; }
#slideshow > div.active { visibility:visible; opacity:1; transition-delay:0s; }
#slideshow > div.init { transition-delay:0s; }
#slideshow-nav { z-index:3; position:absolute; top:110px;; right:-12px; }

View File

@@ -34,9 +34,9 @@ Nim's Community
Github
------
Nim's `source code <http://github.com/Araq/Nimrod>`_ is hosted on Github.
Together with the `wiki <http://github.com/Araq/Nimrod/wiki>`_ and
`issue tracker <http://github.com/Araq/Nimrod/issues>`_.
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>`_.
Github also hosts other projects relating to Nim. These projects are a part
of the `nim-lang organisation <http://github.com/nim-lang>`_.

View File

@@ -38,8 +38,8 @@ 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/Nimrod.git
cd Nimrod
git clone -b master git://github.com/Araq/Nim.git
cd Nim
git clone -b master --depth 1 git://github.com/nim-lang/csources
cd csources && sh build.sh
cd ..

View File

@@ -76,7 +76,7 @@ Nim plays nice with others
the POSIX API, OpenGL, SDL, Cairo, Python, Lua, TCL, X11, libzip, PCRE,
libcurl, mySQL and SQLite are included in the standard distribution or
can easily be obtained via the
`Nimble package manager <https://github.com/nimrod-code/nimble>`_.
`Nimble package manager <https://github.com/nim-lang/nimble>`_.
* A C to Nim conversion utility: New bindings to C libraries are easily
generated by ``c2nim``.
@@ -85,5 +85,5 @@ Roadmap to 1.0
==============
Please have a look at
this `wiki page <https://github.com/Araq/Nimrod/wiki/Roadmap>`_ for
this `wiki page <https://github.com/Araq/Nim/wiki/Roadmap>`_ for
an up-to-date overview.

View File

@@ -24,7 +24,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/Nimrod/wiki/Nimrod-for-C-programmers>`_
- | `Nim for C/C++ Programmers <https://github.com/Araq/Nim/wiki/Nim-for-C-programmers>`_
| A useful cheat-sheet for those most familiar with C/C++ languages.