<%@ page
import = "com.intellectdesign.canvas.login.sessions.SessionInfo,
org.json.JSONArray,org.json.JSONObject,org.json.JSONException,
com.intellectdesign.canvas.login.sessions.SessionManager,
com.intellectdesign.canvas.deviceband.TargetedFramework,
com.intellectdesign.canvas.downloadmanager.RuntimeChangeRegistry"
%>
<div
data-item-id = "CHANGED_CTTPL"
style = "display:none">
<%
RuntimeChangeRegistry changedCttpFiles = RuntimeChangeRegistry.getInstance();
out.print(changedCttpFiles.getCttplFilesChanged());
%>
</div>
<!-- The following div tag code will be used to load the default CTTPL file -->
<div
data-item-id = "DEFAULT_CTTPL"
style = "display:none">
<%
RuntimeChangeRegistry defaultCttpFile=RuntimeChangeRegistry.getInstance();
if(defaultCttpFile.getDefaultCttplFileChanged() != null && !defaultCttpFile.getDefaultCttplFileChanged().isEmpty())
out.print(defaultCttpFile.getDefaultCttplFileChanged().get(0));
else
out.print("");
%>
</div>
|