summaryrefslogtreecommitdiffstats
path: root/lib/template.js
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2015-01-24 18:04:03 +0100
committerSamy Pessé <samypesse@gmail.com>2015-01-24 18:04:03 +0100
commit796dd4c13ac55e8b6232cbf38d49d9cf8c6676d2 (patch)
treeebbb0853571aec61384188402f673b9834f32a88 /lib/template.js
parente02f29e76392660b31be87063649abd4adb22826 (diff)
downloadgitbook-796dd4c13ac55e8b6232cbf38d49d9cf8c6676d2.zip
gitbook-796dd4c13ac55e8b6232cbf38d49d9cf8c6676d2.tar.gz
gitbook-796dd4c13ac55e8b6232cbf38d49d9cf8c6676d2.tar.bz2
Add base loader to resolve git dependencies
Diffstat (limited to 'lib/template.js')
-rw-r--r--lib/template.js37
1 files changed, 36 insertions, 1 deletions
diff --git a/lib/template.js b/lib/template.js
index 315a373..76bb9ab 100644
--- a/lib/template.js
+++ b/lib/template.js
@@ -1,15 +1,50 @@
var _ = require("lodash");
var Q = require("q");
+var path = require("path");
var nunjucks = require("nunjucks");
+var git = require("./utils/git");
+var fs = require("./utils/fs");
var pkg = require("../package.json");
+
+// The loader should handle relative and git url
+var BookLoader = nunjucks.Loader.extend({
+ async: true,
+
+ init: function(book) {
+ this.book = book;
+ },
+
+ getSource: function(fileurl, callback) {
+ var that = this;
+
+ git.resolveFile(fileurl)
+ .then(function(filepath) {
+ // Is local file
+ if (!filepath) filepath = path.resolve(that.book.root, fileurl);
+ else that.book.logDebug("resolve from git", fileurl, "to", filepath)
+
+ // Read file from absolute path
+ return fs.readFile(filepath)
+ .then(function(source) {
+ return {
+ src: source.toString(),
+ path: filepath
+ }
+ });
+ })
+ .nodeify(callback);
+ }
+});
+
+
var TemplateEngine = function(book) {
this.book = book;
// Nunjucks env
this.env = new nunjucks.Environment(
- new nunjucks.FileSystemLoader(book.root),
+ new BookLoader(book),
{
// Escaping is done after by the markdown parser
autoescape: false