├── .gitignore ├── README.md ├── license.txt └── samples ├── alfresco-rm-custom ├── .gitignore ├── README.md ├── pom.xml ├── repo-amp │ ├── .gitignore │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── amp │ │ │ │ ├── config │ │ │ │ │ └── alfresco │ │ │ │ │ │ └── module │ │ │ │ │ │ └── my_rm │ │ │ │ │ │ ├── messages │ │ │ │ │ │ └── my-rm-model.properties │ │ │ │ │ │ ├── model │ │ │ │ │ │ └── my-rm-model.xml │ │ │ │ │ │ └── module-context.xml │ │ │ │ └── module.properties │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── alfresco │ │ │ │ └── module │ │ │ │ ├── my_rm │ │ │ │ └── model │ │ │ │ │ ├── MyComplianceRecordMetadataAspect.java │ │ │ │ │ └── MyRMModel.java │ │ │ │ └── org_alfresco_module_rm │ │ │ │ └── model │ │ │ │ └── rma │ │ │ │ └── type │ │ │ │ └── SiteTypeBootstrap.java │ │ └── test │ │ │ ├── properties │ │ │ └── local │ │ │ │ └── alfresco-global.properties │ │ │ └── resources │ │ │ ├── alfresco │ │ │ └── extension │ │ │ │ └── disable-webscript-caching-context.xml │ │ │ └── test-log4j.properties │ └── tomcat │ │ └── context.xml ├── repo │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── properties │ │ └── local │ │ │ └── alfresco-global.properties │ │ └── resources │ │ └── alfresco │ │ └── extension │ │ └── dev-log4j.properties ├── run.sh ├── runner │ ├── .gitignore │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── webapp │ │ │ └── index.html │ └── tomcat │ │ ├── context-repo.xml │ │ ├── context-share.xml │ │ └── context-solr.xml ├── share-amp │ ├── .gitignore │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── amp │ │ │ │ ├── config │ │ │ │ └── alfresco │ │ │ │ │ ├── my_rm │ │ │ │ │ ├── messages │ │ │ │ │ │ └── my-rm.properties │ │ │ │ │ ├── my-rm-context.xml │ │ │ │ │ └── my-rm-share-config.xml │ │ │ │ │ ├── site-data │ │ │ │ │ └── extensions │ │ │ │ │ │ └── alfresco-my-rm-custom-extension.xml │ │ │ │ │ ├── site-webscripts │ │ │ │ │ └── org │ │ │ │ │ │ └── alfresco │ │ │ │ │ │ └── custom │ │ │ │ │ │ └── rm │ │ │ │ │ │ └── customizations │ │ │ │ │ │ └── modules │ │ │ │ │ │ └── create-site.get.js │ │ │ │ │ └── web-extension │ │ │ │ │ └── myrm-custom-context.xml │ │ │ │ ├── file-mapping.properties │ │ │ │ ├── log4j.properties │ │ │ │ └── module.properties │ │ └── test │ │ │ └── resources │ │ │ ├── alfresco │ │ │ └── web-extension │ │ │ │ └── share-config-custom.xml │ │ │ └── log4j.properties │ └── tomcat │ │ └── context.xml ├── share │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── properties │ │ └── local │ │ │ └── application.properties │ │ └── resources │ │ └── log4j.properties └── solr │ ├── .classpath │ ├── .gitignore │ ├── pom.xml │ └── src │ ├── assembly │ └── solr-config-assembly.xml │ └── main │ └── solr-properties │ ├── archive │ ├── solrconfig.xml │ └── solrcore.properties │ ├── log4j-solr.properties │ └── workspace │ ├── solrconfig.xml │ └── solrcore.properties ├── alfresco-simple-module ├── repo │ ├── pom.xml │ ├── run.bat │ ├── run.sh │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── alfresco │ │ │ │ │ └── demo │ │ │ │ │ └── module │ │ │ │ │ ├── Demo.java │ │ │ │ │ ├── DemoComponent.java │ │ │ │ │ ├── HelloWorldWebScript.java │ │ │ │ │ └── TestServlet.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ ├── resources │ │ │ │ │ └── alfresco-simple-repo-module │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── demojar.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jsp │ │ │ │ │ │ └── demojar.jsp │ │ │ │ │ │ ├── licenses │ │ │ │ │ │ └── README-licenses.txt │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── demojar.js │ │ │ │ └── web-fragment.xml │ │ │ │ └── alfresco │ │ │ │ ├── extension │ │ │ │ └── templates │ │ │ │ │ └── webscripts │ │ │ │ │ ├── helloworld.get.desc.xml │ │ │ │ │ ├── helloworld.get.html.ftl │ │ │ │ │ └── helloworld.get.js │ │ │ │ └── module │ │ │ │ └── alfresco-simple-repo-module │ │ │ │ ├── alfresco-global.properties │ │ │ │ ├── context │ │ │ │ ├── bootstrap-context.xml │ │ │ │ ├── service-context.xml │ │ │ │ └── webscript-context.xml │ │ │ │ ├── log4j.properties │ │ │ │ ├── model │ │ │ │ └── mycontent-model.xml │ │ │ │ ├── module-context.xml │ │ │ │ ├── module.properties │ │ │ │ └── workflow │ │ │ │ └── my-process.bpmn20.xml │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── alfresco │ │ │ │ └── demo │ │ │ │ └── to_be_jar_archetype │ │ │ │ └── test │ │ │ │ └── DemoComponentTest.java │ │ │ ├── properties │ │ │ └── local │ │ │ │ └── alfresco-global.properties │ │ │ └── resources │ │ │ ├── alfresco │ │ │ └── extension │ │ │ │ └── disable-webscript-caching-context.xml │ │ │ └── log4j.properties │ └── tomcat │ │ └── context.xml └── share │ ├── pom.xml │ ├── run.bat │ ├── run.sh │ ├── src │ └── main │ │ ├── java │ │ └── org │ │ │ └── alfresco │ │ │ └── demo │ │ │ └── module │ │ │ ├── Demo.java │ │ │ └── TestServlet.java │ │ └── resources │ │ ├── META-INF │ │ ├── resources │ │ │ └── alfresco-simple-share-module │ │ │ │ ├── css │ │ │ │ └── demojar.css │ │ │ │ ├── index.html │ │ │ │ ├── jsp │ │ │ │ └── demojar.jsp │ │ │ │ ├── licenses │ │ │ │ └── README-licenses.txt │ │ │ │ └── scripts │ │ │ │ └── demojar.js │ │ └── web-fragment.xml │ │ └── alfresco │ │ ├── module │ │ └── alfresco-simple-share-module │ │ │ └── module.properties │ │ └── web-extension │ │ ├── share-module-context.xml │ │ └── site-webscripts │ │ ├── helloworld.get.desc.xml │ │ ├── helloworld.get.html.ftl │ │ └── helloworld.get.js │ └── tomcat │ └── context.xml ├── custom-action ├── repo │ ├── .gitignore │ ├── pom.xml │ ├── run.sh │ ├── src │ │ ├── main │ │ │ ├── amp │ │ │ │ ├── config │ │ │ │ │ └── alfresco │ │ │ │ │ │ └── module │ │ │ │ │ │ └── repo │ │ │ │ │ │ ├── context │ │ │ │ │ │ └── service-context.xml │ │ │ │ │ │ ├── log4j.properties │ │ │ │ │ │ └── module-context.xml │ │ │ │ ├── log4j.properties │ │ │ │ └── module.properties │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── alfresco │ │ │ │ └── sample │ │ │ │ └── StartReviewWorkflowActionExecuter.java │ │ └── test │ │ │ ├── properties │ │ │ └── local │ │ │ │ └── alfresco-global.properties │ │ │ └── resources │ │ │ ├── alfresco │ │ │ └── extension │ │ │ │ └── disable-webscript-caching-context.xml │ │ │ └── log4j.properties │ └── tomcat │ │ └── context.xml └── share │ ├── .gitignore │ ├── pom.xml │ ├── run.sh │ ├── src │ └── main │ │ ├── amp │ │ ├── config │ │ │ └── alfresco │ │ │ │ └── web-extension │ │ │ │ ├── custom-slingshot-application-context.xml │ │ │ │ └── messages │ │ │ │ ├── custom.properties │ │ │ │ └── custom_en.properties │ │ ├── log4j.properties │ │ └── module.properties │ │ └── resources │ │ └── META-INF │ │ └── share-config-custom.xml │ └── tomcat │ └── context.xml ├── custom-dashlet └── share │ ├── .gitignore │ ├── pom.xml │ ├── run.sh │ ├── src │ └── main │ │ ├── amp │ │ ├── config │ │ │ └── alfresco │ │ │ │ └── web-extension │ │ │ │ └── site-webscripts │ │ │ │ └── org │ │ │ │ └── alfresco │ │ │ │ └── sample │ │ │ │ └── components │ │ │ │ └── dashlets │ │ │ │ ├── custom-dashlet.get.desc.xml │ │ │ │ ├── custom-dashlet.get.html.ftl │ │ │ │ ├── custom-dashlet.get.js │ │ │ │ ├── custom-dashlet.get.properties │ │ │ │ └── custom-dashlet.get_en.properties │ │ ├── log4j.properties │ │ └── module.properties │ │ └── resources │ │ └── META-INF │ │ └── share-config-custom.xml │ └── tomcat │ └── context.xml ├── custom-model ├── repo │ ├── .gitignore │ ├── pom.xml │ ├── run.sh │ ├── src │ │ ├── main │ │ │ └── amp │ │ │ │ ├── config │ │ │ │ └── alfresco │ │ │ │ │ └── module │ │ │ │ │ └── repo │ │ │ │ │ ├── context │ │ │ │ │ └── service-context.xml │ │ │ │ │ ├── log4j.properties │ │ │ │ │ ├── model │ │ │ │ │ └── cmeModel.xml │ │ │ │ │ └── module-context.xml │ │ │ │ ├── log4j.properties │ │ │ │ └── module.properties │ │ └── test │ │ │ ├── properties │ │ │ └── local │ │ │ │ └── alfresco-global.properties │ │ │ └── resources │ │ │ ├── alfresco │ │ │ └── extension │ │ │ │ └── disable-webscript-caching-context.xml │ │ │ └── log4j.properties │ └── tomcat │ │ └── context.xml └── share │ ├── .gitignore │ ├── pom.xml │ ├── run.sh │ ├── src │ └── main │ │ ├── amp │ │ ├── config │ │ │ └── alfresco │ │ │ │ └── web-extension │ │ │ │ ├── custom-slingshot-application-context.xml │ │ │ │ └── messages │ │ │ │ ├── custom.properties │ │ │ │ └── custom_en.properties │ │ ├── log4j.properties │ │ └── module.properties │ │ └── resources │ │ └── META-INF │ │ └── share-config-custom.xml │ └── tomcat │ └── context.xml └── webscripts ├── repo ├── .gitignore ├── pom.xml ├── run.sh ├── src │ ├── main │ │ ├── amp │ │ │ ├── config │ │ │ │ └── alfresco │ │ │ │ │ ├── extension │ │ │ │ │ └── templates │ │ │ │ │ │ └── webscripts │ │ │ │ │ │ └── org │ │ │ │ │ │ └── alfresco │ │ │ │ │ │ └── sample │ │ │ │ │ │ ├── folder │ │ │ │ │ │ ├── list.get.desc.xml │ │ │ │ │ │ └── list.get.html.ftl │ │ │ │ │ │ ├── java-backed │ │ │ │ │ │ ├── jsonwebscript.get.desc.xml │ │ │ │ │ │ ├── webscript.get.desc.xml │ │ │ │ │ │ └── webscript.get.html.ftl │ │ │ │ │ │ ├── javascript-backed │ │ │ │ │ │ ├── jsonwebscript.get.desc.xml │ │ │ │ │ │ ├── jsonwebscript.get.js │ │ │ │ │ │ ├── jsonwebscript.get.json.ftl │ │ │ │ │ │ ├── webscript.get.desc.xml │ │ │ │ │ │ ├── webscript.get.html.ftl │ │ │ │ │ │ └── webscript.get.js │ │ │ │ │ │ └── node │ │ │ │ │ │ ├── node.delete.desc.xml │ │ │ │ │ │ ├── node.delete.js │ │ │ │ │ │ ├── node.delete.json.ftl │ │ │ │ │ │ ├── node.get.desc.xml │ │ │ │ │ │ ├── node.get.js │ │ │ │ │ │ ├── node.get.json.ftl │ │ │ │ │ │ └── node.get.xml.ftl │ │ │ │ │ └── module │ │ │ │ │ └── repo │ │ │ │ │ ├── context │ │ │ │ │ └── service-context.xml │ │ │ │ │ ├── log4j.properties │ │ │ │ │ └── module-context.xml │ │ │ ├── log4j.properties │ │ │ └── module.properties │ │ └── java │ │ │ └── org │ │ │ └── alfresco │ │ │ └── sample │ │ │ ├── FolderListWebscript.java │ │ │ ├── JsonWebscript.java │ │ │ └── Webscript.java │ └── test │ │ ├── properties │ │ └── local │ │ │ └── alfresco-global.properties │ │ └── resources │ │ ├── alfresco │ │ └── extension │ │ │ └── disable-webscript-caching-context.xml │ │ └── log4j.properties └── tomcat │ └── context.xml └── share ├── .gitignore ├── pom.xml ├── run.sh ├── src ├── main │ ├── amp │ │ ├── config │ │ │ └── alfresco │ │ │ │ └── web-extension │ │ │ │ └── site-webscripts │ │ │ │ └── org │ │ │ │ └── alfresco │ │ │ │ └── sample │ │ │ │ └── node │ │ │ │ ├── node.get.desc.xml │ │ │ │ ├── node.get.html.ftl │ │ │ │ └── node.get.js │ │ ├── log4j.properties │ │ └── module.properties │ └── resources │ │ └── META-INF │ │ └── share-config-custom.xml └── test │ └── resources │ ├── alfresco │ └── web-extension │ │ └── share-config-custom.xml │ └── log4j.properties └── tomcat └── context.xml /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .classpath 3 | .project 4 | .settings 5 | alf_data_dev 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/license.txt -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/.gitignore -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/README.md -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/pom.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo-amp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo-amp/.gitignore -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo-amp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo-amp/pom.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo-amp/src/main/amp/config/alfresco/module/my_rm/messages/my-rm-model.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo-amp/src/main/amp/config/alfresco/module/my_rm/model/my-rm-model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo-amp/src/main/amp/config/alfresco/module/my_rm/model/my-rm-model.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo-amp/src/main/amp/config/alfresco/module/my_rm/module-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo-amp/src/main/amp/config/alfresco/module/my_rm/module-context.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo-amp/src/main/amp/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo-amp/src/main/amp/module.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo-amp/src/main/java/org/alfresco/module/my_rm/model/MyComplianceRecordMetadataAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo-amp/src/main/java/org/alfresco/module/my_rm/model/MyComplianceRecordMetadataAspect.java -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo-amp/src/main/java/org/alfresco/module/my_rm/model/MyRMModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo-amp/src/main/java/org/alfresco/module/my_rm/model/MyRMModel.java -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo-amp/src/main/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/SiteTypeBootstrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo-amp/src/main/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/SiteTypeBootstrap.java -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo-amp/src/test/properties/local/alfresco-global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo-amp/src/test/properties/local/alfresco-global.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo-amp/src/test/resources/alfresco/extension/disable-webscript-caching-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo-amp/src/test/resources/alfresco/extension/disable-webscript-caching-context.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo-amp/src/test/resources/test-log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo-amp/src/test/resources/test-log4j.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo-amp/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo-amp/tomcat/context.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo/.gitignore -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo/pom.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo/src/main/properties/local/alfresco-global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo/src/main/properties/local/alfresco-global.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/repo/src/main/resources/alfresco/extension/dev-log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/repo/src/main/resources/alfresco/extension/dev-log4j.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/run.sh -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/runner/.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | /.settings 3 | /target 4 | -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/runner/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/runner/pom.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/runner/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/runner/src/main/webapp/index.html -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/runner/tomcat/context-repo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/runner/tomcat/context-repo.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/runner/tomcat/context-share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/runner/tomcat/context-share.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/runner/tomcat/context-solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/runner/tomcat/context-solr.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/.gitignore -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/pom.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/src/main/amp/config/alfresco/my_rm/messages/my-rm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/src/main/amp/config/alfresco/my_rm/messages/my-rm.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/src/main/amp/config/alfresco/my_rm/my-rm-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/src/main/amp/config/alfresco/my_rm/my-rm-context.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/src/main/amp/config/alfresco/my_rm/my-rm-share-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/src/main/amp/config/alfresco/my_rm/my-rm-share-config.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/src/main/amp/config/alfresco/site-data/extensions/alfresco-my-rm-custom-extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/src/main/amp/config/alfresco/site-data/extensions/alfresco-my-rm-custom-extension.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/src/main/amp/config/alfresco/site-webscripts/org/alfresco/custom/rm/customizations/modules/create-site.get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/src/main/amp/config/alfresco/site-webscripts/org/alfresco/custom/rm/customizations/modules/create-site.get.js -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/src/main/amp/config/alfresco/web-extension/myrm-custom-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/src/main/amp/config/alfresco/web-extension/myrm-custom-context.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/src/main/amp/file-mapping.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/src/main/amp/file-mapping.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/src/main/amp/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/src/main/amp/log4j.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/src/main/amp/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/src/main/amp/module.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/src/test/resources/alfresco/web-extension/share-config-custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/src/test/resources/alfresco/web-extension/share-config-custom.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share-amp/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share-amp/tomcat/context.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share/.gitignore -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share/pom.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share/src/main/properties/local/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share/src/main/properties/local/application.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/share/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/share/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/solr/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/solr/.classpath -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/solr/.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | /.settings 3 | /target 4 | /solr_home 5 | -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/solr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/solr/pom.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/solr/src/assembly/solr-config-assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/solr/src/assembly/solr-config-assembly.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/solr/src/main/solr-properties/archive/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/solr/src/main/solr-properties/archive/solrconfig.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/solr/src/main/solr-properties/archive/solrcore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/solr/src/main/solr-properties/archive/solrcore.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/solr/src/main/solr-properties/log4j-solr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/solr/src/main/solr-properties/log4j-solr.properties -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/solr/src/main/solr-properties/workspace/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/solr/src/main/solr-properties/workspace/solrconfig.xml -------------------------------------------------------------------------------- /samples/alfresco-rm-custom/solr/src/main/solr-properties/workspace/solrcore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-rm-custom/solr/src/main/solr-properties/workspace/solrcore.properties -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/pom.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/run.bat -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/run.sh -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/java/org/alfresco/demo/module/Demo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/java/org/alfresco/demo/module/Demo.java -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/java/org/alfresco/demo/module/DemoComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/java/org/alfresco/demo/module/DemoComponent.java -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/java/org/alfresco/demo/module/HelloWorldWebScript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/java/org/alfresco/demo/module/HelloWorldWebScript.java -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/java/org/alfresco/demo/module/TestServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/java/org/alfresco/demo/module/TestServlet.java -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/META-INF/resources/alfresco-simple-repo-module/css/demojar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/META-INF/resources/alfresco-simple-repo-module/css/demojar.css -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/META-INF/resources/alfresco-simple-repo-module/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/META-INF/resources/alfresco-simple-repo-module/index.html -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/META-INF/resources/alfresco-simple-repo-module/jsp/demojar.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/META-INF/resources/alfresco-simple-repo-module/jsp/demojar.jsp -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/META-INF/resources/alfresco-simple-repo-module/licenses/README-licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/META-INF/resources/alfresco-simple-repo-module/licenses/README-licenses.txt -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/META-INF/resources/alfresco-simple-repo-module/scripts/demojar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/META-INF/resources/alfresco-simple-repo-module/scripts/demojar.js -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/META-INF/web-fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/META-INF/web-fragment.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/alfresco/extension/templates/webscripts/helloworld.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/alfresco/extension/templates/webscripts/helloworld.get.desc.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/alfresco/extension/templates/webscripts/helloworld.get.html.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/alfresco/extension/templates/webscripts/helloworld.get.html.ftl -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/alfresco/extension/templates/webscripts/helloworld.get.js: -------------------------------------------------------------------------------- 1 | model["fromJS"] = "Hello World from JS!"; -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/alfresco-global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/alfresco-global.properties -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/context/bootstrap-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/context/bootstrap-context.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/context/service-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/context/service-context.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/context/webscript-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/context/webscript-context.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/log4j.properties -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/model/mycontent-model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/model/mycontent-model.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/module-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/module-context.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/module.properties -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/workflow/my-process.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/main/resources/alfresco/module/alfresco-simple-repo-module/workflow/my-process.bpmn20.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/test/java/org/alfresco/demo/to_be_jar_archetype/test/DemoComponentTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/test/java/org/alfresco/demo/to_be_jar_archetype/test/DemoComponentTest.java -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/test/properties/local/alfresco-global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/test/properties/local/alfresco-global.properties -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/test/resources/alfresco/extension/disable-webscript-caching-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/test/resources/alfresco/extension/disable-webscript-caching-context.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /samples/alfresco-simple-module/repo/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/repo/tomcat/context.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/pom.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/run.bat -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/run.sh -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/src/main/java/org/alfresco/demo/module/Demo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/src/main/java/org/alfresco/demo/module/Demo.java -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/src/main/java/org/alfresco/demo/module/TestServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/src/main/java/org/alfresco/demo/module/TestServlet.java -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/src/main/resources/META-INF/resources/alfresco-simple-share-module/css/demojar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/src/main/resources/META-INF/resources/alfresco-simple-share-module/css/demojar.css -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/src/main/resources/META-INF/resources/alfresco-simple-share-module/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/src/main/resources/META-INF/resources/alfresco-simple-share-module/index.html -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/src/main/resources/META-INF/resources/alfresco-simple-share-module/jsp/demojar.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/src/main/resources/META-INF/resources/alfresco-simple-share-module/jsp/demojar.jsp -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/src/main/resources/META-INF/resources/alfresco-simple-share-module/licenses/README-licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/src/main/resources/META-INF/resources/alfresco-simple-share-module/licenses/README-licenses.txt -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/src/main/resources/META-INF/resources/alfresco-simple-share-module/scripts/demojar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/src/main/resources/META-INF/resources/alfresco-simple-share-module/scripts/demojar.js -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/src/main/resources/META-INF/web-fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/src/main/resources/META-INF/web-fragment.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/src/main/resources/alfresco/module/alfresco-simple-share-module/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/src/main/resources/alfresco/module/alfresco-simple-share-module/module.properties -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/src/main/resources/alfresco/web-extension/share-module-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/src/main/resources/alfresco/web-extension/share-module-context.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/src/main/resources/alfresco/web-extension/site-webscripts/helloworld.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/src/main/resources/alfresco/web-extension/site-webscripts/helloworld.get.desc.xml -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/src/main/resources/alfresco/web-extension/site-webscripts/helloworld.get.html.ftl: -------------------------------------------------------------------------------- 1 | <@processJsonModel group="share"/> -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/src/main/resources/alfresco/web-extension/site-webscripts/helloworld.get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/src/main/resources/alfresco/web-extension/site-webscripts/helloworld.get.js -------------------------------------------------------------------------------- /samples/alfresco-simple-module/share/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/alfresco-simple-module/share/tomcat/context.xml -------------------------------------------------------------------------------- /samples/custom-action/repo/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | alf_data_dev 3 | .idea 4 | *.iml -------------------------------------------------------------------------------- /samples/custom-action/repo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/repo/pom.xml -------------------------------------------------------------------------------- /samples/custom-action/repo/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/repo/run.sh -------------------------------------------------------------------------------- /samples/custom-action/repo/src/main/amp/config/alfresco/module/repo/context/service-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/repo/src/main/amp/config/alfresco/module/repo/context/service-context.xml -------------------------------------------------------------------------------- /samples/custom-action/repo/src/main/amp/config/alfresco/module/repo/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/repo/src/main/amp/config/alfresco/module/repo/log4j.properties -------------------------------------------------------------------------------- /samples/custom-action/repo/src/main/amp/config/alfresco/module/repo/module-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/repo/src/main/amp/config/alfresco/module/repo/module-context.xml -------------------------------------------------------------------------------- /samples/custom-action/repo/src/main/amp/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/repo/src/main/amp/log4j.properties -------------------------------------------------------------------------------- /samples/custom-action/repo/src/main/amp/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/repo/src/main/amp/module.properties -------------------------------------------------------------------------------- /samples/custom-action/repo/src/main/java/org/alfresco/sample/StartReviewWorkflowActionExecuter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/repo/src/main/java/org/alfresco/sample/StartReviewWorkflowActionExecuter.java -------------------------------------------------------------------------------- /samples/custom-action/repo/src/test/properties/local/alfresco-global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/repo/src/test/properties/local/alfresco-global.properties -------------------------------------------------------------------------------- /samples/custom-action/repo/src/test/resources/alfresco/extension/disable-webscript-caching-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/repo/src/test/resources/alfresco/extension/disable-webscript-caching-context.xml -------------------------------------------------------------------------------- /samples/custom-action/repo/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/repo/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /samples/custom-action/repo/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/repo/tomcat/context.xml -------------------------------------------------------------------------------- /samples/custom-action/share/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | alf_data_dev 3 | .idea 4 | *.iml -------------------------------------------------------------------------------- /samples/custom-action/share/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/share/pom.xml -------------------------------------------------------------------------------- /samples/custom-action/share/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/share/run.sh -------------------------------------------------------------------------------- /samples/custom-action/share/src/main/amp/config/alfresco/web-extension/custom-slingshot-application-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/share/src/main/amp/config/alfresco/web-extension/custom-slingshot-application-context.xml -------------------------------------------------------------------------------- /samples/custom-action/share/src/main/amp/config/alfresco/web-extension/messages/custom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/share/src/main/amp/config/alfresco/web-extension/messages/custom.properties -------------------------------------------------------------------------------- /samples/custom-action/share/src/main/amp/config/alfresco/web-extension/messages/custom_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/share/src/main/amp/config/alfresco/web-extension/messages/custom_en.properties -------------------------------------------------------------------------------- /samples/custom-action/share/src/main/amp/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/share/src/main/amp/log4j.properties -------------------------------------------------------------------------------- /samples/custom-action/share/src/main/amp/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/share/src/main/amp/module.properties -------------------------------------------------------------------------------- /samples/custom-action/share/src/main/resources/META-INF/share-config-custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/share/src/main/resources/META-INF/share-config-custom.xml -------------------------------------------------------------------------------- /samples/custom-action/share/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-action/share/tomcat/context.xml -------------------------------------------------------------------------------- /samples/custom-dashlet/share/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | alf_data_dev 3 | .idea 4 | *.iml -------------------------------------------------------------------------------- /samples/custom-dashlet/share/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-dashlet/share/pom.xml -------------------------------------------------------------------------------- /samples/custom-dashlet/share/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-dashlet/share/run.sh -------------------------------------------------------------------------------- /samples/custom-dashlet/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/components/dashlets/custom-dashlet.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-dashlet/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/components/dashlets/custom-dashlet.get.desc.xml -------------------------------------------------------------------------------- /samples/custom-dashlet/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/components/dashlets/custom-dashlet.get.html.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-dashlet/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/components/dashlets/custom-dashlet.get.html.ftl -------------------------------------------------------------------------------- /samples/custom-dashlet/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/components/dashlets/custom-dashlet.get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-dashlet/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/components/dashlets/custom-dashlet.get.js -------------------------------------------------------------------------------- /samples/custom-dashlet/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/components/dashlets/custom-dashlet.get.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-dashlet/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/components/dashlets/custom-dashlet.get.properties -------------------------------------------------------------------------------- /samples/custom-dashlet/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/components/dashlets/custom-dashlet.get_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-dashlet/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/components/dashlets/custom-dashlet.get_en.properties -------------------------------------------------------------------------------- /samples/custom-dashlet/share/src/main/amp/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-dashlet/share/src/main/amp/log4j.properties -------------------------------------------------------------------------------- /samples/custom-dashlet/share/src/main/amp/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-dashlet/share/src/main/amp/module.properties -------------------------------------------------------------------------------- /samples/custom-dashlet/share/src/main/resources/META-INF/share-config-custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-dashlet/share/src/main/resources/META-INF/share-config-custom.xml -------------------------------------------------------------------------------- /samples/custom-dashlet/share/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-dashlet/share/tomcat/context.xml -------------------------------------------------------------------------------- /samples/custom-model/repo/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | alf_data_dev 3 | .idea 4 | *.iml -------------------------------------------------------------------------------- /samples/custom-model/repo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/repo/pom.xml -------------------------------------------------------------------------------- /samples/custom-model/repo/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/repo/run.sh -------------------------------------------------------------------------------- /samples/custom-model/repo/src/main/amp/config/alfresco/module/repo/context/service-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/repo/src/main/amp/config/alfresco/module/repo/context/service-context.xml -------------------------------------------------------------------------------- /samples/custom-model/repo/src/main/amp/config/alfresco/module/repo/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/repo/src/main/amp/config/alfresco/module/repo/log4j.properties -------------------------------------------------------------------------------- /samples/custom-model/repo/src/main/amp/config/alfresco/module/repo/model/cmeModel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/repo/src/main/amp/config/alfresco/module/repo/model/cmeModel.xml -------------------------------------------------------------------------------- /samples/custom-model/repo/src/main/amp/config/alfresco/module/repo/module-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/repo/src/main/amp/config/alfresco/module/repo/module-context.xml -------------------------------------------------------------------------------- /samples/custom-model/repo/src/main/amp/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/repo/src/main/amp/log4j.properties -------------------------------------------------------------------------------- /samples/custom-model/repo/src/main/amp/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/repo/src/main/amp/module.properties -------------------------------------------------------------------------------- /samples/custom-model/repo/src/test/properties/local/alfresco-global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/repo/src/test/properties/local/alfresco-global.properties -------------------------------------------------------------------------------- /samples/custom-model/repo/src/test/resources/alfresco/extension/disable-webscript-caching-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/repo/src/test/resources/alfresco/extension/disable-webscript-caching-context.xml -------------------------------------------------------------------------------- /samples/custom-model/repo/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/repo/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /samples/custom-model/repo/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/repo/tomcat/context.xml -------------------------------------------------------------------------------- /samples/custom-model/share/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | alf_data_dev 3 | .idea 4 | *.iml -------------------------------------------------------------------------------- /samples/custom-model/share/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/share/pom.xml -------------------------------------------------------------------------------- /samples/custom-model/share/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/share/run.sh -------------------------------------------------------------------------------- /samples/custom-model/share/src/main/amp/config/alfresco/web-extension/custom-slingshot-application-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/share/src/main/amp/config/alfresco/web-extension/custom-slingshot-application-context.xml -------------------------------------------------------------------------------- /samples/custom-model/share/src/main/amp/config/alfresco/web-extension/messages/custom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/share/src/main/amp/config/alfresco/web-extension/messages/custom.properties -------------------------------------------------------------------------------- /samples/custom-model/share/src/main/amp/config/alfresco/web-extension/messages/custom_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/share/src/main/amp/config/alfresco/web-extension/messages/custom_en.properties -------------------------------------------------------------------------------- /samples/custom-model/share/src/main/amp/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/share/src/main/amp/log4j.properties -------------------------------------------------------------------------------- /samples/custom-model/share/src/main/amp/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/share/src/main/amp/module.properties -------------------------------------------------------------------------------- /samples/custom-model/share/src/main/resources/META-INF/share-config-custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/share/src/main/resources/META-INF/share-config-custom.xml -------------------------------------------------------------------------------- /samples/custom-model/share/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/custom-model/share/tomcat/context.xml -------------------------------------------------------------------------------- /samples/webscripts/repo/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | alf_data_dev 3 | .idea 4 | *.iml -------------------------------------------------------------------------------- /samples/webscripts/repo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/pom.xml -------------------------------------------------------------------------------- /samples/webscripts/repo/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/run.sh -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/folder/list.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/folder/list.get.desc.xml -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/folder/list.get.html.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/folder/list.get.html.ftl -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/java-backed/jsonwebscript.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/java-backed/jsonwebscript.get.desc.xml -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/java-backed/webscript.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/java-backed/webscript.get.desc.xml -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/java-backed/webscript.get.html.ftl: -------------------------------------------------------------------------------- 1 | ${greeting} -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/javascript-backed/jsonwebscript.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/javascript-backed/jsonwebscript.get.desc.xml -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/javascript-backed/jsonwebscript.get.js: -------------------------------------------------------------------------------- 1 | model.greeting = "Hello world!"; 2 | -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/javascript-backed/jsonwebscript.get.json.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/javascript-backed/jsonwebscript.get.json.ftl -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/javascript-backed/webscript.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/javascript-backed/webscript.get.desc.xml -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/javascript-backed/webscript.get.html.ftl: -------------------------------------------------------------------------------- 1 | ${greeting} 2 | -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/javascript-backed/webscript.get.js: -------------------------------------------------------------------------------- 1 | model.greeting = "Hello world"; 2 | -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.delete.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.delete.desc.xml -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.delete.js -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.delete.json.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.delete.json.ftl -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.get.desc.xml -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.get.js -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.get.json.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.get.json.ftl -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.get.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/extension/templates/webscripts/org/alfresco/sample/node/node.get.xml.ftl -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/module/repo/context/service-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/module/repo/context/service-context.xml -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/module/repo/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/module/repo/log4j.properties -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/config/alfresco/module/repo/module-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/config/alfresco/module/repo/module-context.xml -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/log4j.properties -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/amp/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/amp/module.properties -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/java/org/alfresco/sample/FolderListWebscript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/java/org/alfresco/sample/FolderListWebscript.java -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/java/org/alfresco/sample/JsonWebscript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/java/org/alfresco/sample/JsonWebscript.java -------------------------------------------------------------------------------- /samples/webscripts/repo/src/main/java/org/alfresco/sample/Webscript.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/main/java/org/alfresco/sample/Webscript.java -------------------------------------------------------------------------------- /samples/webscripts/repo/src/test/properties/local/alfresco-global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/test/properties/local/alfresco-global.properties -------------------------------------------------------------------------------- /samples/webscripts/repo/src/test/resources/alfresco/extension/disable-webscript-caching-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/test/resources/alfresco/extension/disable-webscript-caching-context.xml -------------------------------------------------------------------------------- /samples/webscripts/repo/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /samples/webscripts/repo/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/repo/tomcat/context.xml -------------------------------------------------------------------------------- /samples/webscripts/share/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | alf_data_dev 3 | .idea 4 | *.iml -------------------------------------------------------------------------------- /samples/webscripts/share/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/share/pom.xml -------------------------------------------------------------------------------- /samples/webscripts/share/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/share/run.sh -------------------------------------------------------------------------------- /samples/webscripts/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/node/node.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/node/node.get.desc.xml -------------------------------------------------------------------------------- /samples/webscripts/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/node/node.get.html.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/node/node.get.html.ftl -------------------------------------------------------------------------------- /samples/webscripts/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/node/node.get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/share/src/main/amp/config/alfresco/web-extension/site-webscripts/org/alfresco/sample/node/node.get.js -------------------------------------------------------------------------------- /samples/webscripts/share/src/main/amp/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/share/src/main/amp/log4j.properties -------------------------------------------------------------------------------- /samples/webscripts/share/src/main/amp/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/share/src/main/amp/module.properties -------------------------------------------------------------------------------- /samples/webscripts/share/src/main/resources/META-INF/share-config-custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/share/src/main/resources/META-INF/share-config-custom.xml -------------------------------------------------------------------------------- /samples/webscripts/share/src/test/resources/alfresco/web-extension/share-config-custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/share/src/test/resources/alfresco/web-extension/share-config-custom.xml -------------------------------------------------------------------------------- /samples/webscripts/share/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/share/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /samples/webscripts/share/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/alfresco-sdk-samples/HEAD/samples/webscripts/share/tomcat/context.xml --------------------------------------------------------------------------------