diff options
-rw-r--r-- | todo.txt | 1 | ||||
-rw-r--r-- | web/assets/style.css | 5 | ||||
-rw-r--r-- | web/community.txt | 6 | ||||
-rw-r--r-- | web/download.txt | 4 | ||||
-rw-r--r-- | web/index.txt | 4 | ||||
-rw-r--r-- | web/learn.txt | 2 |
6 files changed, 12 insertions, 10 deletions
diff --git a/todo.txt b/todo.txt index 1272df575..b2d8b034e 100644 --- a/todo.txt +++ b/todo.txt @@ -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 diff --git a/web/assets/style.css b/web/assets/style.css index f12afa838..da4cff05c 100644 --- a/web/assets/style.css +++ b/web/assets/style.css @@ -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; } diff --git a/web/community.txt b/web/community.txt index fc496ca82..f5d6db0e7 100644 --- a/web/community.txt +++ b/web/community.txt @@ -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>`_. diff --git a/web/download.txt b/web/download.txt index 0d3d75756..f57e5a249 100644 --- a/web/download.txt +++ b/web/download.txt @@ -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 .. diff --git a/web/index.txt b/web/index.txt index 1d76c1cda..b6d4f8e8f 100644 --- a/web/index.txt +++ b/web/index.txt @@ -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. diff --git a/web/learn.txt b/web/learn.txt index 25db150a4..854b31668 100644 --- a/web/learn.txt +++ b/web/learn.txt @@ -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. |