You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2014/03/19 20:16:31 UTC

svn commit: r1579359 [6/8] - in /ofbiz/trunk/specialpurpose/birt: src/org/ofbiz/birt/report/servlet/ webapp/birt/webcontent/ webapp/birt/webcontent/birt/ webapp/birt/webcontent/birt/ajax/ webapp/birt/webcontent/birt/ajax/core/ webapp/birt/webcontent/bi...

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Constants.js
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Constants.js?rev=1579359&view=auto
==============================================================================
--- ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Constants.js (added)
+++ ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Constants.js Wed Mar 19 19:16:28 2014
@@ -0,0 +1,130 @@
+/******************************************************************************
+ *	Copyright (c) 2004 Actuate Corporation and others.
+ *	All rights reserved. This program and the accompanying materials 
+ *	are made available under the terms of the Eclipse Public License v1.0
+ *	which accompanies this distribution, and is available at
+ *		http://www.eclipse.org/legal/epl-v10.html
+ *	
+ *	Contributors:
+ *		Actuate Corporation - Initial implementation.
+ *****************************************************************************/
+ 
+var Constants = {
+
+	/** id of document managed BirtReportDocument*/
+	documentId: "Document",
+	
+	/** element is a UI component managed by BirtReportBase */
+	reportBase: "ReportBase",
+	
+	/** element is a table managed by BirtReportTable */
+	reportTable: "ReportTable",
+	
+	/** element is a chart managed by BirtReportChart */
+	reportChart: "ReportChart",
+	
+	/** element is a document managed BirtReportDocument */
+	isDocument: "isDocument",
+	
+	/** contains number of selected column if there is one */
+	selColNum: "SelColNum",
+
+	/** contains number of selected column if there is one */
+	activeIds: "activeIds",
+	activeIdTypes: "activeIdTypes",
+	
+	// Report object types.
+	Document : "Document",
+	Table : "Table",
+	Chart : "Chart",
+	Label : "Label",
+	Table_T : "Table_T",	// template of table type
+	Chart_T : "Chart_T",	// template of chart type
+	Label_T : "Label_T",	// template of label type
+	
+	// URL parameters name
+	PARAM_ACTION : '__action',
+	PARAM_FORMAT : '__format',
+	PARAM_ASATTACHMENT : '__asattachment',
+	PARAM_OVERWRITE : '__overwrite',
+	PARAM_PAGE : '__page',
+	PARAM_PAGERANGE : '__pagerange',
+	PARAM_PARAMETERPAGE : '__parameterpage',
+	PARAM_BOOKMARK : '__bookmark',
+	PARAM_INSTANCE_ID : '__instanceid',
+	PARAM_SVG : '__svg',
+	PARAM_TASKID : '__taskid',
+	PARAM_ISTOC : '__istoc',
+	PARAM_RESULTSETNAME : '__resultsetname',
+	PARAM_SELECTEDCOLUMNNUMBER : '__selectedcolumnnumber',
+	PARAM_SELECTEDCOLUMN : '__selectedcolumn',
+	PARAM_EXPORT_ENCODING : '__exportencoding',
+	PARAM_SEP : '__sep',
+	PARAM_EXPORT_DATATYPE : '__exportdatatype',
+	PARAM_LOCALENEUTRAL : '__localeneutral',
+	PARAM_DATA_EXTRACT_FORMAT : '__extractformat',
+	PARAM_DATA_EXTRACT_EXTENSION : '__extractextension',
+	PARAM_ISNULL : '__isnull',
+	PARAM_ISNULLLIST : '__isnulllist',
+	PARAM_EMITTER_ID : '__emitterid',
+	
+	PARAM_PRINTER_NAME : '__printer',
+	PARAM_PRINTER_COPIES : '__printer_copies',
+	PARAM_PRINTER_COLLATE : '__printer_collate',
+	PARAM_PRINTER_DUPLEX : '__printer_duplex',
+	PARAM_PRINTER_MODE : '__printer_mode',
+	PARAM_PRINTER_MEDIASIZE : '__printer_pagesize',
+	
+	PARAM_PAGE_OVERFLOW : '__pageoverflow',	
+	PARAM_PAGEBREAKONLY : '__pagebreakonly',
+	
+	PARAM_SESSION_ID : '__sessionId',
+	
+	// Parameter Data Type
+	TYPE_ANY : '0',
+	TYPE_STRING : '1',
+	TYPE_FLOAT : '2',
+	TYPE_DECIMAL : '3',
+	TYPE_DATE_TIME : '4',
+	TYPE_BOOLEAN : '5',
+	TYPE_INTEGER : '6',
+	TYPE_DATE : '7',
+	TYPE_TIME : '8',
+	
+	// Servlet patterns
+	SERVLET_OUTPUT : 'output',
+	SERVLET_EXTRACT : 'extract',
+	SERVLET_FRAMESET : 'frameset',
+	SERVLET_PARAMETER : 'parameter',
+	SERVLET_PREVIEW : 'preview',
+	
+	// Output formats
+	FORMAT_POSTSCRIPT : 'postscript',
+	FORMAT_PDF : 'pdf',
+	FORMAT_HTML : 'html',
+	FORMAT_PPT : 'ppt',
+	
+	// Action names
+	ACTION_PRINT : 'print',
+	
+	// Window names
+	WINDOW_PRINT_PREVIEW : 'birtPrint',
+	
+	/** 
+	event.returnvalue indicating that event has already been handled
+	as a selection
+	*/
+	select: "select",
+	
+	/**
+	event.returnvalue indicated that contextmenu has already been handled
+	*/
+	context: "context",
+	
+	error : { },
+	
+	type: {UpdateRequest: "UpdateRequest"},
+	operation: "Operation",
+	target: "Target",
+	operator: {show: "Show", hide: "Hide", sort: "Sort"}
+}
\ No newline at end of file

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Constants.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Constants.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Constants.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Debug.js
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Debug.js?rev=1579359&view=auto
==============================================================================
--- ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Debug.js (added)
+++ ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Debug.js Wed Mar 19 19:16:28 2014
@@ -0,0 +1,251 @@
+/******************************************************************************
+ *	Copyright (c) 2004 Actuate Corporation and others.
+ *	All rights reserved. This program and the accompanying materials 
+ *	are made available under the terms of the Eclipse Public License v1.0
+ *	which accompanies this distribution, and is available at
+ *		http://www.eclipse.org/legal/epl-v10.html
+ *	
+ *	Contributors:
+ *		Actuate Corporation - Initial implementation.
+ *****************************************************************************/
+
+/**
+ * Show the debug window
+ */
+function showDebug(soapMessageDebug, regularDebug)
+{
+	if(soapMessageDebug == true)
+	{
+		var url = document.location.href;
+		var index = url.indexOf( "wr" );
+		url = url.substring( 0, index ) + "iportal/bizRD/test/DebugSoapMessage.jsp";
+		var oldWindow = window.open("", "DebugSoapMessage");
+		if(oldWindow)
+		{
+			oldWindow.close();
+		} 
+		window.top.debugWindow = window.open(url, "DebugSoapMessage", 
+						"left=300,top=300,width=450,height=300,scrollbars=yes,"
+	                  +"status=yes,resizable=yes");
+		window.top.debugWindow.soapMsgWindow = true;
+		window.top.debugWindow.opener = self;
+
+	}
+	else if(regularDebug == true)
+	{
+	  window.top.debugWindow =
+	      window.open("",
+	                  "Debug",
+	                  "left=0,top=0,width=200,height=300,scrollbars=yes,"
+	                  +"status=yes,resizable=yes");
+	  window.top.debugWindow.opener = self;
+	  // open the document for writing
+	  window.top.debugWindow.document.open();
+	  window.top.debugWindow.document.write(
+	      "<HTML><HEAD><TITLE>Debug Window</TITLE></HEAD><BODY><PRE>\n");
+	}
+     
+}
+
+/*
+ * Checks if debugging is currently enabled.
+ */
+function isDebugging( )
+{
+	try
+	{
+		return window.top.debugWindow && !window.top.debugWindow.closed;
+	}
+	catch(e)
+	{
+		return false; 
+	}
+}
+
+
+/*
+ * If the debug window exists, write debug messages to it.
+ * If isSoapMessage, write output to special soap message window
+ */
+function debug( text, isSoapMessage )
+{
+	//debug( birtSoapRequest.prettyPrintXML(request.responseXML.documentElement), true);
+	try
+	{
+		if ( isDebugging( ) )
+		{
+			if(window.top.debugWindow.soapMsgWindow)
+			{
+				var debugDiv;
+				if(isSoapMessage)
+				{
+				 	debugDiv = window.top.debugWindow.document.getElementById("soapMsgDebug");
+				 	var div = window.top.debugWindow.document.createElement("div");
+					div.innerHTML = "<pre>" + text;
+					//debugDiv.insertBefore(window.top.debugWindow.document.createTextNode("-------------END--------------"),debugDiv.firstChild);
+					debugDiv.insertBefore(div,debugDiv.firstChild);
+					div.style.display = "none";
+					var btn = addDebugButton(text);
+					debugDiv.insertBefore(btn, debugDiv.firstChild);
+					//debugDiv.insertBefore(window.top.debugWindow.document.createTextNode("-------------START----------------"),debugDiv.firstChild);			
+					debugDiv.insertBefore(window.top.debugWindow.document.createElement("br"),debugDiv.firstChild);
+				 	
+				 }
+				 else
+				 {
+				 	debugDiv = window.top.debugWindow.document.getElementById("regularDebug").firstChild;
+				 	var div = window.top.debugWindow.document.createElement("div");
+					div.innerHTML = "<pre>" + text;				
+					debugDiv.appendChild(div);				 	
+				}
+			}
+				 
+			else
+			{
+		    	window.top.debugWindow.document.write(text+"\n");	
+		   	}
+		}
+	}
+	catch(e){ }
+}
+
+g_debugButtonDivList = [];
+
+function addDebugButton(text)
+{
+	var numTargets = text.match(/Target&gt/g);
+	var txt = window.top.debugWindow.document.createTextNode((numTargets ? "XML" : " Text"));
+	var msgType = text.match(/(GetUpdatedObjectsResponse|GetUpdatedObjects)/);
+	if(msgType)
+	{
+		if(msgType[0] == "GetUpdatedObjectsResponse")
+		{
+			var msgTypeTxt = window.top.debugWindow.document.createTextNode("--Response--");
+		}
+		else if(msgType[0] == "GetUpdatedObjects")
+		{
+			var msgTypeTxt = window.top.debugWindow.document.createTextNode("--Request--");
+		}
+	}
+	else
+	{
+		var msgTypeTxt = window.top.debugWindow.document.createTextNode("no message type");
+	}		
+	var buttonDiv = window.top.debugWindow.document.createElement("div");	
+	buttonDiv.appendChild(msgTypeTxt);
+	buttonDiv.appendChild(txt);
+		
+	if(numTargets && msgTypeTxt.nodeValue == "testing--Response--")
+	{
+		var updateData = text.match(/UpdateData&gt[\w\s\.()"&]*&lt\/UpdateData/g);
+		if(updateData)
+		{
+			for(var i = 0; i < updateData.length; i++)
+			{
+				var dataType = updateData[i].match(/&ltData&gt\s*&lt[\w]*&gt/g);
+				dataType = dataType[0];
+				dataType = dataType.match(/&gt\s*&lt[\w]*&gt/g);
+				dataType = dataType[0];
+				dataType = dataType.replace(/\s*/, "");	
+				dataType = dataType.replace(/\n*/, "");
+				var targets = updateData[i].match(/Target&gt\s*[A-Za-z_]*\s*&lt\//g);
+				if(targets)
+				{
+					for(var j = 0; j < targets.length; j++)
+					{
+						var targTxt = targets[j].match(/\n\s*[A-Za-z_]*\n/);
+						if(targTxt)
+						{	
+							var targetDiv = window.top.debugWindow.document.createElement("div");
+							targTxt = targTxt[0];
+							targTxt = targTxt.replace(/\s*/, "");	
+							targTxt = targTxt.replace(/\n*/, "");
+							targetDiv.appendChild(window.top.debugWindow.document.createTextNode("Target: " + targTxt + " DataType: " + dataType));
+							buttonDiv.appendChild(targetDiv);
+						}
+					}
+				}
+			}
+		}
+	}
+	if(numTargets && msgTypeTxt.nodeValue == "--Response--")
+	{
+		var targets = text.match(/Target&gt\s*[A-Za-z_]*\s*&lt\//g);
+		if(targets)
+		{
+			for(var i = 0; i < targets.length; i++)
+			{
+				var targTxt = targets[i].match(/\n\s*[A-Za-z_]*\n/);
+				if(targTxt)
+				{	
+					var targetDiv = window.top.debugWindow.document.createElement("div");
+					targTxt = targTxt[0];
+					targTxt = targTxt.replace(/\s*/, "");	
+					targTxt = targTxt.replace(/\n*/, "");
+					targetDiv.appendChild(window.top.debugWindow.document.createTextNode("Target: " + targTxt));
+					buttonDiv.appendChild(targetDiv);
+				}
+			}
+		}
+	
+	}
+	else if(msgTypeTxt.nodeValue == "--Request--")
+	{
+		var targets = text.match(/Operator&gt\s*[A-Za-z_]*\s*&lt\//g);
+		if(targets)
+		{
+			for(var i = 0; i < targets.length; i++)
+			{
+				var targTxt = targets[i].match(/\n\s*[A-Za-z_]*\n/);
+				if(targTxt)
+				{	
+					var targetDiv = window.top.debugWindow.document.createElement("div");
+					targTxt = targTxt[0];
+					targTxt = targTxt.replace(/\s*/, "");	
+					targTxt = targTxt.replace(/\n*/, "");
+					targetDiv.appendChild(window.top.debugWindow.document.createTextNode(targTxt));
+					buttonDiv.appendChild(targetDiv);
+				}
+			}
+		}
+	}
+	buttonDiv.style.backgroundColor = "#ccffcc";
+	buttonDiv.onmousedown = pushDebugButton;
+	g_debugButtonDivList.push(buttonDiv);
+	buttonDiv.listIndex = g_debugButtonDivList.length -1;
+	return buttonDiv;
+}
+
+function pushDebugButton(e)
+{
+	if(!e) var e = window.top.debugWindow.event;
+	var targ = Event.element(e);
+	while(!targ.listIndex && targ.listIndex != 0)
+	{
+		targ = targ.parentNode;
+	}
+	var btn = g_debugButtonDivList[targ.listIndex];
+	if(btn.nextSibling.style.display == "block")
+	{
+		btn.style.backgroundColor = "#ccffcc";
+		btn.nextSibling.style.display = "none";
+	}
+	else
+	{
+		btn.style.backgroundColor = "#ff0000";
+		btn.nextSibling.style.display = "block";
+	}
+	
+}
+
+/**
+ * If the debug window exists, then close it
+ */
+function hideDebug()
+{
+	if (window.top.debugWindow && !window.top.debugWindow.closed)
+	{
+		window.top.debugWindow.close();
+		window.top.debugWindow = null;
+	}
+}
\ No newline at end of file

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Debug.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Debug.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Debug.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Printer.js
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Printer.js?rev=1579359&view=auto
==============================================================================
--- ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Printer.js (added)
+++ ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Printer.js Wed Mar 19 19:16:28 2014
@@ -0,0 +1,223 @@
+/******************************************************************************
+ *	Copyright (c) 2004 Actuate Corporation and others.
+ *	All rights reserved. This program and the accompanying materials 
+ *	are made available under the terms of the Eclipse Public License v1.0
+ *	which accompanies this distribution, and is available at
+ *		http://www.eclipse.org/legal/epl-v10.html
+ *	
+ *	Contributors:
+ *		Actuate Corporation - Initial implementation.
+ *****************************************************************************/
+
+/**
+ * Printer class.
+ */
+Printer = Class.create( );
+
+Printer.prototype =
+{
+	__name : null,
+	__status : null,
+	__model : null,
+	__info : null,
+	
+	__copiesSupported : null,
+	__copies : null,
+	
+	__collateSupported : null,
+	__collate : null,
+	
+	__modeSupported : null,
+	__mode : null,
+	
+	__duplexSupported : null,
+	__duplex : null,
+	
+	__mediaSupported : null,
+	__mediaSize : null,
+	__mediaSizeNames : null,
+	
+	/**
+	 * Constants
+	 */
+	MODE_MONOCHROME : "0",
+	MODE_COLOR : "1",
+	
+	DUPLEX_SIMPLEX : "0",
+	DUPLEX_HORIZONTAL : "1",
+	DUPLEX_VERTICAL : "2",
+	
+	/**
+	 *	Initialization routine required by "ProtoType" lib.
+	 *
+	 *	@return, void
+	 */
+	initialize: function( )
+	{
+		this.__copiesSupported = false;		
+		this.__collateSupported = false;
+		this.__collate = false;
+		this.__modeSupported = false;
+		this.__duplexSupported = false;
+		this.__mediaSupported = false;
+		
+		this.__mediaSizeNames = new Array( );
+	},
+		
+	setName : function( name )
+	{
+		this.__name = name;
+	},
+	
+	getName : function( )
+	{
+		return this.__name;
+	},
+	
+	setStatus : function( status )
+	{
+		this.__status = status;
+	},
+	
+	getStatus : function( )
+	{
+		return this.__status;
+	},
+
+	setModel : function( model )
+	{
+		this.__model = model;
+	},
+	
+	getModel : function( )
+	{
+		return this.__model;
+	},
+
+	setInfo : function( info )
+	{
+		this.__info = info;
+	},
+	
+	getInfo : function( )
+	{
+		return this.__info;
+	},
+	
+	setCopiesSupported : function( copiesSupported )
+	{
+		this.__copiesSupported = copiesSupported;
+	},
+	
+	isCopiesSupported : function( )
+	{
+		return this.__copiesSupported;
+	},
+	
+	setCopies : function( copies )
+	{
+		this.__copies = copies;
+	},
+	
+	getCopies : function( )
+	{
+		return this.__copies;
+	},
+	
+	setCollateSupported : function( collateSupported )
+	{
+		this.__collateSupported = collateSupported;
+	},
+	
+	isCollateSupported : function( )
+	{
+		return this.__collateSupported;
+	},
+	
+	setCollate : function( collate )
+	{
+		this.__collate = collate;
+	},
+	
+	isCollate : function( )
+	{
+		return this.__collate;
+	},
+	
+	setModeSupported : function( modeSupported )
+	{
+		this.__modeSupported = modeSupported;
+	},
+	
+	isModeSupported : function( )
+	{
+		return this.__modeSupported;
+	},
+	
+	setMode : function( mode )
+	{
+		this.__mode = mode;
+	},
+	
+	getMode : function( )
+	{
+		return this.__mode;
+	},
+
+	setDuplexSupported : function( duplexSupported )
+	{
+		this.__duplexSupported = duplexSupported;
+	},
+	
+	isDuplexSupported : function( )
+	{
+		return this.__duplexSupported;
+	},
+	
+	setDuplex : function( duplex )
+	{
+		this.__duplex = duplex;
+	},
+	
+	getDuplex : function( )
+	{
+		return this.__duplex;
+	},
+	
+	setMediaSupported : function( mediaSupported )
+	{
+		this.__mediaSupported = mediaSupported;
+	},
+	
+	isMediaSupported : function( )
+	{
+		return this.__mediaSupported;
+	},
+	
+	setMediaSize : function( mediaSize )
+	{
+		this.__mediaSize = mediaSize;
+	},
+	
+	getMediaSize : function( )
+	{
+		return this.__mediaSize;
+	},
+	
+	addMediaSizeName : function( mediaSize )
+	{
+		var index = this.__mediaSizeNames.length;
+		if( !this.__mediaSizeNames[index] )		
+			this.__mediaSizeNames[index] = { };
+					
+		this.__mediaSizeNames[index].name = mediaSize;
+		this.__mediaSizeNames[index].value = mediaSize;
+	},
+	
+	getMediaSizeNames : function( )
+	{
+		return this.__mediaSizeNames;
+	}
+}
+
+var printers = new Array( );
\ No newline at end of file

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Printer.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Printer.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/ajax/utility/Printer.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Add.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Add.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Add.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddAll.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddAll.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddAll.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddAll_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddAll_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddAll_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddAll_disabled_rtl.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddAll_disabled_rtl.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddAll_disabled_rtl.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddAll_rtl.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddAll_rtl.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddAll_rtl.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddFilter.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddFilter.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/AddFilter.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Add_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Add_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Add_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Add_disabled_rtl.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Add_disabled_rtl.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Add_disabled_rtl.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Add_rtl.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Add_rtl.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Add_rtl.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Close.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Close.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Close.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Collapse.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Collapse.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Collapse.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/DeleteFilter.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/DeleteFilter.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/DeleteFilter.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Down.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Down.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Down.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Down_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Down_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Down_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/EclipseBannerPic.jpg
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/EclipseBannerPic.jpg?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/EclipseBannerPic.jpg
------------------------------------------------------------------------------
    svn:mime-type = image/jpeg

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Error.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Error.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Error.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Expand.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Expand.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Expand.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Export.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Export.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Export.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/ExportReport.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/ExportReport.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/ExportReport.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/FirstPage.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/FirstPage.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/FirstPage.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/FirstPage_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/FirstPage_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/FirstPage_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Go.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Go.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Go.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Go_rtl.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Go_rtl.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Go_rtl.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Idea.jpg
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Idea.jpg?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Idea.jpg
------------------------------------------------------------------------------
    svn:mime-type = image/jpeg

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Interactive_viewer.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Interactive_viewer.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Interactive_viewer.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/LastPage.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/LastPage.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/LastPage.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/LastPage_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/LastPage_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/LastPage_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Leaf.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Leaf.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Leaf.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Loading.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Loading.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Loading.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Loading_rtl.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Loading_rtl.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Loading_rtl.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/NextPage.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/NextPage.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/NextPage.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/NextPage_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/NextPage_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/NextPage_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/PreviousPage.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/PreviousPage.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/PreviousPage.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/PreviousPage_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/PreviousPage_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/PreviousPage_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Print.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Print.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Print.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/PrintServer.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/PrintServer.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/PrintServer.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Remove.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Remove.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Remove.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/RemoveAll.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/RemoveAll.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/RemoveAll.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/RemoveAll_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/RemoveAll_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/RemoveAll_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/RemoveAll_disabled_rtl.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/RemoveAll_disabled_rtl.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/RemoveAll_disabled_rtl.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/RemoveAll_rtl.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/RemoveAll_rtl.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/RemoveAll_rtl.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Remove_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Remove_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Remove_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Remove_disabled_rtl.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Remove_disabled_rtl.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Remove_disabled_rtl.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Remove_rtl.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Remove_rtl.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Remove_rtl.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Report_Parameters_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Report_Parameters_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Report_Parameters_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Report_parameters.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Report_parameters.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Report_parameters.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Toc.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Toc.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Toc.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Up.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Up.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Up.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Up_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Up_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/Up_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/childicon.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/childicon.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/childicon.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/close.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/close.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/close.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-center.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-center.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-center.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-center_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-center_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-center_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-left.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-left.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-left.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-left_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-left_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-left_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-right.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-right.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-right.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-right_disabled.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-right_disabled.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/dialog/common/ok-cancel-button-right_disabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/gradient.jpg
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/gradient.jpg?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/gradient.jpg
------------------------------------------------------------------------------
    svn:mime-type = image/jpeg

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/parameter.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/parameter.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/parameter.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/parameter_group.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/parameter_group.gif?rev=1579359&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/images/parameter_group.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Attributes.jsp
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Attributes.jsp?rev=1579359&view=auto
==============================================================================
--- ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Attributes.jsp (added)
+++ ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Attributes.jsp Wed Mar 19 19:16:28 2014
@@ -0,0 +1,28 @@
+<%@ page import="org.eclipse.birt.report.utility.ParameterAccessor,
+				 org.eclipse.birt.report.IBirtConstants,
+				 org.eclipse.birt.report.session.*" %>
+
+<%-- Map Java attributes to Javascript constants --%>
+<script type="text/javascript">
+// <![CDATA[
+            
+    Constants.nullValue = '<%= IBirtConstants.NULL_VALUE %>';
+    
+	// Request attributes
+	if ( !Constants.request )
+	{
+		Constants.request = {};
+	}
+	Constants.request.format = '<%= ParameterAccessor.getFormat(request) %>';
+	Constants.request.rtl = <%= ParameterAccessor.isRtl( request ) %>;
+	Constants.request.isDesigner = <%= ParameterAccessor.isDesigner() %>;
+	Constants.request.servletPath = "<%= request.getAttribute( "ServletPath" ) %>".substr(1);
+	<%  IViewingSession viewingSession = ViewingSessionUtil.getSession(request);
+		String subSessionId = null;
+		if ( viewingSession != null )
+		{
+			subSessionId = viewingSession.getId();
+		}%>
+	Constants.viewingSessionId = <%= subSessionId!=null?"\"" + subSessionId + "\"":"null" %>;	
+// ]]>
+</script>

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Attributes.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Attributes.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Attributes.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Error.jsp
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Error.jsp?rev=1579359&view=auto
==============================================================================
--- ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Error.jsp (added)
+++ ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Error.jsp Wed Mar 19 19:16:28 2014
@@ -0,0 +1,55 @@
+<%-----------------------------------------------------------------------------
+	Copyright (c) 2004 Actuate Corporation and others.
+	All rights reserved. This program and the accompanying materials 
+	are made available under the terms of the Eclipse Public License v1.0
+	which accompanies this distribution, and is available at
+	http://www.eclipse.org/legal/epl-v10.html
+	
+	Contributors:
+		Actuate Corporation - Initial implementation.
+-----------------------------------------------------------------------------%>
+<%@ page contentType="text/html; charset=utf-8" %>
+<%@ page session="false" buffer="none" %>
+<%@ page import="org.eclipse.birt.core.exception.BirtException,
+				 org.eclipse.birt.report.utility.ParameterAccessor,
+				 org.eclipse.birt.report.resource.BirtResources,
+				 java.io.PrintWriter" %>
+
+<%-----------------------------------------------------------------------------
+	Expected java beans
+-----------------------------------------------------------------------------%>
+<jsp:useBean id="error" type="java.lang.Exception" scope="request" />
+
+<%-----------------------------------------------------------------------------
+	Error content
+-----------------------------------------------------------------------------%>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<HTML>
+	<HEAD>
+		<TITLE>
+				<%= BirtResources.getMessage( "birt.viewer.title.error" )%>
+		</TITLE>
+		<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
+		<LINK REL="stylesheet" HREF="<%= request.getContextPath( ) + "/webcontent/birt/styles/style.css" %>" TYPE="text/css">
+	</HEAD>
+	<BODY>
+		<TABLE CLASS="BirtViewer_Highlight_Label">
+			<TR><TD NOWRAP>
+				<%
+					if ( error != null )
+					{
+						if ( error.getMessage( ) != null )
+						{
+							out.println( ParameterAccessor.htmlEncode( new String( error.getMessage( ).getBytes( "ISO-8859-1" ),"UTF-8" ) ) );
+						}
+						else
+						{
+							PrintWriter writer = new PrintWriter( out );									
+							error.printStackTrace( writer );				
+						}					
+					}
+				%>
+			</TD></TR>
+		</TABLE>
+	</BODY>
+</HTML>
\ No newline at end of file

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Error.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Error.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Error.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Locale.jsp
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Locale.jsp?rev=1579359&view=auto
==============================================================================
--- ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Locale.jsp (added)
+++ ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Locale.jsp Wed Mar 19 19:16:28 2014
@@ -0,0 +1,17 @@
+<%@ page import="org.eclipse.birt.report.resource.BirtResources" %>
+
+<%-- Map Java resource messages to Javascript constants --%>
+<script type="text/javascript">
+// <![CDATA[	
+	// Error msgs
+	Constants.error.invalidPageRange = '<%= BirtResources.getJavaScriptMessage( "birt.viewer.dialog.page.error.invalidpagerange" )%>';
+	Constants.error.parameterRequired = '<%= BirtResources.getJavaScriptMessage( "birt.viewer.error.parameterrequired" )%>';
+	Constants.error.parameterNotAllowBlank = '<%= BirtResources.getJavaScriptMessage( "birt.viewer.error.parameternotallowblank" )%>';
+	Constants.error.parameterNotSelected = '<%= BirtResources.getJavaScriptMessage( "birt.viewer.error.parameternotselected" )%>';
+	Constants.error.invalidPageNumber = '<%= BirtResources.getJavaScriptMessage( "birt.viewer.navbar.error.blankpagenum" )%>';
+	Constants.error.unknownError = '<%= BirtResources.getJavaScriptMessage( "birt.viewer.error.unknownerror" )%>';
+	Constants.error.generateReportFirst = '<%= BirtResources.getJavaScriptMessage( "birt.viewer.error.generatereportfirst" )%>';
+	Constants.error.printPreviewAlreadyOpen = '<%= BirtResources.getJavaScriptMessage( "birt.viewer.dialog.print.printpreviewalreadyopen" )%>';
+	Constants.error.confirmCancelTask = '<%= BirtResources.getJavaScriptMessage( "birt.viewer.progressbar.confirmcanceltask" )%>';
+// ]]>
+</script>

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Locale.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Locale.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/Locale.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/blank.html
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/blank.html?rev=1579359&view=auto
==============================================================================
    (empty)

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/blank.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/blank.html
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/blank.html
------------------------------------------------------------------------------
    svn:mime-type = text/html

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/processing.jsp
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/processing.jsp?rev=1579359&view=auto
==============================================================================
--- ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/processing.jsp (added)
+++ ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/processing.jsp Wed Mar 19 19:16:28 2014
@@ -0,0 +1,50 @@
+<%-----------------------------------------------------------------------------
+	Copyright (c) 2004 Actuate Corporation and others.
+	All rights reserved. This program and the accompanying materials 
+	are made available under the terms of the Eclipse Public License v1.0
+	which accompanies this distribution, and is available at
+	http://www.eclipse.org/legal/epl-v10.html
+	
+	Contributors:
+		Actuate Corporation - Initial implementation.
+-----------------------------------------------------------------------------%>
+<%@ page contentType="text/html; charset=utf-8" %>
+<%@ page session="false" buffer="none" %>
+<%@ page import="org.eclipse.birt.report.resource.BirtResources" %>
+
+<%-----------------------------------------------------------------------------
+	Progress page
+-----------------------------------------------------------------------------%>
+<%
+	boolean rtl = false;
+	String rtlParam = request.getParameter("__rtl");
+	if ( rtlParam != null )
+	{
+		rtl = Boolean.getBoolean(rtlParam);
+	}
+%>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<HTML>
+	<HEAD>
+		<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
+		<LINK REL="stylesheet" HREF="<%= request.getContextPath( ) + "/webcontent/birt/styles/style.css" %>" TYPE="text/css">
+	</HEAD>
+	<BODY STYLE="background-color: #ECE9D8;">
+		<DIV ID="progressBar" ALIGN="center">
+			<TABLE WIDTH="250px" CLASS="birtviewer_progresspage" CELLSPACING="10px">
+				<TR>
+					<TD ALIGN="center">
+						<B>
+							<%= BirtResources.getMessage( "birt.viewer.progressbar.prompt" )%>
+						</B>
+					</TD>
+				</TR>
+				<TR>
+					<TD ALIGN="center">
+						<IMG SRC="<%= request.getContextPath( ) + "/webcontent/birt/images/" + (rtl?"Loading_rtl":"Loading") + ".gif" %>" ALT="Progress Bar Image"/>
+					</TD>
+				</TR>
+			</TABLE>
+		</DIV>
+	</BODY>
+</HTML>		
\ No newline at end of file

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/processing.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/processing.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/common/processing.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/NavigationbarFragment.jsp
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/NavigationbarFragment.jsp?rev=1579359&view=auto
==============================================================================
--- ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/NavigationbarFragment.jsp (added)
+++ ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/NavigationbarFragment.jsp Wed Mar 19 19:16:28 2014
@@ -0,0 +1,118 @@
+<%-----------------------------------------------------------------------------
+	Copyright (c) 2004 Actuate Corporation and others.
+	All rights reserved. This program and the accompanying materials 
+	are made available under the terms of the Eclipse Public License v1.0
+	which accompanies this distribution, and is available at
+	http://www.eclipse.org/legal/epl-v10.html
+	
+	Contributors:
+		Actuate Corporation - Initial implementation.
+-----------------------------------------------------------------------------%>
+<%@ page contentType="text/html; charset=utf-8" %>
+<%@ page session="false" buffer="none" %>
+<%@ page import="org.eclipse.birt.report.presentation.aggregation.IFragment,
+				 org.eclipse.birt.report.context.BaseAttributeBean,
+				 org.eclipse.birt.report.resource.BirtResources" %>
+
+<%-----------------------------------------------------------------------------
+	Expected java beans
+-----------------------------------------------------------------------------%>
+<jsp:useBean id="fragment" type="org.eclipse.birt.report.presentation.aggregation.IFragment" scope="request" />
+<jsp:useBean id="attributeBean" type="org.eclipse.birt.report.context.BaseAttributeBean" scope="request" />
+
+<%-----------------------------------------------------------------------------
+	Navigation bar fragment
+-----------------------------------------------------------------------------%>
+<TR 
+	<%	
+		String imagesPath = "birt/images/";
+	
+		if( attributeBean.isShowNavigationbar( ) )
+		{
+	%>
+		HEIGHT="25px"
+	<%
+		}
+		else
+		{
+	%>
+		style="display:none"
+	<%
+		}
+	%>	
+>
+	<TD>
+		<DIV id="navigationBar">
+			<TABLE CELLSPACING="0" CELLPADDING="0" WIDTH="100%" HEIGHT="25px" CLASS="birtviewer_navbar">
+				<TR><TD></TD></TR>
+				<TR>
+					<TD WIDTH="6px">&nbsp;</TD>
+					<TD WIDTH="100%" NOWRAP>
+						<B>
+						<%
+							if ( attributeBean.getBookmark( ) != null )
+							{
+						%>
+							<%= 
+								BirtResources.getMessage( "birt.viewer.navbar.prompt.one" )
+							%>&nbsp;
+							<SPAN ID='pageNumber'></SPAN>&nbsp;
+							<%= BirtResources.getMessage( "birt.viewer.navbar.prompt.two" )%>&nbsp;
+							<SPAN ID='totalPage'></SPAN>
+						<%
+							}
+							else
+							{
+						%>
+							<%= BirtResources.getMessage( "birt.viewer.navbar.prompt.one" )%>&nbsp;
+							<SPAN ID='pageNumber'><%= ""+attributeBean.getReportPage( ) %></SPAN>&nbsp;
+							<%= BirtResources.getMessage( "birt.viewer.navbar.prompt.two" )%>&nbsp;
+							<SPAN ID='totalPage'></SPAN>
+						<%
+							}
+						%>
+						</B>
+					</TD>
+					<TD WIDTH="15px">
+						<INPUT TYPE="image" SRC="<%= imagesPath + (attributeBean.isRtl()?"LastPage":"FirstPage") + "_disabled.gif" %>" NAME='first'
+							ALT="<%= BirtResources.getHtmlMessage( "birt.viewer.navbar.first" )%>" 
+							TITLE="<%= BirtResources.getHtmlMessage( "birt.viewer.navbar.first" )%>" CLASS="birtviewer_clickable">
+					</TD>
+					<TD WIDTH="2px">&nbsp;</TD>
+					<TD WIDTH="15px">
+						<INPUT TYPE="image" SRC="<%= imagesPath + (attributeBean.isRtl()?"NextPage":"PreviousPage") + "_disabled.gif" %>" NAME='previous' 
+							ALT="<%= BirtResources.getHtmlMessage( "birt.viewer.navbar.previous" )%>" 
+							TITLE="<%= BirtResources.getHtmlMessage( "birt.viewer.navbar.previous" )%>" CLASS="birtviewer_clickable">
+					</TD>
+					<TD WIDTH="2px">&nbsp;</TD>
+					<TD WIDTH="15px">
+						<INPUT TYPE="image" SRC="<%= imagesPath + (attributeBean.isRtl()?"PreviousPage":"NextPage") + "_disabled.gif" %>" NAME='next'
+						    ALT="<%= BirtResources.getHtmlMessage( "birt.viewer.navbar.next" )%>" 
+							TITLE="<%= BirtResources.getHtmlMessage( "birt.viewer.navbar.next" )%>" CLASS="birtviewer_clickable">
+					</TD>
+					<TD WIDTH="2px">&nbsp;</TD>
+					<TD WIDTH="15px">
+						<INPUT TYPE="image" SRC="<%= imagesPath + (attributeBean.isRtl()?"FirstPage":"LastPage") + "_disabled.gif" %>" NAME='last'
+						    ALT="<%= BirtResources.getHtmlMessage( "birt.viewer.navbar.last" )%>"
+							TITLE="<%= BirtResources.getHtmlMessage( "birt.viewer.navbar.last" )%>" CLASS="birtviewer_clickable">
+					</TD>
+					
+					<TD WIDTH="8px">&nbsp;&nbsp;</TD>
+					
+					<TD ALIGN="right" NOWRAP><LABEL for="gotoPage"><b><%= BirtResources.getMessage( "birt.viewer.navbar.lable.goto" )%></b></LABEL></TD>
+					<TD WIDTH="2px">&nbsp;</TD>
+					<TD ALIGN="right" WIDTH="50px">
+						<INPUT ID='gotoPage' TYPE='text' VALUE='' MAXLENGTH="8" SIZE='5' CLASS="birtviewer_navbar_input">
+					</TD>
+					<TD WIDTH="4px">&nbsp;</TD>
+					<TD ALIGN="right" WIDTH="10px">
+						<INPUT TYPE="image" SRC="<%= imagesPath + (attributeBean.isRtl()?"Go_rtl.gif":"Go.gif") %>" NAME='goto'
+						    ALT="<%= BirtResources.getHtmlMessage( "birt.viewer.navbar.goto" )%>" 
+							TITLE="<%= BirtResources.getHtmlMessage( "birt.viewer.navbar.goto" )%>" CLASS="birtviewer_clickable">
+					</TD>
+					<TD WIDTH="6px">&nbsp;</TD>
+				</TR>
+			</TABLE>
+		</DIV>
+	</TD>
+</TR>

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/NavigationbarFragment.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/NavigationbarFragment.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/NavigationbarFragment.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ProgressBarFragment.jsp
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ProgressBarFragment.jsp?rev=1579359&view=auto
==============================================================================
--- ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ProgressBarFragment.jsp (added)
+++ ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ProgressBarFragment.jsp Wed Mar 19 19:16:28 2014
@@ -0,0 +1,55 @@
+<%-----------------------------------------------------------------------------
+	Copyright (c) 2004 Actuate Corporation and others.
+	All rights reserved. This program and the accompanying materials 
+	are made available under the terms of the Eclipse Public License v1.0
+	which accompanies this distribution, and is available at
+	http://www.eclipse.org/legal/epl-v10.html
+	
+	Contributors:
+		Actuate Corporation - Initial implementation.
+-----------------------------------------------------------------------------%>
+<%@ page contentType="text/html; charset=utf-8" %>
+<%@ page session="false" buffer="none" %>
+<%@ page import="org.eclipse.birt.report.presentation.aggregation.IFragment,
+				 org.eclipse.birt.report.resource.BirtResources" %>
+
+<%-----------------------------------------------------------------------------
+	Expected java beans
+-----------------------------------------------------------------------------%>
+<jsp:useBean id="fragment" type="org.eclipse.birt.report.presentation.aggregation.IFragment" scope="request" />
+<jsp:useBean id="attributeBean" type="org.eclipse.birt.report.context.BaseAttributeBean" scope="request" />
+<%-----------------------------------------------------------------------------
+	Progress bar fragment
+-----------------------------------------------------------------------------%>
+<DIV ID="progressBar" STYLE="display:none;position:absolute;z-index:310">
+	<TABLE WIDTH="250px" CLASS="birtviewer_progressbar" CELLSPACING="10px">
+		<TR>
+			<TD ALIGN="center">
+				<B>
+					<%= BirtResources.getMessage( "birt.viewer.progressbar.prompt" )%>
+				</B>
+			</TD>
+		</TR>
+		<TR>
+			<TD ALIGN="center">
+				<IMG SRC="<%= "birt/images/" + (attributeBean.isRtl()?"Loading_rtl":"Loading") + ".gif" %>" ALT="Progress Bar Image"/>
+			</TD>
+		</TR>
+		<TR>
+			<TD ALIGN="center">
+				<DIV ID="cancelTaskButton" STYLE="display:none">
+					<TABLE WIDTH="100%">
+						<TR>
+							<TD ALIGN="center">
+								<INPUT TYPE="BUTTON" VALUE="<%= BirtResources.getHtmlMessage( "birt.viewer.dialog.cancel" )%>" 					   
+									   TITLE="<%= BirtResources.getHtmlMessage( "birt.viewer.dialog.cancel" )%>"
+									   CLASS="birtviewer_progressbar_button"/>
+							</TD>
+						</TR>
+					</TABLE>
+				</DIV>
+			</TD>
+		</TR>	
+		<INPUT TYPE="HIDDEN" ID="taskid" VALUE=""/>
+	</TABLE>
+</DIV>
\ No newline at end of file

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ProgressBarFragment.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ProgressBarFragment.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ProgressBarFragment.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/TocFragment.jsp
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/TocFragment.jsp?rev=1579359&view=auto
==============================================================================
--- ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/TocFragment.jsp (added)
+++ ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/TocFragment.jsp Wed Mar 19 19:16:28 2014
@@ -0,0 +1,24 @@
+<%-----------------------------------------------------------------------------
+	Copyright (c) 2004 Actuate Corporation and others.
+	All rights reserved. This program and the accompanying materials 
+	are made available under the terms of the Eclipse Public License v1.0
+	which accompanies this distribution, and is available at
+	http://www.eclipse.org/legal/epl-v10.html
+	
+	Contributors:
+		Actuate Corporation - Initial implementation.
+-----------------------------------------------------------------------------%>
+<%@ page contentType="text/html; charset=utf-8" %>
+<%@ page session="false" buffer="none" %>
+<%@ page import="org.eclipse.birt.report.presentation.aggregation.IFragment" %>
+
+<%-----------------------------------------------------------------------------
+	Expected java beans
+-----------------------------------------------------------------------------%>
+<jsp:useBean id="fragment" type="org.eclipse.birt.report.presentation.aggregation.IFragment" scope="request" />
+
+<%-----------------------------------------------------------------------------
+	TOC fragment
+-----------------------------------------------------------------------------%>
+<DIV ID="display0" STYLE="display:none;width:250px;position:relative;overflow:auto">
+</DIV>

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/TocFragment.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/TocFragment.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/TocFragment.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ToolbarFragment.jsp
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ToolbarFragment.jsp?rev=1579359&view=auto
==============================================================================
--- ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ToolbarFragment.jsp (added)
+++ ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ToolbarFragment.jsp Wed Mar 19 19:16:28 2014
@@ -0,0 +1,98 @@
+<%-----------------------------------------------------------------------------
+	Copyright (c) 2004 Actuate Corporation and others.
+	All rights reserved. This program and the accompanying materials 
+	are made available under the terms of the Eclipse Public License v1.0
+	which accompanies this distribution, and is available at
+	http://www.eclipse.org/legal/epl-v10.html
+	
+	Contributors:
+		Actuate Corporation - Initial implementation.
+-----------------------------------------------------------------------------%>
+<%@ page contentType="text/html; charset=utf-8" %>
+<%@ page session="false" buffer="none" %>
+<%@ page import="org.eclipse.birt.report.presentation.aggregation.IFragment,
+				 org.eclipse.birt.report.resource.BirtResources,
+				 org.eclipse.birt.report.utility.ParameterAccessor,
+				 org.eclipse.birt.report.servlet.ViewerServlet" %>
+
+<%-----------------------------------------------------------------------------
+	Expected java beans
+-----------------------------------------------------------------------------%>
+<jsp:useBean id="fragment" type="org.eclipse.birt.report.presentation.aggregation.IFragment" scope="request" />
+<jsp:useBean id="attributeBean" type="org.eclipse.birt.report.context.BaseAttributeBean" scope="request" />
+
+<%-----------------------------------------------------------------------------
+	Toolbar fragment
+-----------------------------------------------------------------------------%>
+<TR 
+	<%
+		if( attributeBean.isShowToolbar( ) )
+		{
+	%>
+		HEIGHT="20px"
+	<%
+		}
+		else
+		{
+	%>
+		style="display:none"
+	<%
+		}
+	%>	
+>
+	<TD COLSPAN='2'>
+		<DIV ID="toolbar">
+			<TABLE CELLSPACING="1px" CELLPADDING="1px" WIDTH="100%" CLASS="birtviewer_toolbar">
+				<TR><TD></TD></TR>
+				<TR>
+					<TD WIDTH="6px"/>
+					<TD WIDTH="15px">
+					   <INPUT TYPE="image" NAME='toc' SRC="birt/images/Toc.gif"
+					   		TITLE="<%= BirtResources.getHtmlMessage( "birt.viewer.toolbar.toc" )%>"
+					   		ALT="<%= BirtResources.getHtmlMessage( "birt.viewer.toolbar.toc" )%>" CLASS="birtviewer_clickable">
+					</TD>
+					<TD WIDTH="6px"/>
+					<TD WIDTH="15px">
+					   <INPUT TYPE="image" NAME='parameter' SRC="birt/images/Report_parameters.gif"
+					   		TITLE="<%= BirtResources.getHtmlMessage( "birt.viewer.toolbar.parameter" )%>"	
+					   		ALT="<%= BirtResources.getHtmlMessage( "birt.viewer.toolbar.parameter" )%>" CLASS="birtviewer_clickable">
+					</TD>
+					<TD WIDTH="6px"/>
+					<TD WIDTH="15px">
+					   <INPUT TYPE="image" NAME='export' SRC="birt/images/Export.gif"
+					   		TITLE="<%= BirtResources.getHtmlMessage( "birt.viewer.toolbar.export" )%>"
+					   		ALT="<%= BirtResources.getHtmlMessage( "birt.viewer.toolbar.export" )%>" CLASS="birtviewer_clickable">
+					</TD>
+					<TD WIDTH="6px"/>
+					<TD WIDTH="15px">
+					   <INPUT TYPE="image" NAME='exportReport' SRC="birt/images/ExportReport.gif"
+					   		TITLE="<%= BirtResources.getHtmlMessage( "birt.viewer.toolbar.exportreport" )%>"
+					   		ALT="<%= BirtResources.getHtmlMessage( "birt.viewer.toolbar.exportreport" )%>" CLASS="birtviewer_clickable">
+					</TD>
+					<TD WIDTH="6px"/>
+					<TD WIDTH="15px">
+					   <INPUT TYPE="image" NAME='print' SRC="birt/images/Print.gif"
+					   		TITLE="<%= BirtResources.getHtmlMessage( "birt.viewer.toolbar.print" )%>"
+					   		ALT="<%= BirtResources.getHtmlMessage( "birt.viewer.toolbar.print" )%>" CLASS="birtviewer_clickable">
+					</TD>
+					<%
+					if( ParameterAccessor.isSupportedPrintOnServer )
+					{
+					%>					
+					<TD WIDTH="6px"/>
+					<TD WIDTH="15px">
+					   <INPUT TYPE="image" NAME='printServer' SRC="birt/images/PrintServer.gif"
+					   		TITLE="<%= BirtResources.getHtmlMessage( "birt.viewer.toolbar.printserver" )%>"
+					   		ALT="<%= BirtResources.getHtmlMessage( "birt.viewer.toolbar.printserver" )%>" CLASS="birtviewer_clickable">
+					</TD>
+					<%
+					}
+					%>										
+					<TD ALIGN='right'>
+					</TD>
+					<TD WIDTH="6px"/>
+				</TR>
+			</TABLE>
+		</DIV>
+	</TD>
+</TR>

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ToolbarFragment.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ToolbarFragment.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/control/ToolbarFragment.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/dialog/ConfirmationDialogFragment.jsp
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/dialog/ConfirmationDialogFragment.jsp?rev=1579359&view=auto
==============================================================================
--- ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/dialog/ConfirmationDialogFragment.jsp (added)
+++ ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/dialog/ConfirmationDialogFragment.jsp Wed Mar 19 19:16:28 2014
@@ -0,0 +1,41 @@
+<%-----------------------------------------------------------------------------
+	Copyright (c) 2004 Actuate Corporation and others.
+	All rights reserved. This program and the accompanying materials 
+	are made available under the terms of the Eclipse Public License v1.0
+	which accompanies this distribution, and is available at
+	http://www.eclipse.org/legal/epl-v10.html
+	
+	Contributors:
+		Actuate Corporation - Initial implementation.
+-----------------------------------------------------------------------------%>
+<%@ page contentType="text/html; charset=utf-8" %>
+<%@ page session="false" buffer="none" %>
+<%@ page import="org.eclipse.birt.report.presentation.aggregation.IFragment,
+				 org.eclipse.birt.report.resource.ResourceConstants,
+				 org.eclipse.birt.report.resource.BirtResources"  %>
+
+<%-----------------------------------------------------------------------------
+	Expected java beans
+-----------------------------------------------------------------------------%>
+<jsp:useBean id="fragment" type="org.eclipse.birt.report.presentation.aggregation.IFragment" scope="request" />
+<jsp:useBean id="attributeBean" type="org.eclipse.birt.report.context.BaseAttributeBean" scope="request" />
+
+<%-----------------------------------------------------------------------------
+	Confirmatin dialog fragment
+-----------------------------------------------------------------------------%>
+<TABLE CELLSPACING="2" CELLPADDING="2" CLASS="birtviewer_dialog_body">
+	<TR>
+		<TD VALIGN="bottom" ALIGN="center">
+			<TABLE CELLSPACING="2" CELLPADDING="2">
+				<TR>					
+					<TD>
+						<iframe name="birt_confirmation_iframe" 
+							class="birtviewer_confirmation_dialog_iframe" 
+							frameBorder="0" src="<%= "birt/pages/common/processing.jsp?__rtl=" + Boolean.toString( attributeBean.isRtl() )  %>">
+						</iframe>			
+					</TD>					
+				</TR>
+			</TABLE>
+		</TD>
+	</TR>
+</TABLE>
\ No newline at end of file

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/dialog/ConfirmationDialogFragment.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/dialog/ConfirmationDialogFragment.jsp
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/specialpurpose/birt/webapp/birt/webcontent/birt/pages/dialog/ConfirmationDialogFragment.jsp
------------------------------------------------------------------------------
    svn:mime-type = text/plain