

ramani
@ 576
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 |
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:p="http://primefaces.org/ui" xmlns:f="http://java.sun.com/jsf/core"> <h:head/> <h:body> <ui:composition template="../template.xhtml"> <ui:define name="caminho"> <h:outputLabel value="#{msg['criarSelecaoSnowballingInterativoVarios.Caminho']}" style="font-weight: bold"/> </ui:define> <ui:define name="conteudoCentro"> <p:layout> <p:layoutUnit position="center"> <center> <h:outputLabel value="#{msg['criarSelecaoSnowballingInterativoVarios.SelecaoArtigosSnowballingInterativo']}" style="font-size: 25px; font-weight: bold"/> </center> <h:form> <p:panel> <p:wizard backLabel="Voltar" nextLabel="Avancar" > <!--Tab Projetos--> <p:tab id="projetoTab" title="#{msg['criarSelecaoSnowballingInterativoVarios.Projeto']}"> <p:panel> <h:outputLabel value="#{msg['criarSelecaoSnowballingInterativoVarios.EscolhaProjeto']}" style="color: blue; font-weight: bold"/> <hr/> <!-- Menu selecoa de projeto--> <h:form> <h:panelGrid id="pGridProjeto" columns="2"> <p:selectOneMenu value="#{snowballingBean.projeto}" required="true" requiredMessage="#{msg['criarSelecaoSnowballingInterativoVarios.EscolhaProjetoObrigatoria']}"> <f:selectItems value="#{snowballingBean.projetos}" var="proj" itemLabel="#{proj.titulo}"/> <f:converter converterId="ProjetoConverter" /> </p:selectOneMenu> </h:panelGrid> </h:form> </p:panel> </p:tab> <!--Tab Upload Arquivo--> <p:tab id="uploadTab" title="#{msg['criarSelecaoSnowballingInterativoVarios.Upload']}"> <h:form id="formIteraivo" enctype="multipart/form-data" > <p:panel> <p:growl showDetail="true" showSummary="true"/> <!--Upload Arquivo--> <p:fileUpload fileUploadListener="#{snowballingBean.handleFileUpload}" mode="advanced" dragDropSupport="false" allowTypes="/(\.|\/)(txt)$/" required="true" cancelLabel="#{msg['criarSelecaoSnowballingInterativoVarios.Cancelar']}" uploadLabel="#{msg['criarSelecaoSnowballingInterativoVarios.Enviar']}" label="#{msg['criarSelecaoSnowballingInterativoVarios.Escolher']}" /> </p:panel> </h:form> </p:tab> <!--Tab Conferencias--> <p:tab id="ConferenciaTab" title="#{msg['criarSelecaoSnowballingInterativoVarios.Conferencias']}"> <h:form> <p:panel> <h:outputLabel value="#{msg['criarSelecaoSnowballingInterativoVarios.SelecioneConferencias']}" style="color: blue; font-weight: bold"/> <hr/> <p:selectManyCheckbox value="#{snowballingBean.conferenciasSelecionadas}" > <f:selectItems value="#{snowballingBean.projeto.conferenciaList}" var="conf" itemLabel="#{conf.sigla} - #{conf.nome}"/> <f:converter converterId="ConferenciaConverter"/> <p:ajax immediate="true" /> </p:selectManyCheckbox> </p:panel> </h:form> </p:tab> <!--Tab Metodo de ordenacao--> <p:tab id="ordenacaoTab" title="Ordenacao"> <p:panel > <h:outputText value="Selecione o metodo de ordenação dos artigos, a serem exibidos apos cada iteração." style="color: blue; font-weight: bold"/> <hr/> <br/> <p:panelGrid columns="6"> <p:selectOneRadio id="metd" value="#{snowballingBean.metodoOrdenacao}"> <f:selectItem itemLabel="Referencias e Citações" itemValue="refcit" /> <f:selectItem itemLabel="Referencias" itemValue="ref" /> <f:selectItem itemLabel="Citações" itemValue="cit"/> <f:selectItem itemLabel="Citacoes Google Scholar" itemValue="sch"/> <f:selectItem itemLabel="Similaridade textual" itemValue="sim"/> </p:selectOneRadio> <br/> <p:outputLabel value="Informe o texto para comparar a similaridade textual"/> <br/> <p:inputTextarea value="#{snowballingBean.textoComparar}" rows="4" style="width: 99%" /> </p:panelGrid> </p:panel> </p:tab> <!--Tab Confirmação--> <p:tab id="ConfirmacaoTab" title="#{msg['criarSelecaoSnowballingInterativoVarios.DadosIniciais']}"> <p:panel> <h:outputLabel value="#{msg['criarSelecaoSnowballingInterativoVarios.ConferenciasDevemEstarSelecionadas']}" style="color: blue; font-weight: bold"/> <h:outputText value="#{msg['criarSelecaoSnowballingInterativoVarios.ExecutarTxt']}" style="color: blue"/> <h:outputText value="#{msg['criarSelecaoSnowballingInterativoVarios.ParaIniciarSelecao']}" style="color: blue; font-weight: bold"/> <hr/> <br/> <h:outputLabel value="#{msg['criarSelecaoSnowballingInterativoVarios.ProjetoDp']}" style="font-weight: bold"/> <h:outputLabel value="#{snowballingBean.projeto.titulo}"/> <br/> <br/> <h:outputLabel value="Metodo de ordenação: " style="font-weight: bold"/> <h:outputLabel value="#{snowballingBean.metodoOrdenacao}"/> <br/> <br/> <h:panelGrid columns="2"> <h:outputLabel value="#{msg['criarSelecaoSnowballingInterativoVarios.SementesDp']}" style="font-weight: bold"/> <h:dataTable value="#{snowballingBean.sementesTemp}" var="semente"> <h:column> <h:outputText value="#{semente.titulo}"/> </h:column> </h:dataTable> </h:panelGrid> <br/> <h:panelGrid columns="2" rendered="#{snowballingBean.conferenciasSelecionadas.size() != 0}"> <h:outputLabel value="#{msg['criarSelecaoSnowballingInterativoVarios.ConferenciasSelecionadasDp']}" style="font-weight: bold"/> <h:dataTable value="#{snowballingBean.conferenciasSelecionadas}" var="conf"> <h:column> <h:outputText value="#{conf.sigla} - #{conf.nome}"/> </h:column> </h:dataTable> </h:panelGrid> <h:outputLabel value="#{msg['criarSelecaoSnowballingInterativoVarios.NenhumaConferenciaSelecionada']}" rendered="#{snowballingBean.conferenciasSelecionadas.size() eq 0}" style="font-weight: bold"/> </p:panel> </p:tab> <p:tab id="executandoTab" title="Processar"> <p:panel id="panelProc"> <p:growl showDetail="true" showSummary="true"/> <p:toolbar> <p:toolbarGroup style="margin-left: 35%" id="toolm"> <p:commandButton value="#{msg['criarSelecaoSnowballingInterativoVarios.Executar']}" title="#{msg['criarSelecaoSnowballingInterativoVarios.ExecutarSnowballing']}" action="#{snowballingBean.iniciarProcessoInterativoVariosResultados()}" icon="ui-icon-refresh" ajax="true" disabled="#{snowballingBean.desabilitarBotaoExecutar}" iconPos="right" update="panelProc,selecInt"/> <p:commandButton value="#{msg['criarSelecaoSnowballingInterativoVarios.Continuar']}" title="#{msg['criarSelecaoSnowballingInterativoVarios.ContinuarProcessamento']}" action="#{snowballingBean.continuarProcessoInterativo()}" icon="ui-icon-play" iconPos="right" disabled="#{snowballingBean.desabilitarBotaoContinuar}" update="selecInt,panelProc" ajax="true"/> <p:commandButton value="#{msg['criarSelecaoSnowballingInterativoVarios.Finalizar']}" title="#{msg['criarSelecaoSnowballingInterativoVarios.FinalizarProcessamento']}" action="#{snowballingBean.finalizarProcessoInterativo()}" icon="ui-icon-seek-end" disabled="#{snowballingBean.desabilitarBotaoConcluir}" ajax="false" iconPos="right"/> </p:toolbarGroup> </p:toolbar> <p:growl showDetail="true" showSummary="true"/> <p:panel toggleable="true" header="Artigo Selecionados" closable="true" style="text-align: center; " rendered="#{snowballingBean.rendereizacao}"> <p:dataTable id="diagSel" value="#{snowballingBean.selecoesEscolhidas}" var="selecta"> <p:column headerText="Remover"> <p:commandButton title="#{msg['criarSelecaoSnowballingInterativoVarios.RemoverSelecao']}" action="#{snowballingBean.removerSelecao}" update="diagSel" ajax="true" icon="ui-icon-minusthick"> <f:setPropertyActionListener value="#{selecta}" target="#{snowballingBean.selecao}" /> </p:commandButton> </p:column> <p:column headerText="Artigo"> <p:outputLabel value="Titulo: " style="font-weight: bold"/> <p:outputLabel value="#{selecta.artigo.titulo}"/> <br/> <p:outputLabel value="Justificativa " style="font-weight: bold"/> <br/> <p:outputLabel value="#{selecta.justificativa}" style="font-weight: bold; color: blue"/> </p:column> </p:dataTable> </p:panel> <br/> <p:dataTable id="selecInt" value="#{snowballingBean.selecoes}" var="sel" rendered="#{snowballingBean.rendereizacao}" > <p:column headerText="Selecionar"> <p:commandButton title="#{msg['criarSelecaoSnowballingInterativoVarios.SelecionarArtigo']}" action="#{snowballingBean.escolherSelecao}" icon="ui-icon-check" ajax="false" update="selecInt"> <f:setPropertyActionListener value="#{sel}" target="#{snowballingBean.selecao}"/> </p:commandButton> </p:column> <p:column headerText="Artigo"> <p:outputLabel value="Titulo: " style="font-weight: bold"/> <p:outputLabel value="#{sel.artigo.titulo}"/> <br/> <p:outputLabel value="Resumo: " style="font-weight: bold"/> <p:outputLabel value="#{sel.artigo.abstract1}"/> <br/> <p:outputLabel value="Justificativa: " style="font-weight: bold"/> <p:inputTextarea value="#{sel.justificativa}" rows="3" autoResize="false" style="width: 100%"/> </p:column> </p:dataTable> <p:ajaxStatus onstart="PF('statusDialog').show()" onsuccess="PF('statusDialog').hide()" /> <!-- Dialog Processar--> <p:dialog widgetVar="statusDialog" appendToBody="true" width="650" modal="true" draggable="false" closable="false" header="Selecionando" resizable="false" showHeader="true"> <p:panel> <h:outputLabel value="#{msg['criarSelecaoSnowballingInterativoVarios.ClicandoEm']}" style="color: blue; font-weight: bold"/> <h:outputText value="#{msg['criarSelecaoSnowballingInterativoVarios.InterromperProcessoDescartar']}" style="color: blue"/> <h:outputText value="#{msg['criarSelecaoSnowballingInterativoVarios.InterrompeProcessoDescarta']}" style="color: blue; font-weight: bold"/> <br/> <br/> <center> <p:graphicImage name="loadingC.gif" /> </center> <br/> <p:commandButton value="#{msg['criarSelecaoSnowballingInterativoVarios.DescartarDados']}" title="#{msg['criarSelecaoSnowballingInterativoVarios.InterromperProcessoNaoSalvarDados']}" ajax="true" process="@this" immediate="true" update="panelProc" action="#{snowballingBean.interromperProcessoInterativo()}" style="width: 100%" icon="ui-icon-stop" async="true" iconPos="right" /> <p:commandButton value="#{msg['criarSelecaoSnowballingInterativoVarios.SalvarDados']}" title="#{msg['criarSelecaoSnowballingInterativoVarios.InterrompeProcessoCheckpoint']}" process="@this" ajax="true" immediate="true" async="true" action="#{snowballingBean.interromperProcessoInterativoESalvar()}" style="width: 100%" icon="ui-icon-video" iconPos="right"/> </p:panel> </p:dialog> </p:panel> </p:tab> </p:wizard> </p:panel> </h:form> </p:layoutUnit> </p:layout> </ui:define> </ui:composition> </h:body> </html> |
Commits for ramani/Ramani/web/cadastros/criarSelecaoSnowballingInterativoVarios.xhtml
Revision | Author | Commited | Message |
---|---|---|---|
576
![]() |
![]() |
Thu 26 Feb, 2015 01:48:59 +0000 | |
575
![]() |
![]() |
Sat 21 Feb, 2015 21:09:33 +0000 | Seleção Interativo Varios Resultado ok |
574
![]() |
![]() |
Tue 17 Feb, 2015 20:52:43 +0000 | Seleção Interativo Varios Resultado ok |
572
![]() |
![]() |
Tue 10 Feb, 2015 04:47:36 +0000 | |
571
![]() |
![]() |
Thu 05 Feb, 2015 04:15:19 +0000 | |
570
![]() |
![]() |
Wed 04 Feb, 2015 04:05:28 +0000 | Selecionar por |
522
![]() |
![]() |
Wed 23 Jul, 2014 15:54:08 +0000 | |
514
![]() |
![]() |
Wed 09 Jul, 2014 16:35:11 +0000 | Mensagens foram atualizadas mas ainda não estão completas (Falta a pasta projeto, restrito e visualizacao. As outras estão pendentes só as mensagens em inglês). Pequenos problemas de layout detectados e serão tratados |
478
![]() |
![]() |
Mon 09 Jun, 2014 03:05:33 +0000 | |
377 |
![]() |
Sat 25 Jan, 2014 12:31:27 +0000 |