* zak_cgi_tag_tag:
* @name:
* @id:
+ * @...:
*
* Returns:
*/
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:
*/
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:
*/
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:
*/
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:
*/
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);
+}
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__ */