]> saetta.ns0.it Git - libzakcgi/commitdiff
Added functions ZakCgiTag::*_ht.
authorAndrea Zagli <azagli@libero.it>
Mon, 24 Aug 2015 18:57:26 +0000 (20:57 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 24 Aug 2015 18:57:26 +0000 (20:57 +0200)
src/tag.c
src/tag.h

index aa4d7de938a0d6e75d5fd197cfceb0afd03f621f..2fda7d7346709e16905e3569e661ad5ee617a535 100644 (file)
--- a/src/tag.c
+++ b/src/tag.c
@@ -115,6 +115,7 @@ static gchar
  * zak_cgi_tag_tag:
  * @name:
  * @id:
+ * @...:
  *
  * Returns:
  */
@@ -130,9 +131,26 @@ gchar
        return zak_cgi_tag_tag_attrs (name, id, zak_cgi_commons_valist_to_ghashtable (ap));
 }
 
+/**
+ * zak_cgi_tag_tag_ht:
+ * @name:
+ * @id:
+ * @ht:
+ *
+ * Returns:
+ */
+gchar
+*zak_cgi_tag_tag_ht (const gchar *name,
+                                        const gchar *id,
+                                        GHashTable *ht)
+{
+       return zak_cgi_tag_tag_attrs (name, id, ht);
+}
+
 /**
  * zak_cgi_tag_img:
  * @id:
+ * @...:
  *
  * Returns:
  */
@@ -147,9 +165,24 @@ gchar
        return zak_cgi_tag_tag_attrs ("img", id, zak_cgi_commons_valist_to_ghashtable (ap));
 }
 
+/**
+ * zak_cgi_tag_img_ht:
+ * @id:
+ * @ht:
+ *
+ * Returns:
+ */
+gchar
+*zak_cgi_tag_img_ht (const gchar *id,
+                                        GHashTable *ht)
+{
+       return zak_cgi_tag_tag_attrs ("img", id, ht);
+}
+
 /**
  * zak_cgi_tag_text:
  * @id:
+ * @...:
  *
  * Returns:
  */
@@ -168,9 +201,26 @@ gchar
        return zak_cgi_tag_tag_attrs ("input", id, ht);
 }
 
+/**
+ * zak_cgi_tag_text_ht:
+ * @id:
+ * @ht:
+ *
+ * Returns:
+ */
+gchar
+*zak_cgi_tag_text_ht (const gchar *id,
+                                         GHashTable *ht)
+{
+       g_hash_table_insert (ht, "type", "text");
+
+       return zak_cgi_tag_tag_attrs ("input", id, ht);
+}
+
 /**
  * zak_cgi_tag_file:
  * @id:
+ * @...:
  *
  * Returns:
  */
@@ -189,9 +239,26 @@ gchar
        return zak_cgi_tag_tag_attrs ("input", id, ht);
 }
 
+/**
+ * zak_cgi_tag_file_ht:
+ * @id:
+ * @ht:
+ *
+ * Returns:
+ */
+gchar
+*zak_cgi_tag_file_ht (const gchar *id,
+                                  GHashTable *ht)
+{
+       g_hash_table_insert (ht, "type", "file");
+
+       return zak_cgi_tag_tag_attrs ("input", id, ht);
+}
+
 /**
  * zak_cgi_tag_submit:
  * @id:
+ * @...:
  *
  * Returns:
  */
@@ -209,3 +276,20 @@ gchar
 
        return zak_cgi_tag_tag_attrs ("input", id, ht);
 }
+
+
+/**
+ * zak_cgi_tag_submit_ht:
+ * @id:
+ * @ht:
+ *
+ * Returns:
+ */
+gchar
+*zak_cgi_tag_submit_ht (const gchar *id,
+                                               GHashTable *ht)
+{
+       g_hash_table_insert (ht, "type", "submit");
+
+       return zak_cgi_tag_tag_attrs ("input", id, ht);
+}
index 3a49672bf4fed9e1250c77fc0cf5ad14ce961ba2..9b8ae24367e954bdbe4ff728628367582c09cd63 100644 (file)
--- a/src/tag.h
+++ b/src/tag.h
@@ -29,17 +29,29 @@ gchar *zak_cgi_tag_tag (const gchar *name,
                                                const gchar *id,
                                                ...);
 
+gchar *zak_cgi_tag_tag_ht (const gchar *name,
+                                                  const gchar *id,
+                                                  GHashTable *ht);
+
 gchar *zak_cgi_tag_img (const gchar *id,
                                                ...);
+gchar *zak_cgi_tag_img_ht (const gchar *id,
+                                                  GHashTable *ht);
 
 gchar *zak_cgi_tag_text (const gchar *id,
                                                 ...);
+gchar *zak_cgi_tag_text_ht (const gchar *id,
+                                                       GHashTable *ht);
 
 gchar *zak_cgi_tag_file (const gchar *id,
                                                 ...);
+gchar *zak_cgi_tag_file_ht (const gchar *id,
+                                                       GHashTable *ht);
 
 gchar *zak_cgi_tag_submit (const gchar *id,
                                                   ...);
+gchar *zak_cgi_tag_submit_ht (const gchar *id,
+                                                         GHashTable *ht);
 
 
 #endif /* __ZAK_CGI_TAG_H__ */