--- /dev/null
+<!DOCTYPE html>
+<html lang="it">
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
+ <title>ZakJukeBox</title>
+
+ <!-- Bootstrap -->
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
+
+ <!-- custom -->
+ <link rel="stylesheet" href="/concorsi/css/style.css">
+
+ <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
+ <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
+
+ {{head}}
+
+ </head>
+ <body{{body_tag}}>
+
+ <div class="container">
+ {{body}}
+ </div>
+
+ </body>
+</html>
#include <config.h>
#endif
+#include <tmpl-glib.h>
+
#include "index.h"
void
index_index (GMatchInfo *minfo, gpointer user_data)
{
- /* CtplEnviron *env; */
+ g_autoptr(GFile) file = NULL;
+ g_autoptr(TmplScope) scope = NULL;
+ g_autoptr(TmplTemplate) tmpl = NULL;
+ g_autoptr(GError) error = NULL;
+ TmplSymbol *symbol = NULL;
+ gchar *str;
+ g_warning ("INDEX INDEX");
+ Commons *commons = (Commons *)user_data;
- gchar *filename;
- gchar *content;
+ file = g_file_new_for_path (CTPLDIR "/template.ctpl");
+ tmpl = tmpl_template_new (NULL);
- Commons *commons = (Commons *)user_data;
+ if (!tmpl_template_parse_file (tmpl, file, NULL, &error))
+ {
+ g_warning ("Unable to parse template file «%s»: %s", CTPLDIR "/template.ctpl", error->message);
+ return;
+ }
+
+ scope = tmpl_scope_new ();
+
+ symbol = tmpl_scope_get (scope, "head");
+ tmpl_symbol_assign_string (symbol, "");
- /* env = ctpl_environ_new (); */
+ symbol = tmpl_scope_get (scope, "body");
+ tmpl_symbol_assign_string (symbol, commons->root);
- filename = g_build_filename (commons->ctpldir, "index_index.ctpl", NULL);
- /* content = solipa_ctpl_get_filled (commons->solipa_ctpl, filename, env); */
- g_free (filename);
+ symbol = tmpl_scope_get (scope, "body_tag");
+ tmpl_symbol_assign_string (symbol, "");
- /* env = ctpl_environ_new (); */
- /* ctpl_environ_push_string (env, "head", ""); */
- /* ctpl_environ_push_string (env, "body_tag", ""); */
- /* ctpl_environ_push_string (env, "body", content); */
+ if (!(str = tmpl_template_expand_string (tmpl, scope, &error)))
+ {
+ g_warning ("Error on rendering page: %s", error->message);
+ return;
+ }
- filename = g_build_filename (commons->ctpldir, "template.ctpl", NULL);
- /* g_string_printf (commons->out, "%s", */
- /* solipa_ctpl_get_filled (commons->solipa_ctpl, filename, env)); */
- g_free (filename);
+ g_string_printf (commons->out, "%s", str);
- g_free (content);
+ g_free (str);
}
gchar *filename;
+ ZakConfi *confi;
+
gchar *str;
/* inizializzazione commons */
/* reading configuration file */
filename = g_build_filename (commons->configdir, "zakjukebox.conf", NULL);
- commons->confi = zak_confi_new (g_strdup_printf ("file://%s", filename));
- if (commons->confi == NULL)
+ confi = zak_confi_new (g_strdup_printf ("file://%s", filename));
+ if (confi == NULL)
{
g_error ("Unable to load the configuration file: %s", filename);
g_free (filename);
commons->zcgi_session = zak_cgi_session_new (commons->zcgi_main, "/zakjukebox", NULL);
+ commons->root = zak_confi_path_get_value (confi, "DIR/root");
+
/* Routing */
zcgi_url = zak_cgi_url_new (commons->zcgi_main);