aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael McVady <femtonaut@gmail.com>2021-11-15 22:53:11 -0500
committerMichael McVady <femtonaut@gmail.com>2021-11-15 22:53:11 -0500
commit4a8f1b88607975444abcefebc2b71d9ade79090b (patch)
tree26214833238c784da5880b5c946a48425171fee6
parent6e1be0ceb2a550fac244f91c18d70f0362c909cf (diff)
Render table
-rw-r--r--assets/index_begin.html3
-rw-r--r--assets/index_end.html4
-rw-r--r--src/clog.c6
3 files changed, 11 insertions, 2 deletions
diff --git a/assets/index_begin.html b/assets/index_begin.html
index 6c14258..3709210 100644
--- a/assets/index_begin.html
+++ b/assets/index_begin.html
@@ -7,3 +7,6 @@
<body>
<h2>clog posts</h2>
+
+<table>
+ <tr><th>id</th><th>title</th><th>body</th></tr>
diff --git a/assets/index_end.html b/assets/index_end.html
index 308b1d0..53fb2b5 100644
--- a/assets/index_end.html
+++ b/assets/index_end.html
@@ -1,2 +1,4 @@
+</table>
+
</body>
-</html>
+</html> \ No newline at end of file
diff --git a/src/clog.c b/src/clog.c
index 9e11790..87e58e7 100644
--- a/src/clog.c
+++ b/src/clog.c
@@ -47,7 +47,8 @@ int page(struct http_request *req)
*/
int err = kore_pgsql_setup(&sql, "db", KORE_PGSQL_SYNC);
kore_log(LOG_ERR, "kore_pgsql_setup: %d", err);
- if (!err) {
+ if (!err)
+ {
kore_pgsql_logerror(&sql);
goto out;
}
@@ -69,9 +70,12 @@ int page(struct http_request *req)
id = kore_pgsql_getvalue(&sql, row, 0);
title = kore_pgsql_getvalue(&sql, row, 1);
body = kore_pgsql_getvalue(&sql, row, 2);
+
kore_log(LOG_NOTICE, "id: '%s'", id);
kore_log(LOG_NOTICE, "title: '%s'", title);
kore_log(LOG_NOTICE, "body: '%s'", body);
+
+ kore_buf_appendf(buf, "\t<tr><td>%s</td><td>%s</td><td>%s</td></tr>\n", id, title, body);
}
out: ;