Create a XML node from an AtomPerson
authorThadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
Sat, 9 Aug 2008 18:51:51 +0000 (15:51 -0300)
committerThadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
Sat, 9 Aug 2008 18:51:51 +0000 (15:51 -0300)
atom/person.c
include/atompub/atom-xml.h [new file with mode: 0644]
include/atompub/person-xml.h [new file with mode: 0644]

index 6b63ec4..62f9ed4 100644 (file)
@@ -20,6 +20,7 @@
 #include <atompub/atom.h>
 
 #include <glib.h>
+#include <libxml/tree.h>
 
 struct _atom_person
 {
@@ -92,3 +93,16 @@ atom_person_email_set (AtomPerson *person, char *email)
     g_free (person->email);
   person->email = g_strdup (email);
 }
+
+xmlNodePtr
+atom_person_to_xmlnode (AtomPerson *person, char *elname)
+{
+  xmlNodePtr node;
+  node = xmlNewNode (NULL, elname);
+  xmlNewTextChild (node, NULL, "name", person->name);
+  if (person->uri)
+    xmlNewTextChild (node, NULL, "uri", iri_get_string (person->uri));
+  if (person->email)
+    xmlNewTextChild (node, NULL, "email", person->email);
+  return node;
+}
diff --git a/include/atompub/atom-xml.h b/include/atompub/atom-xml.h
new file mode 100644 (file)
index 0000000..60fe48e
--- /dev/null
@@ -0,0 +1,25 @@
+/*
+ *  Copyright (C) 2008  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License along
+ *  with this program; if not, write to the Free Software Foundation, Inc.,
+ *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+
+#ifndef ATOMPUB_ATOM_XML_H
+#define ATOMPUB_ATOM_XML_H
+
+#include <atompub/person-xml.h>
+
+#endif
diff --git a/include/atompub/person-xml.h b/include/atompub/person-xml.h
new file mode 100644 (file)
index 0000000..69b7508
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+ *  Copyright (C) 2008  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License along
+ *  with this program; if not, write to the Free Software Foundation, Inc.,
+ *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+
+#ifndef ATOM_PERSON_XML_H
+#define ATOM_PERSON_XML_H
+
+#include <atompub/person.h>
+
+#include <libxml/tree.h>
+
+xmlNodePtr atom_person_to_xmlnode (AtomPerson *, char *);
+
+#endif