lib_LTLIBRARIES = libzakcgi.la
-libzakcgi_la_SOURCES = main.c \
+libzakcgi_la_SOURCES = commons.c \
+ commons.h \
+ main.c \
session.c \
tag.c \
url.c
--- /dev/null
+/*
+ * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
+#include "commons.h"
+
+GHashTable
+*zak_cgi_commons_valist_to_ghashtable (va_list ap)
+{
+ GHashTable *ret;
+
+ gchar *attr;
+ gchar *attr_val;
+
+ ret = g_hash_table_new (g_str_hash, g_str_equal);
+
+ do
+ {
+ attr = va_arg (ap, gchar *);
+ if (attr != NULL)
+ {
+ attr_val = va_arg (ap, gchar *);
+ if (attr_val != NULL)
+ {
+ g_hash_table_insert (ret, g_strdup (attr), g_strdup (attr_val));
+ }
+ else
+ {
+ break;
+ }
+ }
+ else
+ {
+ break;
+ }
+ } while (TRUE);
+
+ va_end (ap);
+
+ return ret;
+}
--- /dev/null
+/*
+ * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef __ZAK_CGI_COMMONS_H__
+#define __ZAK_CGI_COMMONS_H__
+
+
+#include <glib-object.h>
+
+#include "main.h"
+
+
+GHashTable *zak_cgi_commons_valist_to_ghashtable (va_list ap);
+
+
+#endif /* __ZAK_CGI_COMMONS_H__ */
#include <config.h>
#endif
+#include "commons.h"
#include "tag.h"
-static GHashTable
-*zak_cgi_tag_valist_to_ghashtable (va_list ap)
-{
- GHashTable *ret;
-
- gchar *attr;
- gchar *attr_val;
-
- ret = g_hash_table_new (g_str_hash, g_str_equal);
-
- do
- {
- attr = va_arg (ap, gchar *);
- if (attr != NULL)
- {
- attr_val = va_arg (ap, gchar *);
- if (attr_val != NULL)
- {
- g_hash_table_insert (ret, g_strdup (attr), g_strdup (attr_val));
- }
- else
- {
- break;
- }
- }
- else
- {
- break;
- }
- } while (TRUE);
-
- va_end (ap);
-
- return ret;
-}
-
static gchar
*zak_cgi_tag_tag_attrs (const gchar *name,
const gchar *id,
va_start (ap, id);
- return zak_cgi_tag_tag_attrs (name, id, zak_cgi_tag_valist_to_ghashtable (ap));
+ return zak_cgi_tag_tag_attrs (name, id, zak_cgi_commons_valist_to_ghashtable (ap));
}
/**
va_start (ap, id);
- return zak_cgi_tag_tag_attrs ("img", id, zak_cgi_tag_valist_to_ghashtable (ap));
+ return zak_cgi_tag_tag_attrs ("img", id, zak_cgi_commons_valist_to_ghashtable (ap));
}
/**
va_start (ap, id);
- ht = zak_cgi_tag_valist_to_ghashtable (ap);
+ ht = zak_cgi_commons_valist_to_ghashtable (ap);
g_hash_table_insert (ht, "type", "text");
return zak_cgi_tag_tag_attrs ("input", id, ht);
va_start (ap, id);
- ht = zak_cgi_tag_valist_to_ghashtable (ap);
+ ht = zak_cgi_commons_valist_to_ghashtable (ap);
g_hash_table_insert (ht, "type", "file");
return zak_cgi_tag_tag_attrs ("input", id, ht);
va_start (ap, id);
- ht = zak_cgi_tag_valist_to_ghashtable (ap);
+ ht = zak_cgi_commons_valist_to_ghashtable (ap);
g_hash_table_insert (ht, "type", "submit");
return zak_cgi_tag_tag_attrs ("input", id, ht);