From: Andrea Zagli Date: Mon, 24 Aug 2015 18:57:26 +0000 (+0200) Subject: Added functions ZakCgiTag::*_ht. X-Git-Tag: v0.1.0~16 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=62082a358fe2e7bf9172362d03e4e9f74228ef92;p=libzakcgi Added functions ZakCgiTag::*_ht. --- diff --git a/src/tag.c b/src/tag.c index aa4d7de..2fda7d7 100644 --- 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); +} diff --git a/src/tag.h b/src/tag.h index 3a49672..9b8ae24 100644 --- 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__ */