mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 15:45:13 +00:00
Complete conrefs in parsing
This commit is contained in:
+1
-1
@@ -291,7 +291,7 @@ Book.prototype.isMultilingual = function() {
|
||||
Book.prototype.isInBook = function(filename) {
|
||||
return pathUtil.isInRoot(
|
||||
this.root,
|
||||
this.resolve(filename)
|
||||
filename
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
+1
-1
@@ -51,7 +51,7 @@ FS.prototype.readdir = function(folder) {
|
||||
|
||||
// Allocate a new temporary directory
|
||||
FS.prototype.tmpdir = function() {
|
||||
return path.resolve(os.tmpdir(), _.uniqueId('gitbook_tmp_'));
|
||||
return path.resolve(os.tmpdir(), 'gitbook_tmp_'+Date.now());
|
||||
};
|
||||
|
||||
// List files in a directory
|
||||
|
||||
+23
-1
@@ -2,6 +2,7 @@ var _ = require('lodash');
|
||||
var path = require('path');
|
||||
var nunjucks = require('nunjucks');
|
||||
var parsers = require('gitbook-parsers');
|
||||
var escapeStringRegexp = require('escape-string-regexp');
|
||||
|
||||
var Promise = require('../utils/promise');
|
||||
var error = require('../utils/error');
|
||||
@@ -333,7 +334,7 @@ TemplateEngine.prototype.renderString = function(content, context, options) {
|
||||
}
|
||||
|
||||
// Replace shortcuts
|
||||
//content = this.applyShortcuts(options.type, content);
|
||||
content = this.applyShortcuts(options.type, content);
|
||||
|
||||
return Promise.nfcall(this.env.renderString.bind(this.env), content, context, options)
|
||||
.fail(function(err) {
|
||||
@@ -343,5 +344,26 @@ TemplateEngine.prototype.renderString = function(content, context, options) {
|
||||
});
|
||||
};
|
||||
|
||||
// Apply a shortcut to a string
|
||||
TemplateEngine.prototype.applyShortcut = function(content, shortcut) {
|
||||
var regex = new RegExp(
|
||||
escapeStringRegexp(shortcut.start) + '([\\s\\S]*?[^\\$])' + escapeStringRegexp(shortcut.end),
|
||||
'g'
|
||||
);
|
||||
return content.replace(regex, function(all, match) {
|
||||
return '{% '+shortcut.tag.start+' %}'+ match + '{% '+shortcut.tag.end+' %}';
|
||||
});
|
||||
};
|
||||
|
||||
// Apply all shortcuts to a template
|
||||
TemplateEngine.prototype.applyShortcuts = function(type, content) {
|
||||
return _.chain(this.shortcuts)
|
||||
.filter(function(shortcut) {
|
||||
return _.contains(shortcut.parsers, type);
|
||||
})
|
||||
.reduce(this.applyShortcut, content)
|
||||
.value();
|
||||
};
|
||||
|
||||
|
||||
module.exports = TemplateEngine;
|
||||
|
||||
@@ -16,16 +16,16 @@ var Loader = nunjucks.Loader.extend({
|
||||
this.git = new Git(this.fs.tmpdir());
|
||||
},
|
||||
|
||||
getSource: function(soureURL, callback) {
|
||||
getSource: function(sourceURL, callback) {
|
||||
var that = this;
|
||||
|
||||
this.git.resolveFile(soureURL)
|
||||
this.git.resolve(sourceURL)
|
||||
.then(function(filepath) {
|
||||
// Is local file
|
||||
if (!filepath) {
|
||||
filepath = that.book.resolve(soureURL);
|
||||
filepath = that.book.resolve(sourceURL);
|
||||
} else {
|
||||
that.book.log.debug.ln('resolve from git', soureURL, 'to', filepath);
|
||||
that.book.log.debug.ln('resolve from git', sourceURL, 'to', filepath);
|
||||
}
|
||||
|
||||
// Read file from absolute path
|
||||
|
||||
+6
-6
@@ -13,30 +13,30 @@ function enforce(err) {
|
||||
// Random error wrappers during parsing/generation
|
||||
var ParsingError = WrappedError({
|
||||
message: 'Parsing Error: {origMessage}',
|
||||
type: 'server.parsing-failed'
|
||||
type: 'parse'
|
||||
});
|
||||
var GenerationError = WrappedError({
|
||||
message: 'Generation Error: {origMessage}',
|
||||
type: 'server.parsing-failed'
|
||||
type: 'generate'
|
||||
});
|
||||
|
||||
// Error when output generator does not exists
|
||||
var GeneratorNotFoundError = TypedError({
|
||||
type: 'server.404',
|
||||
type: 'generator.not-found',
|
||||
message: 'Generator "{generator}" does not exists',
|
||||
generator: null
|
||||
});
|
||||
|
||||
// A file does not exists
|
||||
var FileNotFoundError = TypedError({
|
||||
type: 'server.404',
|
||||
type: 'file.not-found',
|
||||
message: 'No "{filename}" file (or is ignored)',
|
||||
filename: null
|
||||
});
|
||||
|
||||
// A file is outside the scope
|
||||
var FileOutOfScopeError = TypedError({
|
||||
type: 'server.404',
|
||||
type: 'file.out-of-scope',
|
||||
message: '"{filename}" not in "{root}"',
|
||||
filename: null,
|
||||
root: null,
|
||||
@@ -46,7 +46,7 @@ var FileOutOfScopeError = TypedError({
|
||||
// Error for nunjucks templates
|
||||
var TemplateError = WrappedError({
|
||||
message: 'Error compiling template "{filename}": {origMessage}',
|
||||
type: 'client.template-failed',
|
||||
type: 'template',
|
||||
filename: null
|
||||
});
|
||||
|
||||
|
||||
@@ -51,6 +51,11 @@ Git.prototype.clone = function(host, ref) {
|
||||
|
||||
// Get file from a git repo
|
||||
Git.prototype.resolve = function(giturl) {
|
||||
// Path to a file in a git repo?
|
||||
if (!Git.isUrl(giturl)) {
|
||||
if (this.resolveRoot(giturl)) return Promise(giturl);
|
||||
return Promise(null);
|
||||
}
|
||||
if (_.isString(giturl)) giturl = Git.parseUrl(giturl);
|
||||
if (!giturl) return Promise(null);
|
||||
|
||||
|
||||
+2
-3
@@ -47,9 +47,8 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "1.5.0",
|
||||
"mocha": "2.3.2",
|
||||
"should": "7.1.0",
|
||||
"should-promised": "0.3.1",
|
||||
"mocha": "2.4.5",
|
||||
"should": "8.2.2",
|
||||
"gulp": "^3.8.11",
|
||||
"gulp-rename": "^1.2.2",
|
||||
"gulp-uglify": "1.1.0",
|
||||
|
||||
@@ -5,7 +5,6 @@ var tmp = require('tmp');
|
||||
var path = require('path');
|
||||
|
||||
var should = require('should');
|
||||
require('should-promised');
|
||||
|
||||
var Book = require('../').Book;
|
||||
var Output = require('../lib/output');
|
||||
|
||||
+40
-9
@@ -1,32 +1,63 @@
|
||||
var mock = require('./mock');
|
||||
var TemplateEngine = require('../lib/template');
|
||||
|
||||
var pkg = require('../package.json');
|
||||
|
||||
describe('Template', function() {
|
||||
var book, tpl;
|
||||
var book;
|
||||
|
||||
before(function() {
|
||||
return mock.setupDefaultBook()
|
||||
return mock.setupDefaultBook({
|
||||
'test.md': 'World'
|
||||
})
|
||||
.then(function(_book) {
|
||||
book = _book;
|
||||
return book.parse();
|
||||
})
|
||||
.then(function() {
|
||||
tpl = new TemplateEngine(book);
|
||||
});
|
||||
});
|
||||
|
||||
describe('.renderString', function() {
|
||||
it('should render a simple string', function() {
|
||||
return tpl.renderString('Hello World')
|
||||
return book.template.renderString('Hello World')
|
||||
.should.be.fulfilledWith('Hello World');
|
||||
});
|
||||
|
||||
it('should render with variable', function() {
|
||||
return tpl.renderString('Version is {{ gitbook.version }}')
|
||||
return book.template.renderString('Version is {{ gitbook.version }}')
|
||||
.should.be.fulfilledWith('Version is '+pkg.version);
|
||||
});
|
||||
});
|
||||
|
||||
describe('Conrefs Loader', function() {
|
||||
it('should include a local file', function() {
|
||||
return book.template.renderString('Hello {% include "./test.md" %}')
|
||||
.should.be.fulfilledWith('Hello World');
|
||||
});
|
||||
|
||||
it('should include a git url', function() {
|
||||
return book.template.renderString('Hello {% include "./test.md" %}')
|
||||
.should.be.fulfilledWith('Hello World');
|
||||
});
|
||||
|
||||
it('should reject file out of scope', function() {
|
||||
return book.template.renderString('Hello {% include "../test.md" %}')
|
||||
.should.be.rejected();
|
||||
});
|
||||
|
||||
describe('Git Urls', function() {
|
||||
it('should include a file from a git repo', function() {
|
||||
return book.template.renderString('{% include "git+https://gist.github.com/69ea4542e4c8967d2fa7.git/test.md" %}')
|
||||
.should.be.fulfilledWith('Hello from git');
|
||||
});
|
||||
|
||||
it('should handle deep inclusion (1)', function() {
|
||||
return book.template.renderString('{% include "git+https://gist.github.com/69ea4542e4c8967d2fa7.git/test2.md" %}')
|
||||
.should.be.fulfilledWith('First Hello. Hello from git');
|
||||
});
|
||||
|
||||
it('should handle deep inclusion (2)', function() {
|
||||
return book.template.renderString('{% include "git+https://gist.github.com/69ea4542e4c8967d2fa7.git/test3.md" %}')
|
||||
.should.be.fulfilledWith('First Hello. Hello from git');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user