├── .gitignore ├── LICENSE ├── README.md ├── create-link-repo ├── .gitignore ├── pom.xml ├── src │ ├── main │ │ ├── amp │ │ │ ├── config │ │ │ │ └── alfresco │ │ │ │ │ ├── extension │ │ │ │ │ └── templates │ │ │ │ │ │ └── webscripts │ │ │ │ │ │ └── com │ │ │ │ │ │ └── alfdev │ │ │ │ │ │ └── doclib │ │ │ │ │ │ ├── action.lib.ftl │ │ │ │ │ │ ├── create-link.post.desc.xml │ │ │ │ │ │ └── create-link.post.json.ftl │ │ │ │ │ └── module │ │ │ │ │ └── create-link-repo │ │ │ │ │ ├── context │ │ │ │ │ └── service-context.xml │ │ │ │ │ ├── log4j.properties │ │ │ │ │ ├── messages │ │ │ │ │ ├── alfdev-repository.properties │ │ │ │ │ ├── alfdev-repository_en.properties │ │ │ │ │ ├── alfdev-repository_es.properties │ │ │ │ │ └── alfdev-repository_fr.properties │ │ │ │ │ └── module-context.xml │ │ │ └── module.properties │ │ └── java │ │ │ └── com │ │ │ └── alfdev │ │ │ └── alfresco │ │ │ └── repo │ │ │ └── web │ │ │ └── scripts │ │ │ └── doclib │ │ │ └── CreateLinkPost.java │ └── test │ │ ├── java │ │ └── .gitignore │ │ ├── properties │ │ └── local │ │ │ └── alfresco-global.properties │ │ └── resources │ │ └── log4j.properties └── tomcat │ └── context.xml └── create-link-share ├── .gitignore ├── pom.xml ├── src ├── main │ ├── amp │ │ ├── config │ │ │ └── alfresco │ │ │ │ ├── alfdev-share-documentlibrary-config.xml │ │ │ │ ├── messages │ │ │ │ ├── alfdev.properties │ │ │ │ ├── alfdev_en.properties │ │ │ │ ├── alfdev_es.properties │ │ │ │ └── alfdev_fr.properties │ │ │ │ ├── module │ │ │ │ └── create-link-share │ │ │ │ │ └── log4j.properties │ │ │ │ ├── site-webscripts │ │ │ │ └── com │ │ │ │ │ └── alfdev │ │ │ │ │ └── alfresco │ │ │ │ │ └── modules │ │ │ │ │ └── documentlibrary │ │ │ │ │ ├── create-link.get.desc.xml │ │ │ │ │ ├── create-link.get.html.ftl │ │ │ │ │ ├── create-link.get.properties │ │ │ │ │ ├── create-link.get_en.properties │ │ │ │ │ ├── create-link.get_es.properties │ │ │ │ │ └── create-link.get_fr.properties │ │ │ │ └── web-extension │ │ │ │ └── alfdev-context.xml │ │ ├── file-mapping.properties │ │ ├── module.properties │ │ └── web │ │ │ ├── components │ │ │ └── documentlibrary │ │ │ │ ├── actions │ │ │ │ └── alfdev-create-link-16.png │ │ │ │ └── alfdev-actions.js │ │ │ └── modules │ │ │ └── documentlibrary │ │ │ └── alfdev-create-link.js │ └── java │ │ └── .gitignore └── test │ ├── java │ └── .gitignore │ ├── properties │ └── local │ │ └── alfresco-global.properties │ └── resources │ └── log4j.properties └── tomcat └── context.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/README.md -------------------------------------------------------------------------------- /create-link-repo/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /create-link-repo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/pom.xml -------------------------------------------------------------------------------- /create-link-repo/src/main/amp/config/alfresco/extension/templates/webscripts/com/alfdev/doclib/action.lib.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/main/amp/config/alfresco/extension/templates/webscripts/com/alfdev/doclib/action.lib.ftl -------------------------------------------------------------------------------- /create-link-repo/src/main/amp/config/alfresco/extension/templates/webscripts/com/alfdev/doclib/create-link.post.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/main/amp/config/alfresco/extension/templates/webscripts/com/alfdev/doclib/create-link.post.desc.xml -------------------------------------------------------------------------------- /create-link-repo/src/main/amp/config/alfresco/extension/templates/webscripts/com/alfdev/doclib/create-link.post.json.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/main/amp/config/alfresco/extension/templates/webscripts/com/alfdev/doclib/create-link.post.json.ftl -------------------------------------------------------------------------------- /create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/context/service-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/context/service-context.xml -------------------------------------------------------------------------------- /create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/log4j.properties -------------------------------------------------------------------------------- /create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/messages/alfdev-repository.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/messages/alfdev-repository.properties -------------------------------------------------------------------------------- /create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/messages/alfdev-repository_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/messages/alfdev-repository_en.properties -------------------------------------------------------------------------------- /create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/messages/alfdev-repository_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/messages/alfdev-repository_es.properties -------------------------------------------------------------------------------- /create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/messages/alfdev-repository_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/messages/alfdev-repository_fr.properties -------------------------------------------------------------------------------- /create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/module-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/main/amp/config/alfresco/module/create-link-repo/module-context.xml -------------------------------------------------------------------------------- /create-link-repo/src/main/amp/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/main/amp/module.properties -------------------------------------------------------------------------------- /create-link-repo/src/main/java/com/alfdev/alfresco/repo/web/scripts/doclib/CreateLinkPost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/main/java/com/alfdev/alfresco/repo/web/scripts/doclib/CreateLinkPost.java -------------------------------------------------------------------------------- /create-link-repo/src/test/java/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create-link-repo/src/test/properties/local/alfresco-global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/test/properties/local/alfresco-global.properties -------------------------------------------------------------------------------- /create-link-repo/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /create-link-repo/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-repo/tomcat/context.xml -------------------------------------------------------------------------------- /create-link-share/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /create-link-share/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/pom.xml -------------------------------------------------------------------------------- /create-link-share/src/main/amp/config/alfresco/alfdev-share-documentlibrary-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/config/alfresco/alfdev-share-documentlibrary-config.xml -------------------------------------------------------------------------------- /create-link-share/src/main/amp/config/alfresco/messages/alfdev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/config/alfresco/messages/alfdev.properties -------------------------------------------------------------------------------- /create-link-share/src/main/amp/config/alfresco/messages/alfdev_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/config/alfresco/messages/alfdev_en.properties -------------------------------------------------------------------------------- /create-link-share/src/main/amp/config/alfresco/messages/alfdev_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/config/alfresco/messages/alfdev_es.properties -------------------------------------------------------------------------------- /create-link-share/src/main/amp/config/alfresco/messages/alfdev_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/config/alfresco/messages/alfdev_fr.properties -------------------------------------------------------------------------------- /create-link-share/src/main/amp/config/alfresco/module/create-link-share/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/config/alfresco/module/create-link-share/log4j.properties -------------------------------------------------------------------------------- /create-link-share/src/main/amp/config/alfresco/site-webscripts/com/alfdev/alfresco/modules/documentlibrary/create-link.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/config/alfresco/site-webscripts/com/alfdev/alfresco/modules/documentlibrary/create-link.get.desc.xml -------------------------------------------------------------------------------- /create-link-share/src/main/amp/config/alfresco/site-webscripts/com/alfdev/alfresco/modules/documentlibrary/create-link.get.html.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/config/alfresco/site-webscripts/com/alfdev/alfresco/modules/documentlibrary/create-link.get.html.ftl -------------------------------------------------------------------------------- /create-link-share/src/main/amp/config/alfresco/site-webscripts/com/alfdev/alfresco/modules/documentlibrary/create-link.get.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/config/alfresco/site-webscripts/com/alfdev/alfresco/modules/documentlibrary/create-link.get.properties -------------------------------------------------------------------------------- /create-link-share/src/main/amp/config/alfresco/site-webscripts/com/alfdev/alfresco/modules/documentlibrary/create-link.get_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/config/alfresco/site-webscripts/com/alfdev/alfresco/modules/documentlibrary/create-link.get_en.properties -------------------------------------------------------------------------------- /create-link-share/src/main/amp/config/alfresco/site-webscripts/com/alfdev/alfresco/modules/documentlibrary/create-link.get_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/config/alfresco/site-webscripts/com/alfdev/alfresco/modules/documentlibrary/create-link.get_es.properties -------------------------------------------------------------------------------- /create-link-share/src/main/amp/config/alfresco/site-webscripts/com/alfdev/alfresco/modules/documentlibrary/create-link.get_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/config/alfresco/site-webscripts/com/alfdev/alfresco/modules/documentlibrary/create-link.get_fr.properties -------------------------------------------------------------------------------- /create-link-share/src/main/amp/config/alfresco/web-extension/alfdev-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/config/alfresco/web-extension/alfdev-context.xml -------------------------------------------------------------------------------- /create-link-share/src/main/amp/file-mapping.properties: -------------------------------------------------------------------------------- 1 | /web=/ -------------------------------------------------------------------------------- /create-link-share/src/main/amp/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/module.properties -------------------------------------------------------------------------------- /create-link-share/src/main/amp/web/components/documentlibrary/actions/alfdev-create-link-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/web/components/documentlibrary/actions/alfdev-create-link-16.png -------------------------------------------------------------------------------- /create-link-share/src/main/amp/web/components/documentlibrary/alfdev-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/web/components/documentlibrary/alfdev-actions.js -------------------------------------------------------------------------------- /create-link-share/src/main/amp/web/modules/documentlibrary/alfdev-create-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/main/amp/web/modules/documentlibrary/alfdev-create-link.js -------------------------------------------------------------------------------- /create-link-share/src/main/java/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create-link-share/src/test/java/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create-link-share/src/test/properties/local/alfresco-global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/test/properties/local/alfresco-global.properties -------------------------------------------------------------------------------- /create-link-share/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /create-link-share/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skomarica/alfresco-share-create-link/HEAD/create-link-share/tomcat/context.xml --------------------------------------------------------------------------------