summary refs log tree commit diff stats
path: root/web
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2011-06-02 13:02:40 +0200
committerAraq <rumpf_a@web.de>2011-06-02 13:02:40 +0200
commit3260702a6044cdae89cf673ad1983aa3342127de (patch)
tree40439bfaf9f4ecb4929547e387998b282eee408c /web
parentd0bfc3665fd0131dad516d2fcd7cfe73c3a6f122 (diff)
downloadNim-3260702a6044cdae89cf673ad1983aa3342127de.tar.gz
first steps to thread local heaps
Diffstat (limited to 'web')
-rwxr-xr-xweb/news.txt4
-rwxr-xr-xweb/nimrod.ini8
2 files changed, 7 insertions, 5 deletions
diff --git a/web/news.txt b/web/news.txt
index db4b93fa2..fe1d37487 100755
--- a/web/news.txt
+++ b/web/news.txt
@@ -41,7 +41,8 @@ Changes affecting backwards compatibility
   and ``replacef`` operations.
 - The pointer dereference operation ``p^`` is deprecated and might become
   ``^p`` in later versions or be dropped entirely since it is rarely used. 
-  Use the new notation ``p[]`` to dereference a pointer.
+  Use the new notation ``p[]`` in the rare cases where you need to 
+  dereference a pointer explicitely.
   
 
 Additions
@@ -79,6 +80,7 @@ Additions
 - The compiler now might use hashing for string case statements depending
   on the number of string literals in the case statement.
 - Added a wrapper for ``redis``.
+- Added a wrapper for ``0mq`` via the ``zmq`` module.
 - The compiler now supports array, sequence and string slicing.
 - Added ``system.newStringOfCap``.
 
diff --git a/web/nimrod.ini b/web/nimrod.ini
index b74659ad5..be0c67690 100755
--- a/web/nimrod.ini
+++ b/web/nimrod.ini
@@ -24,9 +24,9 @@ file: ticker
 doc: "endb;intern;apis;lib;manual;tut1;tut2;nimrodc;overview"
 doc: "tools;c2nim;niminst"
 pdf: "manual;lib;tut1;tut2;nimrodc;c2nim;niminst"
-srcdoc: "core/macros;core/threads;core/marshal"
+srcdoc: "core/macros;core/marshal"
 srcdoc: "impure/graphics;pure/sockets"
-srcdoc: "system.nim;pure/os;pure/strutils;pure/math"
+srcdoc: "system.nim;system/threads.nim;pure/os;pure/strutils;pure/math"
 srcdoc: "pure/complex;pure/times;pure/osproc;pure/pegs;pure/dynlib"
 srcdoc: "pure/parseopt;pure/hashes;pure/strtabs;pure/lexbase"
 srcdoc: "pure/parsecfg;pure/parsexml;pure/parsecsv;pure/parsesql"
@@ -36,8 +36,8 @@ srcdoc: "impure/db_postgres;impure/db_mysql;impure/db_sqlite"
 srcdoc: "pure/httpserver;pure/httpclient;pure/smtp;impure/ssl"
 srcdoc: "pure/ropes;pure/unidecode/unidecode;pure/xmldom;pure/xmldomparser"
 srcdoc: "pure/xmlparser;pure/htmlparser;pure/xmltree;pure/colors"
-srcdoc: "pure/json;pure/base64;pure/scgi;impure/graphics"
-srcdoc: "impure/rdstdin"
+srcdoc: "pure/json;pure/base64;pure/scgi;pure/redis;impure/graphics"
+srcdoc: "impure/rdstdin;wrappers/zmq"
 
 webdoc: "wrappers/libcurl;pure/md5;wrappers/mysql;wrappers/iup"
 webdoc: "wrappers/sqlite3;wrappers/postgres;wrappers/tinyc"