├── README.md ├── aikau ├── aikau-tutorial-share │ ├── .gitignore │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── amp │ │ │ │ ├── config │ │ │ │ │ └── alfresco │ │ │ │ │ │ └── web-extension │ │ │ │ │ │ ├── site-data │ │ │ │ │ │ └── extensions │ │ │ │ │ │ │ ├── custom-header-extension.xml │ │ │ │ │ │ │ └── widget-tutorial.xml │ │ │ │ │ │ └── site-webscripts │ │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ ├── header │ │ │ │ │ │ └── share-header.get.js │ │ │ │ │ │ └── pages │ │ │ │ │ │ ├── ajax-page.get.desc.xml │ │ │ │ │ │ ├── ajax-page.get.html.ftl │ │ │ │ │ │ ├── ajax-page.get.js │ │ │ │ │ │ ├── custom-widget-page.get.desc.xml │ │ │ │ │ │ ├── custom-widget-page.get.html.ftl │ │ │ │ │ │ ├── custom-widget-page.get.js │ │ │ │ │ │ ├── pub-sub.get.desc.xml │ │ │ │ │ │ ├── pub-sub.get.html.ftl │ │ │ │ │ │ ├── pub-sub.get.js │ │ │ │ │ │ ├── simple-page.get.desc.xml │ │ │ │ │ │ ├── simple-page.get.html.ftl │ │ │ │ │ │ └── simple-page.get.js │ │ │ │ ├── file-mapping.properties │ │ │ │ ├── log4j.properties │ │ │ │ ├── module.properties │ │ │ │ └── web │ │ │ │ │ └── js │ │ │ │ │ └── example │ │ │ │ │ └── widgets │ │ │ │ │ ├── AjaxWidget.js │ │ │ │ │ ├── InputWidget.js │ │ │ │ │ ├── MyWidget.js │ │ │ │ │ ├── RenderWidget.js │ │ │ │ │ ├── TemplateWidget.js │ │ │ │ │ ├── _TopicsMixin.js │ │ │ │ │ ├── css │ │ │ │ │ ├── AjaxWidget.css │ │ │ │ │ └── TemplateWidget.css │ │ │ │ │ ├── i18n │ │ │ │ │ ├── AjaxWidget.properties │ │ │ │ │ ├── PubSub.properties │ │ │ │ │ └── TemplateWidget.properties │ │ │ │ │ └── templates │ │ │ │ │ ├── AjaxWidget.html │ │ │ │ │ ├── InputWidget.html │ │ │ │ │ ├── RenderWidget.html │ │ │ │ │ └── TemplateWidget.html │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── share-config-custom.xml │ │ └── test │ │ │ ├── properties │ │ │ └── local │ │ │ │ └── alfresco-global.properties │ │ │ └── resources │ │ │ └── log4j.properties │ └── tomcat │ │ └── context.xml └── tutorial │ ├── images │ ├── creativecommons-cc-by-sa.png │ ├── file-structure.png │ ├── part-one-simple-page-1.png │ ├── part-one-simple-page-2.png │ ├── part-one-simple-page-3.png │ ├── part-one-simple-page-4.png │ ├── part-three-header-1.png │ ├── part-three-header-2.png │ ├── part-two-advanced-page.png │ └── part-two-pub-sub.png │ ├── tutorial.html │ ├── tutorial.md │ └── tutorial.pdf └── tutorial-common ├── footer.html ├── gen.sh ├── header.html ├── style.css └── template.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/README.md -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/pom.xml -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-data/extensions/custom-header-extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-data/extensions/custom-header-extension.xml -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-data/extensions/widget-tutorial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-data/extensions/widget-tutorial.xml -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/header/share-header.get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/header/share-header.get.js -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/ajax-page.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/ajax-page.get.desc.xml -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/ajax-page.get.html.ftl: -------------------------------------------------------------------------------- 1 | <@processJsonModel group="share"/> 2 | -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/ajax-page.get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/ajax-page.get.js -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/custom-widget-page.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/custom-widget-page.get.desc.xml -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/custom-widget-page.get.html.ftl: -------------------------------------------------------------------------------- 1 | <@processJsonModel group="share"/> 2 | -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/custom-widget-page.get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/custom-widget-page.get.js -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/pub-sub.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/pub-sub.get.desc.xml -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/pub-sub.get.html.ftl: -------------------------------------------------------------------------------- 1 | <@processJsonModel group="share"/> 2 | -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/pub-sub.get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/pub-sub.get.js -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/simple-page.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/simple-page.get.desc.xml -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/simple-page.get.html.ftl: -------------------------------------------------------------------------------- 1 | <@processJsonModel group="share"/> 2 | -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/simple-page.get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/config/alfresco/web-extension/site-webscripts/com/example/pages/simple-page.get.js -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/file-mapping.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/file-mapping.properties -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/log4j.properties -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/module.properties -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/AjaxWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/AjaxWidget.js -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/InputWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/InputWidget.js -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/MyWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/MyWidget.js -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/RenderWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/RenderWidget.js -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/TemplateWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/TemplateWidget.js -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/_TopicsMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/_TopicsMixin.js -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/css/AjaxWidget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/css/AjaxWidget.css -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/css/TemplateWidget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/css/TemplateWidget.css -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/i18n/AjaxWidget.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/i18n/AjaxWidget.properties -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/i18n/PubSub.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/i18n/PubSub.properties -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/i18n/TemplateWidget.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/i18n/TemplateWidget.properties -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/templates/AjaxWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/templates/AjaxWidget.html -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/templates/InputWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/templates/InputWidget.html -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/templates/RenderWidget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/templates/RenderWidget.html -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/amp/web/js/example/widgets/templates/TemplateWidget.html: -------------------------------------------------------------------------------- 1 |
${greeting}
2 | -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/main/resources/META-INF/share-config-custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/main/resources/META-INF/share-config-custom.xml -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/test/properties/local/alfresco-global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/test/properties/local/alfresco-global.properties -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /aikau/aikau-tutorial-share/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/aikau-tutorial-share/tomcat/context.xml -------------------------------------------------------------------------------- /aikau/tutorial/images/creativecommons-cc-by-sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/tutorial/images/creativecommons-cc-by-sa.png -------------------------------------------------------------------------------- /aikau/tutorial/images/file-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/tutorial/images/file-structure.png -------------------------------------------------------------------------------- /aikau/tutorial/images/part-one-simple-page-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/tutorial/images/part-one-simple-page-1.png -------------------------------------------------------------------------------- /aikau/tutorial/images/part-one-simple-page-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/tutorial/images/part-one-simple-page-2.png -------------------------------------------------------------------------------- /aikau/tutorial/images/part-one-simple-page-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/tutorial/images/part-one-simple-page-3.png -------------------------------------------------------------------------------- /aikau/tutorial/images/part-one-simple-page-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/tutorial/images/part-one-simple-page-4.png -------------------------------------------------------------------------------- /aikau/tutorial/images/part-three-header-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/tutorial/images/part-three-header-1.png -------------------------------------------------------------------------------- /aikau/tutorial/images/part-three-header-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/tutorial/images/part-three-header-2.png -------------------------------------------------------------------------------- /aikau/tutorial/images/part-two-advanced-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/tutorial/images/part-two-advanced-page.png -------------------------------------------------------------------------------- /aikau/tutorial/images/part-two-pub-sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/tutorial/images/part-two-pub-sub.png -------------------------------------------------------------------------------- /aikau/tutorial/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/tutorial/tutorial.html -------------------------------------------------------------------------------- /aikau/tutorial/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/tutorial/tutorial.md -------------------------------------------------------------------------------- /aikau/tutorial/tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/aikau/tutorial/tutorial.pdf -------------------------------------------------------------------------------- /tutorial-common/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/tutorial-common/footer.html -------------------------------------------------------------------------------- /tutorial-common/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/tutorial-common/gen.sh -------------------------------------------------------------------------------- /tutorial-common/header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial-common/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/tutorial-common/style.css -------------------------------------------------------------------------------- /tutorial-common/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohej/alfresco-tutorials/HEAD/tutorial-common/template.html --------------------------------------------------------------------------------