[Castore-commits] view.jsp NONE 1.1

Arnaud Thimel thimel at adullact1.hosting.cri74.org
Mer 14 Juin 20:27:59 CEST 2006


Update of /cvsroot/castore/castore-portlets/src/webapp/WEB-INF/pages/docs
In directory adullact1:/tmp/cvs-serv8222/src/webapp/WEB-INF/pages/docs

Added Files:
	view.jsp 
Log Message:
Commit de castore-portlets

--- NEW FILE: view.jsp ---
<%@ taglib uri="http://java.sun.com/portlet" prefix="portlet" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<%@ page isELIgnored="false"%>
<portlet:defineObjects/>

<fmt:setBundle basename="fr.emn.castor.portlets.messages.Documents"/>
<c:set var="ns" value="mydocuments"></c:set>

<div class="castore-portlet"><div class="castore-page">

<jsp:include page="../common/messages.jsp"/>

<div class="TextMessageAccueil"><fmt:message key="${ns}.mydocuments"/></div>

<div class="box">
  <div class ="TitreBase"><fmt:message key="${ns}.private"/></div>
  <hr>
  <div class="Couleur3">
    <c:choose>
      <c:when test="${!empty privateDocs}">
        <c:forEach var="entry" items="${privateDocs}">
          <c:set var="doc" value="${entry.value}" scope="request"/>
          <jsp:include page="../common/doc.jsp"/>
          <hr>
        </c:forEach>
      </c:when>
      <c:otherwise>
        <span class="empty"><fmt:message key="${ns}.nodocument"/></span><br>
      </c:otherwise>
    </c:choose>
  </div>
</div>

<div class="box">
  <div class ="TitreBase"><fmt:message key="${ns}.shared"/></div>
  <hr>
  <div class="Couleur3">
    <c:choose>
      <c:when test="${!empty sharedDocs}">
        <c:forEach var="entry" items="${sharedDocs}">
          <c:set var="doc" value="${entry.value}" scope="request"/>
          <jsp:include page="../common/doc.jsp"/>
          <hr>
        </c:forEach>
      </c:when>
      <c:otherwise>
        <span class="empty"><fmt:message key="${ns}.nodocument"/></span><br>
      </c:otherwise>
    </c:choose>
  </div>
</div>

</div></div>




Plus d'informations sur la liste de diffusion Castore-commits