- Author:
- David Nickerson <david.nickerson@gmail.com>
- Date:
- 2021-09-16 00:41:19+12:00
- Desc:
- Updating Noble 1962 model:
* Exposing the membrane potential to the top-level model;
* adding SED-ML for the paced and pacemaker variants of the model.
Using OpenCOR Snapshot release 2021-09-14.
- Permanent Source URI:
- https://models.fieldml.org/workspace/a1/rawfile/f954e59183314cd37f86c8832dc81317d01c8ec5/dojo-presentation/js/dojo/dojox/dtl/contrib/html.js
dojo.provide("dojox.dtl.contrib.html");
dojo.require("dojox.dtl.html");
(function(){
var dd = dojox.dtl;
var ddch = dd.contrib.html;
ddch.HtmlNode = dojo.extend(function(name){
this.contents = new dd._Filter(name);
this._div = document.createElement("div");
this._lasts = [];
},
{
_cache: {},
render: function(context, buffer){
var text = this.contents.resolve(context);
if(text){
text = text.replace(/<(\/?script)/ig, '<$1').replace(/\bon[a-z]+\s*=/ig, '');
if(this._rendered && this._last != text){
buffer = this.unrender(context, buffer);
}
this._last = text;
// This can get reset in the above tag
if(!this._rendered){
this._rendered = true;
var div = this._div;
div.innerHTML = text;
var children = div.childNodes;
while(children.length){
var removed = div.removeChild(children[0]);
this._lasts.push(removed);
buffer = buffer.concat(removed);
}
}
}
return buffer;
},
unrender: function(context, buffer){
if(this._rendered){
this._rendered = false;
this._last = "";
for(var i = 0, node; node = this._lasts[i++];){
buffer = buffer.remove(node);
dojo._destroyElement(node);
}
this._lasts = [];
}
return buffer;
},
clone: function(buffer){
return new this.constructor(this.contents.getExpression());
}
});
ddch.StyleNode = dojo.extend(function(styles){
this.contents = {};
this._styles = styles;
for(var key in styles){
this.contents[key] = new dd.Template(styles[key]);
}
},
{
render: function(context, buffer){
for(var key in this.contents){
dojo.style(buffer.getParent(), key, this.contents[key].render(context));
}
return buffer;
},
unrender: function(context, buffer){
return buffer;
},
clone: function(buffer){
return new this.constructor(this._styles);
}
});
dojo.mixin(ddch, {
html: function(parser, text){
var parts = text.split(" ", 2);
return new ddch.HtmlNode(parts[1]);
},
tstyle: function(parser, text){
var styles = {};
text = text.replace(/^tstyle\s+/, "");
var rules = text.split(/\s*;\s*/g);
for(var i = 0, rule; rule = rules[i]; i++){
var parts = rule.split(/\s*:\s*/g);
var key = parts[0];
var value = parts[1];
if(value.indexOf("{{") == 0){
styles[key] = value;
}
}
return new ddch.StyleNode(styles);
}
});
dd.register.tags("dojox.dtl.contrib", {
"html": ["html", "attr:tstyle"]
});
})();