You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by yu...@apache.org on 2013/03/22 05:10:06 UTC

svn commit: r1459619 [32/35] - in /incubator/ambari/site/1.2.2: ./ common/ common/css/ common/images/ common/images/admon/ common/images/callouts/ common/images/cc/ common/jquery/ common/jquery/jquery.qtip-1.0.0-rc3/ common/jquery/theme-redmond/ common...

Added: incubator/ambari/site/1.2.2/content/scripts/shBrushVb.js
URL: http://svn.apache.org/viewvc/incubator/ambari/site/1.2.2/content/scripts/shBrushVb.js?rev=1459619&view=auto
==============================================================================
--- incubator/ambari/site/1.2.2/content/scripts/shBrushVb.js (added)
+++ incubator/ambari/site/1.2.2/content/scripts/shBrushVb.js Fri Mar 22 04:10:01 2013
@@ -0,0 +1,56 @@
+/**
+ * SyntaxHighlighter
+ * http://alexgorbatchev.com/SyntaxHighlighter
+ *
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
+ * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
+ *
+ * @version
+ * 3.0.83 (July 02 2010)
+ * 
+ * @copyright
+ * Copyright (C) 2004-2010 Alex Gorbatchev.
+ *
+ * @license
+ * Dual licensed under the MIT and GPL licenses.
+ */
+;(function()
+{
+	// CommonJS
+	typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
+
+	function Brush()
+	{
+		var keywords =	'AddHandler AddressOf AndAlso Alias And Ansi As Assembly Auto ' +
+						'Boolean ByRef Byte ByVal Call Case Catch CBool CByte CChar CDate ' +
+						'CDec CDbl Char CInt Class CLng CObj Const CShort CSng CStr CType ' +
+						'Date Decimal Declare Default Delegate Dim DirectCast Do Double Each ' +
+						'Else ElseIf End Enum Erase Error Event Exit False Finally For Friend ' +
+						'Function Get GetType GoSub GoTo Handles If Implements Imports In ' +
+						'Inherits Integer Interface Is Let Lib Like Long Loop Me Mod Module ' +
+						'MustInherit MustOverride MyBase MyClass Namespace New Next Not Nothing ' +
+						'NotInheritable NotOverridable Object On Option Optional Or OrElse ' +
+						'Overloads Overridable Overrides ParamArray Preserve Private Property ' +
+						'Protected Public RaiseEvent ReadOnly ReDim REM RemoveHandler Resume ' +
+						'Return Select Set Shadows Shared Short Single Static Step Stop String ' +
+						'Structure Sub SyncLock Then Throw To True Try TypeOf Unicode Until ' +
+						'Variant When While With WithEvents WriteOnly Xor';
+
+		this.regexList = [
+			{ regex: /'.*$/gm,										css: 'comments' },			// one line comments
+			{ regex: SyntaxHighlighter.regexLib.doubleQuotedString,	css: 'string' },			// strings
+			{ regex: /^\s*#.*$/gm,									css: 'preprocessor' },		// preprocessor tags like #region and #endregion
+			{ regex: new RegExp(this.getKeywords(keywords), 'gm'),	css: 'keyword' }			// vb keyword
+			];
+
+		this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags);
+	};
+
+	Brush.prototype	= new SyntaxHighlighter.Highlighter();
+	Brush.aliases	= ['vb', 'vbnet'];
+
+	SyntaxHighlighter.brushes.Vb = Brush;
+
+	// CommonJS
+	typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
+})();

Added: incubator/ambari/site/1.2.2/content/scripts/shBrushXml.js
URL: http://svn.apache.org/viewvc/incubator/ambari/site/1.2.2/content/scripts/shBrushXml.js?rev=1459619&view=auto
==============================================================================
--- incubator/ambari/site/1.2.2/content/scripts/shBrushXml.js (added)
+++ incubator/ambari/site/1.2.2/content/scripts/shBrushXml.js Fri Mar 22 04:10:01 2013
@@ -0,0 +1,73 @@
+/**
+ * SyntaxHighlighter
+ * http://alexgorbatchev.com/SyntaxHighlighter
+ *
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
+ * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
+ *
+ * @version
+ * 3.0.83 (July 02 2010)
+ * 
+ * @copyright
+ * Copyright (C) 2004-2010 Alex Gorbatchev.
+ *
+ * @license
+ * Dual licensed under the MIT and GPL licenses.
+ */
+;(function()
+{
+	// CommonJS
+	SyntaxHighlighter = SyntaxHighlighter || (typeof require !== 'undefined'? require('shCore').SyntaxHighlighter : null);
+
+	function Brush()
+	{
+		function process(match, regexInfo)
+		{
+			var constructor = SyntaxHighlighter.Match,
+				code = match[0],
+				tag = new XRegExp('(&lt;|<)[\\s\\/\\?]*(?<name>[:\\w-\\.]+)', 'xg').exec(code),
+				result = []
+				;
+		
+			if (match.attributes != null) 
+			{
+				var attributes,
+					regex = new XRegExp('(?<name> [\\w:\\-\\.]+)' +
+										'\\s*=\\s*' +
+										'(?<value> ".*?"|\'.*?\'|\\w+)',
+										'xg');
+
+				while ((attributes = regex.exec(code)) != null) 
+				{
+					result.push(new constructor(attributes.name, match.index + attributes.index, 'color1'));
+					result.push(new constructor(attributes.value, match.index + attributes.index + attributes[0].indexOf(attributes.value), 'string'));
+				}
+			}
+
+			if (tag != null)
+				result.push(
+					new constructor(tag.name, match.index + tag[0].indexOf(tag.name), 'keyword')
+				);
+
+			return result;
+		}
+	
+		this.regexList = [
+            //Make sure the replacement for the callouts does not get highlighted
+            {regex: /@@@@([0-9]?[0-9])@([0-9]?[0-9])@@@@/g,css: 'removed'},		
+            {regex: /\w+?\=/g, css: 'color1'},
+            {regex: /\"[^\"]+\"/g, css: 'string'},		
+			{ regex: new XRegExp('(\\&lt;|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\&gt;|>)', 'gm'),			css: 'color2' },	// <![ ... [ ... ]]>
+			{ regex: SyntaxHighlighter.regexLib.xmlComments,												css: 'comments' },	// <!-- ... -->
+			{ regex: new XRegExp('(&lt;|<)[\\s\\/\\?]*(\\w+)(?<attributes>.*?)[\\s\\/\\?]*(&gt;|>)', 'sg'), func: process }
+		];
+	};
+
+	Brush.prototype	= new SyntaxHighlighter.Highlighter();
+	Brush.aliases	= ['xml', 'xhtml', 'xslt', 'html'];
+
+	SyntaxHighlighter.brushes.Xml = Brush;
+
+	// CommonJS
+	typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
+})();

Added: incubator/ambari/site/1.2.2/content/scripts/shCore.js
URL: http://svn.apache.org/viewvc/incubator/ambari/site/1.2.2/content/scripts/shCore.js?rev=1459619&view=auto
==============================================================================
--- incubator/ambari/site/1.2.2/content/scripts/shCore.js (added)
+++ incubator/ambari/site/1.2.2/content/scripts/shCore.js Fri Mar 22 04:10:01 2013
@@ -0,0 +1,346 @@
+function highlightCode(a){var b=a.target;null==b&&(b=a.srcElement);var c=findParentElement(b,".syntaxhighlighter"),d=findContainerElement(b),e=document.createElement("textarea"),f,g=getHighlighterId(c.id);f=document.getElementById(g),addClass(c,"source");var h=d.childNodes,i=[];for(var j=0;j<h.length;j++)i.push(h[j].innerText||h[j].textContent);i=i.join("\r"),i=i.replace(/\u00a0/g," "),e.appendChild(document.createTextNode(i)),d.appendChild(e),e.focus(),e.select(),d.addEventListener?d.addEventListener("click",function(){removeHighlight(e,c)},!1):d.attachEvent&&d.attachEvent("onmouseup",function(){removeHighlight(e,c)},!1)}function removeHighlight(a,b){a.parentNode.removeChild(a),removeClass(b,"source")}function findContainerElement(a){var b=findParentElement(a,".syntaxhighlighter"),c=null;if(null!=b&&b!=undefined){var d=b.getElementsByTagName("div");if(null!=d&&d!=undefined&&d.length>0){var e=0,f=null;for(e=0;e<d.length;++e){f=d[e];if(f.className=="container"){c=f;break}}}}r
 eturn c}function findElement(a,b,c){if(a==null)return null;var d=c!=1?a.childNodes:[a.parentNode],e={"#":"id",".":"className"}[b.substr(0,1)]||"nodeName",f,g;f=e!="nodeName"?b.substr(1):b.toUpperCase();if((a[e]||"").indexOf(f)!=-1)return a;for(var h=0;d&&h<d.length&&g==null;h++)g=findElement(d[h],b,c);return g}function findParentElement(a,b){return findElement(a,b,!0)}function getHighlighterId(a){var b="highlighter_";return a.indexOf(b)==0?a:b+a}function addClass(a,b){hasClass(a,b)||(a.className+=" "+b)}function hasClass(a,b){return a.className.indexOf(b)!=-1}function removeClass(a,b){a.className=a.className.replace(b,"")}var XRegExp;if(XRegExp)throw Error("can't load XRegExp twice in the same frame");(function(a){function l(a,b){if(!XRegExp.isRegExp(a))throw TypeError("type RegExp expected");var c=a._xregexp;return a=XRegExp(a.source,m(a)+(b||"")),c&&(a._xregexp={source:c.source,captureNames:c.captureNames?c.captureNames.slice(0):null}),a}function m(a){return(a.global?"g":"
 ")+(a.ignoreCase?"i":"")+(a.multiline?"m":"")+(a.extended?"x":"")+(a.sticky?"y":"")}function n(a,b,c,d){var g=f.length,h,i,j;e=!0;try{while(g--){j=f[g];if(c&j.scope&&(!j.trigger||j.trigger.call(d))){j.pattern.lastIndex=b,i=j.pattern.exec(a);if(i&&i.index===b){h={output:j.handler.call(d,i,c),match:i};break}}}}catch(k){throw k}finally{e=!1}return h}function o(a,b,c){if(Array.prototype.indexOf)return a.indexOf(b,c);for(var d=c||0;d<a.length;d++)if(a[d]===b)return d;return-1}XRegExp=function(b,d){var f=[],h=XRegExp.OUTSIDE_CLASS,i=0,j,m,o,p,q;if(XRegExp.isRegExp(b)){if(d!==a)throw TypeError("can't supply flags when constructing one RegExp from another");return l(b)}if(e)throw Error("can't call the XRegExp constructor within token definition functions");d=d||"",j={hasNamedCapture:!1,captureNames:[],hasFlag:function(a){return d.indexOf(a)>-1},setFlag:function(a){d+=a}};while(i<b.length)m=n(b,i,h,j),m?(f.push(m.output),i+=m.match[0].length||1):(o=g.exec.call(k[h],b.slice(i)))?(f.pu
 sh(o[0]),i+=o[0].length):(p=b.charAt(i),p==="["?h=XRegExp.INSIDE_CLASS:p==="]"&&(h=XRegExp.OUTSIDE_CLASS),f.push(p),i++);return q=RegExp(f.join(""),g.replace.call(d,c,"")),q._xregexp={source:b,captureNames:j.hasNamedCapture?j.captureNames:null},q},XRegExp.version="1.5.1",XRegExp.INSIDE_CLASS=1,XRegExp.OUTSIDE_CLASS=2;var b=/\$(?:(\d\d?|[$&`'])|{([$\w]+)})/g,c=/[^gimy]+|([\s\S])(?=[\s\S]*\1)/g,d=/^(?:[?*+]|{\d+(?:,\d*)?})\??/,e=!1,f=[],g={exec:RegExp.prototype.exec,test:RegExp.prototype.test,match:String.prototype.match,replace:String.prototype.replace,split:String.prototype.split},h=g.exec.call(/()??/,"")[1]===a,i=function(){var a=/^/g;return g.test.call(a,""),!a.lastIndex}(),j=RegExp.prototype.sticky!==a,k={};k[XRegExp.INSIDE_CLASS]=/^(?:\\(?:[0-3][0-7]{0,2}|[4-7][0-7]?|x[\dA-Fa-f]{2}|u[\dA-Fa-f]{4}|c[A-Za-z]|[\s\S]))/,k[XRegExp.OUTSIDE_CLASS]=/^(?:\\(?:0(?:[0-3][0-7]{0,2}|[4-7][0-7]?)?|[1-9]\d*|x[\dA-Fa-f]{2}|u[\dA-Fa-f]{4}|c[A-Za-z]|[\s\S])|\(\?[:=!]|[?*+]\?|{\d+(?:,\d*)?
 }\??)/,XRegExp.addToken=function(a,b,c,d){f.push({pattern:l(a,"g"+(j?"y":"")),handler:b,scope:c||XRegExp.OUTSIDE_CLASS,trigger:d||null})},XRegExp.cache=function(a,b){var c=a+"/"+(b||"");return XRegExp.cache[c]||(XRegExp.cache[c]=XRegExp(a,b))},XRegExp.copyAsGlobal=function(a){return l(a,"g")},XRegExp.escape=function(a){return a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},XRegExp.execAt=function(a,b,c,d){var e=l(b,"g"+(d&&j?"y":"")),f;return e.lastIndex=c=c||0,f=e.exec(a),d&&f&&f.index!==c&&(f=null),b.global&&(b.lastIndex=f?e.lastIndex:0),f},XRegExp.freezeTokens=function(){XRegExp.addToken=function(){throw Error("can't run addToken after freezeTokens")}},XRegExp.isRegExp=function(a){return Object.prototype.toString.call(a)==="[object RegExp]"},XRegExp.iterate=function(a,b,c,d){var e=l(b,"g"),f=-1,g;while(g=e.exec(a))b.global&&(b.lastIndex=e.lastIndex),c.call(d,g,++f,a,b),e.lastIndex===g.index&&e.lastIndex++;b.global&&(b.lastIndex=0)},XRegExp.matchChain=function(a,b){return fu
 nction c(a,d){var e=b[d].regex?b[d]:{regex:b[d]},f=l(e.regex,"g"),g=[],h;for(h=0;h<a.length;h++)XRegExp.iterate(a[h],f,function(a){g.push(e.backref?a[e.backref]||"":a[0])});return d===b.length-1||!g.length?g:c(g,d+1)}([a],0)},RegExp.prototype.apply=function(a,b){return this.exec(b[0])},RegExp.prototype.call=function(a,b){return this.exec(b)},RegExp.prototype.exec=function(b){var c,d,e,f;this.global||(f=this.lastIndex),c=g.exec.apply(this,arguments);if(c){!h&&c.length>1&&o(c,"")>-1&&(e=RegExp(this.source,g.replace.call(m(this),"g","")),g.replace.call((b+"").slice(c.index),e,function(){for(var b=1;b<arguments.length-2;b++)arguments[b]===a&&(c[b]=a)}));if(this._xregexp&&this._xregexp.captureNames)for(var j=1;j<c.length;j++)d=this._xregexp.captureNames[j-1],d&&(c[d]=c[j]);!i&&this.global&&!c[0].length&&this.lastIndex>c.index&&this.lastIndex--}return this.global||(this.lastIndex=f),c},RegExp.prototype.test=function(a){var b,c;return this.global||(c=this.lastIndex),b=g.exec.call(t
 his,a),b&&!i&&this.global&&!b[0].length&&this.lastIndex>b.index&&this.lastIndex--,this.global||(this.lastIndex=c),!!b},String.prototype.match=function(a){XRegExp.isRegExp(a)||(a=RegExp(a));if(a.global){var b=g.match.apply(this,arguments);return a.lastIndex=0,b}return a.exec(this)},String.prototype.replace=function(a,c){var d=XRegExp.isRegExp(a),e,f,h,i;return d?(a._xregexp&&(e=a._xregexp.captureNames),a.global||(i=a.lastIndex)):a+="",Object.prototype.toString.call(c)==="[object Function]"?f=g.replace.call(this+"",a,function(){if(e){arguments[0]=new String(arguments[0]);for(var b=0;b<e.length;b++)e[b]&&(arguments[0][e[b]]=arguments[b+1])}return d&&a.global&&(a.lastIndex=arguments[arguments.length-2]+arguments[0].length),c.apply(null,arguments)}):(h=this+"",f=g.replace.call(h,a,function(){var a=arguments;return g.replace.call(c+"",b,function(b,c,d){if(!c){var g=+d;return g<=a.length-3?a[g]:(g=e?o(e,d):-1,g>-1?a[g+1]:b)}switch(c){case"$":return"$";case"&":return a[0];case"`":re
 turn a[a.length-1].slice(0,a[a.length-2]);case"'":return a[a.length-1].slice(a[a.length-2]+a[0].length);default:var f="";c=+c;if(!c)return b;while(c>a.length-3)f=String.prototype.slice.call(c,-1)+f,c=Math.floor(c/10);return(c?a[c]||"":"$")+f}})})),d&&(a.global?a.lastIndex=0:a.lastIndex=i),f},String.prototype.split=function(b,c){if(!XRegExp.isRegExp(b))return g.split.apply(this,arguments);var d=this+"",e=[],f=0,h,i;if(c===a||+c<0)c=Infinity;else{c=Math.floor(+c);if(!c)return[]}b=XRegExp.copyAsGlobal(b);while(h=b.exec(d)){if(b.lastIndex>f){e.push(d.slice(f,h.index)),h.length>1&&h.index<d.length&&Array.prototype.push.apply(e,h.slice(1)),i=h[0].length,f=b.lastIndex;if(e.length>=c)break}b.lastIndex===h.index&&b.lastIndex++}return f===d.length?(!g.test.call(b,"")||i)&&e.push(""):e.push(d.slice(f)),e.length>c?e.slice(0,c):e},XRegExp.addToken(/\(\?#[^)]*\)/,function(a){return g.test.call(d,a.input.slice(a.index+a[0].length))?"":"(?:)"}),XRegExp.addToken(/\((?!\?)/,function(){return 
 this.captureNames.push(null),"("}),XRegExp.addToken(/\(\?<([$\w]+)>/,function(a){return this.captureNames.push(a[1]),this.hasNamedCapture=!0,"("}),XRegExp.addToken(/\\k<([\w$]+)>/,function(a){var b=o(this.captureNames,a[1]);return b>-1?"\\"+(b+1)+(isNaN(a.input.charAt(a.index+a[0].length))?"":"(?:)"):a[0]}),XRegExp.addToken(/\[\^?]/,function(a){return a[0]==="[]"?"\\b\\B":"[\\s\\S]"}),XRegExp.addToken(/^\(\?([imsx]+)\)/,function(a){return this.setFlag(a[1]),""}),XRegExp.addToken(/(?:\s+|#.*)+/,function(a){return g.test.call(d,a.input.slice(a.index+a[0].length))?"":"(?:)"},XRegExp.OUTSIDE_CLASS,function(){return this.hasFlag("x")}),XRegExp.addToken(/\./,function(){return"[\\s\\S]"},XRegExp.OUTSIDE_CLASS,function(){return this.hasFlag("s")})})();if(typeof SyntaxHighlighter=="undefined")var SyntaxHighlighter=function(){function b(a){var b=[];for(var c=0;c<a.length;c++)b.push(a[c]);return b}function c(a){return a.split(/\r?\n/)}function d(b){return a.vars.highlighters[getHighlig
 hterId(b)]}function e(a){return document.getElementById(getHighlighterId(a))}function f(b){a.vars.highlighters[getHighlighterId(b.id)]=b}function g(a,b,c){c=Math.max(c||0,0);for(var d=c;d<a.length;d++)if(a[d]==b)return d;return-1}function h(a){return(a||"")+Math.round(Math.random()*1e6).toString()}function i(a,b){var c={},d;for(d in a)c[d]=a[d];for(d in b)c[d]=b[d];return c}function j(a){var b={"true":!0,"false":!1}[a];return b==null?a:b}function k(a,b,c,d,e){var f=(screen.width-c)/2,g=(screen.height-d)/2;e+=", left="+f+", top="+g+", width="+c+", height="+d,e=e.replace(/^,/,"");var h=window.open(a,b,e);return h.focus(),h}function l(a,b,c,d){function e(a){a=a||window.event,a.target||(a.target=a.srcElement,a.preventDefault=function(){this.returnValue=!1}),c.call(d||window,a)}a.attachEvent?a.attachEvent("on"+b,e):a.addEventListener(b,e,!1)}function m(b){window.alert(a.config.strings.alert+b)}function n(b,c){var d=a.vars.discoveredBrushes,e=null;if(d==null){d={};for(var f in a.b
 rushes){var g=a.brushes[f],h=g.aliases;if(h==null)continue;g.brushName=f.toLowerCase();for(var i=0;i<h.length;i++)d[h[i]]=f}a.vars.discoveredBrushes=d}return e=a.brushes[d[b]],e==null&&c&&m(a.config.strings.noBrush+b),e}function o(a,b){var d=c(a);for(var e=0;e<d.length;e++)d[e]=b(d[e],e);return d.join("\r\n")}function p(a){return a.replace(/^[ ]*[\n]+|[\n]*[ ]*$/g,"")}function q(a){var b,c={},d=new XRegExp("^\\[(?<values>(.*?))\\]$"),e=new XRegExp("(?<name>[\\w-]+)\\s*:\\s*(?<value>[\\w-%#]+|\\[.*?\\]|\".*?\"|'.*?')\\s*;?","g");while((b=e.exec(a))!=null){var f=b.value.replace(/^['"]|['"]$/g,"");if(f!=null&&d.test(f)){var g=d.exec(f);f=g.values.length>0?g.values.split(/\s*,\s*/):[]}c[b.name]=f}return c}function r(b,c){return b==null||b.length==0||b=="\n"?b:(b=b.replace(/</g,"&lt;"),b=b.replace(/ {2,}/g,function(b){var c="";for(var d=0;d<b.length-1;d++)c+=a.config.space;return c+" "}),c!=null&&(b=o(b,function(a){if(a.length==0)return"";var b="";return a=a.replace(/^(&nbsp;| )+
 /,function(a){return b=a,""}),a.length==0?b:b+'<code class="'+c+'">'+a+"</code>"})),b)}function s(a,b){var c=a.toString();while(c.length<b)c="0"+c;return c}function t(a,b){var c="";for(var d=0;d<b;d++)c+=" ";return a.replace(/\t/g,c)}function u(a,b){function h(a,b,c){return a.substr(0,b)+f.substr(0,c)+a.substr(b+1,a.length)}var d=c(a),e="	",f="";for(var g=0;g<50;g++)f+="                    ";return a=o(a,function(a){if(a.indexOf(e)==-1)return a;var c=0;while((c=a.indexOf(e))!=-1){var d=b-c%b;a=h(a,c,d)}return a}),a}function v(b){var c=/<br\s*\/?>|&lt;br\s*\/?&gt;/gi;return a.config.bloggerMode==1&&(b=b.replace(c,"\n")),a.config.stripBrs==1&&(b=b.replace(c,"")),b}function w(a){return a.replace(/^\s+|\s+$/g,"")}function x(a){var b=c(v(a)),d=new Array,e=/^\s*/,f=1e3;for(var g=0;g<b.length&&f>0;g++){var h=b[g];if(w(h).length==0)continue;var i=e.exec(h);if(i==null)return a;f=Math.min(i[0].length,f)}if(f>0)for(var g=0;g<b.length;g++)b[g]=b[g].substr(f);return b.join("\n")}function
  y(a,b){return a.index<b.index?-1:a.index>b.index?1:a.length<b.length?-1:a.length>b.length?1:0}function z(b,c){function d(a,b){return a[0]}var e=0,f=null,g=[],h=c.func?c.func:d;while((f=c.regex.exec(b))!=null){var i=h(f,c);typeof i=="string"&&(i=[new a.Match(i,f.index,c.css)]),g=g.concat(i)}return g}function A(b){var c=/(.*)((&gt;|&lt;).*)/;return b.replace(a.regexLib.url,function(a){var b="",d=null;if(d=c.exec(a))a=d[1],b=d[2];return'<a href="'+a+'">'+a+"</a>"+b})}function B(){var a=document.getElementsByTagName("script"),b=[];for(var c=0;c<a.length;c++)a[c].type=="syntaxhighlighter"&&b.push(a[c]);return b}function C(a){var b="<![CDATA[",c="]]>",d=w(a),e=!1,f=b.length,g=c.length;d.indexOf(b)==0&&(d=d.substring(f),e=!0);var h=d.length;return d.indexOf(c)==h-g&&(d=d.substring(0,h-g),e=!0),e?d:a}function D(a){var b=a.target,c=findParentElement(b,".syntaxhighlighter"),e=findParentElement(b,".container"),f=document.createElement("textarea"),g;if(!e||!c||findElement(e,"textarea")
 )return;g=d(c.id),addClass(c,"source");var h=e.childNodes,i=[];for(var j=0;j<h.length;j++)i.push(h[j].innerText||h[j].textContent);i=i.join("\r"),i=i.replace(/\u00a0/g," "),f.appendChild(document.createTextNode(i)),e.appendChild(f),f.focus(),f.select(),l(f,"blur",function(a){f.parentNode.removeChild(f),removeClass(c,"source")})}function E(a,b){var c=a.target,d=c.className,e=0,f=d.indexOf("syntaxhighlighter");while(-1==f&&e<10)++e,c=c.parentNode,d=c.className,f=d.indexOf("syntaxhighlighter");if(f==0){f=-1;var g=c.getElementsByTagName("div");if(null!=g&&g.length>0){e=0;for(e=0;e<g.length;++e){c=g[e],d=c.className,f=d.indexOf(b);if(c.className!=null&&f!=-1)break}}}return f==-1&&(c=null),c}function F(a){var b=E(a,"mytoolbar");null!=b&&(b.className="show")}function G(a){var b=E(a,"show");null!=b&&(b.className="mytoolbar")}typeof require!="undefined"&&typeof XRegExp=="undefined"&&(XRegExp=require("XRegExp").XRegExp);var a={defaults:{"class-name":"","first-line":1,"pad-line-numbers
 ":!1,highlight:null,title:null,"smart-tabs":!0,"tab-size":4,gutter:!0,toolbar:!0,"quick-code":!0,collapse:!1,"auto-links":!1,light:!1,unindent:!0,"html-script":!1},config:{space:"&nbsp;",useScriptTags:!0,bloggerMode:!1,stripBrs:!1,tagName:"pre",strings:{expandSource:"expand source",help:"?",alert:"SyntaxHighlighter\n\n",noBrush:"Can't find brush for: ",brushNotHtmlScript:"Brush wasn't configured for html-script option: ",aboutDialog:"@ABOUT@"}},vars:{discoveredBrushes:null,highlighters:{}},brushes:{},regexLib:{multiLineCComments:/\/\*[\s\S]*?\*\//gm,singleLineCComments:/\/\/.*$/gm,singleLinePerlComments:/#.*$/gm,doubleQuotedString:/"([^\\"\n]|\\.)*"/g,singleQuotedString:/'([^\\'\n]|\\.)*'/g,multiLineDoubleQuotedString:new XRegExp('"([^\\\\"]|\\\\.)*"',"gs"),multiLineSingleQuotedString:new XRegExp("'([^\\\\']|\\\\.)*'","gs"),xmlComments:/(&lt;|<)!--[\s\S]*?--(&gt;|>)/gm,url:/\w+:\/\/[\w-.\/?%&=:@;#]*/g,phpScriptTags:{left:/(&lt;|<)\?(?:=|php)?/g,right:/\?(&gt;|>)/g,eof:!0},as
 pScriptTags:{left:/(&lt;|<)%=?/g,right:/%(&gt;|>)/g},scriptScriptTags:{left:/(&lt;|<)\s*script.*?(&gt;|>)/gi,right:/(&lt;|<)\/\s*script\s*(&gt;|>)/gi}},toolbar:{getHtml:function(b){function f(b,c){return a.toolbar.getButtonHtml(b,c,a.config.strings[c])}var c='<div class="show">',d=a.toolbar.items,e=d.list;for(var g=0;g<e.length;g++)c+=(d[e[g]].getHtml||f)(b,e[g]);return c+="</div>",c},getButtonHtml:function(a,b,c){return'<div class="newtoolbar2"> <img src="images/icon_clipboard.png" alt="Select Text" title="Select Text" height="20" width="20" align="right" onclick="highlightCode(event);" /> </div>'},handler:function(b){function f(a){var b=new RegExp(a+"_(\\w+)"),c=b.exec(e);return c?c[1]:null}var c=b.target,e=c.className||"",g=d(findParentElement(c,".syntaxhighlighter").id),h=f("command");g&&h&&a.toolbar.items[h].execute(g),b.preventDefault()},items:{list:["expandSource","help"],expandSource:{getHtml:function(b){if(b.getParam("collapse")!=1)return"";var c=b.getParam("title")
 ;return a.toolbar.getButtonHtml(b,"expandSource",c?c:a.config.strings.expandSource)},execute:function(a){var b=e(a.id);removeClass(b,"collapsed")}},help:{execute:function(b){var c=k("","_blank",500,250,"scrollbars=0"),d=c.document;d.write(a.config.strings.aboutDialog),d.close(),c.focus()}}}},findElements:function(c,d){var e=d?[d]:b(document.getElementsByTagName(a.config.tagName)),f=a.config,g=[];f.useScriptTags&&(e=e.concat(B()));if(e.length===0)return g;for(var h=0;h<e.length;h++){var j={target:e[h],params:i(c,q(e[h].className))};if(j.params["brush"]==null)continue;g.push(j)}return g},highlight:function(b,c){var d=this.findElements(b,c),e="innerHTML",f=null,g=a.config;if(d.length===0)return;for(var h=0;h<d.length;h++){var c=d[h],i=c.target,j=c.params,k=j.brush,l;if(k==null)continue;if(j["html-script"]=="true"||a.defaults["html-script"]==1)f=new a.HtmlScript(k),k="htmlscript";else{var m=n(k);if(!m)continue;f=new m}l=i[e],g.useScriptTags&&(l=C(l)),(i.title||"")!=""&&(j.title=
 i.title),j.brush=k,f.init(j),c=f.getDiv(l),(i.id||"")!=""&&(c.id=i.id),i.parentNode.replaceChild(c,i)}},all:function(b){l(window,"load",function(){a.highlight(b)})}};return a.Match=function(a,b,c){this.value=a,this.index=b,this.length=a.length,this.css=c,this.brushName=null},a.Match.prototype.toString=function(){return this.value},a.HtmlScript=function(b){function j(a,b){for(var c=0;c<a.length;c++)a[c].index+=b}function k(a,b){var e=a.code,f=[],g=d.regexList,h=a.index+a.left.length,i=d.htmlScript,k;for(var l=0;l<g.length;l++)k=z(e,g[l]),j(k,h),f=f.concat(k);i.left!=null&&a.left!=null&&(k=z(a.left,i.left),j(k,a.index),f=f.concat(k)),i.right!=null&&a.right!=null&&(k=z(a.right,i.right),j(k,a.index+a[0].lastIndexOf(a.right)),f=f.concat(k));for(var m=0;m<f.length;m++)f[m].brushName=c.brushName;return f}var c=n(b),d,e=new a.brushes.Xml,f=null,g=this,h="getDiv getHtml init".split(" ");if(c==null)return;d=new c;for(var i=0;i<h.length;i++)(function(){var a=h[i];g[a]=function(){return
  e[a].apply(e,arguments)}})();if(d.htmlScript==null){m(a.config.strings.brushNotHtmlScript+b);return}e.regexList.push({regex:d.htmlScript.code,func:k})},a.Highlighter=function(){},a.Highlighter.prototype={getParam:function(a,b){var c=this.params[a];return j(c==null?b:c)},create:function(a){return document.createElement(a)},findMatches:function(a,b){var c=[];if(a!=null)for(var d=0;d<a.length;d++)typeof a[d]=="object"&&(c=c.concat(z(b,a[d])));return this.removeNestedMatches(c.sort(y))},removeNestedMatches:function(a){for(var b=0;b<a.length;b++){if(a[b]===null)continue;var c=a[b],d=c.index+c.length;for(var e=b+1;e<a.length&&a[b]!==null;e++){var f=a[e];if(f===null)continue;if(f.index>d)break;f.index==c.index&&f.length>c.length?a[b]=null:f.index>=c.index&&f.index<d&&(a[e]=null)}}return a},figureOutLineNumbers:function(a){var b=[],c=parseInt(this.getParam("first-line"));return o(a,function(a,d){b.push(d+c)}),b},isLineHighlighted:function(a){var b=this.getParam("highlight",[]);retu
 rn typeof b!="object"&&b.push==null&&(b=[b]),g(b,a.toString())!=-1},getLineHtml:function(a,b,c){var d=["line","number"+b,"index"+a,"alt"+(b%2==0?1:2).toString()];return this.isLineHighlighted(b)&&d.push("highlighted"),b==0&&d.push("break"),'<div class="'+d.join(" ")+'">'+c+"</div>"},getLineNumbersHtml:function(b,d){var e="",f=c(b).length,g=parseInt(this.getParam("first-line")),h=this.getParam("pad-line-numbers");h==1?h=(g+f-1).toString().length:isNaN(h)==1&&(h=0);for(var i=0;i<f;i++){var j=d?d[i]:g+i,b=j==0?a.config.space:s(j,h);e+=this.getLineHtml(i,j,b)}return e},getCodeLinesHtml:function(b,d){b=w(b);var e=c(b),f=this.getParam("pad-line-numbers"),g=parseInt(this.getParam("first-line")),b="",h=this.getParam("brush");for(var i=0;i<e.length;i++){var j=e[i],k=/^(&nbsp;|\s)+/.exec(j),l=null,m=d?d[i]:g+i;k!=null&&(l=k[0].toString(),j=j.substr(l.length),l=l.replace(" ",a.config.space)),j=w(j),j.length==0&&(j=a.config.space),b+=this.getLineHtml(i,m,(l!=null?'<code class="'+h+' spa
 ces">'+l+"</code>":"")+j)}return b},getTitleHtml:function(a){return a?"<caption>"+a+"</caption>":""},getMatchesHtml:function(a,b){function f(a){var b=a?a.brushName||e:e;return b?b+" ":""}var c=0,d="",e=this.getParam("brush","");for(var g=0;g<b.length;g++){var h=b[g],i;if(h===null||h.length===0)continue;i=f(h),d+=r(a.substr(c,h.index-c),i+"plain")+r(h.value,i+h.css),c=h.index+h.length+(h.offset||0)}return d+=r(a.substr(c),f()+"plain"),d},getHtml:function(b){var c="",d=["syntaxhighlighter"],e,f,g;return b=b.replace(/<span(.)+?(alt\=\(([0-9]?[0-9])\))??(.)+?callouts\/([0-9]?[0-9])\.png\"(\salt\=\(([0-9]?[0-9])\))??(.)+?<\/span>/ig,"@@@@$5@$5@@@@"),b=b.replace(/<a(\s)+?id(\s)*?=(.)+?<img(.)+?\/callouts\/([0-9]?[0-9])\.png(.)+?>/ig,"~~~~$5~$5~~~~"),b=b.replace(/<span\s+?class\s*?\=\s*?(\")??bold(\")??(.|\n|\r|\f)+?<strong>(.+?)<\/strong>(.)*?<\/span>/ig,"!!!!$4!!!!"),this.getParam("light")==1&&(this.params.toolbar=this.params.gutter=!1),className="syntaxhighlighter",this.getParam
 ("collapse")==1&&d.push("collapsed"),(gutter=this.getParam("gutter"))==0&&d.push("nogutter"),d.push(this.getParam("class-name")),d.push(this.getParam("brush")),b=p(b).replace(/\r/g," "),e=this.getParam("tab-size"),b=this.getParam("smart-tabs")==1?u(b,e):t(b,e),this.getParam("unindent")&&(b=x(b)),gutter&&(g=this.figureOutLineNumbers(b)),f=this.findMatches(this.regexList,b),c=this.getMatchesHtml(b,f),c=this.getCodeLinesHtml(c,g),this.getParam("auto-links")&&(c=A(c)),typeof navigator!="undefined"&&navigator.userAgent&&navigator.userAgent.match(/MSIE/)&&d.push("ie"),c='<div id="'+getHighlighterId(this.id)+'" class="'+d.join(" ")+'">'+(this.getParam("toolbar")?a.toolbar.getHtml(this):"")+'<table border="0" cellpadding="0" cellspacing="0">'+this.getTitleHtml(this.getParam("title"))+"<tbody>"+"<tr>"+(gutter?'<td class="gutter">'+this.getLineNumbersHtml(b)+"</td>":"")+'<td class="code">'+'<div class="container">'+c+"</div>"+"</td>"+"</tr>"+"</tbody>"+"</table>"+"</div>",c=c.replace(
 /@@@@([0-9]?[0-9])@([0-9]?[0-9])@@@@/g,'<span class="co"><img src="../common/images/callouts/$1.png" alt="($2)"/></span>'),c=c.replace(/~~~~([0-9]?[0-9])~([0-9]?[0-9])~~~~/g,'<span class="co"><img src="../common/images/callouts/$1.png" alt="($2)"/></span>'),c=c.replace(/!!!!(.+?)!!!!/g,'<span class="bold variable">$1</span>'),c},getDiv:function(b){b===null&&(b=""),this.code=b;var c=this.create("div");return c.innerHTML=this.getHtml(b),this.getParam("toolbar")&&l(findElement(c,".toolbar"),"click",a.toolbar.handler),this.getParam("quick-code")&&l(findElement(c,".code"),"dblclick",D),c},init:function(b){this.id=h(),f(this),this.params=i(a.defaults,b||{}),this.getParam("light")==1&&(this.params.toolbar=this.params.gutter=!1)},getKeywords:function(a){return a=a.replace(/^\s+|\s+$/g,"").replace(/\s+/g,"|"),"\\b(?:"+a+")\\b"},forHtmlScript:function(a){var b={end:a.right.source};a.eof&&(b.end="(?:(?:"+b.end+")|$)"),this.htmlScript={left:{regex:a.left,css:"script"},right:{regex:a.rig
 ht,css:"script"},code:new XRegExp("(?<left>"+a.left.source+")"+"(?<code>.*?)"+"(?<right>"+b.end+")","sgi")}}},a}();typeof exports!="undefined"?exports.SyntaxHighlighter=SyntaxHighlighter:null
+
+;(function()
+{
+	// CommonJS
+	SyntaxHighlighter = SyntaxHighlighter || (typeof require !== 'undefined'? require('shCore').SyntaxHighlighter : null);
+
+	function Brush()
+	{
+		var keywords =	'if fi then elif else for do done until while break continue case esac function return in eq ne ge le';
+		var commands =  'alias apropos awk basename bash bc bg builtin bzip2 cal cat cd cfdisk chgrp chmod chown chroot' +
+						'cksum clear cmp comm command cp cron crontab csplit curl cut date dc dd ddrescue declare df ' +
+						'diff diff3 dig dir dircolors dirname dirs du echo egrep eject enable env ethtool eval ' +
+						'exec exit expand export expr false fdformat fdisk fg fgrep file find fmt fold format ' +
+						'free fsck ftp gawk getopts grep groups gzip hash head history hostname id ifconfig ' +
+						'import install join kill less let ln local locate logname logout look lpc lpr lprint ' +
+						'lprintd lprintq lprm ls lsof make man mkdir mkfifo mkisofs mknod more mount mtools ' +
+						'mv netstat nice nl nohup nslookup open op passwd paste pathchk ping popd pr printcap ' +
+						'printenv printf ps pushd pwd quota quotacheck quotactl ram rcp read readonly renice ' +
+						'remsync rm rmdir rsync screen scp sdiff sed select seq set sftp shift shopt shutdown ' +
+						'sleep sort source split ssh strace su sudo sum symlink sync tail tar tee test time ' +
+						'times touch top traceroute trap tr true tsort tty ulimit umask umount unalias ' +
+						'uname unexpand uniq units unset unshar useradd usermod users uuencode uudecode v vdir ' +
+						'vi watch wc whereis which who whoami Wget xargs yes'
+						;
+
+		this.regexList = [	
+            //Make sure the replacement for the callouts does not get highlighted
+            {regex: /@@@@([0-9]?[0-9])@([0-9]?[0-9])@@@@/g, css: 'removed'},		
+            {regex: /(\-(.)+?\s)|curl\s/ig, css: 'color2 bold'},
+			{ regex: /^#!.*$/gm,											css: 'preprocessor bold' },
+			{ regex: /\/[\w-\/]+/gm,										css: 'plain' },
+			{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments,		css: 'comments' },		// one line comments
+			{ regex: SyntaxHighlighter.regexLib.doubleQuotedString,			css: 'string' },		// double quoted strings
+			{ regex: SyntaxHighlighter.regexLib.singleQuotedString,			css: 'string' },		// single quoted strings
+			{ regex: new RegExp(this.getKeywords(keywords), 'gm'),			css: 'keyword' },		// keywords
+			{ regex: new RegExp(this.getKeywords(commands), 'gm'),			css: 'functions' }		// commands
+			];
+	}
+
+	Brush.prototype	= new SyntaxHighlighter.Highlighter();
+	Brush.aliases	= ['bash', 'shell', 'sh'];
+
+	SyntaxHighlighter.brushes.Bash = Brush;
+
+	// CommonJS
+	typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
+})();
+
+SyntaxHighlighter.brushes.Custom = function()
+{
+    var operators = '{ } [ ] : ,';
+    
+         
+    this.regexList = [
+        //Make sure the replacement for the callouts does not get highlighted
+        {regex: /@@@@([0-9]?[0-9])@([0-9]?[0-9])@@@@/g, css: 'removed'},        
+        //has a double quote followed by any sequence of characters followed by a double quote followed by colon 
+        { regex: /.*\"(.*)\"(\s)*\:/g, css: 'keyword'},
+        //opposite the above
+        { regex: /[^(.*\".*\"(\s)*\:)]/g, css: 'comments'},
+
+         //has a single quote followed by any sequence of characters followed by a single quote followed by colon 
+        { regex: /.*\'.*\'(\s)*\:/g, css: 'keyword'},
+        //opposite the above
+        { regex: /[^(.*\'.*\'(\s)*\:)]/g, css: 'comments'},
+        
+        //Handle commas
+        //a comma followed by 0 or 1 space
+        { regex: /\,(\s)?/g, css: 'string'},  
+        
+        //Handle the special characters  
+        //Any of the braces followed by 1 or 0 space  
+        { regex: /(\{|\}|\[|\])(\s)?/g, css: 'plain'},
+        //1 or 0 space followed by a } and followed by 1 or 0 space 
+        { regex: /(\s)?\}(\s)?/g, css: 'plain'}   
+
+    ];
+};
+ 
+SyntaxHighlighter.brushes.Custom.prototype = new SyntaxHighlighter.Highlighter();
+SyntaxHighlighter.brushes.Custom.aliases  = ['json', 'JSON'];
+
+
+;(function()
+{
+	// CommonJS
+	SyntaxHighlighter = SyntaxHighlighter || (typeof require !== 'undefined'? require('shCore').SyntaxHighlighter : null);
+
+	function Brush()
+	{
+		var keywords =	'break case catch continue ' +
+						'default delete do else false  ' +
+						'for function if in instanceof ' +
+						'new null return super switch ' +
+						'this throw true try typeof var while with'
+						;
+
+		var r = SyntaxHighlighter.regexLib;
+		
+		this.regexList = [
+            //Make sure the replacement for the callouts does not get highlighted
+            {regex: /@@@@([0-9]?[0-9])@([0-9]?[0-9])@@@@/g, css: 'removed'},    		
+			{ regex: r.multiLineDoubleQuotedString,					css: 'string' },			// double quoted strings
+			{ regex: r.multiLineSingleQuotedString,					css: 'string' },			// single quoted strings
+			{ regex: r.singleLineCComments,							css: 'comments' },			// one line comments
+			{ regex: r.multiLineCComments,							css: 'comments' },			// multiline comments
+			{ regex: /\s*#.*/gm,									css: 'preprocessor' },		// preprocessor tags like #region and #endregion
+			{ regex: new RegExp(this.getKeywords(keywords), 'gm'),	css: 'keyword' }			// keywords
+			];
+	
+		this.forHtmlScript(r.scriptScriptTags);
+	};
+
+	Brush.prototype	= new SyntaxHighlighter.Highlighter();
+	Brush.aliases	= ['js', 'jscript', 'javascript'];
+
+	SyntaxHighlighter.brushes.JScript = Brush;
+
+	// CommonJS
+	typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
+})();
+
+
+/**
+ * SyntaxHighlighter
+ * http://alexgorbatchev.com/SyntaxHighlighter
+ *
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
+ * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
+ *
+ * @version
+ * 3.0.83 (July 02 2010)
+ * 
+ * @copyright
+ * Copyright (C) 2004-2010 Alex Gorbatchev.
+ *
+ * @license
+ * Dual licensed under the MIT and GPL licenses.
+ */
+;(function()
+{
+	// CommonJS
+	SyntaxHighlighter = SyntaxHighlighter || (typeof require !== 'undefined'? require('shCore').SyntaxHighlighter : null);
+
+	function Brush()
+	{
+		function process(match, regexInfo)
+		{
+			var constructor = SyntaxHighlighter.Match,
+				code = match[0],
+				tag = new XRegExp('(&lt;|<)[\\s\\/\\?]*(?<name>[:\\w-\\.]+)', 'xg').exec(code),
+				result = []
+				;
+		
+			if (match.attributes != null) 
+			{
+				var attributes,
+					regex = new XRegExp('(?<name> [\\w:\\-\\.]+)' +
+										'\\s*=\\s*' +
+										'(?<value> ".*?"|\'.*?\'|\\w+)',
+										'xg');
+
+				while ((attributes = regex.exec(code)) != null) 
+				{
+					result.push(new constructor(attributes.name, match.index + attributes.index, 'color1'));
+					result.push(new constructor(attributes.value, match.index + attributes.index + attributes[0].indexOf(attributes.value), 'string'));
+				}
+			}
+
+			if (tag != null)
+				result.push(
+					new constructor(tag.name, match.index + tag[0].indexOf(tag.name), 'keyword')
+				);
+
+			return result;
+		}
+	
+		this.regexList = [
+            //Make sure the replacement for the callouts does not get highlighted
+            {regex: /@@@@([0-9]?[0-9])@([0-9]?[0-9])@@@@/g,css: 'removed'},		
+            {regex: /\w+?\=/g, css: 'color1'},
+            {regex: /\"[^\"]+\"/g, css: 'string'},		
+			{ regex: new XRegExp('(\\&lt;|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\&gt;|>)', 'gm'),			css: 'color2' },	// <![ ... [ ... ]]>
+			{ regex: SyntaxHighlighter.regexLib.xmlComments,												css: 'comments' },	// <!-- ... -->
+			{ regex: new XRegExp('(&lt;|<)[\\s\\/\\?]*(\\w+)(?<attributes>.*?)[\\s\\/\\?]*(&gt;|>)', 'sg'), func: process }
+		];
+	};
+
+	Brush.prototype	= new SyntaxHighlighter.Highlighter();
+	Brush.aliases	= ['xml', 'xhtml', 'xslt', 'html'];
+
+	SyntaxHighlighter.brushes.Xml = Brush;
+
+	// CommonJS
+	typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
+})();
+
+
+;(function()
+{
+	// CommonJS
+	SyntaxHighlighter = SyntaxHighlighter || (typeof require !== 'undefined'? require('shCore').SyntaxHighlighter : null);
+
+	function Brush()
+	{
+		// Contributed by Gheorghe Milas and Ahmad Sherif
+	
+		var keywords =  'and assert break class continue def del elif else ' +
+						'except exec finally for from global if import in is ' +
+						'lambda not or pass print raise return try yield while';
+
+		var funcs = '__import__ abs all any apply basestring bin bool buffer callable ' +
+					'chr classmethod cmp coerce compile complex delattr dict dir ' +
+					'divmod enumerate eval execfile file filter float format frozenset ' +
+					'getattr globals hasattr hash help hex id input int intern ' +
+					'isinstance issubclass iter len list locals long map max min next ' +
+					'object oct open ord pow print property range raw_input reduce ' +
+					'reload repr reversed round set setattr slice sorted staticmethod ' +
+					'str sum super tuple type type unichr unicode vars xrange zip';
+
+		var special =  'None True False self cls class_';
+
+		this.regexList = [	
+			    //Make sure the replacement for the callouts does not get highlighted
+                {regex: /@@@@([0-9]?[0-9])@([0-9]?[0-9])@@@@/g, css: 'removed'},    
+				{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' },
+				{ regex: /^\s*@\w+/gm, 										css: 'decorator' },
+				{ regex: /(['\"]{3})([^\1])*?\1/gm, 						css: 'comments' },
+				{ regex: /"(?!")(?:\.|\\\"|[^\""\n])*"/gm, 					css: 'string' },
+				{ regex: /'(?!')(?:\.|(\\\')|[^\''\n])*'/gm, 				css: 'string' },
+				{ regex: /\+|\-|\*|\/|\%|=|==/gm, 							css: 'keyword' },
+				{ regex: /\b\d+\.?\w*/g, 									css: 'value' },
+				{ regex: new RegExp(this.getKeywords(funcs), 'gmi'),		css: 'functions' },
+				{ regex: new RegExp(this.getKeywords(keywords), 'gm'), 		css: 'keyword' },
+				{ regex: new RegExp(this.getKeywords(special), 'gm'), 		css: 'color1' }
+				];
+			
+		this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags);
+	};
+
+	Brush.prototype	= new SyntaxHighlighter.Highlighter();
+	Brush.aliases	= ['py', 'python'];
+
+	SyntaxHighlighter.brushes.Python = Brush;
+
+	// CommonJS
+	typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
+})();
+
+
+;(function()
+{
+	// CommonJS
+	SyntaxHighlighter = SyntaxHighlighter || (typeof require !== 'undefined'? require('shCore').SyntaxHighlighter : null);
+
+	function Brush()
+	{
+		var keywords =	'abstract assert boolean break byte case catch char class const ' +
+						'continue default do double else enum extends ' +
+						'false final finally float for goto if implements import ' +
+						'instanceof int interface long native new null ' +
+						'package private protected public return ' +
+						'short static strictfp super switch synchronized this throw throws true ' +
+						'transient try void volatile while';
+
+		this.regexList = [	
+			//Make sure the replacement for the callouts does not get highlighted
+            {regex: /@@@@([0-9]?[0-9])@([0-9]?[0-9])@@@@/g, css: 'removed'},    
+			{ regex: SyntaxHighlighter.regexLib.singleLineCComments,	css: 'comments' },		// one line comments
+			{ regex: /\/\*([^\*][\s\S]*)?\*\//gm,						css: 'comments' },	 	// multiline comments
+			{ regex: /\/\*(?!\*\/)\*[\s\S]*?\*\//gm,					css: 'preprocessor' },	// documentation comments
+			{ regex: SyntaxHighlighter.regexLib.doubleQuotedString,		css: 'string' },		// strings
+			{ regex: SyntaxHighlighter.regexLib.singleQuotedString,		css: 'string' },		// strings
+			{ regex: /\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi,				css: 'value' },			// numbers
+			{ regex: /(?!\@interface\b)\@[\$\w]+\b/g,					css: 'color1' },		// annotation @anno
+			{ regex: /\@interface\b/g,									css: 'color2' },		// @interface keyword
+			{ regex: new RegExp(this.getKeywords(keywords), 'gm'),		css: 'keyword' }		// java keyword
+			];
+
+		this.forHtmlScript({
+			left	: /(&lt;|<)%[@!=]?/g, 
+			right	: /%(&gt;|>)/g 
+		});
+	};
+
+	Brush.prototype	= new SyntaxHighlighter.Highlighter();
+	Brush.aliases	= ['java'];
+
+	SyntaxHighlighter.brushes.Java = Brush;
+
+	// CommonJS
+	typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
+})();
+
+/**
+ * SyntaxHighlighter
+ * http://alexgorbatchev.com/SyntaxHighlighter
+ *
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
+ * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
+ *
+ * @version
+ * 3.0.83 (July 02 2010)
+ * 
+ * @copyright
+ * Copyright (C) 2004-2010 Alex Gorbatchev.
+ *
+ * @license
+ * Dual licensed under the MIT and GPL licenses.
+ */
+;(function()
+{
+	// CommonJS
+	typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
+
+	function Brush()
+	{
+		// Contributed by Yegor Jbanov and David Bernard.
+	
+		var keywords =	'val sealed case def true trait implicit forSome import match object null finally super ' +
+						'override try lazy for var catch throw type extends class while with new final yield abstract ' +
+						'else do if return protected private this package false';
+
+		var keyops =	'[_:=><%#@]+';
+
+		this.regexList = [
+			{ regex: SyntaxHighlighter.regexLib.singleLineCComments,			css: 'comments' },	// one line comments
+			{ regex: SyntaxHighlighter.regexLib.multiLineCComments,				css: 'comments' },	// multiline comments
+			{ regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString,	css: 'string' },	// multi-line strings
+			{ regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString,    css: 'string' },	// double-quoted string
+			{ regex: SyntaxHighlighter.regexLib.singleQuotedString,				css: 'string' },	// strings
+			{ regex: /0x[a-f0-9]+|\d+(\.\d+)?/gi,								css: 'value' },		// numbers
+			{ regex: new RegExp(this.getKeywords(keywords), 'gm'),				css: 'keyword' },	// keywords
+			{ regex: new RegExp(keyops, 'gm'),									css: 'keyword' }	// scala keyword
+			];
+	}
+
+	Brush.prototype	= new SyntaxHighlighter.Highlighter();
+	Brush.aliases	= ['scala'];
+
+	SyntaxHighlighter.brushes.Scala = Brush;
+
+	// CommonJS
+	typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
+})();

Added: incubator/ambari/site/1.2.2/content/scripts/shLegacy.js
URL: http://svn.apache.org/viewvc/incubator/ambari/site/1.2.2/content/scripts/shLegacy.js?rev=1459619&view=auto
==============================================================================
--- incubator/ambari/site/1.2.2/content/scripts/shLegacy.js (added)
+++ incubator/ambari/site/1.2.2/content/scripts/shLegacy.js Fri Mar 22 04:10:01 2013
@@ -0,0 +1,17 @@
+/**
+ * SyntaxHighlighter
+ * http://alexgorbatchev.com/SyntaxHighlighter
+ *
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
+ * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
+ *
+ * @version
+ * 3.0.83 (July 02 2010)
+ * 
+ * @copyright
+ * Copyright (C) 2004-2010 Alex Gorbatchev.
+ *
+ * @license
+ * Dual licensed under the MIT and GPL licenses.
+ */
+eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[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}('3 u={8:{}};u.8={A:4(c,k,l,m,n,o){4 d(a,b){2 a!=1?a:b}4 f(a){2 a!=1?a.E():1}c=c.I(":");3 g=c[0],e={};t={"r":K};M=1;5=8.5;9(3 j R c)e[c[j]]="r";k=f(d(k,5.C));l=f(d(l,5.D));m=f(d(m,5.s));o=f(d(o,5.Q));n=f(d(n,5["x-y"]));2{P:g,C:d(t[e.O],k),D:d(t[e.N],l),s:d({"r":r}[e.s],m),"x-y":d(4(a,b){9(3 h=T S("^"+b+"\\\\[(?<q>\\\\w+)\\\\]$","U"),i=1,p=0;p<a.7;p++)6((i=h.J(a[p]))!=1)2 i.q;2 1}(c,"G"),n)}},F:4(c,k,l,m,n,o){4 d(){9(3 a=H,b=0;b<a.7;b++)6(a[b]!==1){6(z a[b]=="L"&&a[b]!="")2 a[b]+"";6(z a[b]=="X"&&a[b].q!="")2 a[b].q+""}2 1}4 f(a,b,h){h=12.13(h);9(3 i=0;i<h.7;i++)h[i].V("15")==b&&a.Y(h[i])}3 g=[];f(g,c,"Z");f(g,c,"W");6(g.7!==0)9(c=0;c<g.7;c++){3 e=g[c],j
 =d(e.B["14"],e.10,e.B.v,e.v);6(j!==1){j=u.8.A(j,k,l,m,n,o);8.11(j,e)}}}};',62,68,'|null|return|var|function|defaults|if|length|SyntaxHighlighter|for|||||||||||||||||value|true|collapse|reverse|dp|language||first|line|typeof|parseParams|attributes|gutter|toolbar|toString|HighlightAll|firstline|arguments|split|exec|false|string|result|nocontrols|nogutter|brush|ruler|in|XRegExp|new|gi|getAttribute|textarea|object|push|pre|className|highlight|document|getElementsByTagName|class|name'.split('|'),0,{}))

Added: incubator/ambari/site/1.2.2/content/search/default.props
URL: http://svn.apache.org/viewvc/incubator/ambari/site/1.2.2/content/search/default.props?rev=1459619&view=auto
==============================================================================
--- incubator/ambari/site/1.2.2/content/search/default.props (added)
+++ incubator/ambari/site/1.2.2/content/search/default.props Fri Mar 22 04:10:01 2013
@@ -0,0 +1 @@
+DEF01=a
\ No newline at end of file

Added: incubator/ambari/site/1.2.2/content/search/en-us.props
URL: http://svn.apache.org/viewvc/incubator/ambari/site/1.2.2/content/search/en-us.props?rev=1459619&view=auto
==============================================================================
--- incubator/ambari/site/1.2.2/content/search/en-us.props (added)
+++ incubator/ambari/site/1.2.2/content/search/en-us.props Fri Mar 22 04:10:01 2013
@@ -0,0 +1,45 @@
+DEF01=this
+DEF02=is
+DEF03=the
+DEF04=in
+DEF05=i
+DEF06=on
+DEF07=a
+DEF08=about
+DEF09=an
+DEF10=are
+DEF11=as
+DEF12=at
+DEF13=be
+DEF14=by
+DEF15=com
+DEF16=de
+DEF17=en
+DEF18=for
+DEF19=from
+DEF20=how
+DEF21=it
+DEF22=la
+DEF23=of
+DEF24=on
+DEF25=or
+DEF26=that
+DEF27=to
+DEF28=was
+DEF29=what
+DEF30=when
+DEF31=where
+DEF32=who
+DEF33=will
+DEF34=with
+DEF35=und
+DEF36=Next
+DEF37=Prev
+DEF38=Home
+DEF39=Motive
+DEF40=Inc
+DEF41=Copyright
+DEF42=All
+DEF43=rights
+DEF44=reserved
+DEF45=Up
\ No newline at end of file

Added: incubator/ambari/site/1.2.2/content/search/es-es.props
URL: http://svn.apache.org/viewvc/incubator/ambari/site/1.2.2/content/search/es-es.props?rev=1459619&view=auto
==============================================================================
--- incubator/ambari/site/1.2.2/content/search/es-es.props (added)
+++ incubator/ambari/site/1.2.2/content/search/es-es.props Fri Mar 22 04:10:01 2013
@@ -0,0 +1,179 @@
+DEF01=un
+DEF02=una
+DEF03=unas
+DEF04=unos
+DEF05=uno
+DEF06=sobre
+DEF07=todo
+DEF08=también
+DEF09=tras
+DEF10=otro
+DEF11=algún
+DEF12=alguno
+DEF13=alguna
+DEF14=algunos
+DEF15=algunas
+DEF16=ser
+DEF17=es
+DEF18=soy
+DEF19=eres
+DEF20=somos
+DEF21=sois
+DEF22=estoy
+DEF23=esta
+DEF24=estamos
+DEF25=estais
+DEF26=estan
+DEF27=como
+DEF28=en
+DEF29=para
+DEF30=atras
+DEF31=porque
+DEF32=por 
+DEF33=estado
+DEF34=estaba
+DEF35=ante
+DEF36=antes
+DEF37=siendo
+DEF38=ambos
+DEF39=pero
+DEF40=por
+DEF41=poder
+DEF42=puede
+DEF43=puedo
+DEF44=podemos
+DEF45=podeis
+DEF46=pueden
+DEF47=fui
+DEF48=fue
+DEF49=fuimos
+DEF50=fueron
+DEF51=hacer
+DEF52=hago
+DEF53=hace
+DEF54=hacemos
+DEF55=haceis
+DEF56=hacen
+DEF57=cada
+DEF58=fin
+DEF59=incluso
+DEF60=primero
+DEF61=desde
+DEF62=conseguir
+DEF63=consigo
+DEF64=consigue
+DEF65=consigues
+DEF66=conseguimos
+DEF67=consiguen
+DEF68=ir
+DEF69=voy
+DEF70=va
+DEF71=vamos
+DEF72=vais
+DEF73=van
+DEF74=vaya
+DEF75=gueno
+DEF76=ha
+DEF77=tener
+DEF78=tengo
+DEF79=tiene
+DEF80=tenemos
+DEF81=teneis
+DEF82=tienen
+DEF83=el
+DEF84=la
+DEF85=lo
+DEF86=las
+DEF87=los
+DEF88=su
+DEF89=aqui
+DEF90=mio
+DEF91=tuyo
+DEF92=ellos
+DEF93=ellas
+DEF94=nos
+DEF95=nosotros
+DEF96=vosotros
+DEF97=vosotras
+DEF98=si
+DEF99=dentro
+DEF100=solo
+DEF101=solamente
+DEF102=saber
+DEF103=sabes
+DEF104=sabe
+DEF105=sabemos
+DEF106=sabeis
+DEF107=saben
+DEF108=ultimo
+DEF109=largo
+DEF110=bastante
+DEF111=haces
+DEF112=muchos
+DEF113=aquellos
+DEF114=aquellas
+DEF115=sus
+DEF116=entonces
+DEF117=tiempo
+DEF118=verdad
+DEF119=verdadero
+DEF120=verdadera
+DEF121=cierto
+DEF122=ciertos
+DEF123=cierta
+DEF124=ciertas
+DEF125=intentar
+DEF126=intento
+DEF127=intenta
+DEF128=intentas
+DEF129=intentamos
+DEF130=intentais
+DEF131=intentan
+DEF132=dos
+DEF133=bajo
+DEF134=arriba
+DEF135=encima
+DEF136=usar
+DEF137=uso
+DEF138=usas
+DEF139=usa
+DEF140=usamos
+DEF141=usais
+DEF142=usan
+DEF143=emplear
+DEF144=empleo
+DEF145=empleas
+DEF146=emplean
+DEF147=ampleamos
+DEF148=empleais
+DEF149=valor
+DEF150=muy
+DEF151=era
+DEF152=eras
+DEF153=eramos
+DEF154=eran
+DEF155=modo
+DEF156=bien
+DEF157=cual
+DEF158=cuando
+DEF159=donde
+DEF160=mientras
+DEF161=quien
+DEF162=con
+DEF163=entre
+DEF164=sin
+DEF165=trabajo
+DEF166=trabajar
+DEF167=trabajas
+DEF168=trabaja
+DEF169=trabajamos
+DEF170=trabajais
+DEF171=trabajan
+DEF172=podria
+DEF173=podrias
+DEF174=podriamos
+DEF175=podrian
+DEF176=podriais
+DEF177=yo
+DEF178=aquel
+DEF179=qué
\ No newline at end of file

Added: incubator/ambari/site/1.2.2/content/search/htmlFileInfoList.js
URL: http://svn.apache.org/viewvc/incubator/ambari/site/1.2.2/content/search/htmlFileInfoList.js?rev=1459619&view=auto
==============================================================================
--- incubator/ambari/site/1.2.2/content/search/htmlFileInfoList.js (added)
+++ incubator/ambari/site/1.2.2/content/search/htmlFileInfoList.js Fri Mar 22 04:10:01 2013
@@ -0,0 +1,70 @@
+fil = new Array();
+fil["0"]= "ambari-chap2-2-1.html@@@2.1. Setup Options - Apache Ambari@@@null";
+fil["1"]= "ambari-chap5-3-1.html@@@3.3. Problem: “Unable to create new native thread” exceptions in HDFS DataNode logs or those of any system daemon - Apache Ambari@@@null";
+fil["2"]= "ambari-chap5-3-8.html@@@3.9. Problem: Metrics and Host information display incorrectly in Ambari Web - Apache Ambari@@@null";
+fil["3"]= "ambari-chap1-5-4.html@@@5.4. Check DNS - Apache Ambari@@@null";
+fil["4"]= "ambari-chap5-1.html@@@1. Getting the Logs - Apache Ambari@@@null";
+fil["5"]= "ambari-chap5-2.html@@@2. Quick Checks - Apache Ambari@@@null";
+fil["6"]= "ambari-chap5-3-10.html@@@3.11. Problem: Attempting to Start HBase REST server causes either REST server or Ambari Web to fail - Apache Ambari@@@null";
+fil["7"]= "ambari-chap5-3-a.html@@@3.1. Problem: Browser crashed before Install Wizard completed - Apache Ambari@@@null";
+fil["8"]= "ambari-chap6-2.html@@@2. SLES - Apache Ambari@@@null";
+fil["9"]= "ambari-chap5-3-11.html@@@3.12. Problem: Multiple Ambari Agent processes are running, causing re-register - Apache Ambari@@@null";
+fil["10"]= "ambari-chap1.html@@@Chapter 1. Getting Ready to Install - Apache Ambari@@@null";
+fil["11"]= "ambari-chap1-6.html@@@6. Optional: Configure the Local Repositories - Apache Ambari@@@null";
+fil["12"]= "ambari-chap5-3-3.html@@@3.5. Problem: HDFS Smoke Test Fails - Apache Ambari@@@null";
+fil["13"]= "ambari-chap3-7-6.html@@@8.6. ZooKeeper - Apache Ambari@@@null";
+fil["14"]= "ambari-chap3-10.html@@@11. Summary - Apache Ambari@@@null";
+fil["15"]= "ambari-chap2.1.2.html@@@1.2. RHEL/CentOS 6.x - Apache Ambari@@@null";
+fil["16"]= "ambari-chap2.1.3.html@@@1.3. SLES 11 - Apache Ambari@@@null";
+fil["17"]= "ambari-chap3-5.html@@@6. Assign Masters - Apache Ambari@@@null";
+fil["18"]= "ambari-chap1-3.html@@@3. Decide on Deployment Type - Apache Ambari@@@null";
+fil["19"]= "ambari-chap8.html@@@Chapter 7. Appendix: Upgrading Operating Systems on an Ambari-based Hadoop Installation - Apache Ambari@@@null";
+fil["20"]= "ambari-chap1-5-2.html@@@5.2. Set Up Password-less SSH - Apache Ambari@@@null";
+fil["21"]= "ambari-chap3-7-5.html@@@8.5. HBase - Apache Ambari@@@null";
+fil["22"]= "ambari-chap3-7.html@@@8. Customize Services - Apache Ambari@@@null";
+fil["23"]= "ambari-chap3-4.html@@@4. Confirm Hosts - Apache Ambari@@@null";
+fil["24"]= "ambari-chap5.html@@@Chapter 4. Troubleshooting Ambari Deployments - Apache Ambari@@@null";
+fil["25"]= "ambari-chap5-3-b.html@@@3.2. Problem: Install Wizard reports that the cluster install has failed - Apache Ambari@@@null";
+fil["26"]= "ambari-chap6.html@@@Chapter 5. Appendix: Installing Ambari Agents Manually - Apache Ambari@@@null";
+fil["27"]= "ambari-chap2-3.html@@@5. Start the Ambari Server - Apache Ambari@@@null";
+fil["28"]= "ambari-chap3-7-2.html@@@8.2. MapReduce - Apache Ambari@@@null";
+fil["29"]= "ambari-chap3-7-9a.html@@@8.10. Recommended Memory Configurations for the MapReduce Service - Apache Ambari@@@null";
+fil["30"]= "ambari-chap3-7-4.html@@@8.4. WebHCat - Apache Ambari@@@null";
+fil["31"]= "ambari-chap3-2.html@@@2. Welcome - Apache Ambari@@@null";
+fil["32"]= "ambari-chap1-5-5.html@@@5.5. Disable SELinux - Apache Ambari@@@null";
+fil["33"]= "ambari-chap7a.html@@@Chapter 6. Appendix: Using Custom Hostnames - Apache Ambari@@@null";
+fil["34"]= "ambari-chap1-4.html@@@4. Collect Information - Apache Ambari@@@null";
+fil["35"]= "ambari-chap1-5.html@@@5. Prepare the Environment - Apache Ambari@@@null";
+fil["36"]= "ambari-chap3-7-9.html@@@8.8. Nagios - Apache Ambari@@@null";
+fil["37"]= "ambari-chap2-2.html@@@2. Set Up the Server - Apache Ambari@@@null";
+fil["38"]= "ambari-chap2.1.1.html@@@1.1. RHEL/CentOS 5.x - Apache Ambari@@@null";
+fil["39"]= "ambari-chap2-1.html@@@1. Set Up the Bits - Apache Ambari@@@null";
+fil["40"]= "ambari-chap1-5-7.html@@@5.7. Disable PackageKit - Apache Ambari@@@null";
+fil["41"]= "ambari-chap3-6.html@@@7. Assign Slaves and Clients - Apache Ambari@@@null";
+fil["42"]= "ambari-chap5-3-7.html@@@3.8. Problem: Trouble starting Ambari on system reboot - Apache Ambari@@@null";
+fil["43"]= "ambari-chap3-7-8.html@@@8.9. Misc - Apache Ambari@@@null";
+fil["44"]= "ambari-chap1-2.html@@@2. Meet Minimum System Requirements - Apache Ambari@@@null";
+fil["45"]= "chap5-3-4.html@@@3.6. Problem: The HCatalog Daemon Metastore Smoke Test Fails - Apache Ambari@@@null";
+fil["46"]= "ambari-chap1-5-6.html@@@5.6. Disable iptables - Apache Ambari@@@null";
+fil["47"]= "ambari-chap3-7-3.html@@@8.3. Hive/HCat - Apache Ambari@@@null";
+fil["48"]= "ambari-chap3-9.html@@@10. Install, Start and Test - Apache Ambari@@@null";
+fil["49"]= "ambari-chap7.html@@@Chapter 8. Appendix: Upgrading Ambari Server from 1.2.0/1.2.1 to 1.2.2 - Apache Ambari@@@null";
+fil["50"]= "ambari-chap5-3-12.html@@@3.13. Problem: Some graphs do not show a complete hour of data until the cluster has been running for an hour - Apache Ambari@@@null";
+fil["51"]= "ambari-chap5-3-5.html@@@3.7. Problem: MySQL and Nagios fail to install on RightScale CentOS 5 images on EC2 - Apache Ambari@@@null";
+fil["52"]= "ch03s05.html@@@5. Choose Services - Apache Ambari@@@null";
+fil["53"]= "ambari-chap5-3-9.html@@@3.10. Problem: On SUSE 11 Ambari Agent crashes within the first 24 hours - Apache Ambari@@@null";
+fil["54"]= "ambari-chap6-1.html@@@1. RHEL/CentOS v. 5.x and 6.x - Apache Ambari@@@null";
+fil["55"]= "ambari-chap5-3.html@@@3. Specific Issues - Apache Ambari@@@null";
+fil["56"]= "ambari-chap3-8.html@@@9. Review - Apache Ambari@@@null";
+fil["57"]= "ambari-chap1-5-1.html@@@5.1. Check Existing Installs - Apache Ambari@@@null";
+fil["58"]= "ambari-chap5-3-2.html@@@3.4. Problem: The “yum install ambari-server” Command Fails - Apache Ambari@@@null";
+fil["59"]= "ambari-chap3-3.html@@@3. Install Options - Apache Ambari@@@null";
+fil["60"]= "ambari-chap3.html@@@Chapter 3. Installing, Configuring, and Deploying the Cluster - Apache Ambari@@@null";
+fil["61"]= "ambari-chap2.html@@@Chapter 2. Running the Installer - Apache Ambari@@@null";
+fil["62"]= "ambari-chap3-7-7.html@@@8.7. Oozie - Apache Ambari@@@null";
+fil["63"]= "ambari-chap1-1.html@@@1. Understand the Basics - Apache Ambari@@@null";
+fil["64"]= "ambari-chap3-7-1.html@@@8.1. HDFS - Apache Ambari@@@null";
+fil["65"]= "ambari-chap3-1.html@@@1. Log into Apache Ambari - Apache Ambari@@@null";
+fil["66"]= "ambari-chap2-4.html@@@3. Optional: Set Up LDAP or Active Directory Authentication - Apache Ambari@@@null";
+fil["67"]= "ambari-chap1-5-3.html@@@5.3. Enable NTP on the Cluster and on the Browser Host - Apache Ambari@@@null";
+fil["68"]= "ambari-chap2-2a.html@@@4. Optional: Change the Ambari Server Port - Apache Ambari@@@null";

Added: incubator/ambari/site/1.2.2/content/search/htmlFileList.js
URL: http://svn.apache.org/viewvc/incubator/ambari/site/1.2.2/content/search/htmlFileList.js?rev=1459619&view=auto
==============================================================================
--- incubator/ambari/site/1.2.2/content/search/htmlFileList.js (added)
+++ incubator/ambari/site/1.2.2/content/search/htmlFileList.js Fri Mar 22 04:10:01 2013
@@ -0,0 +1,71 @@
+//List of files which are indexed.
+fl = new Array();
+fl["0"]= "ambari-chap2-2-1.html";
+fl["1"]= "ambari-chap5-3-1.html";
+fl["2"]= "ambari-chap5-3-8.html";
+fl["3"]= "ambari-chap1-5-4.html";
+fl["4"]= "ambari-chap5-1.html";
+fl["5"]= "ambari-chap5-2.html";
+fl["6"]= "ambari-chap5-3-10.html";
+fl["7"]= "ambari-chap5-3-a.html";
+fl["8"]= "ambari-chap6-2.html";
+fl["9"]= "ambari-chap5-3-11.html";
+fl["10"]= "ambari-chap1.html";
+fl["11"]= "ambari-chap1-6.html";
+fl["12"]= "ambari-chap5-3-3.html";
+fl["13"]= "ambari-chap3-7-6.html";
+fl["14"]= "ambari-chap3-10.html";
+fl["15"]= "ambari-chap2.1.2.html";
+fl["16"]= "ambari-chap2.1.3.html";
+fl["17"]= "ambari-chap3-5.html";
+fl["18"]= "ambari-chap1-3.html";
+fl["19"]= "ambari-chap8.html";
+fl["20"]= "ambari-chap1-5-2.html";
+fl["21"]= "ambari-chap3-7-5.html";
+fl["22"]= "ambari-chap3-7.html";
+fl["23"]= "ambari-chap3-4.html";
+fl["24"]= "ambari-chap5.html";
+fl["25"]= "ambari-chap5-3-b.html";
+fl["26"]= "ambari-chap6.html";
+fl["27"]= "ambari-chap2-3.html";
+fl["28"]= "ambari-chap3-7-2.html";
+fl["29"]= "ambari-chap3-7-9a.html";
+fl["30"]= "ambari-chap3-7-4.html";
+fl["31"]= "ambari-chap3-2.html";
+fl["32"]= "ambari-chap1-5-5.html";
+fl["33"]= "ambari-chap7a.html";
+fl["34"]= "ambari-chap1-4.html";
+fl["35"]= "ambari-chap1-5.html";
+fl["36"]= "ambari-chap3-7-9.html";
+fl["37"]= "ambari-chap2-2.html";
+fl["38"]= "ambari-chap2.1.1.html";
+fl["39"]= "ambari-chap2-1.html";
+fl["40"]= "ambari-chap1-5-7.html";
+fl["41"]= "ambari-chap3-6.html";
+fl["42"]= "ambari-chap5-3-7.html";
+fl["43"]= "ambari-chap3-7-8.html";
+fl["44"]= "ambari-chap1-2.html";
+fl["45"]= "chap5-3-4.html";
+fl["46"]= "ambari-chap1-5-6.html";
+fl["47"]= "ambari-chap3-7-3.html";
+fl["48"]= "ambari-chap3-9.html";
+fl["49"]= "ambari-chap7.html";
+fl["50"]= "ambari-chap5-3-12.html";
+fl["51"]= "ambari-chap5-3-5.html";
+fl["52"]= "ch03s05.html";
+fl["53"]= "ambari-chap5-3-9.html";
+fl["54"]= "ambari-chap6-1.html";
+fl["55"]= "ambari-chap5-3.html";
+fl["56"]= "ambari-chap3-8.html";
+fl["57"]= "ambari-chap1-5-1.html";
+fl["58"]= "ambari-chap5-3-2.html";
+fl["59"]= "ambari-chap3-3.html";
+fl["60"]= "ambari-chap3.html";
+fl["61"]= "ambari-chap2.html";
+fl["62"]= "ambari-chap3-7-7.html";
+fl["63"]= "ambari-chap1-1.html";
+fl["64"]= "ambari-chap3-7-1.html";
+fl["65"]= "ambari-chap3-1.html";
+fl["66"]= "ambari-chap2-4.html";
+fl["67"]= "ambari-chap1-5-3.html";
+fl["68"]= "ambari-chap2-2a.html";

Added: incubator/ambari/site/1.2.2/content/search/index-1.js
URL: http://svn.apache.org/viewvc/incubator/ambari/site/1.2.2/content/search/index-1.js?rev=1459619&view=auto
==============================================================================
--- incubator/ambari/site/1.2.2/content/search/index-1.js (added)
+++ incubator/ambari/site/1.2.2/content/search/index-1.js Fri Mar 22 04:10:01 2013
@@ -0,0 +1,467 @@
+var indexerLanguage="en";
+//Auto generated index for searching.
+w["-"]="0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68";
+w["-1"]="28,62";
+w["-ef"]="27";
+w["-end"]="10";
+w["-f"]="34";
+w["-h"]="5";
+w["-j"]="0,11";
+w["-memori"]="28";
+w["-p"]="5,6,41";
+w["-s"]="0";
+w["-site"]="62";
+w["-u"]="5";
+w["-uvh"]="39";
+w["-v"]="0";
+w["-xms"]="64";
+w["-xmx"]="21,28,64";
+w["-xx"]="28,64";
+w["-–level"]="5";
+w["0"]="11,15,16,21,28,32,38,40,44,49,57,64";
+w["0-8"]="44,53";
+w["0-99"]="57";
+w["000"]="21,28";
+w["0022"]="5";
+w["01-10"]="59";
+w["04"]="45";
+w["1"]="0,1,2,4,6,7,9,10,11,12,15,16,25,29,33,37,38,39,42,44,45,49,50,51,53,54,57,58,62,63,64,65";
+w["1-0"]="57";
+w["10"]="29,44,47,48,53,57";
+w["11"]="6,14,16,39,44,45,47,49,53,57";
+w["1157"]="45";
+w["12"]="9,30,44,45,53";
+w["12-10"]="57";
+w["13"]="21,50";
+w["13-1"]="57";
+w["14"]="21";
+w["15"]="15,16,21,28,38,44,53";
+w["15-2"]="57";
+w["156"]="45";
+w["16"]="21";
+w["16gb"]="29";
+w["17"]="13";
+w["18"]="13";
+w["19"]="62";
+w["2"]="0,5,8,11,15,16,20,25,28,29,31,37,39,44,49,51,53,57,61,64,66";
+w["20"]="45,62";
+w["20-0"]="57";
+w["21"]="36";
+w["22"]="43";
+w["24"]="44,53";
+w["25"]="28";
+w["29"]="45";
+w["2gb"]="64";
+w["3"]="1,2,6,7,9,12,13,16,18,21,25,28,30,36,42,43,44,45,47,50,51,53,55,57,58,59,60,62,64,66,67";
+w["3-2"]="57";
+w["31"]="37";
+w["32000"]="1";
+w["35"]="5";
+w["389"]="66";
+w["4"]="3,23,24,28,29,30,34,44,57,58,64,68";
+w["4-rightscal"]="51";
+w["40"]="48";
+w["4096"]="64";
+w["5"]="3,12,20,21,26,27,28,32,35,38,39,40,44,46,49,51,52,54,57,64,67";
+w["5-0"]="57";
+w["5-1"]="57";
+w["5-4"]="57";
+w["5000"]="28";
+w["52"]="45";
+w["597"]="45";
+w["6"]="11,13,15,17,28,29,33,37,39,44,45,46,49,53,54,57";
+w["60"]="21";
+w["64-bit"]="5,37,44,59";
+w["640"]="20";
+w["7"]="19,28,40,41,44,51,62";
+w["700"]="20";
+w["8"]="13,21,22,28,29,30,36,42,43,47,49,57,62,64";
+w["8-0"]="44,53";
+w["8-2"]="57";
+w["8080"]="41,49,65,68";
+w["8440"]="8,54";
+w["8441"]="8,54";
+w["9"]="2,28,43,44,56,57,59";
+w["9-1"]="57";
+w["90-nproc"]="1";
+w["abandon"]="1";
+w["abil"]="63";
+w["abl"]="11,37,44,66,67";
+w["abov"]="43";
+w["absolut"]="62";
+w["abstract"]="63";
+w["accept"]="0,28,37";
+w["access"]="5,11,20,28,37,39,44,47,49,59,63,64,65,67,68";
+w["accid"]="7";
+w["accomplish"]="14";
+w["account"]="20,64";
+w["acl"]="21,64";
+w["across"]="21";
+w["act"]="20";
+w["action"]="23,62,64";
+w["action-end"]="62";
+w["action-start"]="62";
+w["actionservic"]="62";
+w["activ"]="28,62,66";
+w["ad"]="62,66";
+w["add"]="20,30,33,66,68";
+w["addit"]="28,44,66";
+w["addon"]="49";
+w["address"]="3,12,17,34,36,64";
+w["adequ"]="45";
+w["admin"]="36,49,62,65,66";
+w["administr"]="14,28,44,64";
+w["advanc"]="13,21,28,30,37,47,59,62,64";
+w["affect"]="9";
+w["afresh"]="28";
+w["after"]="6,7,28,41,49,50,64";
+w["agent"]="4,8,9,20,26,33,42,44,49,53,54,57,59";
+w["aggreg"]="63";
+w["agre"]="37";
+w["alert"]="10,36";
+w["alia"]="16";
+w["all"]="0,2,3,5,10,11,12,18,20,21,22,28,29,33,34,41,42,43,44,49,50,52,59,62,64,66,67";
+w["alloc"]="21,28";
+w["allow"]="13,15,16,21,23,38,63,64";
+w["alreadi"]="11,23,37";
+w["also"]="0,11,15,16,38,41,45,58,59,62";
+w["altern"]="11,39";
+w["alway"]="28,63";
+w["amazon"]="44,51";
+w["ambari"]="0,2,4,5,6,8,9,10,11,14,15,16,17,19,20,23,24,25,26,27,32,33,34,37,38,39,41,42,44,47,49,52,53,54,57,59,60,61,65,66,67,68";
+w["ambari-1"]="15,38,39";
+w["ambari-ag"]="4,8,9,33,42,49,54";
+w["ambari-bas"]="19,24";
+w["ambari-ganglia"]="49";
+w["ambari-serv"]="0,4,11,15,16,25,27,37,38,42,49,58,66,68";
+w["ambari_hostnam"]="33";
+w["ami"]="51";
+w["amount"]="13,17,21,28,64";
+w["analyz"]="47";
+w["and"]="0,1,2,3,5,7,9,10,11,12,13,14,15,16,17,18,20,21,22,23,25,26,28,29,30,32,33,34,36,37,38,39,40,41,42,43,44,45,47,48,49,50,51,52,54,57,58,59,60,61,62,63,64,66,67,68";
+w["ani"]="1,6,19,21,23,28,41,44,47,57,58,62";
+w["anonym"]="66";
+w["apach"]="1,10,12,14,44,45,47,61,63,65,66";
+w["apache2"]="49";
+w["api"]="30,63,68";
+w["app"]="44";
+w["appear"]="2,14,48,59";
+w["append"]="21";
+w["appendix"]="19,20,26,33,49,59";
+w["applic"]="10,29,62";
+w["appropri"]="5,11,17,18,23,25,37,41,48,56,64";
+w["approxim"]="1";
+w["arch"]="11";
+w["archiv"]="30";
+w["around"]="28,29";
+w["arrang"]="44";
+w["arriv"]="52";
+w["ask"]="15,16,37,38";
+w["assign"]="13,17,21,28,41,47,56,62,64";
+w["assum"]="62";
+w["assur"]="2";
+w["asterisk"]="41";
+w["atjava"]="45";
+w["attempt"]="6,17,22,41";
+w["attent"]="22";
+w["attribut"]="66";
+w["authent"]="62,66";
+w["authentication_handler_classnam"]="62";
+w["author"]="47,62,64,66";
+w["authorizationservic"]="62";
+w["authorized_key"]="20";
+w["auto-start"]="5";
+w["autom"]="21";
+w["automat"]="0,5,19,20,26,57,59,62";
+w["aux"]="9";
+w["avail"]="2,19,28,29,44,64";
+w["b"]="57";
+w["back"]="25,49";
+w["balanc"]="64";
+w["bandwidth"]="11,39,64";
+w["bandwidthpersec"]="64";
+w["bar"]="25,48,56";
+w["bare"]="44";
+w["base"]="13,21,22,28,29,34,39,44,62,63,64,66";
+w["basearch"]="11";
+w["basedn"]="66";
+w["baseurl"]="11";
+w["basic"]="13,44,52,63";
+w["be"]="2,44";
+w["becaus"]="62";
+w["been"]="21,28,47,48,50,62,64";
+w["befor"]="7,21,26,28,49,64,66,68";
+w["begin"]="26,28,62";
+w["behavior"]="64";
+w["belong"]="43";
+w["best"]="47";
+w["between"]="20,21,28,30,47,62,63,64";
+w["bigdata"]="37";
+w["bin"]="6,11,33,41";
+w["binari"]="0,37";
+w["bind"]="64,66";
+w["bindanonym"]="66";
+w["bit"]="11,15,16,26,38,39,49";
+w["blacklist"]="28";
+w["blast"]="28";
+w["blk_-6935524980745310745_139190"]="1";
+w["block"]="1,5,21,28,63,64";
+w["blockingwaittim"]="21";
+w["blockreport"]="64";
+w["boot"]="5";
+w["both"]="11,47";
+w["bottom"]="23";
+w["box"]="21,23,28,30,31,47,59,62,64";
+w["bracket"]="59";
+w["brief"]="22";
+w["bring"]="64,66,68";
+w["brows"]="2,11,66";
+w["browser"]="7,25,44,49,60,65,67";
+w["browser-bas"]="44";
+w["bucket"]="28";
+w["buffer"]="28,64";
+w["bug"]="44,53";
+w["bugger"]="64";
+w["build"]="59";
+w["bundl"]="45";
+w["but"]="21,22,52,63,64";
+w["button"]="7,17,23,25,31,41,49,56,59";
+w["byte"]="21,64";
+w["c"]="57";
+w["cach"]="21,25,47,49";
+w["calcul"]="64";
+w["call"]="21";
+w["callabl"]="62";
+w["callablequeueservic"]="62";
+w["can"]="5,6,10,13,20,21,22,23,24,26,28,30,31,32,34,36,37,41,43,44,45,47,48,49,52,57,59,62,63,64,65,66,68";
+w["capabl"]="44";
+w["capac"]="28";
+w["case"]="20,26,28,51";
+w["cat"]="20";
+w["caus"]="6,9,23,25,44,45,47,53,57";
+w["cd"]="11";
+w["cdata"]="11";
+w["center"]="11";
+w["cento"]="1,11,15,38,39,40,44,49,51,54,57";
+w["centos5"]="39,49";
+w["centos6"]="11,39,49";
+w["central"]="10,63";
+w["certain"]="1,51";
+w["certifi"]="15,16,38,44";
+w["chang"]="1,10,17,25,29,33,40,43,49,56,58,64,65,66,68";
+w["chapter"]="10,19,24,26,33,49,60,61";
+w["charact"]="31";
+w["chart"]="2";
+w["check"]="3,5,15,16,21,23,27,28,34,35,38,47,49,56,57,58,59,62,64";
+w["checkbox"]="23,41,52";
+w["checkpoint"]="64";
+w["checksum"]="21";
+w["child"]="28";
+w["chkconfig"]="5,46";
+w["choic"]="13,21,28,56,62,64";
+w["choos"]="20,44,52,59";
+w["chrome"]="44";
+w["class"]="30,47,62,64";
+w["classpath"]="30";
+w["clean"]="49";
+w["clear"]="25,49";
+w["cli"]="47";
+w["click"]="13,14,17,21,23,25,28,30,31,41,43,47,48,49,52,56,59,62,64";
+w["client"]="20,21,41,47,62,64,66,68";
+w["clientsid"]="47";
+w["clipboard"]="48";
+w["clock"]="5,67";
+w["close"]="7";
+w["closur"]="7";
+w["cloud"]="44";
+w["cluster"]="0,2,3,5,9,10,11,12,14,17,20,21,23,25,26,28,31,32,33,35,37,39,41,42,45,49,50,51,52,57,59,60,64,67";
+w["co-deploy"]="29";
+w["code"]="49";
+w["codec"]="64";
+w["collaps"]="13,21,28,30,43,47,62,64";
+w["collect"]="28,34";
+w["collector"]="57";
+w["column"]="17,21,23,41,48";
+w["column-ori"]="63";
+w["combin"]="21";
+w["comma"]="28,47";
+w["comma-separ"]="21,62";
+w["command"]="5,6,25,32,57,58,62";
+w["common"]="55";
+w["communic"]="57";
+w["compact"]="21";
+w["compil"]="63";
+w["complet"]="6,7,10,14,21,22,25,28,37,41,44,48,50,60";
+w["completeuserjob"]="28";
+w["compon"]="5,19,22,34,41,48,52,58,63";
+w["compress"]="28,64";
+w["comput"]="63";
+w["conclud"]="28";
+w["concur"]="62";
+w["concurr"]="62";
+w["condit"]="48";
+w["conf"]="1,8,30,33,40,49,54,62,64,66,68";
+w["config"]="21,28,30,32,47,49,62,64";
+w["configur"]="0,1,3,8,10,11,12,15,16,21,22,26,28,29,30,37,38,39,44,49,54,59,60,62,63,66,68";
+w["confirm"]="15,16,23,38,59";
+w["conflict"]="6,41,51";
+w["conn"]="62";
+w["connect"]="11,13,20,25,47,49,62,63,64,66";
+w["connectiondrivernam"]="47";
+w["connector"]="28";
+w["consecut"]="64";
+w["conserv"]="11,39";
+w["consist"]="63";
+w["consol"]="0,45";
+w["consum"]="28";
+w["consumpt"]="28";
+w["contact"]="44";
+w["contain"]="3,53,62,64";
+w["content"]="48";
+w["context"]="63";
+w["continu"]="7,19,20,23,25,37,39,49,59";
+w["control"]="5,28,32";
+w["coord"]="62";
+w["coordin"]="62";
+w["copi"]="20,23,28,37,48,49,59";
+w["core"]="17,45,63";
+w["core-sit"]="64";
+w["correct"]="12,23,45,57";
+w["could"]="51";
+w["count"]="21,28,64";
+w["cover"]="13,21,28,30,36,43,47,62,64";
+w["cp"]="39,49";
+w["cpu"]="17";
+w["crash"]="7,53";
+w["creat"]="1,10,11,31,33,34,39,44,47,59,62,63,64";
+w["credenti"]="66";
+w["critic"]="44";
+w["curl"]="23,44";
+w["current"]="17,44,49";
+w["custom"]="6,21,22,25,28,30,33,47,62,64";
+w["custom_port_numb"]="6,41";
+w["cut"]="59";
+w["d"]="1,39,40,46,49,57";
+w["daemon"]="1,32,45,49,64";
+w["dashboard"]="14,25";
+w["data"]="0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68";
+w["databas"]="25,34,37,44,45,47,62,63,66";
+w["datanod"]="1,12,29,34,41,64";
+w["datanucleus"]="45";
+w["datastor"]="45";
+w["data­bas"]="45";
+w["day"]="62";
+w["db"]="34,62";
+w["dc"]="66";
+w["dead"]="21";
+w["decid"]="18,22,26,52";
+w["default"]="0,1,5,21,22,28,36,37,40,41,47,59,62,64,65,66,68";
+w["defin"]="28,47,62";
+w["definit"]="11";
+w["delay"]="64";
+w["delet"]="64";
+w["delimit"]="21,28,30,47,62,64";
+w["depend"]="7,11,20,25,34,45,48";
+w["deploy"]="0,1,7,10,11,18,24,34,35,37,56,59,60,61";
+w["describ"]="0,10,11,26,33,60,61";
+w["descript"]="0,22,66";
+w["design"]="63";
+w["desir"]="52,68";
+w["despit"]="2";
+w["determin"]="64";
+w["dev-1"]="16";
+w["dfs"]="28,47,64";
+w["dfsclient"]="1";
+w["diagnost"]="28";
+w["differ"]="7,22";
+w["dir"]="13,21,28,30,47,62,64";
+w["directori"]="11,13,20,21,22,23,28,34,47,49,62,64,66";
+w["disabl"]="19,21,32,35,37,40,44,46,47,51,62,64";
+w["disable-repo"]="51";
+w["disalloweddatanodeexcept"]="12";
+w["disk"]="21,28";
+w["display"]="2,13,21,28,30,43,45,47,49,50,56,62,64";
+w["distinguish"]="66";
+w["distribut"]="1,63";
+w["dn"]="66";
+w["dns"]="3,12,35,59";
+w["do"]="0,4,5,11,12,19,20,21,22,26,28,32,34,37,40,44,45,49,50,52,57,59,62,66,68";
+w["doa"]="47";
+w["doe"]="5,11,22,32,34,39,45,49,59,62,64";
+w["domain"]="34,59";
+w["down"]="49,64,66,68";
+w["download"]="0,11,16,26,37,39,49";
+w["driver"]="47,62";
+w["drop"]="28";
+w["dropdown"]="17,48";
+w["du"]="64";
+w["due"]="25,51";
+w["dure"]="0,5,11,21,23,25,28,37,45,49,64";
+w["each"]="2,3,5,11,20,22,32,34,42,44,48,49,57,59,62,64,67";
+w["earlier"]="59";
+w["eas"]="63";
+w["easiest"]="2";
+w["ec2"]="44,51,59";
+w["echo"]="33";
+w["eclips"]="45";
+w["ecosystem"]="63";
+w["edit"]="3,8,11,32,54,64,66,68";
+w["editor"]="1,33,40,45,66,68";
+w["effort"]="47";
+w["either"]="6,59,66,68";
+w["el5"]="39,57";
+w["el6"]="39,57";
+w["el6_3"]="57";
+w["els"]="25";
+w["email"]="36";
+w["empti"]="62";
+w["enabl"]="2,5,21,28,30,35,40,47,62,64,66,67";
+w["encount"]="23,44,55";
+w["encourag"]="22";
+w["end-"]="10";
+w["endpoint"]="62";
+w["enforc"]="32";
+w["engin"]="63";
+w["enough"]="29";
+w["ensur"]="64";
+w["enter"]="21,28,30,37,47,59,62,64";
+w["enterpris"]="15,38,44";
+w["entir"]="7,25,48";
+w["entri"]="45";
+w["environ"]="35,39,58,63";
+w["eofexcept"]="1";
+w["epel"]="11,15,38,51,54";
+w["epel-6"]="11";
+w["epel-releas"]="15,38,54";
+w["equal"]="28,64";
+w["eras"]="51";
+w["err"]="45";
+w["error"]="1,12,23,25,45,51";
+w["essenti"]="63";
+w["estim"]="28";
+w["etc"]="1,8,19,32,33,39,40,46,49,54,62,64,66,68";
+w["evalu"]="18";
+w["even"]="64";
+w["everi"]="3,26,33,49";
+w["everyth"]="56";
+w["exact"]="62";
+w["exampl"]="0,11,23,25,29,33,43,44,59,66";
+w["exceed"]="21";
+w["except"]="1,22,45";
+w["exclud"]="64";
+w["exec"]="30";
+w["execut"]="28,30,47,57,62,63";
+w["executor"]="62";
+w["exist"]="34,35,45,47,49,51,57,58,59,62";
+w["expand"]="13,21,28,30,43,47,62,64";
+w["expert-on"]="28";
+w["expir"]="21";
+w["explor"]="44";
+w["expos"]="21,28,30,47,62,64";
+w["express"]="28";
+w["ext"]="62";
+w["extens"]="49";
+w["extern"]="63,66";
+w["extra"]="15,38";
+w["factor"]="28";
+

Added: incubator/ambari/site/1.2.2/content/search/index-2.js
URL: http://svn.apache.org/viewvc/incubator/ambari/site/1.2.2/content/search/index-2.js?rev=1459619&view=auto
==============================================================================
--- incubator/ambari/site/1.2.2/content/search/index-2.js (added)
+++ incubator/ambari/site/1.2.2/content/search/index-2.js Fri Mar 22 04:10:01 2013
@@ -0,0 +1,466 @@
+//Auto generated index for searching.
+w["factori"]="47";
+w["fail"]="1,5,6,12,25,28,44,45,51,58,62,64";
+w["failur"]="25,51,64";
+w["fals"]="28,47,62,64,66";
+w["famili"]="21";
+w["fault-bucket-width"]="28";
+w["fault-timeout-window"]="28";
+w["featur"]="64";
+w["fedoraproject"]="11";
+w["fetch"]="11,21,49,61";
+w["file"]="3,8,9,11,13,19,20,21,28,30,32,34,39,45,47,48,49,54,57,59,62,63,64,66,68";
+w["fileoutputcommitt"]="28";
+w["filesystem"]="62,64";
+w["filter"]="48";
+w["find"]="4,51,59";
+w["fine-tun"]="41";
+w["finish"]="52";
+w["firefox"]="44";
+w["firewal"]="11";
+w["first"]="4,5,20,31,50,53,64,66,68";
+w["flag"]="11";
+w["flow"]="63";
+w["flume"]="63";
+w["flush"]="21";
+w["folder"]="49";
+w["follow"]="0,6,11,13,24,29,32,33,34,44,51,55,57,66";
+w["forc"]="7,9,64";
+w["form"]="62";
+w["format"]="21,28,30,47,62,64";
+w["forth"]="66";
+w["found"]="4,9,44";
+w["fqdn"]="34,47,59";
+w["fqdn_for_hcatalog_serv"]="5";
+w["fqdn_for_mysql_serv"]="5";
+w["fqdns"]="12";
+w["fraction"]="21";
+w["framework"]="28,63";
+w["free"]="64";
+w["frequent"]="0";
+w["fresh"]="59";
+w["fs"]="47,64";
+w["full"]="21,32,66";
+w["fulli"]="32,34";
+w["function"]="32";
+w["ga"]="39,49";
+w["ganglia"]="2,19,49,52,57,63";
+w["ganglia-gmetad"]="57";
+w["ganglia-gmond"]="57";
+w["gb"]="29,64";
+w["general"]="18,21,28,36,43,59,64";
+w["generat"]="20,28,64";
+w["get"]="4,9,10,12,37,49,52,58";
+w["getallbynam"]="45";
+w["give"]="14";
+w["given"]="48,62";
+w["go"]="25,49,66";
+w["googl"]="44";
+w["gpg"]="15,16,38";
+w["grant"]="34";
+w["graph"]="50";
+w["graphic"]="10,44";
+w["graylist"]="28";
+w["greater"]="21,28,64";
+w["green"]="17";
+w["grep"]="9,27";
+w["grey"]="23";
+w["group"]="13,21,22,28,30,43,47,62,64";
+w["group1"]="64";
+w["group2"]="64";
+w["grow"]="21";
+w["guarante"]="28";
+w["guest"]="44";
+w["gui"]="10";
+w["guidelin"]="44";
+w["had"]="23";
+w["hadoop"]="1,10,12,18,19,22,28,30,34,35,36,43,44,45,47,51,57,60,61,62,63,64,66";
+w["hadoop_conf_dif"]="62";
+w["hadoop_conf_dir"]="62";
+w["hadoop_log_dir_prefix"]="64";
+w["hadoop_pid_dir_prefix"]="64";
+w["hadoopaccessorservic"]="62";
+w["hand"]="64";
+w["handler"]="21,28,64";
+w["happen"]="20";
+w["hardwar"]="44,64";
+w["has"]="6,7,21,22,23,25,28,41,44,45,47,50,62,64";
+w["hat"]="44";
+w["have"]="5,11,12,17,20,21,22,23,26,28,33,37,39,40,43,44,45,47,48,49,52,56,58,59,64,65,66";
+w["hbase"]="1,5,6,21,22,29,41,43,63";
+w["hbase-daemon"]="6,41";
+w["hbase-sit"]="21";
+w["hcat"]="22,30,43,45,47";
+w["hcatalog"]="5,30,34,43,44,45,47,63";
+w["hdfs"]="1,5,12,21,22,30,43,47,50,52,62,63,64,66";
+w["hdfs-site"]="64";
+w["hdfs_user"]="64";
+w["hdp"]="5,11,15,16,19,26,38,39,44";
+w["hdp-1"]="11";
+w["hdp-epel"]="11";
+w["hdp-ut"]="15,38";
+w["hdp-utils-1"]="15,16,38";
+w["hdp_mon_nagios_addon"]="49";
+w["hdplocal"]="11";
+w["header"]="25,49";
+w["health"]="2";
+w["healthcheck"]="28";
+w["heap"]="21,28,29,64";
+w["heartbeat"]="64";
+w["help"]="24";
+w["here"]="9,13,21,22,23,28,30,36,43,44,47,62,64";
+w["hfile"]="21";
+w["high"]="63";
+w["high-perform"]="63";
+w["high-throughput"]="63";
+w["higher"]="44,63";
+w["histori"]="28";
+w["hit"]="7,28";
+w["hive"]="5,22,30,34,43,44,45,47,63,64";
+w["hive-sit"]="47";
+w["hiveauthorizationprovid"]="47";
+w["hiveql"]="63";
+w["hold"]="49";
+w["home"]="11";
+w["hortonwork"]="0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68";
+w["host"]="0,2,3,5,6,9,11,12,13,17,18,20,21,23,25,26,28,32,33,34,37,39,40,41,42,44,45,47,48,49,51,57,59,62,64,66,67,68";
+w["host01"]="59";
+w["host10"]="59";
+w["hostnam"]="8,17,33,34,45,54,59,65,66";
+w["hostname_script"]="33";
+w["hour"]="28,44,50,53,64";
+w["hover"]="22,41";
+w["howev"]="41";
+w["hregion"]="21";
+w["hstore"]="21";
+w["hstorefil"]="21";
+w["http"]="6,11,28,30,39,49,62,65,68";
+w["httpd"]="49";
+w["https"]="64";
+w["icon"]="17,48";
+w["id"]="9,15,38,62";
+w["id_rsa"]="20";
+w["identifi"]="45";
+w["idl"]="64";
+w["idlethreshold"]="64";
+w["ie"]="59";
+w["if"]="1,3,4,5,6,11,12,15,16,17,19,21,23,28,34,37,38,39,41,42,44,45,47,49,52,56,59,62,64,66,68";
+w["ignor"]="47,52";
+w["imag"]="51,64";
+w["impl"]="47";
+w["implement"]="47,64";
+w["import"]="11,21,44,49,62,66,68";
+w["includ"]="11,62,64,66";
+w["incompat"]="58";
+w["incorrect"]="1,2,9,12,45";
+w["increateblockoutputstream"]="1";
+w["indic"]="17,23,28,59";
+w["individu"]="48";
+w["inetaddress"]="45";
+w["infinit"]="62";
+w["info"]="0,1,11";
+w["inform"]="0,1,2,5,10,11,14,20,21,24,25,28,33,34,37,39,44,48,49,52,59,63,66";
+w["ini"]="8,33,49,54";
+w["init"]="13,46";
+w["initi"]="18,28,45,58,64,66";
+w["initialdelay"]="64";
+w["initialis"]="45";
+w["inmem"]="28";
+w["input"]="28,62";
+w["insid"]="59,64";
+w["inspect"]="64";
+w["instal"]="0,5,6,7,8,10,11,12,15,16,17,19,20,22,23,24,25,26,33,34,35,37,38,39,40,41,44,45,48,49,51,52,54,57,58,59,60,61,63,64,65";
+w["instanc"]="17,21,28,30,34,35,44,45,47";
+w["instead"]="32,50";
+w["instruct"]="11,33";
+w["insul"]="63";
+w["integr"]="63";
+w["intel"]="64";
+w["intens"]="29";
+w["interact"]="59";
+w["interfac"]="2,10,30,47,64";
+w["intermedi"]="28";
+w["intermitt"]="25";
+w["intern"]="59,66";
+w["internet"]="11,39,44,49,59,61";
+w["interv"]="21,28,62,64";
+w["into"]="4,24,39,44,45,59,63,65";
+w["invoc"]="21";
+w["invok"]="21,45";
+w["io"]="1,28,64";
+w["ip"]="12,34";
+w["ipc"]="64";
+w["iptabl"]="35,37,46";
+w["issu"]="24,44,55";
+w["it"]="5,17,28,41,44";
+w["item"]="52";
+w["jar"]="30,62";
+w["java"]="0,1,21,28,29,45,64";
+w["java-hom"]="0";
+w["java_hom"]="0,59";
+w["javax"]="47";
+w["jdbc"]="47,62";
+w["jdk"]="0,11,37,59";
+w["jdk-6u31-linux-x64"]="11";
+w["jdk64"]="0";
+w["jdo"]="47";
+w["jdt"]="45";
+w["jetti"]="28";
+w["job"]="28,62,63,64,66";
+w["jobstatus"]="28";
+w["jobtack"]="28";
+w["jobtrack"]="28,62";
+w["job­track"]="28";
+w["jpaservic"]="62";
+w["jt"]="64";
+w["jvm"]="28,47";
+w["jvms"]="5";
+w["kerberbo"]="62";
+w["kerbero"]="62";
+w["kernel"]="19";
+w["key"]="15,16,20,21,28,30,38,47,49,59,62,64";
+w["key-pair"]="20";
+w["key-valu"]="21";
+w["keyvalu"]="21";
+w["kill"]="9,28,64";
+w["know"]="11,34,49,59";
+w["known"]="53";
+w["lang"]="45";
+w["languag"]="63";
+w["larg"]="11,39,63";
+w["larger"]="28,48,59,63";
+w["last"]="21";
+w["later"]="28,44,65";
+w["latest"]="44";
+w["latin"]="63";
+w["launch"]="7";
+w["layer"]="63";
+w["ldap"]="66";
+w["leader"]="13";
+w["leas"]="21";
+w["least"]="18";
+w["leav"]="28,62";
+w["left"]="17,25,56";
+w["legal"]="0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68";
+w["length"]="13,50";
+w["less"]="28,64";
+w["let"]="22,44,50,59";
+w["level"]="28,63";
+w["lib"]="0,6,11,41";
+w["libffi"]="57";
+w["libjar"]="30";
+w["libpath"]="62";
+w["libpq5"]="57";
+w["librari"]="51,62";
+w["licens"]="37";
+w["like"]="1,11,45,50";
+w["limit"]="1,28";
+w["line"]="25,33,59";
+w["link"]="48";
+w["linux"]="1,15,38,44";
+w["list"]="15,16,17,21,23,28,38,44,47,48,52,57,58,59,62,64";
+w["listen"]="21";
+w["load"]="49";
+w["local"]="0,11,21,28,37,39,44,47,49,59,62,64";
+w["local-path-access"]="64";
+w["locat"]="17,23,28,47,49,59";
+w["log"]="1,4,12,13,21,28,34,39,42,45,47,48,49,62,63,64,65";
+w["logger"]="28";
+w["login"]="39";
+w["long"]="44";
+w["look"]="11";
+w["look-up"]="12";
+w["lower"]="1";
+w["lzo"]="28,64";
+w["mac"]="44";
+w["machin"]="2,5,11,20,29,39,42,44,51,67";
+w["made"]="43,52,56,66";
+w["main"]="20,30,39,45,48,65";
+w["major"]="21";
+w["make"]="5,12,19,20,23,25,29,40,45,49,52,56,58,63,64,66,68";
+w["manag"]="5,10,14,22,25,37,47,49,62,66";
+w["managerdn"]="66";
+w["managerpassword"]="66";
+w["mangement"]="25";
+w["mani"]="44";
+w["manipul"]="63";
+w["manual"]="5,6,19,20,26,33,41,42,49,59,63";
+w["map"]="28,29,62";
+w["map-sid"]="28";
+w["map-task"]="28";
+w["mapr"]="28,43";
+w["mapred-sit"]="28";
+w["mapred_us"]="64";
+w["mapreduc"]="21,22,28,29,34,43,50,62,63,64";
+w["marksuccessfuljob"]="28";
+w["master"]="6,17,18,21,41";
+w["match"]="57,59,62";
+w["materi"]="10";
+w["max"]="28,62,64";
+w["maxidletim"]="64";
+w["maxim"]="64";
+w["maximum"]="21,28,29,62,64";
+w["maxnews"]="28";
+w["maxsiz"]="28";
+w["may"]="5,20,21,22,23,24,26,28,37,39,44,48,58,59,64";
+w["mb"]="28";
+w["mean"]="28,62,64";
+w["mechan"]="63";
+w["meet"]="44";
+w["member"]="28";
+w["memori"]="21,28,29";
+w["memstor"]="21";
+w["merg"]="28,64";
+w["messag"]="0,12,48";
+w["metadata"]="63";
+w["metainfo"]="28";
+w["metal"]="44";
+w["metastor"]="45,47";
+w["method"]="11,39,45";
+w["metric"]="2,57,66";
+w["might"]="55";
+w["millisecond"]="13,28";
+w["min"]="64";
+w["minim"]="64";
+w["minimum"]="44,52";
+w["minus"]="17";
+w["minut"]="28,48,62,64";
+w["mirror"]="11,44";
+w["mirrorlist"]="11";
+w["mirrorslist"]="11";
+w["misc"]="22,43";
+w["miscellan"]="43";
+w["misconfigur"]="25";
+w["mix"]="11";
+w["mode"]="47,62,64";
+w["modifi"]="11,29,66";
+w["monitor"]="10,14,25,52,57,63";
+w["more"]="0,1,9,11,20,21,25,37,39,41,44,48,49,52,59,63,64,66";
+w["mount"]="34";
+w["mous"]="22,41";
+w["move"]="63";
+w["much"]="64";
+w["multipl"]="9,28,64";
+w["multipli"]="21";
+w["must"]="0,2,3,5,11,19,20,22,28,32,34,36,37,42,44,47,49,52,59,63,67";
+w["mv"]="49";
+w["my"]="11,66";
+w["mysql"]="5,19,30,34,44,45,47,51";
+w["mysql-serv"]="51";
+w["mysql-server-commun"]="51";
+w["mysqld"]="5";
+w["n"]="37";
+w["nagio"]="22,36,49,51,52,57,63";
+w["nagios-common"]="57";
+w["nagios-plugin"]="57";
+w["nagios-plugins1"]="57";
+w["nagios-www"]="57";
+w["nagiosadmin"]="36";
+w["name"]="13,15,16,21,28,30,31,33,34,36,38,43,45,47,49,59,62,63,64,66";
+w["namemod"]="64";
+w["namenod"]="34,62,64";
+w["namenode_opt_news"]="64";
+w["nativ"]="1,2,63,64";
+w["nav"]="25";
+w["navig"]="56";
+w["necessari"]="37,44,57,58,63,66";
+w["need"]="5,10,11,20,34,35,39,40,41,49,56,59,62,63,64,66,68";
+w["neither"]="28";
+w["net"]="45";
+w["network"]="5,25,32,63";
+w["new"]="1,28,47,49,64,66";
+w["newli"]="68";
+w["newlin"]="21,28,30,47,62,64";
+w["newsiz"]="28,64";
+w["next"]="17,21,23,25,28,31,37,41,43,48,52";
+w["nine"]="22";
+w["nn"]="64";
+w["no"]="20,28,31,44,49,62";
+w["noarch"]="39";
+w["node"]="5,10,12,17,28,29,33,45,67";
+w["none"]="28,41,57";
+w["nop"]="62";
+w["normal"]="20,25,28,62";
+w["not"]="0,2,5,11,12,19,20,21,26,28,30,32,34,37,39,40,44,45,47,49,50,51,52,57,59,62,64,66,68";
+w["note"]="3,13,20,21,28,30,34,36,37,39,40,41,43,44,47,49,52,59,62,64";
+w["notic"]="0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68";
+w["now"]="68";
+w["nproc"]="1";
+w["ntp"]="2,5,35,67";
+w["null"]="62";
+w["num"]="28";
+w["number"]="17,21,22,28,29,52,62,64,68";
+w["numer"]="49";
+w["object"]="47";
+w["occupi"]="28";
+w["occur"]="25,45";
+w["octal"]="64";
+w["off"]="28,46,64";
+w["offer"]="64";
+w["old"]="49";
+w["older"]="62";
+w["onc"]="65";
+w["one"]="9,18,21,22,32,41,44,45,47,57,59,62,64";
+w["onli"]="18,19,21,22,32,50,52,64";
+w["oozi"]="22,43,62,63";
+w["oozie-sit"]="62";
+w["open"]="1,25,33,40,45,47,48,49,63,66,68";
+w["oper"]="10,11,19,44,47,58,64";
+w["optim"]="63";
+w["option"]="0,6,11,21,22,28,33,37,39,41,44,47,52,59,64,66,68";
+w["optionalcacheflushinterv"]="21";
+w["oracl"]="37";
+w["order"]="59";
+w["org"]="1,11,12,45,47,66";
+w["origin"]="63";
+w["os"]="11,19,44,62";
+w["ose"]="11";
+w["other"]="2,20,25,50,52,57,63,64,67";
+w["ou"]="66";
+w["out"]="30";
+w["output"]="28";
+w["over"]="22,41,61";
+w["overal"]="48";
+w["overrid"]="30";
+w["own"]="37,47";
+w["owner"]="64";
+w["packag"]="11,15,23,25,38,39,44,49,51,61";
+w["packagekit"]="35,40";
+w["page"]="14,31,64";
+w["pair"]="21,28,30,47,62,64";
+w["panel"]="49";
+w["paradigm"]="63";
+w["parallel"]="28";
+w["parent"]="64";
+w["part"]="51";
+w["particular"]="22";
+w["pass"]="21";
+w["password"]="5,34,36,37,45,47,49,62,65,66";
+w["password-less"]="20,35,59";
+w["past"]="59";
+w["path"]="0,11,28,30,37,59,62";
+w["patient"]="48";
+w["pay"]="22";
+w["pct"]="64";
+w["pdsh"]="44";
+w["peopl"]="66";
+w["per"]="21,28,29,48,59,64";
+w["percent"]="28";
+w["percentag"]="21,28,64";
+w["perform"]="0,11,19,28,33,51,59,63,64";
+w["perman"]="32,64";
+w["permiss"]="20,32,47,64";
+w["permit"]="64";
+w["persist"]="28";
+w["phase"]="37";
+w["php-common"]="51";
+w["php-common-5"]="51";
+w["physic"]="63";
+w["pid"]="9,13,21,34,47,62,64";
+w["pig"]="30,62,63";
+w["pin"]="47";
+w["pinobjtyp"]="47";
+w["place"]="64";
+w["platform"]="0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68";
+w["pleas"]="14,44,48";
+