<!-- XML Configuration

configuration: 		 Top level container for the XML object
baseURL: 			 Base URL for the application - needs to understand/speak MQL
searchTerm: 		 Initial search term query, also populates the search box
title: 				 Phrase to appear in the upper left hand corner 
logotext:			 If included, text to appear in the lower right hand corner (DB name or whatever) - this is currently ugly
element:			 Top level for an element, like person, company, etc. - the "id" is the descriptor for this element
   type:             MQL type for this element
   connection:		 Connection from this element - the "id" is the phrase describing this connection
   	  past_string:   If exists, indicates that there is a "previous" and "current" state for this connection, and this is the
	  				 string describing the previous connection ("worked for" vs. "works for").  This requires that property and
					 rootProperty be set as well.
	  property:      MQL type within the query for the target of this query (used for target:<property> in the query)
	  rootProperty:  MQL type within the query for the source of this query
      target_name: 	 Descriptor for this connection (appears on the targets in the circle)
	  type:          MQL type for the target of this connection
	  link:          Shorthand MQL link for this connection (sometimes the same as target_string)
	  labelcolor:    Color for the edge descriptor on the circle
	  target_string: Full link for this connection used in the MQL query
	  
There are a couple of example connections at the bottom along with their associated MQL queries, so you can figure out what to plug in where.
	  
-->

<configuration>
	<baseURL>http://www.freebase.com/</baseURL>
	<searchTerm>Bertrand Russell</searchTerm>
	<title>InfluenceSpin</title>
	<logotext></logotext>
        <element id="person">
		<type>/user/mikelove/default_domain/influence_node</type>
		<connection id="influenced by">
			<target_name>person</target_name>
			<type>/user/mikelove/default_domain/influence_node</type>
			<link>/user/mikelove/default_domain/influence_node/influenced_by</link>
			<labelcolor>0x755AD4</labelcolor>
			<target_string>/user/mikelove/default_domain/influence_node/influenced_by</target_string>
		</connection>
	</element>
	
        <element id="person2">
                <type>/user/mikelove/default_domain/influence_node</type>
                <connection id="influenced">
                        <target_name>person</target_name>
                        <type>/user/mikelove/default_domain/influence_node</type>
                        <link>/user/mikelove/default_domain/influence_node/influenced</link>
                        <labelcolor>0x559ee5</labelcolor>
                        <target_string>/user/mikelove/default_domain/influence_node/influenced</target_string>
                </connection>
        </element>
</configuration>