OK, in my LSDS resource-config.xml I have these beans defined for determining Locale, how do I find out what each one means ? I cannot find anything in the docs (though I certainly may be looking at the wrong doc). I assume LocaleFromRequest means it looks at the browser setting ?
<bean id="runtime.LocaleDeterminer"
class="com.interwoven.livesite.runtime.impl.locale.BaseLocaleDeterminer">
<property name="determiners">
<list>
<bean class="com.interwoven.livesite.runtime.impl.locale.LocaleForLegacySites"/>
<bean class="com.interwoven.livesite.runtime.impl.locale.LocaleFromSession"/>
<bean class="com.interwoven.livesite.runtime.impl.locale.LocaleFromUserProfile">
<property name="storeOnSession" value="true"/>
<property name="dispatchToLocaleSite" value="true"/>
</bean>
<bean class="com.interwoven.livesite.runtime.impl.locale.LocaleFromRequest"/>
<bean class="com.interwoven.livesite.runtime.impl.locale.LocaleFromSite"/>
<bean class="com.interwoven.livesite.runtime.impl.locale.LocaleFromSystemDefault"/>
</list>
</property>
</bean>