From a9ce8393e41fae83b3962723961595e8ffd6da5e Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Thu, 21 Nov 2013 15:05:45 -0500 Subject: [PATCH] added footer.build and page.load hooks --- app.js | 4 +++- public/src/ajaxify.js | 3 ++- public/templates/footer.tpl | 1 + src/plugins.js | 2 +- src/webserver.js | 6 +++++- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/app.js b/app.js index e3e8457545..374c198bf9 100644 --- a/app.js +++ b/app.js @@ -113,7 +113,9 @@ ], customTemplates); - templates.ready(webserver.init); + plugins.ready(function() { + templates.ready(webserver.init); + }); Notifications.init(); } else { diff --git a/public/src/ajaxify.js b/public/src/ajaxify.js index f233627fde..1052d03541 100644 --- a/public/src/ajaxify.js +++ b/public/src/ajaxify.js @@ -80,7 +80,8 @@ var ajaxify = {}; hook: 'page.load', args: { template: tpl_url, - url: '/' + url + url: url, + uid: app.uid } } }); diff --git a/public/templates/footer.tpl b/public/templates/footer.tpl index 85343f1e32..de5c022e5b 100644 --- a/public/templates/footer.tpl +++ b/public/templates/footer.tpl @@ -60,6 +60,7 @@ diff --git a/src/plugins.js b/src/plugins.js index 97394884db..029a666183 100644 --- a/src/plugins.js +++ b/src/plugins.js @@ -284,7 +284,7 @@ var fs = require('fs'), winston.warn("Plugin: " + file + " is corrupted or invalid. Please check plugin.json for errors.") return next(err, null); } - + _self.isActive(config.id, function(err, active) { if (err) next(new Error('no-active-state')); diff --git a/src/webserver.js b/src/webserver.js index cb0613b60d..c6ddb36d02 100644 --- a/src/webserver.js +++ b/src/webserver.js @@ -309,7 +309,11 @@ var path = require('path'), // translate all static templates served by webserver here. ex. footer, logout translator.translate(templates.footer.toString(), function(parsedTemplate) { - templates.footer = parsedTemplate; + plugins.fireHook('filter:footer.build', '', function(err, appendHTML) { + templates.footer = templates.footer.parse({ + footerHTML: appendHTML + }); + }); }); translator.translate(templates.logout.toString(), function(parsedTemplate) { templates.logout = parsedTemplate;