From dbb248247b5dbc0113ea9e272ea2b9495ed34041 Mon Sep 17 00:00:00 2001 From: Alexey Shchepin Date: Mon, 23 May 2005 19:47:57 +0000 Subject: * src/mod_last_odbc.erl: Added store_last_info/4 function (thanks to Sergei Golovan) * src/mod_last.erl: Likewise * src/jd2ejd.erl: Support for exporting iq:last information, better error handling (thanks to Sergei Golovan) * src/ejabberd_ctl.erl: Added "import-file" and "import-dir" commands (thanks to Sergei Golovan) SVN Revision: 358 --- doc/dev.html | 46 +++++++++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 21 deletions(-) (limited to 'doc/dev.html') diff --git a/doc/dev.html b/doc/dev.html index ad12f39dd..48a96e7a7 100644 --- a/doc/dev.html +++ b/doc/dev.html @@ -61,34 +61,38 @@ ejabberd is a Free and Open Source fault-tolerant distributed Jabber -server. It is writen mostly in Erlang.
+server. It is written mostly in Erlang.

-The main features of ejabberd is: +The main features of ejabberd are: +ejabberd is a Free and Open Source fault-tolerant distributed Jabber +server. It is written mostly in Erlang.
+

1.1  How it works

@@ -166,13 +170,13 @@ XMLElement = {xmlelement, Name, Attrs, [ElementOrCDATA]} CDATA = {xmlcdata, string()} E. g. this stanza:
-<message to='test@conference.e.localhost' type='groupchat'>
+<message to='test@conference.example.org' type='groupchat'>
   <body>test</body>
 </message>
 
represented as following structure:
 {xmlelement, "message",
-    [{"to", "test@conference.e.localhost"},
+    [{"to", "test@conference.example.org"},
      {"type", "groupchat"}],
     [{xmlelement, "body",
          [],
-- 
cgit v1.2.3