diff options
author | Adam Strzelecki <ono@java.pl> | 2015-09-29 22:49:21 +0200 |
---|---|---|
committer | Adam Strzelecki <ono@java.pl> | 2015-09-30 12:28:26 +0200 |
commit | 4d2486c85854315e5d3de5627c0749f753d6e6fa (patch) | |
tree | 2edcb2a27bc96a7b8ea228e367c32f0cd1031881 | |
parent | 144dc8f8ad209ebcb6591e0adc1bc4cb73528f3a (diff) | |
download | Nim-4d2486c85854315e5d3de5627c0749f753d6e6fa.tar.gz |
doc: Move deprecated modules into separate section
-rw-r--r-- | doc/lib.txt | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/doc/lib.txt b/doc/lib.txt index 868adde89..5b2648b2f 100644 --- a/doc/lib.txt +++ b/doc/lib.txt @@ -201,12 +201,6 @@ Internet Protocols and Support * `scgi <scgi.html>`_ This module implements helpers for SCGI applications. -* `sockets <sockets.html>`_ - This module implements a simple portable type-safe sockets layer. - -* `asyncio <asyncio.html>`_ - This module implements an asynchronous event loop for sockets. - * `browsers <browsers.html>`_ This module implements procs for opening URLs with the user's default browser. @@ -220,9 +214,6 @@ Internet Protocols and Support * `smtp <smtp.html>`_ This module implement a simple SMTP client. -* `ftpclient <ftpclient.html>`_ - This module implements an FTP client. - * `cookies <cookies.html>`_ This module contains helper procs for parsing and generating cookies. @@ -397,6 +388,27 @@ Modules for JS backend Declaration of the Document Object Model for the JS backend. +Deprecated modules +------------------ + +* `asyncio <asyncio.html>`_ + This module implements an asynchronous event loop for sockets. + **Deprecated since version 0.11.2:** + Use the `asyncnet <asyncnet.html>`_ together with the + `asyncdispatch <asyncdispatch.html>`_ module instead. + +* `ftpclient <ftpclient.html>`_ + This module implements an FTP client. + **Deprecated since version 0.11.3:** + Use the `asyncftpclient <asyncftpclient.html>`_ module instead. + +* `sockets <sockets.html>`_ + This module implements a simple portable type-safe sockets layer. + **Deprecated since version 0.11.2:** + Use the `net <net.html>`_ or the `rawsockets <rawsockets.html>`_ module + instead. + + Impure libraries ================ |