rewriting some taglib junk that broke an XML-style JSP

This commit is contained in:
brianjlowe 2011-06-07 20:52:28 +00:00
parent 4ea73f9e9f
commit 9cad90a4c0

View file

@ -1,14 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ --> <!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:c="http://java.sun.com/jsp/jstl/core" version="2.0"> <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:c="http://java.sun.com/jsp/jstl/core" xmlns:vitro="/WEB-INF/tlds/VitroUtils.tld" version="2.0">
<jsp:directive.page import="edu.cornell.mannlib.vitro.webapp.dao.VitroVocabulary"/> <jsp:directive.page import="edu.cornell.mannlib.vitro.webapp.dao.VitroVocabulary"/>
<jsp:directive.page import="edu.cornell.mannlib.vitro.webapp.beans.User"/> <jsp:directive.page import="edu.cornell.mannlib.vitro.webapp.beans.User"/>
<%@taglib prefix="vitro" uri="/WEB-INF/tlds/VitroUtils.tld" %> <jsp:directive.page import="edu.cornell.mannlib.vitro.webapp.auth.requestedAction.usepages.ManageUserAccounts"/>
<%@page import="edu.cornell.mannlib.vitro.webapp.auth.requestedAction.usepages.ManageUserAccounts" %>
<% request.setAttribute("requestedActions", new ManageUserAccounts()); %> <jsp:scriptlet>
request.setAttribute("requestedActions", new ManageUserAccounts());
</jsp:scriptlet>
<vitro:confirmAuthorization /> <vitro:confirmAuthorization />