From f9dc395c224be901d43622aac5e761c6797d7682 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 30 Jan 2016 11:44:20 +0100 Subject: [PATCH] Added draft of geolocation. --- data/bcity_fe/ctpl/index_index.ctpl | 7 +++- data/bcity_fe/ctpl/template.ctpl | 2 +- src/index.c | 52 ++++++++++++++++++++++++++++- src/login.c | 1 + 4 files changed, 59 insertions(+), 3 deletions(-) diff --git a/data/bcity_fe/ctpl/index_index.ctpl b/data/bcity_fe/ctpl/index_index.ctpl index 1b781d1..afa0f4a 100644 --- a/data/bcity_fe/ctpl/index_index.ctpl +++ b/data/bcity_fe/ctpl/index_index.ctpl @@ -1,3 +1,8 @@

B-City

-

Hello world!!!

\ No newline at end of file +
+ +
+ + +
\ No newline at end of file diff --git a/data/bcity_fe/ctpl/template.ctpl b/data/bcity_fe/ctpl/template.ctpl index 01fb7d1..c97225b 100644 --- a/data/bcity_fe/ctpl/template.ctpl +++ b/data/bcity_fe/ctpl/template.ctpl @@ -28,7 +28,7 @@ - +
{body}
diff --git a/src/index.c b/src/index.c index 5f71456..16ebd01 100644 --- a/src/index.c +++ b/src/index.c @@ -29,6 +29,7 @@ index_index (GMatchInfo *minfo, gpointer user_data) { CtplEnviron *env; + gchar *head; gchar *filename; gchar *content; @@ -44,8 +45,56 @@ index_index (GMatchInfo *minfo, gpointer user_data) content = get_ctpl_filled (filename, NULL); g_free (filename); + head = g_strdup ("\n" +"\n" +"\n" +""); + env = ctpl_environ_new (); - ctpl_environ_push_string (env, "head", ""); + ctpl_environ_push_string (env, "head", head); + ctpl_environ_push_string (env, "body_tag", " onload=\"initmap()\""); ctpl_environ_push_string (env, "body", content); filename = g_build_filename (commons->ctpldir, "template.ctpl", NULL); @@ -53,5 +102,6 @@ index_index (GMatchInfo *minfo, gpointer user_data) get_ctpl_filled (filename, env)); g_free (filename); + g_free (head); g_free (content); } diff --git a/src/login.c b/src/login.c index da5bd6c..9a201a4 100644 --- a/src/login.c +++ b/src/login.c @@ -118,6 +118,7 @@ login_index (GMatchInfo *minfo, gpointer user_data) env = ctpl_environ_new (); ctpl_environ_push_string (env, "head", ""); + ctpl_environ_push_string (env, "body_tag", ""); ctpl_environ_push_string (env, "body", content); filename = g_build_filename (commons->ctpldir, "template.ctpl", NULL); -- 2.49.0