Test CGI frontend with main funcion.
authorThadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
Sun, 27 Jan 2008 04:29:20 +0000 (02:29 -0200)
committerThadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
Sun, 27 Jan 2008 04:29:20 +0000 (02:29 -0200)
src/main.c [new file with mode: 0644]

diff --git a/src/main.c b/src/main.c
new file mode 100644 (file)
index 0000000..0c8620f
--- /dev/null
@@ -0,0 +1,42 @@
+/*
+ *  Copyright (C) 2007  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.
+ */
+
+
+#include <atompub/atom.h>
+
+#include <stdlib.h>
+
+extern void cgi_serve_request (AtomCtx *ctx);
+
+int
+main (int argc, char **argv)
+{
+  AtomCtx *ctx;
+  IRI *iri;
+  Atom *atom;
+  GError *error;
+  ctx = atom_ctx_new ();
+  atom_config_init (ctx);
+  if ((error = atom_error_get (ctx)) != NULL)
+    {
+      g_message ("%s\n", error->message);
+      exit (1);
+    }
+  cgi_serve_request (ctx);
+  return 0;
+}