Author: kwright
Date: Tue Oct 22 20:57:13 2013
New Revision: 1534784
URL: http://svn.apache.org/r1534784
Log:
Fix some random UI bugs.
Modified:
manifoldcf/branches/CONNECTORS-754/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointAuthority.java
manifoldcf/branches/CONNECTORS-754/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/editConfiguration_AuthorizationModel.html
Modified:
manifoldcf/branches/CONNECTORS-754/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointAuthority.java
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-754/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointAuthority.java?rev=1534784&r1=1534783&r2=1534784&view=diff
==============================================================================
---
manifoldcf/branches/CONNECTORS-754/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointAuthority.java
(original)
+++
manifoldcf/branches/CONNECTORS-754/connectors/sharepoint/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/sharepoint/SharePointAuthority.java
Tue Oct 22 20:57:13 2013
@@ -999,7 +999,7 @@ public class SharePointAuthority extends
// Authority needs to do nothing with SharePoint version right now.
String authorizationModel = params.getParameter(
SharePointConfig.PARAM_AUTHORIZATIONMODEL );
- isClaimSpace = authorizationModel.equals("ClaimSpace");
+ isClaimSpace = (authorizationModel != null
&&authorizationModel.equals("ClaimSpace"));
serverProtocol = params.getParameter(
SharePointConfig.PARAM_SERVERPROTOCOL );
if (serverProtocol == null)
Modified:
manifoldcf/branches/CONNECTORS-754/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/editConfiguration_AuthorizationModel.html
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-754/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/editConfiguration_AuthorizationModel.html?rev=1534784&r1=1534783&r2=1534784&view=diff
==============================================================================
---
manifoldcf/branches/CONNECTORS-754/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/editConfiguration_AuthorizationModel.html
(original)
+++
manifoldcf/branches/CONNECTORS-754/connectors/sharepoint/connector/src/main/resources/org/apache/manifoldcf/authorities/authorities/sharepoint/editConfiguration_AuthorizationModel.html
Tue Oct 22 20:57:13 2013
@@ -38,6 +38,6 @@
#else
-<input type="hidden" name="authorityType" value="$AUTHORITYTYPE"/>
+<input type="hidden" name="authorizationModel" value="$AUTHORIZATIONMODEL"/>
#end