summaryrefslogtreecommitdiffstats
path: root/winery/org.eclipse.winery.repository/src/main/webapp/jsp/imports/xsdimports/xsdimport.jsp
blob: 452e7adabf02bb0702534f5beb892887568b1809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<%--
/*******************************************************************************
 * Copyright (c) 2012-2013 University of Stuttgart.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and the Apache License 2.0 which both accompany this distribution,
 * and are available at http://www.eclipse.org/legal/epl-v10.html
 * and http://www.apache.org/licenses/LICENSE-2.0
 *
 * Contributors:
 *    Oliver Kopp - initial API and implementation and/or initial documentation
 *******************************************************************************/
--%>
<%@taglib prefix="t" tagdir="/WEB-INF/tags" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<%-- Quick hack without XML view --%>

<%--
FIXME: parameters cssClass and selected are somehow ignored, but replaced by the data provided by GenericComponentPageData or similar...
Symptom: in header.jsp "param.selected" is "XSDImport" instead of "xsdimport"
--%>
<t:genericpage windowtitle="XSD Imports" cssClass="mainContentContainer xsdimport" selected="xsdimport">

	<div class="top">
		<%@ include file="/jsp/componentnaming.jspf" %>
		<!--
		<div style="float:right; margin-right:29px; margin-top: -20px; position:relative;">
			<div style="float:right;">
				<a href="?definitions" class="btn btn-info">XML</a>
				<a href="?csar" class="btn btn-info">ZIP</a>
			</div>
		</div>  -->
	</div>

	<div class="middle" id="ccontainer">

Associated file:
<c:if test="${empty it.location}">none</c:if>
<c:if test="${not empty it.location}"><a href="${it.location}">${it.location}</a></c:if>

<br />

Modification not yet implemented

	</div>

</t:genericpage>