<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -9,13 +9,7 @@
 
 &lt;h2&gt;PURE Unobtrusive Rendering Engine for HTML&lt;/h2&gt;
 
-&lt;h3&gt;Quick Links&lt;/h3&gt;
-
 PURE Website: &lt;a href=&quot;http://beebole.com/pure/&quot; target=&quot;_blank&quot;&gt;http://beebole.com/pure/&lt;/a&gt;&lt;br /&gt;
-Getting Started: &lt;a href=&quot;http://beebole.com/pure/getting_started.html&quot; target=&quot;_blank&quot;&gt;http://beebole.com/pure/getting_started.html&lt;/a&gt;&lt;br /&gt;
-News: &lt;a href=&quot;http://beebole.com/blog/&quot; target=&quot;_blank&quot;&gt;http://beebole.com/blog/&lt;/a&gt;&lt;br /&gt;
-Download page: &lt;a href=&quot;http://code.google.com/p/pure/downloads/list&quot; target=&quot;_blank&quot;&gt;http://code.google.com/p/pure/downloads/list&lt;/a&gt;&lt;br /&gt;
-Technical documentation: &lt;a href=&quot;http://code.google.com/p/pure/w/list&quot; target=&quot;_blank&quot;&gt;http://code.google.com/p/pure/w/list&lt;/a&gt;&lt;br /&gt;
 
 &lt;h3&gt;What is PURE about?&lt;/h3&gt;
 &lt;ul&gt;&lt;li&gt;Build and render your templates with HTML, CSS and JavaScript, nothing else.&lt;/li&gt;
@@ -32,7 +26,6 @@ Mic Cvilic&lt;br /&gt;
 Hughes Waroquier&lt;br /&gt;
 Yves Hiernaux&lt;br /&gt;
 guest: Seb Cvilic&lt;br /&gt;
-Contact: &lt;a href=&quot;mailto:info@beebole.com&quot;&gt;info@beebole.com&lt;/a&gt;
 
 &lt;h3&gt;COPYRIGHT&lt;/h3&gt;
 Copyright (C) 2008 Michael Cvilic - BeeBole.  All Rights Reserved</diff>
      <filename>README.html</filename>
    </modified>
    <modified>
      <diff>@@ -74,7 +74,7 @@
 			'tbody tr td[onmouseout]' : '&quot;swapStyle(this, false);&quot;',
 			'tbody tr td[style]':'\'cursor:pointer\'',
 			
-			'tbody tr[class]+': 
+			'tbody tr[class]': 
 				function(context, items, pos){
 					var oddEven =  (pos % 2 == 0) ? 'even' : 'odd';
 					var firstLast = (pos == 0) ? 'first': (pos == items.length -1) ? 'last':'';</diff>
      <filename>docs/js/allExamples.js</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@
 
     Copyright (c) 2008 Michael Cvilic - BeeBole.com
 
-    version: 1.5
+    version: 1.5+
 
 * * * * * * * * * * * * * * * * * * * * * * * * * */
 
@@ -327,21 +327,21 @@ var pure  = window.$p = window.pure ={
 		div.appendChild(elm);
 		return div.innerHTML;})();},
 
