-
-
diff --git a/system/views/client-storage/client-storage-write.vm b/system/views/client-storage/client-storage-write.vm
deleted file mode 100644
index 090a4e0..0000000
--- a/system/views/client-storage/client-storage-write.vm
+++ /dev/null
@@ -1,65 +0,0 @@
-##
-## Velocity template to write to local storage.
-##
-## Velocity context will contain the following properties
-## flowExecutionUrl - the form action location
-## flowRequestContext - the Spring Web Flow RequestContext
-## flowExecutionKey - the SWF execution key (this is built into the flowExecutionUrl)
-## profileRequestContext - root of context tree
-## saveContext - context with details about the storage data to save
-## encoder - HTMLEncoder class
-## request - HttpServletRequest
-## response - HttpServletResponse
-## environment - Spring Environment object for property resolution
-#set ($title = $springMacroRequestContext.getMessage("idp.title", "Web Login Service"))
-#set ($titleSuffix = $springMacroRequestContext.getMessage("idp.client-storage-write.suffix", "Loading Session State..."))
-##
-
-
-
-
- $title - $titleSuffix
-
-
-
-
-
-
-
-
$title - $titleSuffix
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/system/views/client-storage/local-storage-read.js b/system/views/client-storage/local-storage-read.js
deleted file mode 100644
index 7d6067c..0000000
--- a/system/views/client-storage/local-storage-read.js
+++ /dev/null
@@ -1,25 +0,0 @@
-"use strict";
-function readLocalStorage(key) {
- var success;
- try {
- var value = localStorage.getItem(key);
- if (value != null) {
- document.form1["shib_idp_ls_value." + key].value = value;
- }
- success = "true";
- } catch (e) {
- success = "false";
- document.form1["shib_idp_ls_exception." + key].value = e;
- }
- document.form1["shib_idp_ls_success." + key].value = success;
-}
-
-function isLocalStorageSupported() {
- try {
- localStorage.setItem("shib_idp_ls_test", "shib_idp_ls_test");
- localStorage.removeItem("shib_idp_ls_test");
- return true;
- } catch (e) {
- return false;
- }
-}
diff --git a/system/views/client-storage/local-storage-write.js b/system/views/client-storage/local-storage-write.js
deleted file mode 100644
index ddca7cc..0000000
--- a/system/views/client-storage/local-storage-write.js
+++ /dev/null
@@ -1,16 +0,0 @@
-"use strict";
-function writeLocalStorage(key, value) {
- var success;
- try {
- if (value == null || value.length == 0) {
- localStorage.removeItem(key);
- } else {
- localStorage.setItem(key, value);
- }
- success = "true";
- } catch (e) {
- success = "false";
- document.form1["shib_idp_ls_exception." + key].value = e;
- }
- document.form1["shib_idp_ls_success." + key].value = success;
-}
\ No newline at end of file
diff --git a/system/views/logout/propagate.vm b/system/views/logout/propagate.vm
deleted file mode 100644
index 904d50a..0000000
--- a/system/views/logout/propagate.vm
+++ /dev/null
@@ -1,103 +0,0 @@
-##
-## Velocity Template containing logout propagation machinery.
-##
-## Velocity context will contain the following properties
-## flowExecutionUrl - the form action location
-## flowRequestContext - the Spring Web Flow RequestContext
-## flowExecutionKey - the SWF execution key (this is built into the flowExecutionUrl)
-## profileRequestContext - root of context tree
-## logoutContext - context with SPSession details for logout operation
-## flowSelector - bean that maps an SPSession to a logout propagation flow
-## multiRPContext - context with RelyingPartyContexts and possibly SP UI information from the metadata
-## htmlEncoder - HTMLEncoder class
-## urlEncoder - urlEncoder class
-## codecUtil - CodecUtil class
-## request - HttpServletRequest
-## response - HttpServletResponse
-## environment - Spring Environment object for property resolution
-## custom - arbitrary object injected by deployer
-##
-## The
items are an enumeration of the relying parties among the sessions
-## and are identified by an encoding of the name of the relying party.
-##
-## The iframes are bound to a single session and are associated back to the
-## element for the relying party of their session.
-##
-#if ($logoutContext and !$logoutContext.getSessionMap().isEmpty())
-
- #foreach ($sp in $logoutContext.getSessionMap().keySet())
- #set ($rpCtx = $multiRPContext.getRelyingPartyContextById($sp))
- #if ($rpCtx)
- #set ($rpUIContext = $rpCtx.getSubcontext("net.shibboleth.idp.ui.context.RelyingPartyUIContext"))
- #end
- #if ($rpUIContext and $rpUIContext.getServiceName())
-