Some tweaks while trying to solve LM-52.
authorMikael Hallendal <micke@imendio.com>
Sat, 24 Feb 2007 07:09:48 +0100
changeset 236 b4e5c1cb114e
parent 232 71cdf1c0faaf
child 239 b80867c0e10a
Some tweaks while trying to solve LM-52.
docs/reference/Makefile.am
docs/reference/tmpl/lm-message.sgml
docs/reference/tmpl/lm-utils.sgml
loudmouth/lm-utils.c
loudmouth/lm-utils.h
--- a/docs/reference/Makefile.am	Sat Feb 24 04:03:49 2007 +0100
+++ b/docs/reference/Makefile.am	Sat Feb 24 07:09:48 2007 +0100
@@ -47,7 +47,7 @@
 
 # Header files to ignore when scanning.
 # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
-IGNORE_HFILES=lm-internals.h lm-sha.h lm-parser.h lm-sock.h lm-ssl-base.h lm-ssl-internals.h loudmouth.h
+IGNORE_HFILES=base64.h md5.h lm-internals.h lm-sha.h lm-parser.h lm-sock.h lm-socket.h lm-message-queue.h lm-ssl-base.h lm-ssl-internals.h loudmouth.h
 
 # Images to copy into HTML directory.
 # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
--- a/docs/reference/tmpl/lm-message.sgml	Sat Feb 24 04:03:49 2007 +0100
+++ b/docs/reference/tmpl/lm-message.sgml	Sat Feb 24 07:09:48 2007 +0100
@@ -35,6 +35,12 @@
 @LM_MESSAGE_TYPE_PRESENCE: a presence element, <presence/>
 @LM_MESSAGE_TYPE_IQ: an info/query element, <iq/>
 @LM_MESSAGE_TYPE_STREAM: the stream:stream element, you probably don't need to create a message of this type.
+@LM_MESSAGE_TYPE_STREAM_FEATURES: 
+@LM_MESSAGE_TYPE_AUTH: 
+@LM_MESSAGE_TYPE_CHALLENGE: 
+@LM_MESSAGE_TYPE_RESPONSE: 
+@LM_MESSAGE_TYPE_SUCCESS: 
+@LM_MESSAGE_TYPE_FAILURE: 
 @LM_MESSAGE_TYPE_STREAM_ERROR: a stream:error element
 @LM_MESSAGE_TYPE_UNKNOWN: incoming message is of some unknown type.
 
--- a/docs/reference/tmpl/lm-utils.sgml	Sat Feb 24 04:03:49 2007 +0100
+++ b/docs/reference/tmpl/lm-utils.sgml	Sat Feb 24 07:09:48 2007 +0100
@@ -1,12 +1,12 @@
 <!-- ##### SECTION Title ##### -->
-lm-utils
+Miscellaneous Utility Functions
 
 <!-- ##### SECTION Short_Description ##### -->
-
+Test
 
 <!-- ##### SECTION Long_Description ##### -->
 <para>
-
+Test Long
 </para>
 
 <!-- ##### SECTION See_Also ##### -->
--- a/loudmouth/lm-utils.c	Sat Feb 24 04:03:49 2007 +0100
+++ b/loudmouth/lm-utils.c	Sat Feb 24 07:09:48 2007 +0100
@@ -174,7 +174,7 @@
 }
 
 /**
- * lm_utils_get_localtime
+ * lm_utils_get_localtime:
  * @stamp: An XMPP timestamp
  *
  * Converts an XMPP timestamp to a struct tm showing local time.
--- a/loudmouth/lm-utils.h	Sat Feb 24 04:03:49 2007 +0100
+++ b/loudmouth/lm-utils.h	Sat Feb 24 07:09:48 2007 +0100
@@ -18,8 +18,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#ifndef __LM_UTIL_H__
-#define __LM_UTIL_H__
+#ifndef __LM_UTILS_H__
+#define __LM_UTILS_H__
 
 #if !defined (LM_INSIDE_LOUDMOUTH_H) && !defined (LM_COMPILATION)
 #error "Only <loudmouth/loudmouth.h> can be included directly, this file may di\sappear or change contents."
@@ -29,8 +29,8 @@
 
 G_BEGIN_DECLS
 
-struct tm *lm_utils_get_localtime (const gchar *stamp);
+struct tm * lm_utils_get_localtime (const gchar *stamp);
 
 G_END_DECLS
 
-#endif /* __LM_UTIL__ */
+#endif /* __LM_UTILS_H__ */