Suppresion des anciens JSP

This commit is contained in:
Nicolas Michard
2008-01-20 15:40:14 +00:00
parent e8cccaf588
commit 8340635829
4 changed files with 0 additions and 78 deletions

View File

@@ -1,8 +0,0 @@
<div class="headerBloc">
<div class="content">
<img src="./images/yacos.logo.blancLQ.png" width="40%"/>
</div>
<div class="footer">&nbsp;</div>
</div>

View File

@@ -1,5 +0,0 @@
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>

View File

@@ -1,32 +0,0 @@
<%@ include file="/WEB-INF/jsp/include.jsp"%>
<div id="menu">
<div class="miniBloc">
<div class="header">Menu</div>
<div class="content">
<ul>
<li><a href="<c:url value="listArticle.htm"/>"><fmt:message key="listarticle.title" /></a></li>
<li><a href="<c:url value="submissionArticle.htm"/>"><fmt:message key="submission.title" /></a></li>
<li><a href="<c:url value="choosePreference.htm"/>"><fmt:message key="preference.title" /></a></li>
<li><a href="<c:url value="dispatchArticle.htm"/>"><fmt:message key="dispatch.title" /></a></li>
<li><a href="<c:url value="addConference.htm"/>"><fmt:message key="conference.titleMenu" /></a></li>
</ul>
</div>
<div class="footer">&nbsp;</div>
</div>
<div class="miniBloc">
<div class="header">Status</div>
<div class="content">
<c:choose>
<c:when test="${idCurrentConference!=null}">
La conf<6E>rence courante est : ${idCurrentConference}.<br />
<a href="<c:url value="listConference.htm"/>"><fmt:message key="conference.linkMenu.change" /></a>
</c:when>
<c:otherwise>
Il n'y a pas de conf<6E>rence courante.<br />
<a href="<c:url value="listConference.htm"/>"><fmt:message key="conference.linkMenu.choose" /></a>
</c:otherwise>
</c:choose>
</div>
<div class="footer">&nbsp;</div>
</div>
</div>

View File

@@ -1,33 +0,0 @@
<%@ include file="/WEB-INF/jsp/include.jsp"%>
<!--
<%@ page session="false" %> spring -> true par defaut
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title><fmt:message key="title"/></title>
<link rel="stylesheet" href="./stylesheets/base.css" type="text/css" />
</head>
<body>
<jsp:include page="/WEB-INF/jsp/header.jsp" />
<div class="mainBloc">
<div class="header">&nbsp;</div>
<div class="content">
<jsp:include page="/WEB-INF/jsp/menu.jsp" />
<div id="main_content">
VOTRE CONTENU ICI
</div>
</div>
<div class="footer">&nbsp;</div>
</div>
</body>
</html>