Commit 3005fcc0683e0c3ae6a1227414b3527332374fa5
1 parent
5886814d
Exists in
master
Complemento 'codigo hash'.
Showing
2 changed files
with
7 additions
and
8 deletions
Show diff stats
src/main/webapp/WEB-INF/jsp/avaliacao/avaliar.jsp
... | ... | @@ -203,7 +203,7 @@ |
203 | 203 | |
204 | 204 | <div id="pdf"> |
205 | 205 | <input type="radio" id="tiporel" name="tiporel" value="4" checked="checked"><label for="tiporel">PDF</label> |
206 | - <input id="url" name="url" value="${url}" type="hidden"> | |
206 | + <input id="chaveAvaliacao" name="chaveAvaliacao" value="${chaveIdentificaAvaliacao}" type="hidden"> | |
207 | 207 | <input class="submit" name="executar" value="Executar" type="submit"> |
208 | 208 | </div> |
209 | 209 | ... | ... |
src/main/webapp/WEB-INF/jsp/avaliacao/detalhesAvaliacao.jsp
... | ... | @@ -228,7 +228,7 @@ |
228 | 228 | |
229 | 229 | <p>Avaliação tem por base testes automáticos em código-fonte (X)HTML interpretados do <a href="http://emag.governoeletronico.gov.br/">Modelo de Acessibilidade em Governo Eletrônico (eMAG) (link para novo sítio)</a>. </p> |
230 | 230 | |
231 | -<p>Lembrar que nota não contempla os itens classificados como avisos e os itens passíveis de avaliação humana. Para saber quais testes são contemplados pelo software, <a href="${pageContext.request.contextPath}/criteriosSucesso">favor verificar os critérios de sucesso trabalhados pelo ASESWEB</a>.<p> | |
231 | +<p>Lembrar que nota não contempla os itens classificados como avisos e os itens passíveis de avaliação humana. Para saber quais testes são contemplados pelo software, <a href="${pageContext.request.contextPath}/criteriosSucesso">favor verificar os critérios de sucesso trabalhados pelo ASESWEB</a>.</p> | |
232 | 232 | |
233 | 233 | |
234 | 234 | <hr class="hr_linhaDupla"> |
... | ... | @@ -236,9 +236,7 @@ |
236 | 236 | |
237 | 237 | <h2 class="outstanding-title">Exportar Resultado</h2> |
238 | 238 | |
239 | - <form name="form" | |
240 | - action="${pageContext.request.contextPath}/exportar-detalhes-avaliacao" | |
241 | - method="post"> | |
239 | + <form name="form" action="${pageContext.request.contextPath}/exportar-detalhes-avaliacao" method="post"> | |
242 | 240 | <fieldset> |
243 | 241 | <legend> |
244 | 242 | Tipos de Exportação |
... | ... | @@ -246,12 +244,13 @@ |
246 | 244 | |
247 | 245 | <br> |
248 | 246 | <div id="pdf"> |
249 | - <input type="radio" id="tiporel" value="4" checked="checked"><label for="tiporel">PDF</label> | |
247 | + <input type="radio" id="tiporel" value="4" checked="checked"><label for="tiporel">PDF</label> | |
250 | 248 | <input type="hidden" name="rn" value="${rn}"> |
251 | 249 | <input type="hidden" name="isError" value="${isError}"> |
252 | - <input class="submit" name="executar" value="Executar" type="submit"> | |
250 | + <input type="hidden" name="chaveAvaliacao" value="${chaveIdentificaAvaliacao}"> | |
251 | + <input class="submit" name="executar" value="Executar" type="submit"> | |
253 | 252 | </div> |
254 | - | |
253 | + | |
255 | 254 | </fieldset> |
256 | 255 | </form> |
257 | 256 | </div> | ... | ... |