Beyond fixes several issues, this new build also provides a new set of features:
-
A new redirect control that is used by the teamroom template, to redirect request coming from a mobile device
-
A new LPTA based endpoint to manage single sign-on between Domino and Connections in the social enabler. Thanks to Reed Gesteland for his contribution
-
A new value picker option to allow full text search based retrieval of values
The list is in the readme.pdf.
Enjoy!
6/7/2012: Errata: there are two errors is the readme.pdf:
1- The extension library release number should be:
Release Notes for XPages Extension Library 8.5.3 (20120605)
2- The sample code for the new redirect control should be:
<xe:redirect>
<xe:this.rules>
<xe:redirectPhoneRule url="/mobile.xsp" urlHash="document">
</xe:redirectPhoneRule>
<xe:redirectTabletRule url="/mobile.xsp" urlHash="document">
</xe:redirectTabletRule>
<xe:redirectHeaderRule header="User-Agent" headerPattern=".*IE6.*"
url="/legacyBrowsersDocView.xsp">
</xe:redirectHeaderRule>
<xe:redirectCustomRule url="/login.xsp">
<xe:this.redirect><![CDATA[#{javascript:
if(userBean.canonicalName == "Anonymous")
{
return true;
}
else
{
return false;
}
}]]></xe:this.redirect>
</xe:redirectCustomRule>
</xe:this.rules>
</xe:redirect>