// GLOBAL package convention for VP UI
var com = { cisco : { dms : { vp : { ui :{  videoPortalConfigurationMetadata : {}  } } }}};

var configurationOverride = {
	xmlPath : QueryString ( "metadataPath")
	}

// singleton configuration property
com.cisco.dms.vp.ui.videoPortalConfigurationMetadata.configuration = {

		paths : {
			// general reference for XML metadata
			// querystring will override
			xmlPath : configurationOverride.xmlPath ? configurationOverride.xmlPath : "../xml"

		},
	
		resources : {
			// for SWF application to preprocess its presentation layer
			flashUserInterfaceConfiguration : "portalConfiguration.xml",
			// JSON structure

			clientInterfaceMetadata : "portalInterfaceData.js",

			videoSynchronizationURL : "../content/synchronized_media/",

			// published XML :: ticker to reuse this data source
			publishedUserInterfaceMetadata : "UI.xml",

				// Video Portal Reporting : metrics app that measures VP usage
					// default to current host.location
				metricsReportServer : null,
					// Java servlet port
				metricsReportPort : 8080,
					// Context URL for triggering click through
				metricsReportURL : "/CvpMetrics/clickImage.jsp",


			flashUserInterfaceAsset : "videoportal.swf"


		}

};




