Removing debugging messages/text
This commit is contained in:
parent
aab3f23f3a
commit
1c5e7fdde8
4 changed files with 0 additions and 6 deletions
|
@ -230,7 +230,6 @@ public static Log log = LogFactory.getLog("edu.cornell.mannlib.vitro.webapp.jsp.
|
||||||
//case where a form was passed as a http parameter
|
//case where a form was passed as a http parameter
|
||||||
form = formParam;
|
form = formParam;
|
||||||
}
|
}
|
||||||
System.out.println("Edit request dispatch - forwarding to form is " + form);
|
|
||||||
request.setAttribute("form", form);
|
request.setAttribute("form", form);
|
||||||
%>
|
%>
|
||||||
<jsp:forward page="/edit/forms/${form}" />
|
<jsp:forward page="/edit/forms/${form}" />
|
||||||
|
|
|
@ -65,7 +65,6 @@ while( iter.hasNext()){
|
||||||
out.write("fieldname: " + item.getFieldName() + " value: " + item.getString() );
|
out.write("fieldname: " + item.getFieldName() + " value: " + item.getString() );
|
||||||
out.write("</p>");
|
out.write("</p>");
|
||||||
}else{
|
}else{
|
||||||
System.out.println("fileUPloadProcess.jsp: attempting to upload a file" );
|
|
||||||
out.write("<p>");
|
out.write("<p>");
|
||||||
out.write("form field name: " + item.getFieldName()
|
out.write("form field name: " + item.getFieldName()
|
||||||
+" filename: " + item.getName()
|
+" filename: " + item.getName()
|
||||||
|
|
|
@ -33,7 +33,6 @@
|
||||||
<%@ page import="edu.cornell.mannlib.vitro.webapp.filters.VitroRequestPrep" %>
|
<%@ page import="edu.cornell.mannlib.vitro.webapp.filters.VitroRequestPrep" %>
|
||||||
<%@ page import="edu.cornell.mannlib.vedit.beans.LoginFormBean" %>
|
<%@ page import="edu.cornell.mannlib.vedit.beans.LoginFormBean" %>
|
||||||
<jsp:useBean id="loginHandler" class="edu.cornell.mannlib.vedit.beans.LoginFormBean" scope="session" />
|
<jsp:useBean id="loginHandler" class="edu.cornell.mannlib.vedit.beans.LoginFormBean" scope="session" />
|
||||||
ENTITY merged props list
|
|
||||||
<%!
|
<%!
|
||||||
public static Log log = LogFactory.getLog("edu.cornell.mannlib.vitro.webapp.jsp.templates.entity.entityMergedPropsList.jsp");
|
public static Log log = LogFactory.getLog("edu.cornell.mannlib.vitro.webapp.jsp.templates.entity.entityMergedPropsList.jsp");
|
||||||
%>
|
%>
|
||||||
|
@ -60,7 +59,6 @@ public static Log log = LogFactory.getLog("edu.cornell.mannlib.vitro.webapp.jsp.
|
||||||
throw new Error("Subject individual must be in request scope for entityMergedPropsList.jsp");
|
throw new Error("Subject individual must be in request scope for entityMergedPropsList.jsp");
|
||||||
}
|
}
|
||||||
|
|
||||||
System.out.println("Entity Merged Props list for " + subject.getURI());
|
|
||||||
|
|
||||||
// Nick wants not to use explicit parameters to trigger visibility of a div, but for now we don't just want to always show the 1st one
|
// Nick wants not to use explicit parameters to trigger visibility of a div, but for now we don't just want to always show the 1st one
|
||||||
String openingGroupLocalName = (String) request.getParameter("curgroup");
|
String openingGroupLocalName = (String) request.getParameter("curgroup");
|
||||||
|
|
|
@ -37,7 +37,6 @@
|
||||||
|
|
||||||
<%@ page import="org.apache.commons.logging.Log" %>
|
<%@ page import="org.apache.commons.logging.Log" %>
|
||||||
<%@ page import="org.apache.commons.logging.LogFactory" %>
|
<%@ page import="org.apache.commons.logging.LogFactory" %>
|
||||||
ENTITY merged props list ungrouped
|
|
||||||
<jsp:useBean id="loginHandler" class="edu.cornell.mannlib.vedit.beans.LoginFormBean" scope="session" />
|
<jsp:useBean id="loginHandler" class="edu.cornell.mannlib.vedit.beans.LoginFormBean" scope="session" />
|
||||||
<%!
|
<%!
|
||||||
public static Log log = LogFactory.getLog("edu.cornell.mannlib.vitro.webapp.jsp.templates.entity.entityMergedPropsList.jsp");
|
public static Log log = LogFactory.getLog("edu.cornell.mannlib.vitro.webapp.jsp.templates.entity.entityMergedPropsList.jsp");
|
||||||
|
@ -58,7 +57,6 @@ public static Log log = LogFactory.getLog("edu.cornell.mannlib.vitro.webapp.jsp.
|
||||||
if (subject==null) {
|
if (subject==null) {
|
||||||
throw new Error("Subject individual must be in request scope for dashboardPropsList.jsp");
|
throw new Error("Subject individual must be in request scope for dashboardPropsList.jsp");
|
||||||
}
|
}
|
||||||
System.out.println("Entity merged props list ungrouped for " + subject.getURI());
|
|
||||||
// Nick wants not to use explicit parameters to trigger visibility of a div, but for now we don't just want to always show the 1st one
|
// Nick wants not to use explicit parameters to trigger visibility of a div, but for now we don't just want to always show the 1st one
|
||||||
String openingGroupLocalName = (String) request.getParameter("curgroup");
|
String openingGroupLocalName = (String) request.getParameter("curgroup");
|
||||||
VitroRequest vreq = new VitroRequest(request);
|
VitroRequest vreq = new VitroRequest(request);
|
||||||
|
|
Loading…
Add table
Reference in a new issue