summary refs log tree commit diff stats
path: root/web
diff options
context:
space:
mode:
authorrumpf_a@web.de <>2010-02-20 19:21:38 +0100
committerrumpf_a@web.de <>2010-02-20 19:21:38 +0100
commit6bc16904edd3738ab97573b9eeb3a6a7cce9574c (patch)
treea24577d18f693a0b5497ad78b54c4d20cb711fc6 /web
parent64da2f16813bbf03b8a2117d7c4abffd1adf525f (diff)
downloadNim-6bc16904edd3738ab97573b9eeb3a6a7cce9574c.tar.gz
bugfixes for unicode; xmlparser; htmlparser; scanner
Diffstat (limited to 'web')
-rw-r--r--web/news.txt9
-rw-r--r--web/nimrod.ini1
2 files changed, 9 insertions, 1 deletions
diff --git a/web/news.txt b/web/news.txt
index 4764bc49a..178bdead7 100644
--- a/web/news.txt
+++ b/web/news.txt
@@ -21,6 +21,8 @@ Bugfixes
 - Fixed a bug in ``os.setFilePermissions`` for Windows.
 - An overloadable symbol can now have the same name as an imported module.
 - Fixed a serious bug in ``strutils.cmpIgnoreCase``. 
+- Fixed ``unicode.toUTF8``. 
+- The compiler now rejects ``'\n'``. 
 
 
 Additions
@@ -40,7 +42,7 @@ Additions
 - Added ``xmldom`` module.
 - Added ``xmldomparser`` module.
 - Added ``xmltree`` module.
-- Added ``xmltreeparser`` module.
+- Added ``xmlparser`` module.
 - Added ``htmlparser`` module.
 - Many wrappers now do not contain redundant name prefixes (like ``GTK_``,
   ``lua``). The new wrappers are available in ``lib/newwrap``. Change
@@ -63,6 +65,11 @@ Changes affecting backwards compatibility
   the standard library's path. 
 - The compiler does not include a Pascal parser for bootstrapping purposes any
   more. Instead there is a ``pas2nim`` tool that contains the old functionality.
+- The procs ``os.copyFile`` and ``os.moveFile`` have been deprecated
+  temporarily, so that the compiler warns about their usage. Use them with
+  named arguments only, because the parameter order will change the next
+  version!
+- ``atomic`` and ``let`` are now keywords.
 
 
 2009-12-21 Version 0.8.6 released
diff --git a/web/nimrod.ini b/web/nimrod.ini
index 1cb494f9c..b92a0f36f 100644
--- a/web/nimrod.ini
+++ b/web/nimrod.ini
@@ -31,6 +31,7 @@ srcdoc: "pure/streams;pure/terminal;pure/cgi;impure/web;pure/unicode"
 srcdoc: "impure/zipfiles;pure/xmlgen;pure/macros;pure/parseutils;pure/browsers"
 srcdoc: "impure/db_postgres;impure/db_mysql;pure/httpserver;pure/httpclient"
 srcdoc: "pure/ropes;pure/unidecode/unidecode;pure/xmldom;pure/xmldomparser"
+srcdoc: "pure/xmlparser;pure/htmlparser;pure/xmltree"
 
 webdoc: "wrappers/libcurl;pure/md5;wrappers/mysql;wrappers/iup"
 webdoc: "wrappers/sqlite3;wrappers/python;wrappers/tcl"