diff --git a/webapp/web/authtest.jsp b/webapp/web/authtest.jsp
deleted file mode 100755
index 34b0ad1e5..000000000
--- a/webapp/web/authtest.jsp
+++ /dev/null
@@ -1,42 +0,0 @@
-<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
-
-<%@ page import="edu.cornell.mannlib.vitro.webapp.web.MiscWebUtils" %>
-
-
-
-
Authroization Test
-
-
-
-
-
-
-
-
-
-
- <%
-
- out.println("here");
-java.util.Map params = request.getParameterMap();
-java.util.Iterator keys = params.keySet().iterator();
-
-%> params <%
-while (keys.hasNext()){
- String name = (String) keys.next();
- String val = (String) params.get(name);
- out.println(""+ name + " "+ val +" ");
-}
-%> headers <%
- java.util.Enumeration hnames = request.getHeaderNames();
-while( hnames.hasMoreElements() ){
- String name = (String) hnames.nextElement();
- String val = request.getHeader(name);
- out.println(""+ name + " "+ val +" ");
-}%>
-
-
-<%= MiscWebUtils.getReqInfo(request) %>
-
-
-
diff --git a/webapp/web/displayRSS.jsp b/webapp/web/displayRSS.jsp
deleted file mode 100644
index 19cbf4ccb..000000000
--- a/webapp/web/displayRSS.jsp
+++ /dev/null
@@ -1,169 +0,0 @@
-<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
-
-
-<%@ taglib uri='WEB-INF/tlds/database.tld' prefix='database'%>
-<%@ page import="java.util.*,java.io.*,javax.xml.parsers.*,java.net.*,org.gnu.stealthp.rsslib.*" %>
-<%
-/**
- * @version 1 2005-08-04
- * @author Jon Corson-Rikert
- *
- * CHANGE HISTORY
- * 2005-08-18 jc55 added "raw" mode for inclusion in tabs
- */
-
-final int DEFAULT_PORTAL_ID=1;
-String portalIdStr=(portalIdStr=request.getParameter("home"))==null?String.valueOf(DEFAULT_PORTAL_ID): portalIdStr.equals("")?String.valueOf(DEFAULT_PORTAL_ID):portalIdStr;
-int incomingPortalId=Integer.parseInt(portalIdStr);
-
-final String DEFAULT_RSS_URL="http://www.nsf.gov/mynsf/RSS/rss2news.xml"; //http://www.nsf.gov/mynsf/RSS/rss2discoveries.xml
-boolean includeHeaders=true;
-String rawStr=(rawStr=request.getParameter("raw"))==null?"false": rawStr.equals("")?"false":rawStr;
-if (rawStr!=null && rawStr.equalsIgnoreCase("true")) {
- includeHeaders=false;
-}
-if (includeHeaders) {%>
-
-
-
-
-
RSS
-<% final String DEFAULT_APPNAME="RSS";
- final String DEFAULT_STYLESHEET="portal";
- String appName=DEFAULT_APPNAME;
- String styleSheet=DEFAULT_STYLESHEET;%>
-
- SELECT appName,styleSheet FROM portals WHERE id='<%=portalIdStr%>'
-
-
-<% int portal_col=0; %>
-
-<% switch (portal_col) {
- case 0: appName=theValue; break;
- case 1: styleSheet="portal"; break;
- }
- ++portal_col; %>
-
-
-
-
- <%
-}%>
-
-<%
-if (includeHeaders) {%>
-
-
-
-
-
-
- <%
-} %>
-
-<% String noisyStr=(noisyStr=(String)request.getAttribute("noisy"))==null || noisyStr.equals("")?((noisyStr=request.getParameter("noisy"))==null || noisyStr.equals("")?"false":noisyStr):noisyStr;
- boolean NOISY=(noisyStr.equalsIgnoreCase("true"))?true:false;
- String urlStr=(urlStr=(String)request.getAttribute("url"))==null || urlStr.equals("")?((urlStr=request.getParameter("url"))==null || urlStr.equals("")?DEFAULT_RSS_URL:urlStr):urlStr;
- if (urlStr==null || urlStr.equals("")) {%>
- Error in URL parameter
- System could not decode <%=urlStr%> as a URL
-<% } else {
- URL u=null;
- try {
- u = new URL(urlStr);
- RSSHandler hand=new RSSHandler();
- try {
- RSSParser.parseXmlFile(u,hand,false);
- RSSChannel ch= hand.getRSSChannel();%>
- <%=ch.getTitle()%>
-<% String lastDateStr=ch.getLastBuildDate();
- if (lastDateStr==null || lastDateStr.equals("")) {
- RSSDoublinCoreModule dcModule=ch.getRSSDoublinCoreModule();
- if (dcModule!=null){
- lastDateStr=dcModule.getDcDate();
- if (lastDateStr!=null && !lastDateStr.equals("")){
- int timeStartPos=lastDateStr.indexOf("T");
- int timeEndPos=lastDateStr.indexOf("Z");
- if (timeStartPos>0 && timeEndPos>0){ %>
- listings current as of <%=lastDateStr.substring(0,timeStartPos)%> at <%=lastDateStr.substring(timeStartPos+1,timeEndPos)%>
-<% } else {%>
- listings current as of: <%=lastDateStr%>
-<% }
- } else {%>
- RSSDoublinCoreModule.getDcDate() returns null or blank String
-<% }
- } else {%>
- RSSDoublinCoreModule is null
-<% }
- }
- String copyrightStr=ch.getCopyright();
- if (copyrightStr!=null && !copyrightStr.equals("")){%>
- <%=ch.getCopyright()%>
-<% }
- if (NOISY && ch.getRSSImage()!=null) {%>
- IMAGE INFO: <%=ch.getRSSImage().toString()%>
- IMAGE IN HTML: <%=ch.getRSSImage().toHTML()%>
-<% } else if (NOISY) {%>
- CHANNEL HAS NO IMAGE
-<% }
-
- if (NOISY && ch.getRSSTextInput()!=null) {%>
- INPUT INFO: <%=ch.getRSSTextInput().toString()%>
- HTML INPUT: <%=ch.getRSSTextInput().toHTML()%>
-<% } else if (NOISY) {%>
- CHANNEL HAS NO FORM INPUT
-<% }
-
- if (NOISY && ch.getDoublinCoreElements()!=null) {%>
- DUBLIN CORE INFO: <%=ch.getDoublinCoreElements().toString()%>
-<% } else if (NOISY) {%>
- CHANNEL HAS NO DUBLIN CORE TAGS
-<% }%>
-
-<% if (NOISY) {%>
- SEQUENCE INFO
-<% if (ch.getItemsSequence()!=null) {%>
- <%=hand.getRSSChannel().getItemsSequence().toString()%>
-<% } else if (NOISY) {%>
- CHANNEL HAS NO SEQUENCE; MAYBE VERSION 0.9 or 2+?
-<% }
- }
- LinkedList lst = hand.getRSSChannel().getItems();%>
- ITEMS INFO (<%=lst.size()%>)
-
-
-<%
-if (includeHeaders) {%>
-
-
-
-
-
- <%
-}%>
-
<%
-if (includeHeaders) {%>
-
-<%
-}%>
diff --git a/webapp/web/empty.jsp b/webapp/web/empty.jsp
deleted file mode 100644
index 5a94e58e6..000000000
--- a/webapp/web/empty.jsp
+++ /dev/null
@@ -1,2 +0,0 @@
-<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
-
diff --git a/webapp/web/checkDatatypeProperties.jsp b/webapp/web/jsp/checkDatatypeProperties.jsp
similarity index 94%
rename from webapp/web/checkDatatypeProperties.jsp
rename to webapp/web/jsp/checkDatatypeProperties.jsp
index 150456052..6c501f22c 100644
--- a/webapp/web/checkDatatypeProperties.jsp
+++ b/webapp/web/jsp/checkDatatypeProperties.jsp
@@ -1,5 +1,7 @@
<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
+<%-- used by RefactorOperationController.java --%>
+
<%@ page import="java.util.*, java.lang.String.*"%>
<%@ page import="edu.cornell.mannlib.vedit.beans.ButtonForm" %>
diff --git a/webapp/web/login_process.jsp b/webapp/web/login_process.jsp
deleted file mode 100644
index 6a3c7d227..000000000
--- a/webapp/web/login_process.jsp
+++ /dev/null
@@ -1,49 +0,0 @@
-<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
-
-<%@ page isThreadSafe="false" %>
-<%@ page import="java.util.*" %>
-<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.Controllers" %>
-
-<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
-
-<% final int DEFAULT_PORTAL_ID=1;
- String portalIdStr=(portalIdStr=(String)request.getAttribute("home"))==null ?
- ((portalIdStr=request.getParameter("home"))==null?String.valueOf(DEFAULT_PORTAL_ID):portalIdStr):portalIdStr;
- //int incomingPortalId=Integer.parseInt(portalIdStr);
-%>
-
-
-
-
-
-
-
-<%
-
- String submitModeStr = request.getParameter("loginSubmitMode");
- if ( submitModeStr == null ) {
- submitModeStr = "unknown";
- }
-
- if ( submitModeStr.equalsIgnoreCase("Log Out")) { %>
-
-
-
-
-<% } else if ( submitModeStr.equalsIgnoreCase("Log In")) {
- String loginNameStr = request.getParameter("loginName");
- String loginPasswordStr = request.getParameter("loginPassword"); %>
-
-
-
-
-<% if ( loginHandler.validateLoginForm() ) { %>
-
-
-
-<% } else {
- String redirectURL = "${siteAdminUrl}?home=" + portalIdStr + "&login=block";
- response.sendRedirect(redirectURL);
- }
- }
-%>
\ No newline at end of file
diff --git a/webapp/web/owl.jsp b/webapp/web/owl.jsp
deleted file mode 100644
index a1f91d65a..000000000
--- a/webapp/web/owl.jsp
+++ /dev/null
@@ -1,34 +0,0 @@
-<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
-
-
-
-
-
Import OWL/RDFS Ontologies
-
-
Note: This is not yet fully stable. Avoid running on production servers.
-
-
-
-
-
-
-
-
diff --git a/webapp/web/selfEditIntro.jsp b/webapp/web/selfEditIntro.jsp
deleted file mode 100644
index dd342e8b3..000000000
--- a/webapp/web/selfEditIntro.jsp
+++ /dev/null
@@ -1,43 +0,0 @@
-<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
-
-<%@ page import="edu.cornell.mannlib.vitro.webapp.web.*" %>
-<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.VitroRequest" %>
-<%@ page import="edu.cornell.mannlib.vitro.webapp.dao.WebappDaoFactory" %>
-<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
-<%@ page errorPage="/error.jsp"%>
-<%@ page contentType="text/html; charset=UTF-8"%>
-
-