-	map:function(directives, HTML, noClone){
+	map:function(directives, html, noClone){
 		// a directive is a tuple{ dom selector, value }
-		// returns the HTML with the directives as pure:&lt;attr&gt;=&quot;...&quot;
-		if(!HTML[0] &amp;&amp; HTML.length == 0){
+		// returns the html with the directives as pure:&lt;attr&gt;=&quot;...&quot;
+		if(!html[0] &amp;&amp; html.length == 0){
 			this.msg('no_template_found');
 			return false;}
 
-		var fnId, multipleDir=[], currentDir, autoRenderAtt = this.autoRenderAtt;
-
+		var fnId, multipleDir=[], currentDir;
 		var clone;
 		if (noClone){
-			clone = (HTML[0])? HTML[0] : HTML;}
+			clone = (html[0])? html[0] : html;}
 		else{
-			clone = (HTML[0])? HTML[0].cloneNode(true) : HTML.cloneNode(true);}
+			clone = (html[0])? html[0].cloneNode(true) : html.cloneNode(true);}
 			
+		autoRender = clone.getAttribute(ns + 'autoRender')||false;
 		for (var selector in directives){ // for each directive set the corresponding pure:&lt;attr&gt;
 			currentDir = directives[selector];
 			if(this.utils.isTypeOfArray(currentDir)){//check if an array of directives is provided
@@ -394,7 +394,8 @@ var pure  = window.$p = window.pure ={
 						currentDir = original + '|p|' + currentDir;}
 
 					target.setAttribute( ns + attName, currentDir);
-					if(isAttr &amp;&amp; attName != 'nodeValue' &amp;&amp; repetition &lt; 0 &amp;&amp; !append &amp;&amp; !prepend){
+					//hello
+					if(isAttr &amp;&amp; attName != 'nodeValue' &amp;&amp; (attName!='class' &amp;&amp; autoRender) &amp;&amp; repetition &lt; 0 &amp;&amp; !append &amp;&amp; !prepend){
 						try{ //some cross browser attributes issues -&gt; try catch nothing
 							target.removeAttribute(attName);}
 						catch(e){}}}</diff>
      <filename>js/pure.js</filename>
    </modified>
    <modified>
      <diff>@@ -1,2 +1,2 @@
-/*  PURE Unobtrusive Rendering Engine for HTML - Copyright (c) 2008 Michael Cvilic - BeeBole.com - version: 1.5 - minified by http://dean.edwards.name/packer/ */
-var pure=window.$p=window.pure={ns:(/MSIE/.test(navigator.userAgent))?'pure_':'pure:',find:function(){this.msg('library_needed')},getRuntime:function(){var src=['var pure =window.$p = window.pure ={','$c:',this.$c.toString(),',','$f:[',this.$f.toString(),'],','render:',this.render.toString(),',','compiledFunctions:[]};'];for(var fName in this.compiledFunctions){var htmlFunction='$p.compiledFunctions[\''+fName+'\']';src.push(htmlFunction+'={};'+htmlFunction+'.compiled=');src.push(this.compiledFunctions[fName].compiled.toString()+';')}var runtime=src.join('');var txt=document.getElementById('pureRuntime');if(txt){txt.value=runtime;txt.select()}else{txt=document.createElement('TEXTAREA');txt.value=runtime;txt.id='pureRuntime';document.body.appendChild(txt);txt.select()}},$f:{cnt:0},$c:function(context,path){if(!context)context={};if(typeof context=='object'){var aPath=path.split(/\./);var value=context[aPath[0]];if(value=='undefined')value=window[aPath[0]];for(var i=1;i&lt;aPath.length;i++){if(!value){i=aPath.length;continue}value=value[aPath[i]]}}if(!value&amp;&amp;value!=0)value='&quot;&quot;';return value},render:function(html,context,directives){var fn;if(typeof html!='string'){var mapped=(directives)?this.map(directives,html):html.cloneNode(true);fn=this.compiledFunctions.length||0;this.compile(mapped,fn,context,false)}else{fn=html}if(this.compiledFunctions[fn]){return this.compiledFunctions[fn].compiled(context)}else{this.msg('HTML_does_not_exist',fName)}},autoRenderAtt:(/MSIE/.test(navigator.userAgent))?'className':'class',autoRender:function(html,context,directives){if(typeof html!='string'){html.setAttribute(this.ns+'autoRender','true')}return this.render(html,context,directives)},compiledFunctions:{},domCleaningRules:[{what:new RegExp(window.location.toString().substring(0,window.location.toString().indexOf(window.location.pathname)),'g'),by:''},{what:/\&gt;\s+\&lt;/g,by:'&gt;&lt;'},{what:/^\s+/,by:''},{what:/\n/g,by:''},{what:/\&lt;\?xml:namespace[^&gt;]*beebole[^\&gt;]*\&gt;/gi,by:''}],utils:{nodeValues:[],repeats:[],autoRenderAtts:[],isTypeOfArray:function(obj){return typeof obj.length==='number'&amp;&amp;!(obj.propertyIsEnumerable('length'))&amp;&amp;typeof obj.splice==='function'},autoMap:function(n,ns,autoRender,context,autoRenderAtt,openArray){var repeatAtt=ns+'repeat';var nodeValueAtt=ns+'nodeValue';var replaced,replacer,replacedSrc,nodeValueSrc,toMap,k,j,i,att,repeatPrefix,prop,attValue;if(autoRender=='true'){attValue=n.getAttribute(autoRenderAtt);if(attValue){toMap=attValue.replace(/^\d|\s\d/g,'').split(/\s+/);for(j=0;j&lt;toMap.length;j++){repeatPrefix='';att=toMap[j].split(/@/);prop=context[att[0]];if(!prop){if(openArray.length&gt;0){for(k=0;k&lt;openArray.length;k++){prop=(openArray[k]=='context')?context[0][att[0]]:context[openArray[k]][0][att[0]];if(prop){repeatPrefix=openArray[k];break}else if(/context/i.test(att[0])){prop=true;j=100}}}else if(/context/i.test(att[0])){prop=context}}if(prop){if(typeof prop.length==='number'&amp;&amp;!(prop.propertyIsEnumerable('length'))&amp;&amp;typeof prop.splice==='function'){openArray.push(att[0]);n.setAttribute(ns+'repeat',att[0]+'&lt;-'+att[0])}else{if(att[1]){try{n.removeAttribute(att[1])}catch(e){}}else{att.push('nodeValue')};if(!n.getAttribute(ns+att[1])){(repeatPrefix=='')?n.setAttribute(ns+att[1],att[0]):n.setAttribute(ns+att[1],repeatPrefix+'.'+att[0])}}}}var fixAtt=(/MSIE/.test(navigator.userAgent)&amp;&amp;autoRenderAtt=='className')?'class':autoRenderAtt;if(/\|(a|p)\|/.test(n.getAttribute(ns+fixAtt)))n.removeAttribute(autoRenderAtt)}}var isNodeValue=n.getAttribute(ns+'nodeValue');if(isNodeValue)this.nodeValues.push(n);var isRepeat=n.getAttribute(ns+'repeat');if(isRepeat)this.repeats.push(n)},nodeWalk:function(node,ns,context,autoRenderAtt){this.repeats=[];this.nodeValues=[];var autoRender=node.getAttribute(ns+'autoRender');node.removeAttribute(ns+'autoRender');var openArray=[];var c=node,n=null;do{if(c.nodeType==1)this.autoMap(c,ns,autoRender,context,autoRenderAtt,openArray);n=c.firstChild;if(n==null){n=c.nextSibling}if(n==null){var tmp=c;do{n=tmp.parentNode;if(n==node)break;tmp=n;n=n.nextSibling}while(n==null)}c=n}while(c!=node);var repeatAtt=ns+'repeat';var nodeValueAtt=ns+'nodeValue';var replaced,replacer,replacedSrc,nodeValueSrc;for(var j=0;j&lt;this.nodeValues.length;j++){try{n=this.nodeValues[j];nodeValueSrc=n.getAttribute(nodeValueAtt);if(nodeValueSrc){n.innerHTML=nodeValueAtt+'=&quot;'+nodeValueSrc+'&quot;';n.removeAttribute(nodeValueAtt)}}catch(e){}}for(var i=0;i&lt;this.repeats.length;i++){n=this.repeats[this.repeats.length-i-1];try{replacedSrc=n.getAttribute(repeatAtt);if(replacedSrc){replaced=n.cloneNode(true);replaced.removeAttribute(repeatAtt);replacer=document.createElement(repeatAtt);replacer.appendChild(replaced);replacer.setAttribute('source',&quot;&quot;+replacedSrc);n.parentNode.replaceChild(replacer,n)}}catch(e){}}},out:function(content){return['output.push(',content,');'].join('')},strOut:function(content){return['output.push(',&quot;'&quot;,content,&quot;');&quot;].join('')},outputFn:function(attValue,currentLoop){return this.out(attValue+'(context,'+currentLoop+',parseInt('+currentLoop+'Index))')},contextOut:function(path){return['output.push($p.$c(context, ',path,'));'].join('')},isArray:function(attValue,openArrays){var arrIndex=/\[[^\]]*]/.test(attValue);var objProp=attValue.replace(/(&quot;)|(')/g,'').split(/\./);return(arrIndex||openArrays[objProp[0]])?true:false},arrayName:function(pName){var name=pName.match(/\w*/)[0]||'';var subIndex=pName.substring(name.length).replace(/\[\s*]/,'');return name+'['+name+'Index]'+subIndex}},compile:function(HTML,fName,context,noEval){var clone=(HTML[0])?HTML[0].cloneNode(true):HTML.cloneNode(true);var ns=this.ns;this.utils.nodeWalk(clone,ns,context,this.autoRenderAtt);var str=this.outerHTML(clone);str=str.replace(new RegExp('\&lt;\/?:?'+ns+'repeat','gi'),ns+'repeat');var rules=this.domCleaningRules;for(i in rules){str=str.replace(rules[i].what,rules[i].by)}if(!fName&amp;&amp;typeof fName!='number'){this.msg('no_HTML_name_set_for_parsing',str,HTML);return false}this.compiledFunctions[fName]={};var aJS=[['$p.compiledFunctions[&quot;',fName,'&quot;].compiled = function(context){var output = [];'].join('')];var aDom=str.split(ns);var js,wrkStr,rTag=false,rSrc,openArrays=[],usedFn=[],cnt=1,subSrc='',fnId,attOut,spc,suffix,currentLoop,isNodeValue,max,curr,key,offset,isStr=false,attName='',attValue='',arrSrc;for(var j=0;j&lt;aDom.length;j++){wrkStr=aDom[j];if(j==0){aJS.push(this.utils.strOut(wrkStr.substring(0,wrkStr.length)))}else{if(/^repeat[^\&gt;]*\&gt;/i.test(wrkStr)){rTag=wrkStr.match(/^repeat[^\&gt;]*&gt;/i);rSrc=rTag[0].match(/&quot;[^&quot;]*&quot;/);if(rSrc){rSrc=rSrc[0].replace(/&amp;lt;/,'&lt;').replace(/&quot;/g,'').replace(/\s/g,'');subSrc=rSrc.split(/\&lt;-/);currentLoop=subSrc[0];arrSrc=subSrc[1]||'';if(this.utils.isArray(arrSrc,openArrays)){aJS.push('var '+currentLoop+'='+this.utils.arrayName(arrSrc)+';')}else{if(arrSrc.search(/context/i)&gt;-1||arrSrc.length==0)aJS.push('var '+currentLoop+'= context;');else aJS.push('var '+currentLoop+'= $p.$c(context, &quot;'+arrSrc+'&quot;);')}aJS.push('for('+currentLoop+'Index in '+currentLoop+'){');aJS.push(this.utils.strOut(wrkStr.substring(rTag[0].length)));openArrays[currentLoop]=cnt++}else{aJS.push('}');delete openArrays[currentLoop];max=0;for(key in openArrays){curr=openArrays[key];if(curr&gt;max){max=curr;currentLoop=key}}aJS.push(this.utils.strOut(wrkStr.substring(rTag[0].length,wrkStr.length)))}rTag=false;continue}else{attName=wrkStr.substring(0,wrkStr.indexOf('='));attValue=wrkStr.match(/=&quot;&quot;?[^&quot;]*&quot;&quot;?/)[0].substr(2).replace(/&quot;$/,'');offset=attName.length+attValue.length+3;isStr=/^(&quot;|'|&amp;quot;)(.*)(&quot;|'|&amp;quot;)/.test(attValue);if(/&amp;quot;/.test(attValue)){attValue=attValue.replace(/&amp;quot;/g,'&quot;');wrkStr=wrkStr.replace(/&amp;quot;/,'&quot;').replace(/&amp;quot;/,'&quot;')}isNodeValue=/^nodeValue/i.test(wrkStr);(isNodeValue)?attName='nodeValue':aJS.push(this.utils.strOut(attName+'=&quot;'));attOut=attValue.match(/\|(a|p)\|/);suffix=false;spc=(isNodeValue)?'':' ';if(attOut){if(attOut[1]=='a')aJS.push(this.utils.strOut(attValue.substring(0,attOut.index)+spc));else suffix=attValue.substring(0,attOut.index);attValue=attValue.substring(attOut.index+3)}if(/\$f\[(f[0-9]+)]/.test(attValue)){fnId=attValue.match(/\[(f[0-9]+)/)[1];this.compiledFunctions[fName]['$'+fnId]=this.$f[fnId];delete this.$f[fnId];this.$f.cnt--;aJS.push(this.utils.outputFn('this.$'+fnId,currentLoop))}else if(isStr){aJS.push(this.utils.strOut(attValue.substr(1,attValue.length-2)))}else if(this.utils.isArray(attValue,openArrays)){aJS.push(this.utils.out(this.utils.arrayName(attValue)))}else{aJS.push(this.utils.contextOut(&quot;'&quot;+attValue+&quot;'&quot;))}if(suffix!='')aJS.push(this.utils.strOut(spc+suffix));if(!isNodeValue){aJS.push(this.utils.strOut('&quot;'))}}wrkStr=wrkStr.substr(offset);if(wrkStr!='')aJS.push(this.utils.strOut(wrkStr))}}aJS.push('return output.join(&quot;&quot;);}');js=aJS.join('');if(!noEval){try{eval(js)}catch(e){this.msg('parsing_error',[e.message,js]);return false}}return js},outerHTML:function(elm){return elm.outerHTML||(function(){var div=document.createElement('div');div.appendChild(elm);return div.innerHTML})()},map:function(directives,HTML,noClone){if(!HTML[0]&amp;&amp;HTML.length==0){this.msg('no_template_found');return false}var fnId,multipleDir=[],currentDir,autoRenderAtt=this.autoRenderAtt;var clone;if(noClone){clone=(HTML[0])?HTML[0]:HTML}else{clone=(HTML[0])?HTML[0].cloneNode(true):HTML.cloneNode(true)}for(var selector in directives){currentDir=directives[selector];if(this.utils.isTypeOfArray(currentDir)){multipleDir=currentDir}else{multipleDir=[];multipleDir.push(currentDir)}for(var i=0;i&lt;multipleDir.length;i++){currentDir=multipleDir[i];var prepend,append;if(prepend=/^\+/.test(selector)){selector=selector.substring(1,selector.length)};if(append=/\+$/.test(selector)){selector=selector.substring(0,selector.length-1)};var isAttr=selector.match(/\[[^\]]*\]/);if(/^\[/.test(selector)){target=clone}else{var target=this.find(selector,clone);if(!target&amp;&amp;isAttr){target=this.find(selector.substr(0,isAttr.index),clone)}}if(target){if(typeof currentDir=='function'){fnId='f'+this.$f.cnt++;this.$f[fnId]=currentDir;currentDir='$f['+fnId+']'}var attName='nodeValue';var repetition=-1,ns=this.ns;if(isAttr){attName=selector.substring(isAttr.index+1,isAttr[0].length+isAttr.index-1);if(attName.indexOf(ns)&gt;-1)attName=attName.substring(ns.length)}else{repetition=currentDir.search(/w*&lt;-w*/);if(repetition&gt;-1)attName='repeat'}if(/^&quot;/.test(currentDir)&amp;&amp;/&quot;$/.test(currentDir)){currentDir='\''+currentDir.substring(1,currentDir.length-1)+'\''}var fixAtt=(/MSIE/.test(navigator.userAgent)&amp;&amp;attName=='class')?'className':attName;var original=target.getAttribute(fixAtt);if(append&amp;&amp;original){currentDir=original+'|a|'+currentDir}else if(prepend&amp;&amp;original){currentDir=original+'|p|'+currentDir}target.setAttribute(ns+attName,currentDir);if(isAttr&amp;&amp;attName!='nodeValue'&amp;&amp;repetition&lt;0&amp;&amp;!append&amp;&amp;!prepend){try{target.removeAttribute(attName)}catch(e){}}}else{var parentName=[clone.nodeName];if(clone.id!='')parentName.push('#'+clone.id);if(clone.className!='')parentName.push('#'+clone.className);this.msg('element_to_map_not_found',[selector,parentName.join('')],clone)}}}return clone},messages:{'element_to_map_not_found':&quot;PURE - Cannot find the element \&quot;&amp;\&quot; in \&quot;&amp;\&quot;&quot;,'place_runtime_container':'To collect the PURE runtime, place a &lt;textarea id=\&quot;pureRuntime\&quot;&gt;&lt;/textarea&gt; in your document.','no_HTML_selected':'The map function didn\'t receive a valid HTML element','no_HTML_name_set_for_parsing':'A name is needed when parsing the HTML: &amp;','HTML_does_not_exist':'The HTML: &amp; does not exist or is not yet compiled','library_needed':'In order to run PURE, you need a JS library such as: dojo, domAssistant, jQuery, mootools, prototype,...','parsing_error':'Parsing error: \&quot;&amp;\&quot; in: &amp;'},msg:function(msgId,msgParams,where){var msg=this.messages[msgId]||msgId;var re=/&amp;/;if(msg!=msgId&amp;&amp;msgParams){if(typeof msgParams=='string'){msg=msg.replace(re,msgParams)}else{for(var i=0;i&lt;msgParams.length;i++){msg=msg.replace(re,msgParams[i])}}}var msgDiv=document.getElementById('pureMsg');if(msgDiv){msgDiv.innerHTML=[msg,'&lt;br /&gt;',msgDiv.innerHTML].join('')}else{alert(msg)}}};try{if(jQuery){jQuery.parse[0]=/^(\[) *@?([\w:-]+) *([!*$^~=]*) *('?&quot;?)(.*?)\4 *\]/;$p.domCleaningRules.push({what:/\s?jQuery[^\s]+\=\&quot;[^\&quot;]+\&quot;/gi,by:''});$p.find=function(selector,context){var found=jQuery.find(selector,context);return(found[0])?found[0]:false};$.fn.$pMap=$.fn.mapDirective=function(directives){return $($p.map(directives,$(this)))};$.fn.$pCompile=$.fn.compile=function(fName,directives,context){if(directives)$p.map(directives,$(this),true);$p.compile($(this),fName,context||false,false);return $(this)};$.fn.$pRender=$.fn.render=function(context,directives,html){if(typeof directives=='string'){html=directives;directives=false}var source=(html)?html:$(this)[0];return $(this).replaceWith($p.render(source,context,directives))};$.fn.autoRender=function(context,directives,html){directives=directives||false;html=html||false;if(!html&amp;&amp;directives&amp;&amp;directives.jquery||directives.nodeType){html=directives[0]||directives;directives=false}var source=(html)?html:$(this)[0];return $(this).replaceWith($p.autoRender(source,context,directives))}}}catch(e){try{if(DOMAssistant){}}catch(e){try{if(MooTools){}}catch(e){try{if(Prototype){}}catch(e){}}}}
\ No newline at end of file
+/*  PURE Unobtrusive Rendering Engine for HTML - Copyright (c) 2008 Michael Cvilic - BeeBole.com - version: 1.5+ - minified by http://dean.edwards.name/packer/ */
+var pure=window.$p=window.pure={ns:(/MSIE/.test(navigator.userAgent))?'pure_':'pure:',find:function(){this.msg('library_needed')},getRuntime:function(){var src=['var pure =window.$p = window.pure ={','$c:',this.$c.toString(),',','$f:[',this.$f.toString(),'],','render:',this.render.toString(),',','compiledFunctions:[]};'];for(var fName in this.compiledFunctions){var htmlFunction='$p.compiledFunctions[\''+fName+'\']';src.push(htmlFunction+'={};'+htmlFunction+'.compiled=');src.push(this.compiledFunctions[fName].compiled.toString()+';')}var runtime=src.join('');var txt=document.getElementById('pureRuntime');if(txt){txt.value=runtime;txt.select()}else{txt=document.createElement('TEXTAREA');txt.value=runtime;txt.id='pureRuntime';document.body.appendChild(txt);txt.select()}},$f:{cnt:0},$c:function(context,path){if(!context)context={};if(typeof context=='object'){var aPath=path.split(/\./);var value=context[aPath[0]];if(value=='undefined')value=window[aPath[0]];for(var i=1;i&lt;aPath.length;i++){if(!value){i=aPath.length;continue}value=value[aPath[i]]}}if(!value&amp;&amp;value!=0)value='&quot;&quot;';return value},render:function(html,context,directives){var fn;if(typeof html!='string'){var mapped=(directives)?this.map(directives,html):html.cloneNode(true);fn=this.compiledFunctions.length||0;this.compile(mapped,fn,context,false)}else{fn=html}if(this.compiledFunctions[fn]){return this.compiledFunctions[fn].compiled(context)}else{this.msg('HTML_does_not_exist',fName)}},autoRenderAtt:(/MSIE/.test(navigator.userAgent))?'className':'class',autoRender:function(html,context,directives){if(typeof html!='string'){html.setAttribute(this.ns+'autoRender','true')}return this.render(html,context,directives)},compiledFunctions:{},domCleaningRules:[{what:new RegExp(window.location.toString().substring(0,window.location.toString().indexOf(window.location.pathname)),'g'),by:''},{what:/\&gt;\s+\&lt;/g,by:'&gt;&lt;'},{what:/^\s+/,by:''},{what:/\n/g,by:''},{what:/\&lt;\?xml:namespace[^&gt;]*beebole[^\&gt;]*\&gt;/gi,by:''}],utils:{nodeValues:[],repeats:[],autoRenderAtts:[],isTypeOfArray:function(obj){return typeof obj.length==='number'&amp;&amp;!(obj.propertyIsEnumerable('length'))&amp;&amp;typeof obj.splice==='function'},autoMap:function(n,ns,autoRender,context,autoRenderAtt,openArray){var repeatAtt=ns+'repeat';var nodeValueAtt=ns+'nodeValue';var replaced,replacer,replacedSrc,nodeValueSrc,toMap,k,j,i,att,repeatPrefix,prop,attValue;if(autoRender=='true'){attValue=n.getAttribute(autoRenderAtt);if(attValue){toMap=attValue.replace(/^\d|\s\d/g,'').split(/\s+/);for(j=0;j&lt;toMap.length;j++){repeatPrefix='';att=toMap[j].split(/@/);prop=context[att[0]];if(!prop){if(openArray.length&gt;0){for(k=0;k&lt;openArray.length;k++){prop=(openArray[k]=='context')?context[0][att[0]]:context[openArray[k]][0][att[0]];if(prop){repeatPrefix=openArray[k];break}else if(/context/i.test(att[0])){prop=true;j=100}}}else if(/context/i.test(att[0])){prop=context}}if(prop){if(typeof prop.length==='number'&amp;&amp;!(prop.propertyIsEnumerable('length'))&amp;&amp;typeof prop.splice==='function'){openArray.push(att[0]);n.setAttribute(ns+'repeat',att[0]+'&lt;-'+att[0])}else{if(att[1]){try{n.removeAttribute(att[1])}catch(e){}}else{att.push('nodeValue')};if(!n.getAttribute(ns+att[1])){(repeatPrefix=='')?n.setAttribute(ns+att[1],att[0]):n.setAttribute(ns+att[1],repeatPrefix+'.'+att[0])}}}}var fixAtt=(/MSIE/.test(navigator.userAgent)&amp;&amp;autoRenderAtt=='className')?'class':autoRenderAtt;if(/\|(a|p)\|/.test(n.getAttribute(ns+fixAtt)))n.removeAttribute(autoRenderAtt)}}var isNodeValue=n.getAttribute(ns+'nodeValue');if(isNodeValue)this.nodeValues.push(n);var isRepeat=n.getAttribute(ns+'repeat');if(isRepeat)this.repeats.push(n)},nodeWalk:function(node,ns,context,autoRenderAtt){this.repeats=[];this.nodeValues=[];var autoRender=node.getAttribute(ns+'autoRender');node.removeAttribute(ns+'autoRender');var openArray=[];var c=node,n=null;do{if(c.nodeType==1)this.autoMap(c,ns,autoRender,context,autoRenderAtt,openArray);n=c.firstChild;if(n==null){n=c.nextSibling}if(n==null){var tmp=c;do{n=tmp.parentNode;if(n==node)break;tmp=n;n=n.nextSibling}while(n==null)}c=n}while(c!=node);var repeatAtt=ns+'repeat';var nodeValueAtt=ns+'nodeValue';var replaced,replacer,replacedSrc,nodeValueSrc;for(var j=0;j&lt;this.nodeValues.length;j++){try{n=this.nodeValues[j];nodeValueSrc=n.getAttribute(nodeValueAtt);if(nodeValueSrc){n.innerHTML=nodeValueAtt+'=&quot;'+nodeValueSrc+'&quot;';n.removeAttribute(nodeValueAtt)}}catch(e){}}for(var i=0;i&lt;this.repeats.length;i++){n=this.repeats[this.repeats.length-i-1];try{replacedSrc=n.getAttribute(repeatAtt);if(replacedSrc){replaced=n.cloneNode(true);replaced.removeAttribute(repeatAtt);replacer=document.createElement(repeatAtt);replacer.appendChild(replaced);replacer.setAttribute('source',&quot;&quot;+replacedSrc);n.parentNode.replaceChild(replacer,n)}}catch(e){}}},out:function(content){return['output.push(',content,');'].join('')},strOut:function(content){return['output.push(',&quot;'&quot;,content,&quot;');&quot;].join('')},outputFn:function(attValue,currentLoop){return this.out(attValue+'(context,'+currentLoop+',parseInt('+currentLoop+'Index))')},contextOut:function(path){return['output.push($p.$c(context, ',path,'));'].join('')},isArray:function(attValue,openArrays){var arrIndex=/\[[^\]]*]/.test(attValue);var objProp=attValue.replace(/(&quot;)|(')/g,'').split(/\./);return(arrIndex||openArrays[objProp[0]])?true:false},arrayName:function(pName){var name=pName.match(/\w*/)[0]||'';var subIndex=pName.substring(name.length).replace(/\[\s*]/,'');return name+'['+name+'Index]'+subIndex}},compile:function(HTML,fName,context,noEval){var clone=(HTML[0])?HTML[0].cloneNode(true):HTML.cloneNode(true);var ns=this.ns;this.utils.nodeWalk(clone,ns,context,this.autoRenderAtt);var str=this.outerHTML(clone);str=str.replace(new RegExp('\&lt;\/?:?'+ns+'repeat','gi'),ns+'repeat');var rules=this.domCleaningRules;for(i in rules){str=str.replace(rules[i].what,rules[i].by)}if(!fName&amp;&amp;typeof fName!='number'){this.msg('no_HTML_name_set_for_parsing',str,HTML);return false}this.compiledFunctions[fName]={};var aJS=[['$p.compiledFunctions[&quot;',fName,'&quot;].compiled = function(context){var output = [];'].join('')];var aDom=str.split(ns);var js,wrkStr,rTag=false,rSrc,openArrays=[],usedFn=[],cnt=1,subSrc='',fnId,attOut,spc,suffix,currentLoop,isNodeValue,max,curr,key,offset,isStr=false,attName='',attValue='',arrSrc;for(var j=0;j&lt;aDom.length;j++){wrkStr=aDom[j];if(j==0){aJS.push(this.utils.strOut(wrkStr.substring(0,wrkStr.length)))}else{if(/^repeat[^\&gt;]*\&gt;/i.test(wrkStr)){rTag=wrkStr.match(/^repeat[^\&gt;]*&gt;/i);rSrc=rTag[0].match(/&quot;[^&quot;]*&quot;/);if(rSrc){rSrc=rSrc[0].replace(/&amp;lt;/,'&lt;').replace(/&quot;/g,'').replace(/\s/g,'');subSrc=rSrc.split(/\&lt;-/);currentLoop=subSrc[0];arrSrc=subSrc[1]||'';if(this.utils.isArray(arrSrc,openArrays)){aJS.push('var '+currentLoop+'='+this.utils.arrayName(arrSrc)+';')}else{if(arrSrc.search(/context/i)&gt;-1||arrSrc.length==0)aJS.push('var '+currentLoop+'= context;');else aJS.push('var '+currentLoop+'= $p.$c(context, &quot;'+arrSrc+'&quot;);')}aJS.push('for('+currentLoop+'Index in '+currentLoop+'){');aJS.push(this.utils.strOut(wrkStr.substring(rTag[0].length)));openArrays[currentLoop]=cnt++}else{aJS.push('}');delete openArrays[currentLoop];max=0;for(key in openArrays){curr=openArrays[key];if(curr&gt;max){max=curr;currentLoop=key}}aJS.push(this.utils.strOut(wrkStr.substring(rTag[0].length,wrkStr.length)))}rTag=false;continue}else{attName=wrkStr.substring(0,wrkStr.indexOf('='));attValue=wrkStr.match(/=&quot;&quot;?[^&quot;]*&quot;&quot;?/)[0].substr(2).replace(/&quot;$/,'');offset=attName.length+attValue.length+3;isStr=/^(&quot;|'|&amp;quot;)(.*)(&quot;|'|&amp;quot;)/.test(attValue);if(/&amp;quot;/.test(attValue)){attValue=attValue.replace(/&amp;quot;/g,'&quot;');wrkStr=wrkStr.replace(/&amp;quot;/,'&quot;').replace(/&amp;quot;/,'&quot;')}isNodeValue=/^nodeValue/i.test(wrkStr);(isNodeValue)?attName='nodeValue':aJS.push(this.utils.strOut(attName+'=&quot;'));attOut=attValue.match(/\|(a|p)\|/);suffix=false;spc=(isNodeValue)?'':' ';if(attOut){if(attOut[1]=='a')aJS.push(this.utils.strOut(attValue.substring(0,attOut.index)+spc));else suffix=attValue.substring(0,attOut.index);attValue=attValue.substring(attOut.index+3)}if(/\$f\[(f[0-9]+)]/.test(attValue)){fnId=attValue.match(/\[(f[0-9]+)/)[1];this.compiledFunctions[fName]['$'+fnId]=this.$f[fnId];delete this.$f[fnId];this.$f.cnt--;aJS.push(this.utils.outputFn('this.$'+fnId,currentLoop))}else if(isStr){aJS.push(this.utils.strOut(attValue.substr(1,attValue.length-2)))}else if(this.utils.isArray(attValue,openArrays)){aJS.push(this.utils.out(this.utils.arrayName(attValue)))}else{aJS.push(this.utils.contextOut(&quot;'&quot;+attValue+&quot;'&quot;))}if(suffix!='')aJS.push(this.utils.strOut(spc+suffix));if(!isNodeValue){aJS.push(this.utils.strOut('&quot;'))}}wrkStr=wrkStr.substr(offset);if(wrkStr!='')aJS.push(this.utils.strOut(wrkStr))}}aJS.push('return output.join(&quot;&quot;);}');js=aJS.join('');if(!noEval){try{eval(js)}catch(e){this.msg('parsing_error',[e.message,js]);return false}}return js},outerHTML:function(elm){return elm.outerHTML||(function(){var div=document.createElement('div');div.appendChild(elm);return div.innerHTML})()},map:function(directives,html,noClone){if(!html[0]&amp;&amp;html.length==0){this.msg('no_template_found');return false}var fnId,multipleDir=[],currentDir;var clone;if(noClone){clone=(html[0])?html[0]:html}else{clone=(html[0])?html[0].cloneNode(true):html.cloneNode(true)}autoRender=clone.getAttribute(ns+'autoRender')||false;for(var selector in directives){currentDir=directives[selector];if(this.utils.isTypeOfArray(currentDir)){multipleDir=currentDir}else{multipleDir=[];multipleDir.push(currentDir)}for(var i=0;i&lt;multipleDir.length;i++){currentDir=multipleDir[i];var prepend,append;if(prepend=/^\+/.test(selector)){selector=selector.substring(1,selector.length)};if(append=/\+$/.test(selector)){selector=selector.substring(0,selector.length-1)};var isAttr=selector.match(/\[[^\]]*\]/);if(/^\[/.test(selector)){target=clone}else{var target=this.find(selector,clone);if(!target&amp;&amp;isAttr){target=this.find(selector.substr(0,isAttr.index),clone)}}if(target){if(typeof currentDir=='function'){fnId='f'+this.$f.cnt++;this.$f[fnId]=currentDir;currentDir='$f['+fnId+']'}var attName='nodeValue';var repetition=-1,ns=this.ns;if(isAttr){attName=selector.substring(isAttr.index+1,isAttr[0].length+isAttr.index-1);if(attName.indexOf(ns)&gt;-1)attName=attName.substring(ns.length)}else{repetition=currentDir.search(/w*&lt;-w*/);if(repetition&gt;-1)attName='repeat'}if(/^&quot;/.test(currentDir)&amp;&amp;/&quot;$/.test(currentDir)){currentDir='\''+currentDir.substring(1,currentDir.length-1)+'\''}var fixAtt=(/MSIE/.test(navigator.userAgent)&amp;&amp;attName=='class')?'className':attName;var original=target.getAttribute(fixAtt);if(append&amp;&amp;original){currentDir=original+'|a|'+currentDir}else if(prepend&amp;&amp;original){currentDir=original+'|p|'+currentDir}target.setAttribute(ns+attName,currentDir);if(isAttr&amp;&amp;attName!='nodeValue'&amp;&amp;(attName!='class'&amp;&amp;autoRender)&amp;&amp;repetition&lt;0&amp;&amp;!append&amp;&amp;!prepend){try{target.removeAttribute(attName)}catch(e){}}}else{var parentName=[clone.nodeName];if(clone.id!='')parentName.push('#'+clone.id);if(clone.className!='')parentName.push('#'+clone.className);this.msg('element_to_map_not_found',[selector,parentName.join('')],clone)}}}return clone},messages:{'element_to_map_not_found':&quot;PURE - Cannot find the element \&quot;&amp;\&quot; in \&quot;&amp;\&quot;&quot;,'place_runtime_container':'To collect the PURE runtime, place a &lt;textarea id=\&quot;pureRuntime\&quot;&gt;&lt;/textarea&gt; in your document.','no_HTML_selected':'The map function didn\'t receive a valid HTML element','no_HTML_name_set_for_parsing':'A name is needed when parsing the HTML: &amp;','HTML_does_not_exist':'The HTML: &amp; does not exist or is not yet compiled','library_needed':'In order to run PURE, you need a JS library such as: dojo, domAssistant, jQuery, mootools, prototype,...','parsing_error':'Parsing error: \&quot;&amp;\&quot; in: &amp;'},msg:function(msgId,msgParams,where){var msg=this.messages[msgId]||msgId;var re=/&amp;/;if(msg!=msgId&amp;&amp;msgParams){if(typeof msgParams=='string'){msg=msg.replace(re,msgParams)}else{for(var i=0;i&lt;msgParams.length;i++){msg=msg.replace(re,msgParams[i])}}}var msgDiv=document.getElementById('pureMsg');if(msgDiv){msgDiv.innerHTML=[msg,'&lt;br /&gt;',msgDiv.innerHTML].join('')}else{alert(msg)}}};try{if(jQuery){jQuery.parse[0]=/^(\[) *@?([\w:-]+) *([!*$^~=]*) *('?&quot;?)(.*?)\4 *\]/;$p.domCleaningRules.push({what:/\s?jQuery[^\s]+\=\&quot;[^\&quot;]+\&quot;/gi,by:''});$p.find=function(selector,context){var found=jQuery.find(selector,context);return(found[0])?found[0]:false};$.fn.$pMap=$.fn.mapDirective=function(directives){return $($p.map(directives,$(this)))};$.fn.$pCompile=$.fn.compile=function(fName,directives,context){if(directives)$p.map(directives,$(this),true);$p.compile($(this),fName,context||false,false);return $(this)};$.fn.$pRender=$.fn.render=function(context,directives,html){if(typeof directives=='string'){html=directives;directives=false}var source=(html)?html:$(this)[0];return $(this).replaceWith($p.render(source,context,directives))};$.fn.autoRender=function(context,directives,html){directives=directives||false;html=html||false;if(!html&amp;&amp;directives&amp;&amp;directives.jquery||directives.nodeType){html=directives[0]||directives;directives=false}var source=(html)?html:$(this)[0];return $(this).replaceWith($p.autoRender(source,context,directives))}}}catch(e){try{if(DOMAssistant){}}catch(e){try{if(MooTools){}}catch(e){try{if(Prototype){}}catch(e){}}}}
\ No newline at end of file</diff>
      <filename>js/pureMin.js</filename>
    </modified>
    <modified>
      <diff>@@ -1,2 +1,2 @@
-/*  PURE Unobtrusive Rendering Engine for HTML - Copyright (c) 2008 Michael Cvilic - BeeBole.com - version: 1.5 - packed by http://dean.edwards.name/packer/ */
-eval(function(p,a,c,k,e,r){e=function(c){return(c&lt;a?'':e(parseInt(c/a)))+((c=c%a)&gt;35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('7 1n=U.$p=U.1n={V:(/1B/.C(1C.1D))?\'2I\':\'1n:\',17:r(){6.Y(\'2b\')},2J:r(){7 a=[\'7 1n =U.$p = U.1n ={\',\'$c:\',6.$c.18(),\',\',\'$f:[\',6.$f.18(),\'],\',\'19:\',6.19.18(),\',\',\'I:[]};\'];H(7 b W 6.I){7 c=\'$p.I[\\\'\'+b+\'\\\']\';a.8(c+\'={};\'+c+\'.1o=\');a.8(6.I[b].1o.18()+\';\')}7 d=a.O(\'\');7 e=Z.2c(\'1S\');5(e){e.2d=d;e.2e()}u{e=Z.1T(\'2K\');e.2d=d;e.1E=\'1S\';Z.2L.1U(e);e.2e()}},$f:{1p:0},$c:r(a,b){5(!a)a={};5(J a==\'2M\'){7 c=b.1a(/\\./);7 d=a[c[0]];5(d==\'2N\')d=U[c[0]];H(7 i=1;i&lt;c.q;i++){5(!d){i=c.q;2f}d=d[c[i]]}}5(!d&amp;&amp;d!=0)d=\'&quot;&quot;\';v d},19:r(a,b,c){7 d;5(J a!=\'1F\'){7 e=(c)?6.1q(c,a):a.1b(K);d=6.I.q||0;6.1G(e,d,b,E)}u{d=a}5(6.I[d]){v 6.I[d].1o(b)}u{6.Y(\'2g\',2O)}},1H:(/1B/.C(1C.1D))?\'1r\':\'1V\',1c:r(a,b,c){5(J a!=\'1F\'){a.1d(6.V+\'1c\',\'K\')}v 6.19(a,b,c)},I:{},1W:[{10:2h 2i(U.1X.18().F(0,U.1X.18().1Y(U.1X.2P)),\'g\'),11:\'\'},{10:/\\&gt;\\s+\\&lt;/g,11:\'&gt;&lt;\'},{10:/^\\s+/,11:\'\'},{10:/\\n/g,11:\'\'},{10:/\\&lt;\\?2Q:2R[^&gt;]*2S[^\\&gt;]*\\&gt;/1Z,11:\'\'}],z:{1s:[],1e:[],2T:[],2j:r(a){v J a.q===\'20\'&amp;&amp;!(a.2k(\'q\'))&amp;&amp;J a.2l===\'r\'},2m:r(n,a,b,c,d,f){7 g=a+\'P\';7 h=a+\'X\';7 l,1f,1t,1u,1I,k,j,i,D,1v,L,x;5(b==\'K\'){x=n.Q(d);5(x){1I=x.G(/^\\d|\\s\\d/g,\'\').1a(/\\s+/);H(j=0;j&lt;1I.q;j++){1v=\'\';D=1I[j].1a(/@/);L=c[D[0]];5(!L){5(f.q&gt;0){H(k=0;k&lt;f.q;k++){L=(f[k]==\'R\')?c[0][D[0]]:c[f[k]][0][D[0]];5(L){1v=f[k];2n}u 5(/R/i.C(D[0])){L=K;j=2U}}}u 5(/R/i.C(D[0])){L=c}}5(L){5(J L.q===\'20\'&amp;&amp;!(L.2k(\'q\'))&amp;&amp;J L.2l===\'r\'){f.8(D[0]);n.1d(a+\'P\',D[0]+\'&lt;-\'+D[0])}u{5(D[1]){S{n.1g(D[1])}T(e){}}u{D.8(\'X\')};5(!n.Q(a+D[1])){(1v==\'\')?n.1d(a+D[1],D[0]):n.1d(a+D[1],1v+\'.\'+D[0])}}}}7 m=(/1B/.C(1C.1D)&amp;&amp;d==\'1r\')?\'1V\':d;5(/\\|(a|p)\\|/.C(n.Q(a+m)))n.1g(d)}}7 o=n.Q(a+\'X\');5(o)6.1s.8(n);7 p=n.Q(a+\'P\');5(p)6.1e.8(n)},2o:r(a,b,d,f){6.1e=[];6.1s=[];7 g=a.Q(b+\'1c\');a.1g(b+\'1c\');7 h=[];7 c=a,n=1J;2p{5(c.2q==1)6.2m(c,b,g,d,f,h);n=c.2V;5(n==1J){n=c.2r}5(n==1J){7 k=c;2p{n=k.2s;5(n==a)2n;k=n;n=n.2r}2t(n==1J)}c=n}2t(c!=a);7 l=b+\'P\';7 m=b+\'X\';7 o,1f,1t,1u;H(7 j=0;j&lt;6.1s.q;j++){S{n=6.1s[j];1u=n.Q(m);5(1u){n.1K=m+\'=&quot;\'+1u+\'&quot;\';n.1g(m)}}T(e){}}H(7 i=0;i&lt;6.1e.q;i++){n=6.1e[6.1e.q-i-1];S{1t=n.Q(l);5(1t){o=n.1b(K);o.1g(l);1f=Z.1T(l);1f.1U(o);1f.1d(\'2W\',&quot;&quot;+1t);n.2s.2X(1f,n)}}T(e){}}},21:r(a){v[\'1w.8(\',a,\');\'].O(\'\')},N:r(a){v[\'1w.8(\',&quot;\'&quot;,a,&quot;\');&quot;].O(\'\')},2u:r(a,b){v 6.21(a+\'(R,\'+b+\',2Y(\'+b+\'22))\')},2v:r(a){v[\'1w.8($p.$c(R, \',a,\'));\'].O(\'\')},23:r(a,b){7 c=/\\[[^\\]]*]/.C(a);7 d=a.G(/(&quot;)|(\')/g,\'\').1a(/\\./);v(c||b[d[0]])?K:E},24:r(a){7 b=a.12(/\\w*/)[0]||\'\';7 c=a.F(b.q).G(/\\[\\s*]/,\'\');v b+\'[\'+b+\'22]\'+c}},1G:r(a,b,c,d){7 f=(a[0])?a[0].1b(K):a.1b(K);7 g=6.V;6.z.2o(f,g,c,6.1H);7 h=6.25(f);h=h.G(2h 2i(\'\\&lt;\\/?:?\'+g+\'P\',\'1Z\'),g+\'P\');7 k=6.1W;H(i W k){h=h.G(k[i].10,k[i].11)}5(!b&amp;&amp;J b!=\'20\'){6.Y(\'2w\',h,a);v E}6.I[b]={};7 l=[[\'$p.I[&quot;\',b,\'&quot;].1o = r(R){7 1w = [];\'].O(\'\')];7 m=h.1a(g);7 n,B,1h=E,1i,13=[],2Z=[],1p=1,1L=\'\',1j,14,1M,1x,M,1y,1N,1O,1P,26,27=E,1z=\'\',x=\'\',15;H(7 j=0;j&lt;m.q;j++){B=m[j];5(j==0){l.8(6.z.N(B.F(0,B.q)))}u{5(/^P[^\\&gt;]*\\&gt;/i.C(B)){1h=B.12(/^P[^\\&gt;]*&gt;/i);1i=1h[0].12(/&quot;[^&quot;]*&quot;/);5(1i){1i=1i[0].G(/&amp;30;/,\'&lt;\').G(/&quot;/g,\'\').G(/\\s/g,\'\');1L=1i.1a(/\\&lt;-/);M=1L[0];15=1L[1]||\'\';5(6.z.23(15,13)){l.8(\'7 \'+M+\'=\'+6.z.24(15)+\';\')}u{5(15.2x(/R/i)&gt;-1||15.q==0)l.8(\'7 \'+M+\'= R;\');u l.8(\'7 \'+M+\'= $p.$c(R, &quot;\'+15+\'&quot;);\')}l.8(\'H(\'+M+\'22 W \'+M+\'){\');l.8(6.z.N(B.F(1h[0].q)));13[M]=1p++}u{l.8(\'}\');2y 13[M];1N=0;H(1P W 13){1O=13[1P];5(1O&gt;1N){1N=1O;M=1P}}l.8(6.z.N(B.F(1h[0].q,B.q)))}1h=E;2f}u{1z=B.F(0,B.1Y(\'=\'));x=B.12(/=&quot;&quot;?[^&quot;]*&quot;&quot;?/)[0].1Q(2).G(/&quot;$/,\'\');26=1z.q+x.q+3;27=/^(&quot;|\'|&amp;1k;)(.*)(&quot;|\'|&amp;1k;)/.C(x);5(/&amp;1k;/.C(x)){x=x.G(/&amp;1k;/g,\'&quot;\');B=B.G(/&amp;1k;/,\'&quot;\').G(/&amp;1k;/,\'&quot;\')}1y=/^X/i.C(B);(1y)?1z=\'X\':l.8(6.z.N(1z+\'=&quot;\'));14=x.12(/\\|(a|p)\\|/);1x=E;1M=(1y)?\'\':\' \';5(14){5(14[1]==\'a\')l.8(6.z.N(x.F(0,14.1l)+1M));u 1x=x.F(0,14.1l);x=x.F(14.1l+3)}5(/\\$f\\[(f[0-9]+)]/.C(x)){1j=x.12(/\\[(f[0-9]+)/)[1];6.I[b][\'$\'+1j]=6.$f[1j];2y 6.$f[1j];6.$f.1p--;l.8(6.z.2u(\'6.$\'+1j,M))}u 5(27){l.8(6.z.N(x.1Q(1,x.q-2)))}u 5(6.z.23(x,13)){l.8(6.z.21(6.z.24(x)))}u{l.8(6.z.2v(&quot;\'&quot;+x+&quot;\'&quot;))}5(1x!=\'\')l.8(6.z.N(1M+1x));5(!1y){l.8(6.z.N(\'&quot;\'))}}B=B.1Q(26);5(B!=\'\')l.8(6.z.N(B))}}l.8(\'v 1w.O(&quot;&quot;);}\');n=l.O(\'\');5(!d){S{31(n)}T(e){6.Y(\'2z\',[e.32,n]);v E}}v n},25:r(b){v b.25||(r(){7 a=Z.1T(\'33\');a.1U(b);v a.1K})()},1q:r(a,b,c){5(!b[0]&amp;&amp;b.q==0){6.Y(\'34\');v E}7 d,1m=[],y,1H=6.1H;7 f;5(c){f=(b[0])?b[0]:b}u{f=(b[0])?b[0].1b(K):b.1b(K)}H(7 g W a){y=a[g];5(6.z.2j(y)){1m=y}u{1m=[];1m.8(y)}H(7 i=0;i&lt;1m.q;i++){y=1m[i];7 h,1R;5(h=/^\\+/.C(g)){g=g.F(1,g.q)};5(1R=/\\+$/.C(g)){g=g.F(0,g.q-1)};7 j=g.12(/\\[[^\\]]*\\]/);5(/^\\[/.C(g)){k=f}u{7 k=6.17(g,f);5(!k&amp;&amp;j){k=6.17(g.1Q(0,j.1l),f)}}5(k){5(J y==\'r\'){d=\'f\'+6.$f.1p++;6.$f[d]=y;y=\'$f[\'+d+\']\'}7 l=\'X\';7 m=-1,V=6.V;5(j){l=g.F(j.1l+1,j[0].q+j.1l-1);5(l.1Y(V)&gt;-1)l=l.F(V.q)}u{m=y.2x(/w*&lt;-w*/);5(m&gt;-1)l=\'P\'}5(/^&quot;/.C(y)&amp;&amp;/&quot;$/.C(y)){y=\'\\\'\'+y.F(1,y.q-1)+\'\\\'\'}7 n=(/1B/.C(1C.1D)&amp;&amp;l==\'1V\')?\'1r\':l;7 o=k.Q(n);5(1R&amp;&amp;o){y=o+\'|a|\'+y}u 5(h&amp;&amp;o){y=o+\'|p|\'+y}k.1d(V+l,y);5(j&amp;&amp;l!=\'X\'&amp;&amp;m&lt;0&amp;&amp;!1R&amp;&amp;!h){S{k.1g(l)}T(e){}}}u{7 p=[f.35];5(f.1E!=\'\')p.8(\'#\'+f.1E);5(f.1r!=\'\')p.8(\'#\'+f.1r);6.Y(\'2A\',[g,p.O(\'\')],f)}}}v f},2B:{\'2A\':&quot;28 - 36 17 29 2C \\&quot;&amp;\\&quot; W \\&quot;&amp;\\&quot;&quot;,\'37\':\'38 39 29 28 3a, 3b a &lt;2D 1E=\\&quot;1S\\&quot;&gt;&lt;/2D&gt; W 3c Z.\',\'3d\':\'2E 1q r 3e\\\'t 3f a 3g 2a 2C\',\'2w\':\'A 3h 2F 3i 3j 3k 29 2a: &amp;\',\'2g\':\'2E 2a: &amp; 3l 2G 3m 3n 2F 2G 3o 1o\',\'2b\':\'3p 3q 3r 3s 28, 3t 3u a 3v 3w 3x 3y: 3z, 3A, 1A, 3B, 3C,...\',\'2z\':\'3D 3E: \\&quot;&amp;\\&quot; W: &amp;\'},Y:r(a,b,c){7 d=6.2B[a]||a;7 e=/&amp;/;5(d!=a&amp;&amp;b){5(J b==\'1F\'){d=d.G(e,b)}u{H(7 i=0;i&lt;b.q;i++){d=d.G(e,b[i])}}}7 f=Z.2c(\'3F\');5(f){f.1K=[d,\'&lt;3G /&gt;\',f.1K].O(\'\')}u{3H(d)}}};S{5(1A){1A.3I[0]=/^(\\[) *@?([\\w:-]+) *([!*$^~=]*) *(\'?&quot;?)(.*?)\\4 *\\]/;$p.1W.8({10:/\\s?1A[^\\s]+\\=\\&quot;[^\\&quot;]+\\&quot;/1Z,11:\'\'});$p.17=r(a,b){7 c=1A.17(a,b);v(c[0])?c[0]:E};$.16.$3J=$.16.3K=r(a){v $($p.1q(a,$(6)))};$.16.$3L=$.16.1G=r(a,b,c){5(b)$p.1q(b,$(6),K);$p.1G($(6),a,c||E,E);v $(6)};$.16.$3M=$.16.19=r(a,b,c){5(J b==\'1F\'){c=b;b=E}7 d=(c)?c:$(6)[0];v $(6).2H($p.19(d,a,b))};$.16.1c=r(a,b,c){b=b||E;c=c||E;5(!c&amp;&amp;b&amp;&amp;b.3N||b.2q){c=b[0]||b;b=E}7 d=(c)?c:$(6)[0];v $(6).2H($p.1c(d,a,b))}}}T(e){S{5(3O){}}T(e){S{5(3P){}}T(e){S{5(3Q){}}T(e){}}}}',62,239,'|||||if|this|var|push||||||||||||||||||length|function|||else|return||attValue|currentDir|utils||wrkStr|test|att|false|substring|replace|for|compiledFunctions|typeof|true|prop|currentLoop|strOut|join|repeat|getAttribute|context|try|catch|window|ns|in|nodeValue|msg|document|what|by|match|openArrays|attOut|arrSrc|fn|find|toString|render|split|cloneNode|autoRender|setAttribute|repeats|replacer|removeAttribute|rTag|rSrc|fnId|quot|index|multipleDir|pure|compiled|cnt|map|className|nodeValues|replacedSrc|nodeValueSrc|repeatPrefix|output|suffix|isNodeValue|attName|jQuery|MSIE|navigator|userAgent|id|string|compile|autoRenderAtt|toMap|null|innerHTML|subSrc|spc|max|curr|key|substr|append|pureRuntime|createElement|appendChild|class|domCleaningRules|location|indexOf|gi|number|out|Index|isArray|arrayName|outerHTML|offset|isStr|PURE|the|HTML|library_needed|getElementById|value|select|continue|HTML_does_not_exist|new|RegExp|isTypeOfArray|propertyIsEnumerable|splice|autoMap|break|nodeWalk|do|nodeType|nextSibling|parentNode|while|outputFn|contextOut|no_HTML_name_set_for_parsing|search|delete|parsing_error|element_to_map_not_found|messages|element|textarea|The|is|not|replaceWith|pure_|getRuntime|TEXTAREA|body|object|undefined|fName|pathname|xml|namespace|beebole|autoRenderAtts|100|firstChild|source|replaceChild|parseInt|usedFn|lt|eval|message|div|no_template_found|nodeName|Cannot|place_runtime_container|To|collect|runtime|place|your|no_HTML_selected|didn|receive|valid|name|needed|when|parsing|does|exist|or|yet|In|order|to|run|you|need|JS|library|such|as|dojo|domAssistant|mootools|prototype|Parsing|error|pureMsg|br|alert|parse|pMap|mapDirective|pCompile|pRender|jquery|DOMAssistant|MooTools|Prototype'.split('|'),0,{}))
\ No newline at end of file
+/*  PURE Unobtrusive Rendering Engine for HTML - Copyright (c) 2008 Michael Cvilic - BeeBole.com - version: 1.5+ - packed by http://dean.edwards.name/packer/ */
+eval(function(p,a,c,k,e,r){e=function(c){return(c&lt;a?'':e(parseInt(c/a)))+((c=c%a)&gt;35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('7 1n=W.$p=W.1n={P:(/1B/.C(1C.1D))?\'2I\':\'1n:\',18:r(){6.Z(\'2a\')},2J:r(){7 a=[\'7 1n =W.$p = W.1n ={\',\'$c:\',6.$c.19(),\',\',\'$f:[\',6.$f.19(),\'],\',\'1a:\',6.1a.19(),\',\',\'I:[]};\'];H(7 b X 6.I){7 c=\'$p.I[\\\'\'+b+\'\\\']\';a.8(c+\'={};\'+c+\'.1o=\');a.8(6.I[b].1o.19()+\';\')}7 d=a.Q(\'\');7 e=10.2b(\'1S\');5(e){e.2c=d;e.2d()}u{e=10.1T(\'2K\');e.2c=d;e.1E=\'1S\';10.2L.1U(e);e.2d()}},$f:{1p:0},$c:r(a,b){5(!a)a={};5(J a==\'2M\'){7 c=b.1b(/\\./);7 d=a[c[0]];5(d==\'2N\')d=W[c[0]];H(7 i=1;i&lt;c.q;i++){5(!d){i=c.q;2e}d=d[c[i]]}}5(!d&amp;&amp;d!=0)d=\'&quot;&quot;\';v d},1a:r(a,b,c){7 d;5(J a!=\'1F\'){7 e=(c)?6.1q(c,a):a.1c(K);d=6.I.q||0;6.1G(e,d,b,E)}u{d=a}5(6.I[d]){v 6.I[d].1o(b)}u{6.Z(\'2f\',2O)}},2g:(/1B/.C(1C.1D))?\'1r\':\'1H\',R:r(a,b,c){5(J a!=\'1F\'){a.1d(6.P+\'R\',\'K\')}v 6.1a(a,b,c)},I:{},1V:[{11:2h 2i(W.1W.19().F(0,W.1W.19().1X(W.1W.2P)),\'g\'),12:\'\'},{11:/\\&gt;\\s+\\&lt;/g,12:\'&gt;&lt;\'},{11:/^\\s+/,12:\'\'},{11:/\\n/g,12:\'\'},{11:/\\&lt;\\?2Q:2R[^&gt;]*2S[^\\&gt;]*\\&gt;/1Y,12:\'\'}],z:{1s:[],1e:[],2T:[],2j:r(a){v J a.q===\'1Z\'&amp;&amp;!(a.2k(\'q\'))&amp;&amp;J a.2l===\'r\'},2m:r(n,a,b,c,d,f){7 g=a+\'S\';7 h=a+\'Y\';7 l,1f,1t,1u,1I,k,j,i,D,1v,L,x;5(b==\'K\'){x=n.N(d);5(x){1I=x.G(/^\\d|\\s\\d/g,\'\').1b(/\\s+/);H(j=0;j&lt;1I.q;j++){1v=\'\';D=1I[j].1b(/@/);L=c[D[0]];5(!L){5(f.q&gt;0){H(k=0;k&lt;f.q;k++){L=(f[k]==\'T\')?c[0][D[0]]:c[f[k]][0][D[0]];5(L){1v=f[k];2n}u 5(/T/i.C(D[0])){L=K;j=2U}}}u 5(/T/i.C(D[0])){L=c}}5(L){5(J L.q===\'1Z\'&amp;&amp;!(L.2k(\'q\'))&amp;&amp;J L.2l===\'r\'){f.8(D[0]);n.1d(a+\'S\',D[0]+\'&lt;-\'+D[0])}u{5(D[1]){U{n.1g(D[1])}V(e){}}u{D.8(\'Y\')};5(!n.N(a+D[1])){(1v==\'\')?n.1d(a+D[1],D[0]):n.1d(a+D[1],1v+\'.\'+D[0])}}}}7 m=(/1B/.C(1C.1D)&amp;&amp;d==\'1r\')?\'1H\':d;5(/\\|(a|p)\\|/.C(n.N(a+m)))n.1g(d)}}7 o=n.N(a+\'Y\');5(o)6.1s.8(n);7 p=n.N(a+\'S\');5(p)6.1e.8(n)},2o:r(a,b,d,f){6.1e=[];6.1s=[];7 g=a.N(b+\'R\');a.1g(b+\'R\');7 h=[];7 c=a,n=1J;2p{5(c.2q==1)6.2m(c,b,g,d,f,h);n=c.2V;5(n==1J){n=c.2r}5(n==1J){7 k=c;2p{n=k.2s;5(n==a)2n;k=n;n=n.2r}2t(n==1J)}c=n}2t(c!=a);7 l=b+\'S\';7 m=b+\'Y\';7 o,1f,1t,1u;H(7 j=0;j&lt;6.1s.q;j++){U{n=6.1s[j];1u=n.N(m);5(1u){n.1K=m+\'=&quot;\'+1u+\'&quot;\';n.1g(m)}}V(e){}}H(7 i=0;i&lt;6.1e.q;i++){n=6.1e[6.1e.q-i-1];U{1t=n.N(l);5(1t){o=n.1c(K);o.1g(l);1f=10.1T(l);1f.1U(o);1f.1d(\'2W\',&quot;&quot;+1t);n.2s.2X(1f,n)}}V(e){}}},20:r(a){v[\'1w.8(\',a,\');\'].Q(\'\')},O:r(a){v[\'1w.8(\',&quot;\'&quot;,a,&quot;\');&quot;].Q(\'\')},2u:r(a,b){v 6.20(a+\'(T,\'+b+\',2Y(\'+b+\'21))\')},2v:r(a){v[\'1w.8($p.$c(T, \',a,\'));\'].Q(\'\')},22:r(a,b){7 c=/\\[[^\\]]*]/.C(a);7 d=a.G(/(&quot;)|(\')/g,\'\').1b(/\\./);v(c||b[d[0]])?K:E},23:r(a){7 b=a.13(/\\w*/)[0]||\'\';7 c=a.F(b.q).G(/\\[\\s*]/,\'\');v b+\'[\'+b+\'21]\'+c}},1G:r(a,b,c,d){7 f=(a[0])?a[0].1c(K):a.1c(K);7 g=6.P;6.z.2o(f,g,c,6.2g);7 h=6.24(f);h=h.G(2h 2i(\'\\&lt;\\/?:?\'+g+\'S\',\'1Y\'),g+\'S\');7 k=6.1V;H(i X k){h=h.G(k[i].11,k[i].12)}5(!b&amp;&amp;J b!=\'1Z\'){6.Z(\'2w\',h,a);v E}6.I[b]={};7 l=[[\'$p.I[&quot;\',b,\'&quot;].1o = r(T){7 1w = [];\'].Q(\'\')];7 m=h.1b(g);7 n,B,1h=E,1i,14=[],2Z=[],1p=1,1L=\'\',1j,15,1M,1x,M,1y,1N,1O,1P,25,26=E,1z=\'\',x=\'\',16;H(7 j=0;j&lt;m.q;j++){B=m[j];5(j==0){l.8(6.z.O(B.F(0,B.q)))}u{5(/^S[^\\&gt;]*\\&gt;/i.C(B)){1h=B.13(/^S[^\\&gt;]*&gt;/i);1i=1h[0].13(/&quot;[^&quot;]*&quot;/);5(1i){1i=1i[0].G(/&amp;30;/,\'&lt;\').G(/&quot;/g,\'\').G(/\\s/g,\'\');1L=1i.1b(/\\&lt;-/);M=1L[0];16=1L[1]||\'\';5(6.z.22(16,14)){l.8(\'7 \'+M+\'=\'+6.z.23(16)+\';\')}u{5(16.2x(/T/i)&gt;-1||16.q==0)l.8(\'7 \'+M+\'= T;\');u l.8(\'7 \'+M+\'= $p.$c(T, &quot;\'+16+\'&quot;);\')}l.8(\'H(\'+M+\'21 X \'+M+\'){\');l.8(6.z.O(B.F(1h[0].q)));14[M]=1p++}u{l.8(\'}\');2y 14[M];1N=0;H(1P X 14){1O=14[1P];5(1O&gt;1N){1N=1O;M=1P}}l.8(6.z.O(B.F(1h[0].q,B.q)))}1h=E;2e}u{1z=B.F(0,B.1X(\'=\'));x=B.13(/=&quot;&quot;?[^&quot;]*&quot;&quot;?/)[0].1Q(2).G(/&quot;$/,\'\');25=1z.q+x.q+3;26=/^(&quot;|\'|&amp;1k;)(.*)(&quot;|\'|&amp;1k;)/.C(x);5(/&amp;1k;/.C(x)){x=x.G(/&amp;1k;/g,\'&quot;\');B=B.G(/&amp;1k;/,\'&quot;\').G(/&amp;1k;/,\'&quot;\')}1y=/^Y/i.C(B);(1y)?1z=\'Y\':l.8(6.z.O(1z+\'=&quot;\'));15=x.13(/\\|(a|p)\\|/);1x=E;1M=(1y)?\'\':\' \';5(15){5(15[1]==\'a\')l.8(6.z.O(x.F(0,15.1l)+1M));u 1x=x.F(0,15.1l);x=x.F(15.1l+3)}5(/\\$f\\[(f[0-9]+)]/.C(x)){1j=x.13(/\\[(f[0-9]+)/)[1];6.I[b][\'$\'+1j]=6.$f[1j];2y 6.$f[1j];6.$f.1p--;l.8(6.z.2u(\'6.$\'+1j,M))}u 5(26){l.8(6.z.O(x.1Q(1,x.q-2)))}u 5(6.z.22(x,14)){l.8(6.z.20(6.z.23(x)))}u{l.8(6.z.2v(&quot;\'&quot;+x+&quot;\'&quot;))}5(1x!=\'\')l.8(6.z.O(1M+1x));5(!1y){l.8(6.z.O(\'&quot;\'))}}B=B.1Q(25);5(B!=\'\')l.8(6.z.O(B))}}l.8(\'v 1w.Q(&quot;&quot;);}\');n=l.Q(\'\');5(!d){U{31(n)}V(e){6.Z(\'2z\',[e.32,n]);v E}}v n},24:r(b){v b.24||(r(){7 a=10.1T(\'33\');a.1U(b);v a.1K})()},1q:r(a,b,c){5(!b[0]&amp;&amp;b.q==0){6.Z(\'34\');v E}7 d,1m=[],y;7 f;5(c){f=(b[0])?b[0]:b}u{f=(b[0])?b[0].1c(K):b.1c(K)}R=f.N(P+\'R\')||E;H(7 g X a){y=a[g];5(6.z.2j(y)){1m=y}u{1m=[];1m.8(y)}H(7 i=0;i&lt;1m.q;i++){y=1m[i];7 h,1R;5(h=/^\\+/.C(g)){g=g.F(1,g.q)};5(1R=/\\+$/.C(g)){g=g.F(0,g.q-1)};7 j=g.13(/\\[[^\\]]*\\]/);5(/^\\[/.C(g)){k=f}u{7 k=6.18(g,f);5(!k&amp;&amp;j){k=6.18(g.1Q(0,j.1l),f)}}5(k){5(J y==\'r\'){d=\'f\'+6.$f.1p++;6.$f[d]=y;y=\'$f[\'+d+\']\'}7 l=\'Y\';7 m=-1,P=6.P;5(j){l=g.F(j.1l+1,j[0].q+j.1l-1);5(l.1X(P)&gt;-1)l=l.F(P.q)}u{m=y.2x(/w*&lt;-w*/);5(m&gt;-1)l=\'S\'}5(/^&quot;/.C(y)&amp;&amp;/&quot;$/.C(y)){y=\'\\\'\'+y.F(1,y.q-1)+\'\\\'\'}7 n=(/1B/.C(1C.1D)&amp;&amp;l==\'1H\')?\'1r\':l;7 o=k.N(n);5(1R&amp;&amp;o){y=o+\'|a|\'+y}u 5(h&amp;&amp;o){y=o+\'|p|\'+y}k.1d(P+l,y);5(j&amp;&amp;l!=\'Y\'&amp;&amp;(l!=\'1H\'&amp;&amp;R)&amp;&amp;m&lt;0&amp;&amp;!1R&amp;&amp;!h){U{k.1g(l)}V(e){}}}u{7 p=[f.35];5(f.1E!=\'\')p.8(\'#\'+f.1E);5(f.1r!=\'\')p.8(\'#\'+f.1r);6.Z(\'2A\',[g,p.Q(\'\')],f)}}}v f},2B:{\'2A\':&quot;27 - 36 18 28 2C \\&quot;&amp;\\&quot; X \\&quot;&amp;\\&quot;&quot;,\'37\':\'38 39 28 27 3a, 3b a &lt;2D 1E=\\&quot;1S\\&quot;&gt;&lt;/2D&gt; X 3c 10.\',\'3d\':\'2E 1q r 3e\\\'t 3f a 3g 29 2C\',\'2w\':\'A 3h 2F 3i 3j 3k 28 29: &amp;\',\'2f\':\'2E 29: &amp; 3l 2G 3m 3n 2F 2G 3o 1o\',\'2a\':\'3p 3q 3r 3s 27, 3t 3u a 3v 3w 3x 3y: 3z, 3A, 1A, 3B, 3C,...\',\'2z\':\'3D 3E: \\&quot;&amp;\\&quot; X: &amp;\'},Z:r(a,b,c){7 d=6.2B[a]||a;7 e=/&amp;/;5(d!=a&amp;&amp;b){5(J b==\'1F\'){d=d.G(e,b)}u{H(7 i=0;i&lt;b.q;i++){d=d.G(e,b[i])}}}7 f=10.2b(\'3F\');5(f){f.1K=[d,\'&lt;3G /&gt;\',f.1K].Q(\'\')}u{3H(d)}}};U{5(1A){1A.3I[0]=/^(\\[) *@?([\\w:-]+) *([!*$^~=]*) *(\'?&quot;?)(.*?)\\4 *\\]/;$p.1V.8({11:/\\s?1A[^\\s]+\\=\\&quot;[^\\&quot;]+\\&quot;/1Y,12:\'\'});$p.18=r(a,b){7 c=1A.18(a,b);v(c[0])?c[0]:E};$.17.$3J=$.17.3K=r(a){v $($p.1q(a,$(6)))};$.17.$3L=$.17.1G=r(a,b,c){5(b)$p.1q(b,$(6),K);$p.1G($(6),a,c||E,E);v $(6)};$.17.$3M=$.17.1a=r(a,b,c){5(J b==\'1F\'){c=b;b=E}7 d=(c)?c:$(6)[0];v $(6).2H($p.1a(d,a,b))};$.17.R=r(a,b,c){b=b||E;c=c||E;5(!c&amp;&amp;b&amp;&amp;b.3N||b.2q){c=b[0]||b;b=E}7 d=(c)?c:$(6)[0];v $(6).2H($p.R(d,a,b))}}}V(e){U{5(3O){}}V(e){U{5(3P){}}V(e){U{5(3Q){}}V(e){}}}}',62,239,'|||||if|this|var|push||||||||||||||||||length|function|||else|return||attValue|currentDir|utils||wrkStr|test|att|false|substring|replace|for|compiledFunctions|typeof|true|prop|currentLoop|getAttribute|strOut|ns|join|autoRender|repeat|context|try|catch|window|in|nodeValue|msg|document|what|by|match|openArrays|attOut|arrSrc|fn|find|toString|render|split|cloneNode|setAttribute|repeats|replacer|removeAttribute|rTag|rSrc|fnId|quot|index|multipleDir|pure|compiled|cnt|map|className|nodeValues|replacedSrc|nodeValueSrc|repeatPrefix|output|suffix|isNodeValue|attName|jQuery|MSIE|navigator|userAgent|id|string|compile|class|toMap|null|innerHTML|subSrc|spc|max|curr|key|substr|append|pureRuntime|createElement|appendChild|domCleaningRules|location|indexOf|gi|number|out|Index|isArray|arrayName|outerHTML|offset|isStr|PURE|the|HTML|library_needed|getElementById|value|select|continue|HTML_does_not_exist|autoRenderAtt|new|RegExp|isTypeOfArray|propertyIsEnumerable|splice|autoMap|break|nodeWalk|do|nodeType|nextSibling|parentNode|while|outputFn|contextOut|no_HTML_name_set_for_parsing|search|delete|parsing_error|element_to_map_not_found|messages|element|textarea|The|is|not|replaceWith|pure_|getRuntime|TEXTAREA|body|object|undefined|fName|pathname|xml|namespace|beebole|autoRenderAtts|100|firstChild|source|replaceChild|parseInt|usedFn|lt|eval|message|div|no_template_found|nodeName|Cannot|place_runtime_container|To|collect|runtime|place|your|no_HTML_selected|didn|receive|valid|name|needed|when|parsing|does|exist|or|yet|In|order|to|run|you|need|JS|library|such|as|dojo|domAssistant|mootools|prototype|Parsing|error|pureMsg|br|alert|parse|pMap|mapDirective|pCompile|pRender|jquery|DOMAssistant|MooTools|Prototype'.split('|'),0,{}))
\ No newline at end of file</diff>
      <filename>js/purePacked.js</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>3c4e164f2187e2aade5620d1259945b8f3c18cee</id>
    </parent>
  </parents>
  <author>
    <name>pure</name>
    <email>tchvil@gmail.com</email>
  </author>
  <url>http://github.com/pure/pure/commit/962a0769594a14eec81cbfeecc9c6244d9f9314e</url>
  <id>962a0769594a14eec81cbfeecc9c6244d9f9314e</id>
  <committed-date>2008-09-17T08:44:16-07:00</committed-date>
  <authored-date>2008-09-17T08:44:16-07:00</authored-date>
  <message>change the class append/prepend behaviour to avoid to add a plus and pack the files</message>
  <tree>9aa4d11287a8eb68ef18ac3cd9e3fc06abcb96aa</tree>
  <committer>
    <name>pure</name>
    <email>tchvil@gmail.com</email>
  </committer>
</commit>
