<%-- The contents of this file are subject to the license and copyright detailed in the LICENSE and NOTICE files at the root of the source tree and available online at http://www.dspace.org/license/ --%> <%-- - Display list of DC schemas - - Attributes: - - formats - the DC formats in the system (MetadataValue[]) --%> <%@ page contentType="text/html;charset=UTF-8" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <%@ taglib uri="http://www.dspace.org/dspace-tags.tld" prefix="dspace" %> <%@ page import="javax.servlet.jsp.jstl.fmt.LocaleSupport" %> <%@ page import="org.dspace.content.MetadataSchema" %> <%@ page import="java.util.List" %> <% List schemas = (List) request.getAttribute("schemas"); %>

">

<% String error = (String)request.getAttribute("error"); if (error!=null) { %>

<%=error%>

<% } %> <% String row = "even"; for (int i = 0; i < schemas.size(); i++) { %> <% row = (row.equals("odd") ? "even" : "odd"); } %>
 
<%= schemas.get(i).getID() %> <%= schemas.get(i).getNamespace() %> <%= schemas.get(i).getName() %> <% if ( schemas.get(i).getID() != 1 ) { %>
" onclick="javascript:document.schema.namespace.value='<%= schemas.get(i).getNamespace() %>';document.schema.short_name.value='<%= schemas.get(i).getName() %>';document.schema.dc_schema_id.value='<%= schemas.get(i).getID() %>';return null;"/> "/>
<% } %>

:
:



"/>