Guest User

Untitled

a guest
Apr 22nd, 2013
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.23 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4.      xmlns:h="http://java.sun.com/jsf/html"
  5.      xmlns:f="http://java.sun.com/jsf/core">
  6.     <h:head>
  7.         <title>Facelet Title</title>
  8.     </h:head>
  9.     <h:body>        
  10.         <h:dataTable value="#{enlacesJavaDoc.getOrderList()}" var="datos" class="table table-striped">                          
  11.                 <h:column>
  12.                     <f:facet name="header">
  13.                         <h:outputText value="Nombre de proyecto"/>
  14.                     </f:facet>                            
  15.                     <a href="http://localhost:8080/jenkins/job/#{datos.enlace}/javadoc"><h:outputText value="#{datos.numeroBuild}" class="files"/></a>
  16.                 </h:column>                
  17.                 <h:column>
  18.                     <f:facet name="header">
  19.                         <h:outputText value="# Build"/>
  20.                     </f:facet>    
  21.                    
  22.                 </h:column>
  23.             </h:dataTable>        
  24.         <h:outputText  value="#{user.nombre}" />        
  25.     </h:body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment