Index: lams_bb_integration/web/admin/config.jsp
===================================================================
diff -u -re281c3c91ae37fd2536fbd8419634ea6a31954b9 -r3ee2f5e23a3e6ac011601577ac73c85146c94e0d
--- lams_bb_integration/web/admin/config.jsp (.../config.jsp) (revision e281c3c91ae37fd2536fbd8419634ea6a31954b9)
+++ lams_bb_integration/web/admin/config.jsp (.../config.jsp) (revision 3ee2f5e23a3e6ac011601577ac73c85146c94e0d)
@@ -34,8 +34,6 @@
String ReqSrc = p.getProperty("BB_REQ_SRC");
String lamsServerTimeRefreshInterval = p.getProperty("LAMS_SERVER_TIME_REFRESH_INTERVAL");
String lamsAltServerUrl = p.getProperty("LAMS_ALT_SERVER_URL", "https://");
- //*NTU* added for i-NTULearn project
- String idpServer = p.getProperty("IDP_SERVER", "");
//Add port to the url if the port is in the blackboard url
int bbport = request.getServerPort();
@@ -77,10 +75,6 @@
- <%--*NTU* added for i-NTULearn project--%>
-
-
-
For further information on how to configure these settings, see this tutorial.
Index: lams_bb_integration/web/admin/config_proc.jsp
===================================================================
diff -u -re281c3c91ae37fd2536fbd8419634ea6a31954b9 -r3ee2f5e23a3e6ac011601577ac73c85146c94e0d
--- lams_bb_integration/web/admin/config_proc.jsp (.../config_proc.jsp) (revision e281c3c91ae37fd2536fbd8419634ea6a31954b9)
+++ lams_bb_integration/web/admin/config_proc.jsp (.../config_proc.jsp) (revision 3ee2f5e23a3e6ac011601577ac73c85146c94e0d)
@@ -38,8 +38,6 @@
String bbReqSrc = request.getParameter("bb_req_src");
String lamsServerTimeRefreshInterval = request.getParameter("lams_server_time_refresh_interval");
String lamsAltServerUrl = request.getParameter("lams_alt_server_url");
- //*NTU* added for i-NTULearn project
- String idpServer = request.getParameter("idp_server");
// Save the properties to Blackboard
p.setProperty(LamsPluginUtil.PROP_LAMS_URL, lamsServerUrl);
@@ -48,8 +46,6 @@
p.setProperty(LamsPluginUtil.PROP_REQ_SRC, bbReqSrc);
p.setProperty(LamsPluginUtil.PROP_LAMS_SERVER_TIME_REFRESH_INTERVAL, lamsServerTimeRefreshInterval);
p.setProperty(LamsPluginUtil.PROP_ALT_LAMS_URL, lamsAltServerUrl);
- //*NTU* added for i-NTULearn project
- p.setProperty(LamsPluginUtil.PROP_IDP_SERVER, idpServer);
// Persist the properties object
LamsPluginUtil.setProperties(p);
@@ -80,8 +76,6 @@
BB_REQ_SRC: <%= bbReqSrc %>
LAMS_SERVER_TIME_REFRESH_INTERVAL: <%= lamsServerTimeRefreshInterval %>
LAMS_ALT_SERVER_URL: <%= lamsAltServerUrl %>
- <%--*NTU* added for i-NTULearn project--%>
-
IDP_SERVER: <%= idpServer %>
\ No newline at end of file