1
+ − 1
// An implementation of Enano's template compiler in Javascript. Same exact API
+ − 2
// as the PHP version - constructor accepts text, then the assign_vars, assign_bool, and run methods.
+ − 3
582
+ − 4
window.templateParser = function(text)
1
+ − 5
{
+ − 6
this.tpl_code = text;
+ − 7
this.tpl_strings = new Object();
+ − 8
this.tpl_bool = new Object();
+ − 9
this.assign_vars = __tpAssignVars;
+ − 10
this.assign_bool = __tpAssignBool;
+ − 11
this.run = __tpRun;
+ − 12
}
+ − 13
582
+ − 14
window.__tpAssignVars = function(vars)
1
+ − 15
{
+ − 16
for(var i in vars)
+ − 17
{
+ − 18
this.tpl_strings[i] = vars[i];
+ − 19
}
+ − 20
}
+ − 21
582
+ − 22
window.__tpAssignBool = function(vars)
1
+ − 23
{
+ − 24
for(var i in vars)
+ − 25
{
+ − 26
this.tpl_bool[i] = ( vars[i] ) ? true : false;
+ − 27
}
+ − 28
}
+ − 29
582
+ − 30
window.__tpRun = function()
1
+ − 31
{
+ − 32
if(typeof(this.tpl_code) == 'string')
+ − 33
{
+ − 34
tpl_code = __tpCompileTemplate(this.tpl_code);
+ − 35
try {
+ − 36
compiled = eval(tpl_code);
+ − 37
}
+ − 38
catch(e)
+ − 39
{
+ − 40
alert(e);
+ − 41
aclDebug(tpl_code);
+ − 42
}
+ − 43
return compiled;
+ − 44
}
+ − 45
return false;
+ − 46
}
+ − 47
582
+ − 48
window.__tpCompileTemplate = function(code)
1
+ − 49
{
+ − 50
// Compile plaintext/template code to javascript code
+ − 51
code = code.replace(/\\/g, "\\\\");
+ − 52
code = code.replace(/\'/g, "\\'");
+ − 53
code = code.replace(/\"/g, '\\"');
+ − 54
code = code.replace(new RegExp(unescape('%0A'), 'g'), '\\n');
+ − 55
code = "'" + code + "'";
+ − 56
code = code.replace(/\{([A-z0-9_-]+)\}/ig, "' + this.tpl_strings['$1'] + '");
212
30b857a6b811
Reworked comment system to not use HACKISH FIXES; AJAX comment framework is completely localized now
Dan
diff
changeset
+ − 57
code = code.replace(/\{lang:([a-z0-9_]+)\}/g, "' + $lang.get('$1') + '");
832
7152ca0a0ce9
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
Dan
diff
changeset
+ − 58
code = code.replace(/\<!-- IFSET ([A-z0-9_-]+) --\>([\s\S]*?)\<!-- BEGINELSE \1 --\>([\s\S]*?)\<!-- END \1 --\>/ig, "' + ( ( typeof(this.tpl_strings['$1']) == 'string' ) ? '$2' : '$3' ) + '");
7152ca0a0ce9
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
Dan
diff
changeset
+ − 59
code = code.replace(/\<!-- IFSET ([A-z0-9_-]+) --\>([\s\S]*?)\<!-- END \1 --\>/ig, "' + ( ( typeof(this.tpl_strings['$1']) == 'string' ) ? '$2' : '' ) + '");
1
+ − 60
code = code.replace(/\<!-- BEGIN ([A-z0-9_-]+) --\>([\s\S]*?)\<!-- BEGINELSE \1 --\>([\s\S]*?)\<!-- END \1 --\>/ig, "' + ( ( this.tpl_bool['$1'] == true ) ? '$2' : '$3' ) + '");
+ − 61
code = code.replace(/\<!-- BEGIN ([A-z0-9_-]+) --\>([\s\S]*?)\<!-- END \1 --\>/ig, "' + ( ( this.tpl_bool['$1'] == true ) ? '$2' : '' ) + '");
+ − 62
return code;
+ − 63
}
+ − 64
582
+ − 65
window.__tpExtractVars = function(code)
1
+ − 66
{
+ − 67
code = code.replace('\\', "\\\\");
+ − 68
code = code.replace("'", "\\'");
+ − 69
code = code.replace('"', '\\"');
+ − 70
code = code.replace(new RegExp(unescape('%0A'), 'g'), "\\n");
+ − 71
code = code.match(/\<!-- VAR ([A-z0-9_-]+) --\>([\s\S]*?)\<!-- ENDVAR \1 -->/g);
+ − 72
code2 = '';
+ − 73
for(var i in code)
+ − 74
if(typeof(code[i]) == 'string')
+ − 75
code2 = code2 + code[i];
+ − 76
code = code2.replace(/\<!-- VAR ([A-z0-9_-]+) --\>([\s\S]*?)\<!-- ENDVAR \1 -->/g, "'$1' : \"$2\",");
+ − 77
code = '( { ' + code + ' "________null________" : false } )';
+ − 78
vars = eval(code);
+ − 79
return vars;
+ − 80
}
+ − 81