Subversion Repositories bacoAlunos

Compare Revisions

Ignore whitespace Rev 1688 → Rev 1692

/branches/v3/impl/conf/language/MessageResources.properties
2168,3 → 2168,4
repositorycol=Colecções do Repositório de Documentos Digitais
repositorycolbrowser=Navegador de Colecções do Repositório de Documentos Digitais
repositoryinterface=Editor de Interfaces do Repositório Digital
repositoryinterfaces=Listagem de Interfaces do Repositório
/branches/v3/impl/conf/WEB-INF/struts/struts-repositorydocs.xml
22,6 → 22,7
<action path="/user/repositoryEditDocument" forward="page.repository.edit.doc"/>
<action path="/user/repositoryEditCollections" forward="page.repository.edit.col"/>
<action path="/user/repositoryEditInterface" forward="page.repository.edit.interface"/>
<action path="/user/repositoryListInterfaces" forward="page.repository.list.interfaces"/>
<action path="/user/repositoryBrowseCollections" forward="page.repository.browse.col"/>
 
 
/branches/v3/impl/conf/WEB-INF/struts/tiles-repositorydocs.xml
25,6 → 25,12
<put name="body" value="/user/repositoryDocuments/repositoryInterface.jsp"/>
</definition>
 
<definition name="page.repository.list.interfaces" extends="page.pae.separators.home">
<put name="title" value="Escolha de Interface do Repositório Digital para edição"/>
<put name="topnav" value="/user/repositoryDocuments/topnavListRepositoryInterfaces.jsp"/>
<put name="body" value="/user/repositoryDocuments/repositoryInterfaces.jsp"/>
</definition>
 
<definition name="page.repository.browse.col" extends="page.pae.separators.home">
<put name="title" value="Navegador do Repositório de Documentos Digitais"/>
<put name="topnav" value="/user/repositoryDocuments/topnavRepocolbrowser.jsp"/>
/branches/v3/impl/conf/WEB-INF/web.xml
184,6 → 184,10
<servlet-class>pt.estgp.estgweb.web.controllers.utils.MultiUploadServlet</servlet-class>
</servlet>
 
<servlet>
<servlet-name>RepositoryDocumentInterface</servlet-name>
<servlet-class>pt.estgp.estgweb.web.controllers.repositorydocs.RepositoryDocInterface</servlet-class>
</servlet>
 
<servlet>
<servlet-name>action</servlet-name>
449,6 → 453,12
<url-pattern>/ipppae</url-pattern>
</servlet-mapping>
 
 
<servlet-mapping>
<servlet-name>RepositoryDocumentInterface</servlet-name>
<url-pattern>/repositoryInterface/*</url-pattern>
</servlet-mapping>
 
<!--START FILES-->
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
/branches/v3/impl/conf/WEB-INF/tags/confirm.tag
19,9 → 19,9
 
<logic:notEmpty name="targetUrl">
<button <%=ng_click!= null ? "ng-click=\"" + ng_click + "\"":""%> class="<%=btnClass != null ? btnClass : "btn btn-danger"%>" type="button" data-toggle="modal" data-target="#confirm-ModalGeneric" data-message="${msg}" data-href="<%=request.getContextPath()%>${targetUrl}">
<logic:empty name="label">
<logic:notEmpty name="label">
${label}
</logic:empty>
</logic:notEmpty>
<logic:notEmpty name="icon">
<span class="${icon}"> </span>
</logic:notEmpty>
30,11 → 30,12
 
<logic:notEmpty name="targetFunction">
<button <%=ng_click!= null ? "ng-click=\"" + ng_click + "\"":""%> class="<%=btnClass != null ? btnClass : "btn btn-danger"%>" type="button" data-toggle="modal" data-target="#confirm-ModalFunction" data-message="${msg}" data-script="${targetFunction};$('#confirm-ModalFunction').modal('hide');">
<logic:empty name="label">
<logic:notEmpty name="label">
${label}
</logic:empty>
</logic:notEmpty>
<logic:notEmpty name="icon">
<span class="${icon}"> </span>
</logic:notEmpty>
</button>
</logic:notEmpty>
 
/branches/v3/impl/conf/berserk/sd.xml
3419,11 → 3419,11
<chain name="AdminsOrRepoDocumentsAdmins"/>
</filterChains>
</service>
UpdateRepositoryCollection
 
<service>
<name>UpdateRepositoryCollection</name>
<implementationClass>pt.estgp.estgweb.services.data.repositorydocuments.RepositoryDocumentService</implementationClass>
<description>Salva um repository document no repositorio digital de documentos</description>
<description>Salva um repository colection no repositorio digital de documentos</description>
<isTransactional>true</isTransactional>
<defaultMethod>updateRepositoryCollection</defaultMethod>
<filterChains>
3435,4 → 3435,55
 
 
 
<service>
<name>AddRepositoryInterface</name>
<implementationClass>pt.estgp.estgweb.services.data.repositorydocuments.RepositoryDocumentService</implementationClass>
<description>Salva um repository interface no repositorio digital de documentos</description>
<isTransactional>true</isTransactional>
<defaultMethod>addRepositoryInterface</defaultMethod>
<filterChains>
<chain name="Logger"/>
<chain name="Session"/>
<chain name="AdminsOrRepoDocumentsAdmins"/>
</filterChains>
</service>
<service>
<name>RemoveRepositoryInterface</name>
<implementationClass>pt.estgp.estgweb.services.data.repositorydocuments.RepositoryDocumentService</implementationClass>
<description>Salva um repository interface no repositorio digital de documentos</description>
<isTransactional>true</isTransactional>
<defaultMethod>removeRepositoryInterface</defaultMethod>
<filterChains>
<chain name="Logger"/>
<chain name="Session"/>
<chain name="AdminsOrRepoDocumentsAdmins"/>
</filterChains>
</service>
<service>
<name>UpdateRepositoryInterface</name>
<implementationClass>pt.estgp.estgweb.services.data.repositorydocuments.RepositoryDocumentService</implementationClass>
<description>Salva um repository interface no repositorio digital de documentos</description>
<isTransactional>true</isTransactional>
<defaultMethod>updateRepositoryInterface</defaultMethod>
<filterChains>
<chain name="Logger"/>
<chain name="Session"/>
<chain name="AdminsOrRepoDocumentsAdmins"/>
</filterChains>
</service>
 
<service>
<name>SaveRepositoryInterfaceData</name>
<implementationClass>pt.estgp.estgweb.services.data.repositorydocuments.RepositoryDocumentService</implementationClass>
<description>Salva um repository interface no repositorio digital de documentos</description>
<isTransactional>true</isTransactional>
<defaultMethod>saveRepositoryInterfaceData</defaultMethod>
<filterChains>
<chain name="Logger"/>
<chain name="Session"/>
<chain name="AdminsOrRepoDocumentsAdmins"/>
</filterChains>
</service>
 
 
</serviceDefinitions>