summaryrefslogtreecommitdiffstatshomepage
path: root/includes/js/dojox/dtl/_Templated.js
diff options
context:
space:
mode:
authorGravatar mensonge2008-11-14 15:39:19 +0000
committerGravatar mensonge2008-11-14 15:39:19 +0000
commit1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch)
tree3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dojox/dtl/_Templated.js
parent104d59099e048688c4dbac37d72137006e396558 (diff)
downloadscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz
scuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.zip
Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojox/dtl/_Templated.js')
-rw-r--r--includes/js/dojox/dtl/_Templated.js93
1 files changed, 0 insertions, 93 deletions
diff --git a/includes/js/dojox/dtl/_Templated.js b/includes/js/dojox/dtl/_Templated.js
deleted file mode 100644
index 1472fe9..0000000
--- a/includes/js/dojox/dtl/_Templated.js
+++ /dev/null
@@ -1,93 +0,0 @@
-if(!dojo._hasResource["dojox.dtl._Templated"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
-dojo._hasResource["dojox.dtl._Templated"] = true;
-dojo.provide("dojox.dtl._Templated");
-dojo.require("dijit._Templated");
-dojo.require("dojox.dtl._base");
-
-dojo.declare("dojox.dtl._Templated", dijit._Templated, {
- _dijitTemplateCompat: false,
- buildRendering: function(){
- var node;
-
- if(this.domNode && !this._template){
- return;
- }
-
- if(!this._template){
- var t = this.getCachedTemplate(
- this.templatePath,
- this.templateString,
- this._skipNodeCache
- );
- if(t instanceof dojox.dtl.Template) {
- this._template = t;
- }else{
- node = t;
- }
- }
- if(!node){
- var nodes = dijit._Templated._createNodesFromText(
- this._template.render(new dojox.dtl._Context(this))
- );
- for(var i = 0; i < nodes.length; i++){
- if(nodes[i].nodeType == 1){
- node = nodes[i];
- break;
- }
- }
- }
-
- this._attachTemplateNodes(node);
-
- var source = this.srcNodeRef;
- if(source && source.parentNode){
- source.parentNode.replaceChild(node, source);
- }
-
- if(this.widgetsInTemplate){
- var childWidgets = dojo.parser.parse(node);
- this._attachTemplateNodes(childWidgets, function(n,p){
- return n[p];
- });
- }
-
- if(this.domNode){
- dojo.place(node, this.domNode, "before");
- this.destroyDescendants();
- dojo._destroyElement(this.domNode);
- }
- this.domNode = node;
-
- this._fillContent(source);
- },
- _templateCache: {},
- getCachedTemplate: function(templatePath, templateString, alwaysUseString){
- // summary:
- // Layer for dijit._Templated.getCachedTemplate
- var tmplts = this._templateCache;
- var key = templateString || templatePath;
- if(tmplts[key]){
- return tmplts[key];
- }
-
- templateString = dojo.string.trim(templateString || dijit._Templated._sanitizeTemplateString(dojo._getText(templatePath)));
-
- if( this._dijitTemplateCompat &&
- (alwaysUseString || templateString.match(/\$\{([^\}]+)\}/g))
- ){
- templateString = this._stringRepl(templateString);
- }
-
- // If we always use a string, or find no variables, just store it as a node
- if(alwaysUseString || !templateString.match(/\{[{%]([^\}]+)[%}]\}/g)){
- return (tmplts[key] = dijit._Templated._createNodesFromText(templateString)[0]);
- }else{
- return (tmplts[key] = new dojox.dtl.Template(templateString));
- }
- },
- render: function(){
- this.buildRendering();
- }
-});
-
-}