Commit f216c1211f6d454be8fe023b93a2a40e6e35642a
1 parent
e9f6841d
Exists in
master
and in
1 other branch
Para testar na máquina de Fabricio Jamatti.
git-svn-id: https://svn.bento.ifrs.edu.br/default/ASES/ASES%20-%20Web/ASES%20-%20Web/Fontes/avaliador-web@10597 c2178572-b5ca-4887-91d2-9e3a90c7d55b
Showing
1 changed file
with
169 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,169 @@ |
1 | +<%@ page contentType="text/html; charset=UTF-8"%> | |
2 | +<%@taglib prefix="t" tagdir="/WEB-INF/tags"%> | |
3 | + | |
4 | +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> | |
5 | + | |
6 | +<t:baseLayout> | |
7 | + <jsp:body> | |
8 | + | |
9 | + <form name="form1" action="relatorioavaliacao" method="post"> | |
10 | + <fieldset> | |
11 | + <legend>Exportar Resultado</legend> | |
12 | + <p> | |
13 | + <label for="uri"></label> | |
14 | + <img | |
15 | + src="${pageContext.request.contextPath}/inicial_arquivos/imagens/pdf.png" | |
16 | + alt="pdf" title="Gerar em PDF" height="20" width="20"> | |
17 | + <input type="radio" name="tiporel" value="4">PDF | |
18 | + | |
19 | + | |
20 | + <img | |
21 | + src="${pageContext.request.contextPath}/inicial_arquivos/imagens/odt.png" | |
22 | + alt="odt" title="Gerar em ODT" height="20" width="20"> | |
23 | + <input type="radio" name="tiporel" value="3">ODT | |
24 | + <img | |
25 | + src="${pageContext.request.contextPath}/inicial_arquivos/imagens/xls.png" | |
26 | + alt="xls" title="Gerar em XLS" height="20" width="20"> | |
27 | + <input type="radio" name="tiporel" value="2">XLS | |
28 | + <img | |
29 | + src="${pageContext.request.contextPath}/inicial_arquivos/imagens/csv_text.png" | |
30 | + alt="csv" title="Gerar em CSV" height="20" width="20"> | |
31 | + <input type="radio" name="tiporel" value="5">CSV | |
32 | + <img | |
33 | + src="${pageContext.request.contextPath}/inicial_arquivos/imagens/doc-rtf.png" | |
34 | + alt="rtf" title="Gerar em RFT" height="20" width="20"> | |
35 | + <input type="radio" name="tiporel" value="1">RTF | |
36 | + | |
37 | + | |
38 | + | |
39 | + <label for="uri"><input id="url" name="url" | |
40 | + value="${url}" size="50" type="hidden"></label> | |
41 | + <input class="submit" name="executar" value="Executar" | |
42 | + type="submit"> | |
43 | + </p> | |
44 | + </fieldset> | |
45 | + </form> | |
46 | + | |
47 | + <div class="tile --NOVALUE--"> | |
48 | + <div class="outstanding-header"> | |
49 | + <h2 class="outstanding-title">Página avaliada</h2> | |
50 | + </div> | |
51 | + <p> | |
52 | + <c:if test="${not empty url}"> | |
53 | + <strong>Página:</strong> ${url} | |
54 | + <br> | |
55 | + </c:if> | |
56 | + <strong>Título:</strong> ${titulosite} | |
57 | + <br> | |
58 | + <strong>Tamanho:</strong> ${contentLenght} Bytes | |
59 | + <br> | |
60 | + <strong>Data/Hora:</strong> ${data} | |
61 | + | |
62 | + </div> | |
63 | + | |
64 | + <div class="tile --NOVALUE--"> | |
65 | + <div class="outstanding-header"> | |
66 | + <h2 class="outstanding-title">Nota e Resumo da Avaliação de Acessibilidade</h2> | |
67 | + </div> | |
68 | + <p></p> | |
69 | + <p></p> | |
70 | + <div class="row" data-layout-type="row"> | |
71 | + <div class="cell width-5 position-2 " data-panel=""> | |
72 | + <div id="block"> | |
73 | + <div id="webaxscore" class="scoreB">Porcentagem | |
74 | + <strong>ASES</strong> | |
75 | + <span>${nota.valor}%</span> | |
76 | + </div> | |
77 | + </div> | |
78 | + </div> | |
79 | + <div class="cell width-7 position-6 " data-panel=""> | |
80 | + <table id="tabelaErros"> | |
81 | + <tbody> | |
82 | + <tr> | |
83 | + <td class="topo">Seção</td> | |
84 | + <td class="topo"><img | |
85 | + src="${pageContext.request.contextPath}/inicial_arquivos/imagens/stop.gif" | |
86 | + alt="erro" height="20" width="20"> Erro(s) </td> | |
87 | + <td class="topo"><img | |
88 | + src="${pageContext.request.contextPath}/inicial_arquivos/imagens/alert.gif" | |
89 | + alt="alerta" height="19" width="20"> Avisos </td> | |
90 | + </tr> | |
91 | + <c:forEach items="${listaResumo}" var="resumo"> | |
92 | + <tr> | |
93 | + <td class="celula">${resumo.tipo.description}</td> | |
94 | + <td class="celula">${resumo.quantidadeErros}</td> | |
95 | + <td class="celula">${resumo.quantidadeAvisos}</td> | |
96 | + </tr> | |
97 | + </c:forEach> | |
98 | + </tbody> | |
99 | + <tfoot> | |
100 | + <td class="topo">Total</td> | |
101 | + <td class="topo">${totalErros}</td> | |
102 | + <td class="topo">${totalAvisos}</td> | |
103 | + </tfoot> | |
104 | + </table> | |
105 | + </div> | |
106 | + | |
107 | + </div> | |
108 | + | |
109 | + </div> | |
110 | + <div class="tile --NOVALUE--"> | |
111 | + <div class="outstanding-header"> | |
112 | + | |
113 | + </div> | |
114 | + <div class="domtab"> | |
115 | + | |
116 | + <ul class="domtabs"> | |
117 | + <li class=""><a href="#pri1">Marcação</a></li> | |
118 | + <li class=""><a href="#pri2">Comportamento</a></li> | |
119 | + <li class=""><a href="#pri3">Conteúdo / Informação</a></li> | |
120 | + <li class=""><a href="#pri4">Apresentação / Design</a></li> | |
121 | + <li class=""><a href="#pri5">Multimídia</a></li> | |
122 | + <li class=""><a href="#pri6">Formulários</a></li> | |
123 | + </ul> | |
124 | + | |
125 | + <div style="display: block;"> | |
126 | + <a name="pri1" id="pri1"></a> | |
127 | + <t:listaResultado cssClass="mark" lista="${LISTA_MARK}"/> | |
128 | + </div> | |
129 | + | |
130 | + <div style="display: none;"> | |
131 | + | |
132 | + <a name="pri2" id="pri2"></a> | |
133 | + <t:listaResultado cssClass="behavior" lista="${LISTA_BEHAVIOR}" /> | |
134 | + </div> | |
135 | + | |
136 | + | |
137 | + <div style="display: none;"> | |
138 | + | |
139 | + <a name="pri3" id="pri3"></a> | |
140 | + <t:listaResultado cssClass="information" | |
141 | + lista="${LISTA_CONTENT_INFORMATION}" /> | |
142 | + </div> | |
143 | + | |
144 | + <div style="display: none;"> | |
145 | + <a name="pri4" id="pri4"></a> | |
146 | + <t:listaResultado cssClass="presentation" | |
147 | + lista="${LISTA_PRESENTATION_DESIGN}" /> | |
148 | + </div> | |
149 | + | |
150 | + <div style="display: none;"> | |
151 | + <a name="pri5" id="pri5"></a> | |
152 | + <t:listaResultado cssClass="multimedia" | |
153 | + lista="${LISTA_MULTIMEDIA}" /> | |
154 | + </div> | |
155 | + | |
156 | + <div style="display: none;"> | |
157 | + <a name="pri6" id="pri6"></a> | |
158 | + <t:listaResultado cssClass="form" lista="${LISTA_FORM}" /> | |
159 | + </div> | |
160 | + | |
161 | + </div> | |
162 | + | |
163 | + </div> | |
164 | + | |
165 | + | |
166 | + | |
167 | + | |
168 | + </jsp:body> | |
169 | +</t:baseLayout> | |
0 | 170 | \ No newline at end of file | ... | ... |