├── .gitignore ├── AEM-SPA ├── externalspawitheditableareas │ ├── sample-react-spa │ │ ├── .env.development │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ └── src │ │ │ ├── App.css │ │ │ ├── App.js │ │ │ ├── App.test.js │ │ │ ├── components │ │ │ └── aem │ │ │ │ ├── AEMImage.js │ │ │ │ ├── AEMPage.js │ │ │ │ ├── AEMText.js │ │ │ │ └── AEMTitle.js │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ ├── logo.svg │ │ │ ├── reportWebVitals.js │ │ │ ├── setupProxy.js │ │ │ └── setupTests.js │ └── spaeditableareas │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── all │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ └── META-INF │ │ │ └── vault │ │ │ ├── definition │ │ │ └── .content.xml │ │ │ └── filter.xml │ │ ├── archetype.properties │ │ ├── core │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── spa │ │ │ │ └── editableareas │ │ │ │ └── core │ │ │ │ ├── filters │ │ │ │ ├── LoggingFilter.java │ │ │ │ └── package-info.java │ │ │ │ ├── listeners │ │ │ │ ├── SimpleResourceListener.java │ │ │ │ └── package-info.java │ │ │ │ ├── models │ │ │ │ ├── HelloWorldModel.java │ │ │ │ └── package-info.java │ │ │ │ ├── schedulers │ │ │ │ ├── SimpleScheduledTask.java │ │ │ │ └── package-info.java │ │ │ │ └── servlets │ │ │ │ ├── SimpleServlet.java │ │ │ │ └── package-info.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── spa │ │ │ └── editableareas │ │ │ └── core │ │ │ ├── filters │ │ │ └── LoggingFilterTest.java │ │ │ ├── listeners │ │ │ └── SimpleResourceListenerTest.java │ │ │ ├── models │ │ │ └── HelloWorldModelTest.java │ │ │ ├── schedulers │ │ │ └── SimpleScheduledTaskTest.java │ │ │ └── servlets │ │ │ └── SimpleServletTest.java │ │ ├── dispatcher │ │ ├── README.md │ │ ├── assembly.xml │ │ ├── pom.xml │ │ └── src │ │ │ ├── conf.d │ │ │ ├── available_vhosts │ │ │ │ └── default.vhost │ │ │ ├── dispatcher_vhost.conf │ │ │ ├── enabled_vhosts │ │ │ │ ├── README │ │ │ │ └── default.vhost │ │ │ ├── rewrites │ │ │ │ ├── default_rewrite.rules │ │ │ │ └── rewrite.rules │ │ │ └── variables │ │ │ │ ├── custom.vars │ │ │ │ └── global.vars │ │ │ ├── conf.dispatcher.d │ │ │ ├── available_farms │ │ │ │ └── default.farm │ │ │ ├── cache │ │ │ │ ├── default_invalidate.any │ │ │ │ ├── default_rules.any │ │ │ │ └── rules.any │ │ │ ├── clientheaders │ │ │ │ ├── clientheaders.any │ │ │ │ └── default_clientheaders.any │ │ │ ├── dispatcher.any │ │ │ ├── enabled_farms │ │ │ │ ├── README │ │ │ │ └── default.farm │ │ │ ├── filters │ │ │ │ ├── default_filters.any │ │ │ │ └── filters.any │ │ │ ├── renders │ │ │ │ └── default_renders.any │ │ │ └── virtualhosts │ │ │ │ ├── default_virtualhosts.any │ │ │ │ └── virtualhosts.any │ │ │ └── opt-in │ │ │ └── USE_SOURCES_DIRECTLY │ │ ├── it.tests │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── spa │ │ │ └── editableareas │ │ │ └── it │ │ │ └── tests │ │ │ ├── CreatePageIT.java │ │ │ ├── GetPageIT.java │ │ │ ├── HtmlUnitClient.java │ │ │ └── PublishPageValidationIT.java │ │ ├── pom.xml │ │ ├── ui.apps.structure │ │ └── pom.xml │ │ ├── ui.apps │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ │ └── jcr_root │ │ │ └── apps │ │ │ └── spaeditableareas │ │ │ ├── clientlibs │ │ │ ├── clientlib-base │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ ├── clientlib-dependencies │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ ├── clientlib-grid │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── less │ │ │ │ │ └── grid.less │ │ │ └── clientlib-site │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ ├── components │ │ │ ├── accordion │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ ├── _cq_template │ │ │ │ │ └── .content.xml │ │ │ │ └── new │ │ │ │ │ └── .content.xml │ │ │ ├── breadcrumb │ │ │ │ └── .content.xml │ │ │ ├── button │ │ │ │ └── .content.xml │ │ │ ├── carousel │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ └── new │ │ │ │ │ └── .content.xml │ │ │ ├── container │ │ │ │ ├── .content.xml │ │ │ │ └── new │ │ │ │ │ └── .content.xml │ │ │ ├── contentfragment │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── contentfragmentlist │ │ │ │ └── .content.xml │ │ │ ├── download │ │ │ │ └── .content.xml │ │ │ ├── embed │ │ │ │ └── .content.xml │ │ │ ├── experiencefragment │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── form │ │ │ │ ├── button │ │ │ │ │ └── .content.xml │ │ │ │ ├── container │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── new │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── hidden │ │ │ │ │ └── .content.xml │ │ │ │ ├── options │ │ │ │ │ └── .content.xml │ │ │ │ └── text │ │ │ │ │ └── .content.xml │ │ │ ├── helloworld │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ └── helloworld.html │ │ │ ├── image │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── languagenavigation │ │ │ │ └── .content.xml │ │ │ ├── list │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── navigation │ │ │ │ └── .content.xml │ │ │ ├── page │ │ │ │ ├── .content.xml │ │ │ │ ├── customfooterlibs.html │ │ │ │ └── customheaderlibs.html │ │ │ ├── pdfviewer │ │ │ │ └── .content.xml │ │ │ ├── progressbar │ │ │ │ └── .content.xml │ │ │ ├── remotepage │ │ │ │ └── .content.xml │ │ │ ├── remotepagenext │ │ │ │ └── .content.xml │ │ │ ├── search │ │ │ │ └── .content.xml │ │ │ ├── separator │ │ │ │ └── .content.xml │ │ │ ├── sharing │ │ │ │ └── .content.xml │ │ │ ├── spa │ │ │ │ └── .content.xml │ │ │ ├── tabs │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ ├── _cq_template │ │ │ │ │ └── .content.xml │ │ │ │ └── new │ │ │ │ │ └── .content.xml │ │ │ ├── teaser │ │ │ │ └── .content.xml │ │ │ ├── text │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── title │ │ │ │ └── .content.xml │ │ │ └── xfpage │ │ │ │ ├── .content.xml │ │ │ │ ├── body.html │ │ │ │ ├── customfooterlibs.html │ │ │ │ └── customheaderlibs.html │ │ │ └── i18n │ │ │ ├── .content.xml │ │ │ ├── fr.json │ │ │ └── fr.json.dir │ │ │ └── .content.xml │ │ ├── ui.config │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ │ └── jcr_root │ │ │ └── apps │ │ │ └── spaeditableareas │ │ │ └── osgiconfig │ │ │ ├── config.author │ │ │ ├── com.adobe.granite.cors.impl.CORSPolicyImpl~spaeditableareas.cfg.json │ │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider~spaeditableareas.cfg.json │ │ │ ├── config.publish │ │ │ └── org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.cfg.json │ │ │ └── config │ │ │ ├── org.apache.sling.commons.log.LogManager.factory.config~spaeditableareas.cfg.json │ │ │ ├── org.apache.sling.jcr.repoinit.RepositoryInitializer-spaeditableareas.config │ │ │ └── org.apache.sling.jcr.repoinit.RepositoryInitializer~spaeditableareas.cfg.json │ │ ├── ui.content │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ │ └── jcr_root │ │ │ ├── conf │ │ │ └── spaeditableareas │ │ │ │ ├── .content.xml │ │ │ │ ├── _sling_configs │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ │ └── settings │ │ │ │ ├── .content.xml │ │ │ │ ├── cloudconfigs │ │ │ │ └── .content.xml │ │ │ │ ├── dam │ │ │ │ ├── .content.xml │ │ │ │ └── cfm │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── models │ │ │ │ │ └── .content.xml │ │ │ │ └── wcm │ │ │ │ ├── .content.xml │ │ │ │ ├── policies │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ │ ├── segments │ │ │ │ ├── .content.xml │ │ │ │ ├── summer │ │ │ │ │ └── .content.xml │ │ │ │ └── winter │ │ │ │ │ └── .content.xml │ │ │ │ ├── template-types │ │ │ │ ├── .content.xml │ │ │ │ ├── _rep_policy.xml │ │ │ │ ├── nextjs-page │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── initial │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── policies │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── structure │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── remote-page │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── initial │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── policies │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── structure │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── spa-app │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── initial │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── policies │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── structure │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── thumbnail.png │ │ │ │ ├── spa-page │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── initial │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── policies │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── structure │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── thumbnail.png │ │ │ │ └── xf │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ │ └── thumbnail.png │ │ │ │ └── templates │ │ │ │ ├── .content.xml │ │ │ │ ├── _rep_policy.xml │ │ │ │ ├── spa-app-template │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ └── .content.xml │ │ │ │ ├── spa-next-remote-page │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ └── thumbnail.png │ │ │ │ ├── spa-page-template │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ └── .content.xml │ │ │ │ ├── spa-remote-page │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ │ └── xf-web-variation │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ └── .content.xml │ │ │ └── content │ │ │ ├── dam │ │ │ └── spaeditableareas │ │ │ │ ├── .content.xml │ │ │ │ ├── _jcr_content │ │ │ │ └── folderThumbnail │ │ │ │ └── asset.jpg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ │ ├── cq5dam.web.1280.1280.jpeg │ │ │ │ ├── original │ │ │ │ └── original.dir │ │ │ │ └── .content.xml │ │ │ ├── experience-fragments │ │ │ └── spaeditableareas │ │ │ │ ├── .content.xml │ │ │ │ └── us │ │ │ │ ├── .content.xml │ │ │ │ └── en │ │ │ │ ├── .content.xml │ │ │ │ └── site │ │ │ │ ├── .content.xml │ │ │ │ ├── footer │ │ │ │ ├── .content.xml │ │ │ │ └── master │ │ │ │ │ └── .content.xml │ │ │ │ └── header │ │ │ │ ├── .content.xml │ │ │ │ └── master │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── root │ │ │ │ └── logo │ │ │ │ └── logo.svg │ │ │ └── spaeditableareas │ │ │ ├── .content.xml │ │ │ ├── _jcr_content │ │ │ └── image │ │ │ │ ├── file │ │ │ │ └── file.dir │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── _dam_thumbnails │ │ │ │ ├── _dam_thumbnail_48.png │ │ │ │ └── _dam_thumbnail_480.png │ │ │ └── us │ │ │ ├── .content.xml │ │ │ └── en │ │ │ ├── .content.xml │ │ │ └── home │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── root │ │ │ └── responsivegrid │ │ │ └── image │ │ │ ├── file │ │ │ └── file.dir │ │ │ └── .content.xml │ │ └── ui.tests │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── assembly-ui-test-docker-context.xml │ │ ├── docker-compose-wdio-chrome.yaml │ │ ├── docker-compose-wdio-firefox.yaml │ │ ├── pom.xml │ │ ├── test-module │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ │ └── image.png │ │ ├── lib │ │ │ ├── commons.js │ │ │ ├── config.js │ │ │ └── wdio.commands.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── specs │ │ │ └── aem │ │ │ │ ├── assets.js │ │ │ │ ├── basic.js │ │ │ │ ├── login.js │ │ │ │ └── sites.js │ │ ├── wdio.conf.cloud.js │ │ ├── wdio.conf.commons.js │ │ └── wdio.conf.local.js │ │ └── wait-for-grid.sh ├── headlessspa │ ├── aem-spa-headless │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── all │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── content │ │ │ │ └── META-INF │ │ │ │ └── vault │ │ │ │ ├── definition │ │ │ │ └── .content.xml │ │ │ │ └── filter.xml │ │ ├── archetype.properties │ │ ├── core │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── adobe │ │ │ │ │ └── aem │ │ │ │ │ └── spa │ │ │ │ │ └── core │ │ │ │ │ ├── filters │ │ │ │ │ ├── LoggingFilter.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── listeners │ │ │ │ │ ├── SimpleResourceListener.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── models │ │ │ │ │ ├── HelloWorldModel.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── schedulers │ │ │ │ │ ├── SimpleScheduledTask.java │ │ │ │ │ └── package-info.java │ │ │ │ │ └── servlets │ │ │ │ │ ├── SimpleServlet.java │ │ │ │ │ └── package-info.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── adobe │ │ │ │ └── aem │ │ │ │ └── spa │ │ │ │ └── core │ │ │ │ ├── filters │ │ │ │ └── LoggingFilterTest.java │ │ │ │ ├── listeners │ │ │ │ └── SimpleResourceListenerTest.java │ │ │ │ ├── models │ │ │ │ └── HelloWorldModelTest.java │ │ │ │ ├── schedulers │ │ │ │ └── SimpleScheduledTaskTest.java │ │ │ │ └── servlets │ │ │ │ └── SimpleServletTest.java │ │ ├── pom.xml │ │ ├── ui.apps.structure │ │ │ └── pom.xml │ │ ├── ui.apps │ │ │ ├── .gitignore │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── content │ │ │ │ ├── META-INF │ │ │ │ └── vault │ │ │ │ │ └── filter.xml │ │ │ │ └── jcr_root │ │ │ │ └── apps │ │ │ │ ├── .content.xml │ │ │ │ └── aemspaheadless │ │ │ │ ├── clientlibs │ │ │ │ ├── clientlib-base │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── css.txt │ │ │ │ │ └── js.txt │ │ │ │ └── clientlib-grid │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── css.txt │ │ │ │ │ └── less │ │ │ │ │ └── grid.less │ │ │ │ ├── components │ │ │ │ ├── accordion │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ │ └── _cq_template │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── breadcrumb │ │ │ │ │ └── .content.xml │ │ │ │ ├── button │ │ │ │ │ └── .content.xml │ │ │ │ ├── carousel │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ ├── container │ │ │ │ │ └── .content.xml │ │ │ │ ├── contentfragment │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ ├── contentfragmentlist │ │ │ │ │ └── .content.xml │ │ │ │ ├── download │ │ │ │ │ └── .content.xml │ │ │ │ ├── embed │ │ │ │ │ └── .content.xml │ │ │ │ ├── experiencefragment │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ ├── form │ │ │ │ │ ├── button │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── container │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── new │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── hidden │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── options │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── text │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── helloworld │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── helloworld.html │ │ │ │ ├── image │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ ├── languagenavigation │ │ │ │ │ └── .content.xml │ │ │ │ ├── list │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ ├── navigation │ │ │ │ │ └── .content.xml │ │ │ │ ├── page │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── customfooterlibs.html │ │ │ │ │ └── customheaderlibs.html │ │ │ │ ├── pdfviewer │ │ │ │ │ └── .content.xml │ │ │ │ ├── progressbar │ │ │ │ │ └── .content.xml │ │ │ │ ├── search │ │ │ │ │ └── .content.xml │ │ │ │ ├── separator │ │ │ │ │ └── .content.xml │ │ │ │ ├── sharing │ │ │ │ │ └── .content.xml │ │ │ │ ├── spa │ │ │ │ │ └── .content.xml │ │ │ │ ├── tabs │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ │ └── _cq_template │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── teaser │ │ │ │ │ └── .content.xml │ │ │ │ ├── text │ │ │ │ │ └── .content.xml │ │ │ │ ├── title │ │ │ │ │ └── .content.xml │ │ │ │ └── xfpage │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── content.html │ │ │ │ │ ├── customfooterlibs.html │ │ │ │ │ └── customheaderlibs.html │ │ │ │ └── i18n │ │ │ │ ├── .content.xml │ │ │ │ ├── fr.json │ │ │ │ └── fr.json.dir │ │ │ │ └── .content.xml │ │ ├── ui.config │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── content │ │ │ │ ├── META-INF │ │ │ │ └── vault │ │ │ │ │ └── filter.xml │ │ │ │ └── jcr_root │ │ │ │ └── apps │ │ │ │ └── aemspaheadless │ │ │ │ └── osgiconfig │ │ │ │ ├── config.author │ │ │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider~aemspaheadless.cfg.json │ │ │ │ ├── config.prod │ │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config~aemspaheadless.cfg.json │ │ │ │ ├── config.publish │ │ │ │ └── org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.cfg.json │ │ │ │ ├── config.stage │ │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config~aemspaheadless.cfg.json │ │ │ │ └── config │ │ │ │ ├── com.adobe.granite.cors.impl.CORSPolicyImpl~aemspaheadless.cfg.json │ │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config~aemspaheadless.cfg.json │ │ └── ui.content │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ │ └── jcr_root │ │ │ ├── conf │ │ │ ├── .content.xml │ │ │ └── global │ │ │ │ ├── .content.xml │ │ │ │ ├── frontend │ │ │ │ ├── .content.xml │ │ │ │ └── deployments │ │ │ │ │ └── .content.xml │ │ │ │ ├── settings │ │ │ │ ├── .content.xml │ │ │ │ ├── dam │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── cfm │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── models │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ └── sampledata │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── remotedam │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── localsites │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── graphql │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── persistentQueries │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── inbox │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _rep_policy.xml │ │ │ │ ├── stock │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _rep_policy.xml │ │ │ │ └── workflow │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── _rep_policy.xml │ │ │ │ │ ├── launcher │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── config │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── models │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _rep_policy.xml │ │ │ │ └── site-templates │ │ │ │ └── .content.xml │ │ │ └── content │ │ │ ├── _cq_graphql │ │ │ ├── .content.xml │ │ │ └── global │ │ │ │ ├── .content.xml │ │ │ │ └── endpoint │ │ │ │ └── .content.xml │ │ │ └── dam │ │ │ ├── .content.xml │ │ │ └── sampledata │ │ │ └── .content.xml │ └── spa-react │ │ ├── .env.development │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── api │ │ └── useGraphQL.js │ │ ├── components │ │ ├── Error.js │ │ ├── Loading.js │ │ └── SampleData.js │ │ ├── images │ │ ├── icon-close.svg │ │ └── icon-loading.svg │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js └── ssr │ └── spassr │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── all │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ └── META-INF │ │ └── vault │ │ ├── definition │ │ └── .content.xml │ │ └── filter.xml │ ├── archetype.properties │ ├── core │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── spa │ │ │ └── ssr │ │ │ └── core │ │ │ ├── filters │ │ │ ├── LoggingFilter.java │ │ │ └── package-info.java │ │ │ ├── listeners │ │ │ ├── SimpleResourceListener.java │ │ │ └── package-info.java │ │ │ ├── models │ │ │ ├── HelloWorldModel.java │ │ │ └── package-info.java │ │ │ ├── schedulers │ │ │ ├── SimpleScheduledTask.java │ │ │ └── package-info.java │ │ │ └── servlets │ │ │ ├── SimpleServlet.java │ │ │ └── package-info.java │ │ └── test │ │ └── java │ │ └── com │ │ └── spa │ │ └── ssr │ │ └── core │ │ ├── filters │ │ └── LoggingFilterTest.java │ │ ├── listeners │ │ └── SimpleResourceListenerTest.java │ │ ├── models │ │ └── HelloWorldModelTest.java │ │ ├── schedulers │ │ └── SimpleScheduledTaskTest.java │ │ └── servlets │ │ └── SimpleServletTest.java │ ├── dispatcher │ ├── README.md │ ├── assembly.xml │ ├── pom.xml │ └── src │ │ ├── conf.d │ │ ├── available_vhosts │ │ │ └── default.vhost │ │ ├── dispatcher_vhost.conf │ │ ├── enabled_vhosts │ │ │ ├── README │ │ │ └── default.vhost │ │ ├── rewrites │ │ │ ├── default_rewrite.rules │ │ │ └── rewrite.rules │ │ └── variables │ │ │ ├── custom.vars │ │ │ └── global.vars │ │ ├── conf.dispatcher.d │ │ ├── available_farms │ │ │ └── default.farm │ │ ├── cache │ │ │ ├── default_invalidate.any │ │ │ ├── default_rules.any │ │ │ └── rules.any │ │ ├── clientheaders │ │ │ ├── clientheaders.any │ │ │ └── default_clientheaders.any │ │ ├── dispatcher.any │ │ ├── enabled_farms │ │ │ ├── README │ │ │ └── default.farm │ │ ├── filters │ │ │ ├── default_filters.any │ │ │ └── filters.any │ │ ├── renders │ │ │ └── default_renders.any │ │ └── virtualhosts │ │ │ ├── default_virtualhosts.any │ │ │ └── virtualhosts.any │ │ └── opt-in │ │ └── USE_SOURCES_DIRECTLY │ ├── it.tests │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── spa │ │ └── ssr │ │ └── it │ │ └── tests │ │ ├── CreatePageIT.java │ │ ├── GetPageIT.java │ │ ├── HtmlUnitClient.java │ │ └── PublishPageValidationIT.java │ ├── pom.xml │ ├── ui.apps.structure │ └── pom.xml │ ├── ui.apps │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ └── apps │ │ └── spassr │ │ ├── clientlibs │ │ ├── clientlib-base │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── js.txt │ │ ├── clientlib-dependencies │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── js.txt │ │ ├── clientlib-grid │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── less │ │ │ │ └── grid.less │ │ └── clientlib-site │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── js.txt │ │ ├── components │ │ ├── accordion │ │ │ ├── .content.xml │ │ │ ├── _cq_editConfig.xml │ │ │ ├── _cq_template │ │ │ │ └── .content.xml │ │ │ └── new │ │ │ │ └── .content.xml │ │ ├── breadcrumb │ │ │ └── .content.xml │ │ ├── button │ │ │ └── .content.xml │ │ ├── carousel │ │ │ ├── .content.xml │ │ │ ├── _cq_editConfig.xml │ │ │ └── new │ │ │ │ └── .content.xml │ │ ├── container │ │ │ ├── .content.xml │ │ │ └── new │ │ │ │ └── .content.xml │ │ ├── contentfragment │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── contentfragmentlist │ │ │ └── .content.xml │ │ ├── download │ │ │ └── .content.xml │ │ ├── embed │ │ │ └── .content.xml │ │ ├── experiencefragment │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── form │ │ │ ├── button │ │ │ │ └── .content.xml │ │ │ ├── container │ │ │ │ ├── .content.xml │ │ │ │ └── new │ │ │ │ │ └── .content.xml │ │ │ ├── hidden │ │ │ │ └── .content.xml │ │ │ ├── options │ │ │ │ └── .content.xml │ │ │ └── text │ │ │ │ └── .content.xml │ │ ├── helloworld │ │ │ ├── .content.xml │ │ │ ├── _cq_dialog │ │ │ │ └── .content.xml │ │ │ └── helloworld.html │ │ ├── image │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── languagenavigation │ │ │ └── .content.xml │ │ ├── list │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── navigation │ │ │ └── .content.xml │ │ ├── page │ │ │ ├── .content.xml │ │ │ ├── body.html │ │ │ ├── customfooterlibs.html │ │ │ └── customheaderlibs.html │ │ ├── pdfviewer │ │ │ └── .content.xml │ │ ├── progressbar │ │ │ └── .content.xml │ │ ├── remotepage │ │ │ └── .content.xml │ │ ├── remotepagenext │ │ │ └── .content.xml │ │ ├── search │ │ │ └── .content.xml │ │ ├── separator │ │ │ └── .content.xml │ │ ├── sharing │ │ │ └── .content.xml │ │ ├── spa │ │ │ └── .content.xml │ │ ├── tabs │ │ │ ├── .content.xml │ │ │ ├── _cq_editConfig.xml │ │ │ ├── _cq_template │ │ │ │ └── .content.xml │ │ │ └── new │ │ │ │ └── .content.xml │ │ ├── teaser │ │ │ └── .content.xml │ │ ├── text │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── title │ │ │ └── .content.xml │ │ └── xfpage │ │ │ ├── .content.xml │ │ │ ├── body.html │ │ │ ├── customfooterlibs.html │ │ │ └── customheaderlibs.html │ │ └── i18n │ │ ├── .content.xml │ │ ├── fr.json │ │ └── fr.json.dir │ │ └── .content.xml │ ├── ui.config │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ └── apps │ │ └── spassr │ │ └── osgiconfig │ │ ├── config.author │ │ ├── com.adobe.granite.cors.impl.CORSPolicyImpl~spassr.cfg.json │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider~spassr.cfg.json │ │ ├── config.publish │ │ └── org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.cfg.json │ │ └── config │ │ ├── com.adobe.cq.remote.content.renderer.impl.factory.ConfigurationFactoryImpl~spassr.cfg.json │ │ ├── org.apache.sling.commons.log.LogManager.factory.config~spassr.cfg.json │ │ ├── org.apache.sling.jcr.repoinit.RepositoryInitializer-spassr.config │ │ └── org.apache.sling.jcr.repoinit.RepositoryInitializer~spassr.cfg.json │ ├── ui.content │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ ├── conf │ │ └── spassr │ │ │ ├── .content.xml │ │ │ ├── _sling_configs │ │ │ ├── .content.xml │ │ │ └── _rep_policy.xml │ │ │ └── settings │ │ │ ├── .content.xml │ │ │ ├── cloudconfigs │ │ │ └── .content.xml │ │ │ ├── dam │ │ │ └── .content.xml │ │ │ └── wcm │ │ │ ├── .content.xml │ │ │ ├── policies │ │ │ ├── .content.xml │ │ │ └── _rep_policy.xml │ │ │ ├── segments │ │ │ ├── .content.xml │ │ │ ├── summer │ │ │ │ └── .content.xml │ │ │ └── winter │ │ │ │ └── .content.xml │ │ │ ├── template-types │ │ │ ├── .content.xml │ │ │ ├── _rep_policy.xml │ │ │ ├── nextjs-page │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ └── thumbnail.png │ │ │ ├── remote-page │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ └── thumbnail.png │ │ │ ├── spa-app │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ └── thumbnail.png │ │ │ ├── spa-page │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ └── thumbnail.png │ │ │ └── xf │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ │ └── thumbnail.png │ │ │ └── templates │ │ │ ├── .content.xml │ │ │ ├── _rep_policy.xml │ │ │ ├── spa-app-template │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ └── thumbnail.png │ │ │ ├── spa-next-remote-page │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ └── thumbnail.png │ │ │ ├── spa-page-template │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ └── thumbnail.png │ │ │ ├── spa-remote-page │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ └── thumbnail.png │ │ │ └── xf-web-variation │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ └── .content.xml │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.png.dir │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── _dam_thumbnails │ │ │ ├── _dam_thumbnail_128.png │ │ │ └── _dam_thumbnail_319.png │ │ └── content │ │ ├── dam │ │ └── spassr │ │ │ ├── .content.xml │ │ │ ├── _jcr_content │ │ │ └── folderThumbnail │ │ │ └── asset.jpg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ ├── cq5dam.web.1280.1280.jpeg │ │ │ ├── original │ │ │ └── original.dir │ │ │ └── .content.xml │ │ ├── experience-fragments │ │ └── spassr │ │ │ ├── .content.xml │ │ │ └── us │ │ │ ├── .content.xml │ │ │ └── en │ │ │ ├── .content.xml │ │ │ └── site │ │ │ ├── .content.xml │ │ │ ├── footer │ │ │ ├── .content.xml │ │ │ └── master │ │ │ │ └── .content.xml │ │ │ └── header │ │ │ ├── .content.xml │ │ │ └── master │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── root │ │ │ └── logo │ │ │ └── logo.svg │ │ └── spassr │ │ ├── .content.xml │ │ ├── _jcr_content │ │ └── image │ │ │ ├── file │ │ │ └── file.dir │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── _dam_thumbnails │ │ │ ├── _dam_thumbnail_48.png │ │ │ └── _dam_thumbnail_480.png │ │ └── us │ │ ├── .content.xml │ │ └── en │ │ ├── .content.xml │ │ └── home │ │ └── .content.xml │ ├── ui.frontend │ ├── .env │ ├── .env.development │ ├── README.md │ ├── actions │ │ ├── common │ │ │ └── app.js │ │ └── ssr │ │ │ └── index.js │ ├── assembly.xml │ ├── clientlib.config.js │ ├── manifest.yml │ ├── package-lock.json │ ├── package.json │ ├── pom.xml │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ └── manifest.json │ ├── scripts │ │ └── postWebhook.js │ ├── src │ │ ├── App.js │ │ ├── App.test.js │ │ ├── LocalDevModelClient.js │ │ ├── components │ │ │ ├── Container │ │ │ │ └── Container.js │ │ │ ├── ExperienceFragment │ │ │ │ └── ExperienceFragment.js │ │ │ ├── Page │ │ │ │ ├── Page.css │ │ │ │ ├── Page.js │ │ │ │ └── Page.test.js │ │ │ ├── RouteHelper │ │ │ │ ├── RouteHelper.js │ │ │ │ └── RouteHelper.test.js │ │ │ ├── Text │ │ │ │ ├── Text.css │ │ │ │ ├── Text.js │ │ │ │ └── Text.test.js │ │ │ ├── import-components.js │ │ │ └── sanitize-html.whitelist.js │ │ ├── index.css │ │ ├── index.js │ │ ├── server │ │ │ ├── aem-processor.functions.js │ │ │ ├── aem-processor.js │ │ │ ├── bootstrap.js │ │ │ └── express.js │ │ ├── setupTests.js │ │ └── utils │ │ │ ├── extract-model-id.js │ │ │ ├── extract-model-id.test.js │ │ │ └── withAsyncImport.js │ ├── utils │ │ └── entrypoints.js │ ├── webpack.config.adobeio.js │ └── webpack.config.express.js │ └── ui.tests │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── assembly-ui-test-docker-context.xml │ ├── docker-compose-wdio-chrome.yaml │ ├── docker-compose-wdio-firefox.yaml │ ├── pom.xml │ ├── test-module │ ├── .eslintrc.js │ ├── README.md │ ├── assets │ │ └── image.png │ ├── lib │ │ ├── commons.js │ │ ├── config.js │ │ └── wdio.commands.js │ ├── package-lock.json │ ├── package.json │ ├── specs │ │ └── aem │ │ │ ├── assets.js │ │ │ ├── basic.js │ │ │ ├── login.js │ │ │ └── sites.js │ ├── wdio.conf.cloud.js │ ├── wdio.conf.commons.js │ └── wdio.conf.local.js │ └── wait-for-grid.sh ├── API └── grapghql-schema-stitching │ ├── graphql-gateway │ ├── .vscode │ │ └── launch.json │ ├── README.md │ ├── index.js │ ├── package-lock.json │ └── package.json │ ├── local-graphql-service │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── index.js │ └── local-rest-service │ ├── README.md │ ├── index.js │ ├── package-lock.json │ └── package.json ├── AntiSamyDemo ├── .classpath ├── .project ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ └── org.eclipse.wst.jsdt.ui.superType.name ├── WebContent │ ├── META-INF │ │ └── MANIFEST.MF │ └── WEB-INF │ │ └── lib │ │ ├── antisamy-1.5.10.jar │ │ ├── batik-css-1.7.jar │ │ ├── javax.servlet-api-4.0.1.jar │ │ ├── nekohtml-1.9.21.jar │ │ └── xercesImpl-2.12.0.jar ├── build │ └── classes │ │ └── antisamy │ │ ├── AntiSamyDemoServlet.class │ │ └── antisamy-slashdot.xml └── src │ └── antisamy │ ├── AntiSamyDemoServlet.java │ └── antisamy-slashdot.xml ├── CORS └── index.html ├── DeepLearning └── djl.examples │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.apt.core.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── build │ └── output │ │ └── detected-objects.png │ ├── pom.xml │ ├── src │ ├── main │ │ └── java │ │ │ └── djl │ │ │ └── examples │ │ │ └── mxnet │ │ │ └── inference │ │ │ └── ObjectDetection.java │ └── test │ │ └── resources │ │ ├── car.jpg │ │ ├── dog_bike_car.jpg │ │ └── dogs.jpg │ └── target │ ├── classes │ └── djl │ │ └── examples │ │ └── mxnet │ │ └── inference │ │ └── ObjectDetection.class │ └── test-classes │ ├── car.jpg │ ├── dog_bike_car.jpg │ └── dogs.jpg ├── Google-Privacy-Sandbox ├── CHIPS │ ├── README.md │ ├── app.js │ ├── embed-indexsitea.html │ ├── embed-indexsiteb.html │ ├── embed-sitea.js │ ├── embed-siteb.js │ ├── package-lock.json │ ├── package.json │ ├── sitea-index.html │ ├── siteb-index.html │ └── sslcert │ │ ├── server.crt │ │ └── server.key └── storage-access-api │ ├── README.md │ ├── app.js │ ├── embed-index.html │ ├── embed.js │ ├── package-lock.json │ ├── package.json │ ├── readCookieScript.js │ ├── readCookieScriptSimple.js │ ├── setCookieScript.js │ ├── simpleCookies.html │ ├── sitea-index.html │ ├── siteb-index.html │ ├── sslcert │ ├── server.crt │ └── server.key │ └── storageAccessAPI.html ├── MongoDBAtlasClient.java ├── Python └── Recommendation_System │ ├── README.md │ ├── app.py │ ├── checkfaissIndex.py │ ├── content_id_map.json │ ├── db.py │ ├── fetch_content.py │ └── requirements.txt ├── README.md ├── Redirect_Tester.xlsm ├── SameSiteCookieAttributes.java ├── WAF.txt ├── active-directory-b2c ├── oauth │ ├── azureadb2c-oauth-provider │ │ ├── .gitignore │ │ ├── README.MD │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── core │ │ │ └── oauth │ │ │ └── provider │ │ │ └── azureadb2c │ │ │ ├── AzureADB2COAuth2Api.java │ │ │ ├── AzureADB2COAuth2ProviderImpl.java │ │ │ ├── AzureADB2COAuthLogoutHandler.java │ │ │ ├── AzureADB2COauth2ServiceImpl.java │ │ │ ├── AzureADB2COauth2TokenExtracter.java │ │ │ ├── conf │ │ │ └── AzureADB2CConfiguration.java │ │ │ ├── filters │ │ │ └── AzureADB2COauthProfileEditFilter.java │ │ │ ├── models │ │ │ ├── AzureADB2CConfig.java │ │ │ └── OAuthTokenModel.java │ │ │ └── utils │ │ │ ├── AzureADB2COAuth2ProviderUtils.java │ │ │ └── Constants.java │ └── b2c-policies │ │ ├── ProfileEdit.xml │ │ ├── SignUpOrSignin.xml │ │ ├── TrustFrameworkBase.xml │ │ ├── TrustFrameworkExtensions.xml │ │ └── TrustFrameworkLocalization.xml └── saml │ ├── aem-filter │ ├── SAMLProfileEditFilter.java │ └── readme.md │ └── b2c-polices │ ├── ProfileEdit.xml │ ├── SignUpOrSigninSAML.xml │ ├── TrustFrameworkBase.xml │ ├── TrustFrameworkExtensions.xml │ ├── TrustFrameworkLocalization.xml │ └── readme.md ├── address-locator ├── grocery.png ├── index.html ├── locations.json ├── locator.js ├── retailer.png └── style.css ├── aem-qulaity-project ├── .gitignore ├── README.md ├── all │ ├── pom.xml │ └── src │ │ └── main │ │ ├── content │ │ └── META-INF │ │ │ └── vault │ │ │ ├── definition │ │ │ └── .content.xml │ │ │ └── filter.xml │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF ├── core │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── sample │ │ │ └── core │ │ │ ├── filters │ │ │ ├── LoggingFilter.java │ │ │ └── package-info.java │ │ │ ├── listeners │ │ │ ├── SimpleResourceListener.java │ │ │ └── package-info.java │ │ │ ├── models │ │ │ ├── HelloWorldModel.java │ │ │ └── package-info.java │ │ │ ├── schedulers │ │ │ ├── SimpleScheduledTask.java │ │ │ └── package-info.java │ │ │ └── servlets │ │ │ ├── SimpleServlet.java │ │ │ └── package-info.java │ │ └── test │ │ └── java │ │ └── com │ │ └── sample │ │ └── core │ │ ├── filters │ │ └── LoggingFilterTest.java │ │ ├── listeners │ │ └── SimpleResourceListenerTest.java │ │ ├── models │ │ └── HelloWorldModelTest.java │ │ ├── schedulers │ │ └── SimpleScheduledTaskTest.java │ │ └── servlets │ │ └── SimpleServletTest.java ├── dispatcher │ ├── README.md │ ├── assembly.xml │ ├── pom.xml │ └── src │ │ ├── conf.d │ │ ├── README │ │ ├── autoindex.conf │ │ ├── available_vhosts │ │ │ ├── 000_unhealthy_author.vhost │ │ │ ├── 000_unhealthy_publish.vhost │ │ │ ├── aem_author.vhost │ │ │ ├── aem_flush.vhost │ │ │ ├── aem_health.vhost │ │ │ ├── aem_lc.vhost │ │ │ ├── aem_publish.vhost │ │ │ └── sample_publish.vhost │ │ ├── dispatcher_vhost.conf │ │ ├── enabled_vhosts │ │ │ ├── aem_author.vhost │ │ │ ├── aem_flush.vhost │ │ │ ├── aem_health.vhost │ │ │ └── sample_publish.vhost │ │ ├── logformat.conf │ │ ├── remoteip.conf │ │ ├── rewrites │ │ │ ├── base_rewrite.rules │ │ │ ├── sample_rewrite.rules │ │ │ └── xforwarded_forcessl_rewrite.rules │ │ ├── security.conf │ │ ├── userdir.conf │ │ ├── variables │ │ │ └── ams_default.vars │ │ ├── welcome.conf │ │ └── whitelists │ │ │ └── 000_base_whitelist.rules │ │ ├── conf.dispatcher.d │ │ ├── available_farms │ │ │ ├── 000_ams_author_farm.any │ │ │ ├── 001_ams_lc_farm.any │ │ │ └── 999_ams_publish_farm.any │ │ ├── cache │ │ │ ├── ams_author_cache.any │ │ │ ├── ams_author_invalidate_allowed.any │ │ │ ├── ams_publish_cache.any │ │ │ └── ams_publish_invalidate_allowed.any │ │ ├── clientheaders │ │ │ ├── ams_author_clientheaders.any │ │ │ ├── ams_common_clientheaders.any │ │ │ ├── ams_lc_clientheaders.any │ │ │ └── ams_publish_clientheaders.any │ │ ├── dispatcher.any │ │ ├── enabled_farms │ │ │ ├── 000_ams_author_farm.any │ │ │ └── 999_ams_publish_farm.any │ │ ├── filters │ │ │ ├── ams_author_filters.any │ │ │ ├── ams_lc_filters.any │ │ │ └── ams_publish_filters.any │ │ ├── renders │ │ │ ├── ams_author_renders.any │ │ │ ├── ams_lc_renders.any │ │ │ └── ams_publish_renders.any │ │ └── vhosts │ │ │ ├── ams_author_vhosts.any │ │ │ ├── ams_lc_vhosts.any │ │ │ └── ams_publish_vhosts.any │ │ ├── conf.modules.d │ │ ├── 00-base.conf │ │ ├── 00-dav.conf │ │ ├── 00-lua.conf │ │ ├── 00-mpm.conf │ │ ├── 00-proxy.conf │ │ ├── 00-systemd.conf │ │ ├── 01-cgi.conf │ │ └── 02-dispatcher.conf │ │ └── conf │ │ ├── httpd.conf │ │ └── magic ├── it.launcher │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── sample │ │ │ └── it │ │ │ └── launcher │ │ │ └── package-info.java │ │ └── test │ │ └── java │ │ └── com │ │ └── sample │ │ └── it │ │ └── launcher │ │ ├── SlingServerSideTest.java │ │ └── SlingServerSideTestsBase.java ├── it.tests │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── sample │ │ └── it │ │ └── tests │ │ ├── HelloWorldModelServerSideTest.java │ │ └── package-info.java ├── pom.xml ├── ui.apps.structure │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF ├── ui.apps │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── content │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ └── jcr_root │ │ │ └── apps │ │ │ ├── .content.xml │ │ │ └── sample │ │ │ ├── clientlibs │ │ │ ├── clientlib-base │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ ├── clientlib-dependencies │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ ├── clientlib-grid │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── less │ │ │ │ │ └── grid.less │ │ │ └── clientlib-site │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ ├── components │ │ │ ├── accordion │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ └── _cq_template │ │ │ │ │ └── .content.xml │ │ │ ├── breadcrumb │ │ │ │ └── .content.xml │ │ │ ├── button │ │ │ │ └── .content.xml │ │ │ ├── carousel │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── container │ │ │ │ └── .content.xml │ │ │ ├── contentfragment │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── contentfragmentlist │ │ │ │ └── .content.xml │ │ │ ├── download │ │ │ │ └── .content.xml │ │ │ ├── embed │ │ │ │ └── .content.xml │ │ │ ├── experiencefragment │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── form │ │ │ │ ├── button │ │ │ │ │ └── .content.xml │ │ │ │ ├── container │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── new │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── hidden │ │ │ │ │ └── .content.xml │ │ │ │ ├── options │ │ │ │ │ └── .content.xml │ │ │ │ └── text │ │ │ │ │ └── .content.xml │ │ │ ├── helloworld │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ └── helloworld.html │ │ │ ├── image │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── languagenavigation │ │ │ │ └── .content.xml │ │ │ ├── list │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── navigation │ │ │ │ └── .content.xml │ │ │ ├── page │ │ │ │ ├── .content.xml │ │ │ │ ├── customfooterlibs.html │ │ │ │ └── customheaderlibs.html │ │ │ ├── search │ │ │ │ └── .content.xml │ │ │ ├── separator │ │ │ │ └── .content.xml │ │ │ ├── sharing │ │ │ │ └── .content.xml │ │ │ ├── spa │ │ │ │ └── .content.xml │ │ │ ├── tabs │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ └── _cq_template │ │ │ │ │ └── .content.xml │ │ │ ├── teaser │ │ │ │ └── .content.xml │ │ │ ├── text │ │ │ │ └── .content.xml │ │ │ ├── title │ │ │ │ └── .content.xml │ │ │ └── xfpage │ │ │ │ ├── .content.xml │ │ │ │ ├── content.html │ │ │ │ ├── customfooterlibs.html │ │ │ │ └── customheaderlibs.html │ │ │ ├── config.author │ │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider-sample.xml │ │ │ ├── config.prod │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config-sample.xml │ │ │ ├── config.publish │ │ │ └── org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.xml │ │ │ ├── config.stage │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config-sample.xml │ │ │ ├── config │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config-sample.xml │ │ │ ├── i18n │ │ │ ├── .content.xml │ │ │ ├── fr.json │ │ │ └── fr.json.dir │ │ │ │ └── .content.xml │ │ │ ├── templates │ │ │ ├── page-content │ │ │ │ └── .content.xml │ │ │ └── page-home │ │ │ │ └── .content.xml │ │ │ └── tests │ │ │ ├── .content.xml │ │ │ ├── SampleTests.js │ │ │ └── js.txt │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF └── ui.content │ ├── pom.xml │ └── src │ └── main │ ├── content │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ └── jcr_root │ │ ├── conf │ │ └── sample │ │ │ ├── .content.xml │ │ │ └── settings │ │ │ ├── .content.xml │ │ │ └── wcm │ │ │ ├── .content.xml │ │ │ ├── policies │ │ │ ├── .content.xml │ │ │ └── _rep_policy.xml │ │ │ ├── segments │ │ │ ├── .content.xml │ │ │ ├── summer │ │ │ │ └── .content.xml │ │ │ └── winter │ │ │ │ └── .content.xml │ │ │ ├── template-types │ │ │ ├── .content.xml │ │ │ ├── _rep_policy.xml │ │ │ ├── page │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ └── xf │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ │ └── thumbnail.png │ │ │ └── templates │ │ │ ├── .content.xml │ │ │ ├── _rep_policy.xml │ │ │ ├── page-content │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.png.dir │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── _dam_thumbnails │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ └── _dam_thumbnail_48.png │ │ │ └── xf-web-variation │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ └── .content.xml │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.png.dir │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── _dam_thumbnails │ │ │ ├── _dam_thumbnail_128.png │ │ │ └── _dam_thumbnail_319.png │ │ └── content │ │ ├── dam │ │ ├── .content.xml │ │ └── sample │ │ │ ├── .content.xml │ │ │ ├── _jcr_content │ │ │ └── folderThumbnail │ │ │ └── asset.jpg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ ├── cq5dam.web.1280.1280.jpeg │ │ │ ├── original │ │ │ └── original.dir │ │ │ └── .content.xml │ │ ├── experience-fragments │ │ └── sample │ │ │ ├── .content.xml │ │ │ └── us │ │ │ ├── .content.xml │ │ │ └── en │ │ │ ├── .content.xml │ │ │ └── site │ │ │ ├── .content.xml │ │ │ ├── footer │ │ │ ├── .content.xml │ │ │ └── master │ │ │ │ └── .content.xml │ │ │ └── header │ │ │ ├── .content.xml │ │ │ └── master │ │ │ └── .content.xml │ │ └── sample │ │ ├── .content.xml │ │ ├── _jcr_content │ │ └── image │ │ │ ├── file │ │ │ └── file.dir │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── _dam_thumbnails │ │ │ ├── _dam_thumbnail_48.png │ │ │ └── _dam_thumbnail_480.png │ │ └── us │ │ ├── .content.xml │ │ └── en │ │ └── .content.xml │ └── resources │ └── META-INF │ └── MANIFEST.MF ├── aem.groovy.samples ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.jdt.apt.core.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.jdt.groovy.core.prefs │ └── org.eclipse.m2e.core.prefs ├── pom.xml ├── src │ └── main │ │ └── java │ │ └── aem │ │ └── groovy │ │ └── samples │ │ ├── CopyNode.groovy │ │ ├── ExecuteQuery.groovy │ │ ├── FelixConsolePluginSampleScript.groovy │ │ ├── ModifyProperties.groovy │ │ ├── setPropertyOakRun.groovy │ │ └── template.groovy └── target │ └── classes │ └── META-INF │ ├── MANIFEST.MF │ └── maven │ └── groovy │ └── groovy.aem.samples │ ├── pom.properties │ └── pom.xml ├── aem ├── aem-cloud │ └── extensions │ │ └── cftest │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── .github │ │ └── workflows │ │ │ ├── deploy_prod.yml │ │ │ ├── deploy_stage.yml │ │ │ └── pr_test.yml │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app.config.yaml │ │ ├── extension-manifest.json │ │ ├── hooks │ │ └── post-deploy.js │ │ ├── jest.setup.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ └── aem-cf-editor-1 │ │ ├── ext.config.yaml │ │ └── web-src │ │ ├── index.html │ │ └── src │ │ ├── components │ │ ├── App.js │ │ ├── Constants.js │ │ ├── CustomDropDown.css │ │ ├── CustomDropdown.js │ │ ├── ExtensionRegistration.js │ │ └── Spinner.js │ │ ├── index.css │ │ ├── index.js │ │ └── utils.js ├── chatgptintegration │ ├── .gitattributes │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── LICENSE │ ├── README.md │ ├── all │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ └── META-INF │ │ │ └── vault │ │ │ ├── definition │ │ │ └── .content.xml │ │ │ └── filter.xml │ ├── archetype.properties │ ├── core │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── chatgpt │ │ │ │ └── core │ │ │ │ ├── beans │ │ │ │ ├── ChatGptRequest.java │ │ │ │ ├── ChatGptResponse.java │ │ │ │ └── Message.java │ │ │ │ ├── filters │ │ │ │ ├── LoggingFilter.java │ │ │ │ └── package-info.java │ │ │ │ ├── listeners │ │ │ │ ├── SimpleResourceListener.java │ │ │ │ └── package-info.java │ │ │ │ ├── models │ │ │ │ ├── HelloWorldModel.java │ │ │ │ └── package-info.java │ │ │ │ ├── schedulers │ │ │ │ ├── SimpleScheduledTask.java │ │ │ │ └── package-info.java │ │ │ │ └── servlets │ │ │ │ ├── ChatServlet.java │ │ │ │ ├── SimpleServlet.java │ │ │ │ └── package-info.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── chatgpt │ │ │ └── core │ │ │ ├── filters │ │ │ └── LoggingFilterTest.java │ │ │ ├── listeners │ │ │ └── SimpleResourceListenerTest.java │ │ │ ├── models │ │ │ └── HelloWorldModelTest.java │ │ │ ├── schedulers │ │ │ └── SimpleScheduledTaskTest.java │ │ │ ├── servlets │ │ │ └── SimpleServletTest.java │ │ │ └── testcontext │ │ │ └── AppAemContext.java │ ├── it.tests │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── chatgpt │ │ │ └── it │ │ │ └── tests │ │ │ ├── CreatePageIT.java │ │ │ ├── GetPageIT.java │ │ │ ├── HtmlUnitClient.java │ │ │ └── PublishPageValidationIT.java │ ├── pom.xml │ ├── ui.apps.structure │ │ └── pom.xml │ ├── ui.apps │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ │ └── jcr_root │ │ │ └── apps │ │ │ └── chatgptintegration │ │ │ ├── clientlibs │ │ │ ├── clientlib-base │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ ├── clientlib-grid │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── less │ │ │ │ │ └── grid.less │ │ │ └── editor │ │ │ │ └── sites │ │ │ │ └── page │ │ │ │ └── hook │ │ │ │ └── chatgpt │ │ │ │ ├── .content.xml │ │ │ │ ├── js.txt │ │ │ │ └── js │ │ │ │ ├── ToolbarAction.CHATGPT.js │ │ │ │ └── ToolbarAction.CHATGPT.js.dir │ │ │ │ └── .content.xml │ │ │ ├── components │ │ │ ├── accordion │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ ├── _cq_template │ │ │ │ │ └── .content.xml │ │ │ │ └── new │ │ │ │ │ └── .content.xml │ │ │ ├── breadcrumb │ │ │ │ └── .content.xml │ │ │ ├── button │ │ │ │ └── .content.xml │ │ │ ├── carousel │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ └── new │ │ │ │ │ └── .content.xml │ │ │ ├── container │ │ │ │ ├── .content.xml │ │ │ │ └── new │ │ │ │ │ └── .content.xml │ │ │ ├── contentfragment │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── contentfragmentlist │ │ │ │ └── .content.xml │ │ │ ├── download │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── embed │ │ │ │ └── .content.xml │ │ │ ├── experiencefragment │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── form │ │ │ │ ├── button │ │ │ │ │ └── .content.xml │ │ │ │ ├── container │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ │ └── new │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── hidden │ │ │ │ │ └── .content.xml │ │ │ │ ├── options │ │ │ │ │ └── .content.xml │ │ │ │ └── text │ │ │ │ │ └── .content.xml │ │ │ ├── helloworld │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ └── helloworld.html │ │ │ ├── image │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── languagenavigation │ │ │ │ └── .content.xml │ │ │ ├── list │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── navigation │ │ │ │ └── .content.xml │ │ │ ├── page │ │ │ │ ├── .content.xml │ │ │ │ ├── customfooterlibs.html │ │ │ │ └── customheaderlibs.html │ │ │ ├── pdfviewer │ │ │ │ └── .content.xml │ │ │ ├── progressbar │ │ │ │ └── .content.xml │ │ │ ├── remotepage │ │ │ │ └── .content.xml │ │ │ ├── remotepagenext │ │ │ │ └── .content.xml │ │ │ ├── search │ │ │ │ └── .content.xml │ │ │ ├── separator │ │ │ │ └── .content.xml │ │ │ ├── spa │ │ │ │ └── .content.xml │ │ │ ├── tableofcontents │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── tabs │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ ├── _cq_template │ │ │ │ │ └── .content.xml │ │ │ │ └── new │ │ │ │ │ └── .content.xml │ │ │ ├── teaser │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── text │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── title │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ └── xfpage │ │ │ │ ├── .content.xml │ │ │ │ ├── content.html │ │ │ │ ├── customfooterlibs.html │ │ │ │ └── customheaderlibs.html │ │ │ └── i18n │ │ │ ├── .content.xml │ │ │ ├── fr.json │ │ │ └── fr.json.dir │ │ │ └── .content.xml │ ├── ui.config │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ │ └── jcr_root │ │ │ └── apps │ │ │ └── chatgptintegration │ │ │ └── osgiconfig │ │ │ ├── config.author │ │ │ ├── com.adobe.granite.cors.impl.CORSPolicyImpl~chatgptintegration.cfg.json │ │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider~chatgptintegration.cfg.json │ │ │ └── config │ │ │ ├── com.adobe.cq.wcm.core.components.internal.servlets.TableOfContentsFilter~chatgptintegration.cfg.json │ │ │ ├── org.apache.sling.commons.log.LogManager.factory.config~chatgptintegration.cfg.json │ │ │ └── org.apache.sling.jcr.repoinit.RepositoryInitializer~chatgptintegration.cfg.json │ ├── ui.content │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ │ └── jcr_root │ │ │ ├── conf │ │ │ └── chatgptintegration │ │ │ │ ├── .content.xml │ │ │ │ ├── _sling_configs │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ │ └── settings │ │ │ │ ├── .content.xml │ │ │ │ ├── cloudconfigs │ │ │ │ └── .content.xml │ │ │ │ ├── dam │ │ │ │ └── .content.xml │ │ │ │ └── wcm │ │ │ │ ├── .content.xml │ │ │ │ ├── policies │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ │ ├── segments │ │ │ │ ├── .content.xml │ │ │ │ ├── summer │ │ │ │ │ └── .content.xml │ │ │ │ └── winter │ │ │ │ │ └── .content.xml │ │ │ │ ├── template-types │ │ │ │ ├── .content.xml │ │ │ │ ├── _rep_policy.xml │ │ │ │ ├── page │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── initial │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── policies │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── structure │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── thumbnail.png │ │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ │ └── xf │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ │ └── thumbnail.png │ │ │ │ └── templates │ │ │ │ ├── .content.xml │ │ │ │ ├── _rep_policy.xml │ │ │ │ ├── page-content │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ │ └── xf-web-variation │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── _dam_thumbnails │ │ │ │ ├── _dam_thumbnail_128.png │ │ │ │ └── _dam_thumbnail_319.png │ │ │ └── content │ │ │ ├── chatgptintegration │ │ │ ├── .content.xml │ │ │ ├── _jcr_content │ │ │ │ └── image │ │ │ │ │ ├── file │ │ │ │ │ └── file.dir │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ ├── _dam_thumbnail_48.png │ │ │ │ │ └── _dam_thumbnail_480.png │ │ │ └── us │ │ │ │ ├── .content.xml │ │ │ │ └── en │ │ │ │ └── .content.xml │ │ │ ├── dam │ │ │ └── chatgptintegration │ │ │ │ ├── .content.xml │ │ │ │ ├── _jcr_content │ │ │ │ └── folderThumbnail │ │ │ │ └── asset.jpg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ │ ├── cq5dam.web.1280.1280.jpeg │ │ │ │ ├── original │ │ │ │ └── original.dir │ │ │ │ └── .content.xml │ │ │ └── experience-fragments │ │ │ └── chatgptintegration │ │ │ ├── .content.xml │ │ │ └── us │ │ │ ├── .content.xml │ │ │ └── en │ │ │ ├── .content.xml │ │ │ └── site │ │ │ ├── .content.xml │ │ │ ├── footer │ │ │ ├── .content.xml │ │ │ └── master │ │ │ │ └── .content.xml │ │ │ └── header │ │ │ ├── .content.xml │ │ │ └── master │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── root │ │ │ └── logo │ │ │ └── logo.svg │ ├── ui.frontend │ │ ├── .babelrc │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assembly.xml │ │ ├── clientlib.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── webpack │ │ │ │ ├── components │ │ │ │ ├── _accordion.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _button.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _container.scss │ │ │ │ ├── _contentfragment.scss │ │ │ │ ├── _contentfragmentlist.scss │ │ │ │ ├── _download.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _experiencefragment.scss │ │ │ │ ├── _form-button.scss │ │ │ │ ├── _form-options.scss │ │ │ │ ├── _form-text.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _helloworld.js │ │ │ │ ├── _helloworld.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _languagenavigation.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _navigation.scss │ │ │ │ ├── _pdfviewer.scss │ │ │ │ ├── _progressbar.scss │ │ │ │ ├── _search.scss │ │ │ │ ├── _separator.scss │ │ │ │ ├── _tabs.scss │ │ │ │ ├── _teaser.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _title.scss │ │ │ │ ├── resources │ │ │ │ ├── fonts │ │ │ │ │ └── .gitkeep │ │ │ │ └── images │ │ │ │ │ └── .gitkeep │ │ │ │ ├── site │ │ │ │ ├── _base.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── main.scss │ │ │ │ ├── main.ts │ │ │ │ └── styles │ │ │ │ │ ├── container_main.scss │ │ │ │ │ ├── experiencefragment_footer.scss │ │ │ │ │ └── experiencefragment_header.scss │ │ │ │ └── static │ │ │ │ └── index.html │ │ ├── tsconfig.json │ │ ├── webpack.common.js │ │ ├── webpack.dev.js │ │ └── webpack.prod.js │ └── ui.tests │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── assembly-ui-test-docker-context.xml │ │ ├── docker-compose-wdio-chrome.yaml │ │ ├── docker-compose-wdio-firefox.yaml │ │ ├── pom.xml │ │ ├── test-module │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ │ └── image.png │ │ ├── lib │ │ │ ├── commons.js │ │ │ ├── config.js │ │ │ ├── wdio-pixelmatch-service │ │ │ │ ├── Readme.md │ │ │ │ ├── comparisonstrategy.js │ │ │ │ ├── fileutils.js │ │ │ │ ├── launcher.js │ │ │ │ └── pathutils.js │ │ │ └── wdio.commands.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── specs │ │ │ └── aem │ │ │ │ ├── assets.js │ │ │ │ ├── basic.js │ │ │ │ ├── login.js │ │ │ │ └── sites.js │ │ ├── wdio.conf.cloud.js │ │ ├── wdio.conf.commons.js │ │ └── wdio.conf.local.js │ │ └── wait-for-grid.sh ├── components │ ├── containerlimiter │ │ ├── .content.xml │ │ ├── _cq_design_dialog │ │ │ └── .content.xml │ │ └── _cq_editConfig.xml │ └── openhtml │ │ ├── .content.xml │ │ ├── _cq_dialog │ │ └── .content.xml │ │ └── openhtml.html ├── custom-validation-multifields-1.0.zip ├── customcloudservice │ ├── .gitignore │ ├── README.md │ ├── all │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ └── META-INF │ │ │ └── vault │ │ │ ├── definition │ │ │ └── .content.xml │ │ │ └── filter.xml │ ├── core │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── custom │ │ │ └── cloudservice │ │ │ └── core │ │ │ └── services │ │ │ └── GetLibScripts.java │ ├── pom.xml │ └── ui.apps │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── vault │ │ │ ├── config.xml │ │ │ ├── definition │ │ │ └── .content.xml │ │ │ ├── filter.xml │ │ │ ├── nodetypes.cnd │ │ │ └── properties.xml │ │ └── jcr_root │ │ ├── .content.xml │ │ ├── apps │ │ ├── .content.xml │ │ └── utilities │ │ │ ├── cloudserviceconfigs │ │ │ └── components │ │ │ │ └── servicelibs │ │ │ │ ├── servicefooterlibs.jsp │ │ │ │ └── serviceheaderlibs.jsp │ │ │ ├── components │ │ │ ├── .content.xml │ │ │ ├── genericscript │ │ │ │ ├── .content.xml │ │ │ │ ├── footScript.jsp │ │ │ │ └── headScript.jsp │ │ │ └── genericscriptpage │ │ │ │ ├── .content.xml │ │ │ │ ├── content.jsp │ │ │ │ └── dialog.xml │ │ │ └── templates │ │ │ ├── .content.xml │ │ │ └── genericscript │ │ │ ├── .content.xml │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.png.dir │ │ │ └── .content.xml │ │ └── etc │ │ ├── .content.xml │ │ └── cloudservices │ │ ├── .content.xml │ │ └── generic-script │ │ ├── .content.xml │ │ ├── _rep_policy.xml │ │ └── sample-script │ │ └── .content.xml ├── customembed │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── all │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ └── META-INF │ │ │ └── vault │ │ │ ├── definition │ │ │ └── .content.xml │ │ │ └── filter.xml │ ├── archetype.properties │ ├── core │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── embed │ │ │ │ └── core │ │ │ │ ├── filters │ │ │ │ ├── LoggingFilter.java │ │ │ │ └── package-info.java │ │ │ │ ├── listeners │ │ │ │ ├── SimpleResourceListener.java │ │ │ │ └── package-info.java │ │ │ │ ├── models │ │ │ │ ├── HelloWorldModel.java │ │ │ │ ├── embeddable │ │ │ │ │ └── vimeo │ │ │ │ │ │ ├── Vimeo.java │ │ │ │ │ │ ├── VimeoImpl.java │ │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ ├── schedulers │ │ │ │ ├── SimpleScheduledTask.java │ │ │ │ └── package-info.java │ │ │ │ └── servlets │ │ │ │ ├── SimpleServlet.java │ │ │ │ └── package-info.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── embed │ │ │ └── core │ │ │ ├── filters │ │ │ └── LoggingFilterTest.java │ │ │ ├── listeners │ │ │ └── SimpleResourceListenerTest.java │ │ │ ├── models │ │ │ └── HelloWorldModelTest.java │ │ │ ├── schedulers │ │ │ └── SimpleScheduledTaskTest.java │ │ │ └── servlets │ │ │ └── SimpleServletTest.java │ ├── dispatcher │ │ ├── README.md │ │ ├── assembly.xml │ │ ├── pom.xml │ │ └── src │ │ │ ├── conf.d │ │ │ ├── available_vhosts │ │ │ │ └── default.vhost │ │ │ ├── dispatcher_vhost.conf │ │ │ ├── enabled_vhosts │ │ │ │ ├── README │ │ │ │ └── default.vhost │ │ │ ├── rewrites │ │ │ │ ├── default_rewrite.rules │ │ │ │ └── rewrite.rules │ │ │ └── variables │ │ │ │ ├── custom.vars │ │ │ │ └── global.vars │ │ │ └── conf.dispatcher.d │ │ │ ├── available_farms │ │ │ └── default.farm │ │ │ ├── cache │ │ │ ├── default_invalidate.any │ │ │ ├── default_rules.any │ │ │ └── rules.any │ │ │ ├── clientheaders │ │ │ ├── clientheaders.any │ │ │ └── default_clientheaders.any │ │ │ ├── dispatcher.any │ │ │ ├── enabled_farms │ │ │ ├── README │ │ │ └── default.farm │ │ │ ├── filters │ │ │ ├── default_filters.any │ │ │ └── filters.any │ │ │ ├── renders │ │ │ └── default_renders.any │ │ │ └── virtualhosts │ │ │ ├── default_virtualhosts.any │ │ │ └── virtualhosts.any │ ├── it.tests │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── embed │ │ │ └── it │ │ │ └── tests │ │ │ ├── CreatePageIT.java │ │ │ └── GetPageIT.java │ ├── pom.xml │ ├── ui.apps.structure │ │ └── pom.xml │ ├── ui.apps │ │ ├── .gitignore │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ │ └── jcr_root │ │ │ └── apps │ │ │ ├── .content.xml │ │ │ └── customembed │ │ │ ├── clientlibs │ │ │ ├── clientlib-base │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ └── clientlib-grid │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── less │ │ │ │ └── grid.less │ │ │ ├── components │ │ │ ├── accordion │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ └── _cq_template │ │ │ │ │ └── .content.xml │ │ │ ├── breadcrumb │ │ │ │ └── .content.xml │ │ │ ├── button │ │ │ │ └── .content.xml │ │ │ ├── carousel │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── container │ │ │ │ └── .content.xml │ │ │ ├── contentfragment │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── contentfragmentlist │ │ │ │ └── .content.xml │ │ │ ├── download │ │ │ │ └── .content.xml │ │ │ ├── embed │ │ │ │ ├── .content.xml │ │ │ │ └── embeddable │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── vimeo │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _cq_design_dialog │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ │ └── vimeo.html │ │ │ ├── experiencefragment │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── form │ │ │ │ ├── button │ │ │ │ │ └── .content.xml │ │ │ │ ├── container │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── new │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── hidden │ │ │ │ │ └── .content.xml │ │ │ │ ├── options │ │ │ │ │ └── .content.xml │ │ │ │ └── text │ │ │ │ │ └── .content.xml │ │ │ ├── helloworld │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ └── helloworld.html │ │ │ ├── image │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── languagenavigation │ │ │ │ └── .content.xml │ │ │ ├── list │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── navigation │ │ │ │ └── .content.xml │ │ │ ├── page │ │ │ │ ├── .content.xml │ │ │ │ ├── customfooterlibs.html │ │ │ │ └── customheaderlibs.html │ │ │ ├── pdfviewer │ │ │ │ └── .content.xml │ │ │ ├── progressbar │ │ │ │ └── .content.xml │ │ │ ├── search │ │ │ │ └── .content.xml │ │ │ ├── separator │ │ │ │ └── .content.xml │ │ │ ├── sharing │ │ │ │ └── .content.xml │ │ │ ├── spa │ │ │ │ └── .content.xml │ │ │ ├── tabs │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ └── _cq_template │ │ │ │ │ └── .content.xml │ │ │ ├── teaser │ │ │ │ └── .content.xml │ │ │ ├── text │ │ │ │ └── .content.xml │ │ │ ├── title │ │ │ │ └── .content.xml │ │ │ └── xfpage │ │ │ │ ├── .content.xml │ │ │ │ ├── content.html │ │ │ │ ├── customfooterlibs.html │ │ │ │ └── customheaderlibs.html │ │ │ └── i18n │ │ │ ├── .content.xml │ │ │ ├── fr.json │ │ │ └── fr.json.dir │ │ │ └── .content.xml │ ├── ui.config │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ │ └── jcr_root │ │ │ └── apps │ │ │ └── customembed │ │ │ └── osgiconfig │ │ │ ├── config.author │ │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider~customembed.cfg.json │ │ │ ├── config.prod │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config~customembed.cfg.json │ │ │ ├── config.publish │ │ │ └── org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.cfg.json │ │ │ ├── config.stage │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config~customembed.cfg.json │ │ │ └── config │ │ │ ├── com.adobe.cq.wcm.core.components.internal.services.embed.OEmbedClientImplConfigurationFactory-vimeo.cfg.json │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config~customembed.cfg.json │ ├── ui.content │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ │ └── jcr_root │ │ │ ├── conf │ │ │ └── customembed │ │ │ │ ├── .content.xml │ │ │ │ ├── _sling_configs │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ │ └── settings │ │ │ │ ├── .content.xml │ │ │ │ ├── cloudconfigs │ │ │ │ ├── .content.xml │ │ │ │ └── commerce │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _rep_policy.xml │ │ │ │ └── wcm │ │ │ │ ├── .content.xml │ │ │ │ ├── policies │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ │ ├── segments │ │ │ │ ├── .content.xml │ │ │ │ ├── summer │ │ │ │ │ └── .content.xml │ │ │ │ └── winter │ │ │ │ │ └── .content.xml │ │ │ │ ├── template-types │ │ │ │ ├── .content.xml │ │ │ │ ├── _rep_policy.xml │ │ │ │ ├── page │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── initial │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── policies │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── structure │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── thumbnail.png │ │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ │ └── xf │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ │ └── thumbnail.png │ │ │ │ └── templates │ │ │ │ ├── .content.xml │ │ │ │ ├── _rep_policy.xml │ │ │ │ ├── page-content │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ │ └── xf-web-variation │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── _dam_thumbnails │ │ │ │ ├── _dam_thumbnail_128.png │ │ │ │ └── _dam_thumbnail_319.png │ │ │ └── content │ │ │ ├── customembed │ │ │ ├── .content.xml │ │ │ ├── _jcr_content │ │ │ │ └── image │ │ │ │ │ ├── file │ │ │ │ │ └── file.dir │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ ├── _dam_thumbnail_48.png │ │ │ │ │ └── _dam_thumbnail_480.png │ │ │ └── us │ │ │ │ ├── .content.xml │ │ │ │ └── en │ │ │ │ └── .content.xml │ │ │ ├── dam │ │ │ ├── .content.xml │ │ │ └── customembed │ │ │ │ ├── .content.xml │ │ │ │ ├── _jcr_content │ │ │ │ └── folderThumbnail │ │ │ │ └── asset.jpg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ │ ├── cq5dam.web.1280.1280.jpeg │ │ │ │ ├── original │ │ │ │ └── original.dir │ │ │ │ └── .content.xml │ │ │ └── experience-fragments │ │ │ └── customembed │ │ │ ├── .content.xml │ │ │ └── us │ │ │ ├── .content.xml │ │ │ └── en │ │ │ ├── .content.xml │ │ │ └── site │ │ │ ├── .content.xml │ │ │ ├── footer │ │ │ ├── .content.xml │ │ │ └── master │ │ │ │ └── .content.xml │ │ │ └── header │ │ │ ├── .content.xml │ │ │ └── master │ │ │ └── .content.xml │ ├── ui.frontend │ │ ├── .babelrc │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assembly.xml │ │ ├── clientlib.config.js │ │ ├── package.json │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── webpack │ │ │ │ ├── components │ │ │ │ ├── _accordion.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _button.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _container.scss │ │ │ │ ├── _contentfragment.scss │ │ │ │ ├── _contentfragmentlist.scss │ │ │ │ ├── _download.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _experiencefragment.scss │ │ │ │ ├── _form-button.scss │ │ │ │ ├── _form-options.scss │ │ │ │ ├── _form-text.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _helloworld.js │ │ │ │ ├── _helloworld.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _languagenavigation.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _navigation.scss │ │ │ │ ├── _pdfviewer.scss │ │ │ │ ├── _progressbar.scss │ │ │ │ ├── _search.scss │ │ │ │ ├── _separator.scss │ │ │ │ ├── _tabs.scss │ │ │ │ ├── _teaser.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _title.scss │ │ │ │ ├── resources │ │ │ │ ├── fonts │ │ │ │ │ └── .gitkeep │ │ │ │ └── images │ │ │ │ │ └── .gitkeep │ │ │ │ ├── site │ │ │ │ ├── _base.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── main.scss │ │ │ │ ├── main.ts │ │ │ │ └── styles │ │ │ │ │ ├── container_main.scss │ │ │ │ │ ├── experiencefragment_footer.scss │ │ │ │ │ └── experiencefragment_header.scss │ │ │ │ └── static │ │ │ │ └── index.html │ │ ├── tsconfig.json │ │ ├── webpack.common.js │ │ ├── webpack.dev.js │ │ └── webpack.prod.js │ └── ui.tests │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── assembly-ui-test-docker-context.xml │ │ ├── docker-compose-wdio-chrome.yaml │ │ ├── docker-compose-wdio-firefox.yaml │ │ ├── pom.xml │ │ ├── test-module │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ │ └── image.png │ │ ├── lib │ │ │ ├── commons.js │ │ │ ├── config.js │ │ │ └── wdio.commands.js │ │ ├── package.json │ │ ├── specs │ │ │ └── aem │ │ │ │ ├── assets.js │ │ │ │ ├── basic.js │ │ │ │ ├── login.js │ │ │ │ └── sites.js │ │ ├── wdio.conf.cloud.js │ │ ├── wdio.conf.commons.js │ │ └── wdio.conf.local.js │ │ └── wait-for-grid.sh ├── handle-coral-ui3-select-change-event-1.0.zip ├── hide-show-touchui-tabs-1.0.zip └── multisitefrontenddemo │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── all │ ├── pom.xml │ └── src │ │ └── main │ │ ├── content │ │ └── META-INF │ │ │ └── vault │ │ │ ├── definition │ │ │ └── .content.xml │ │ │ └── filter.xml │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── archetype.properties │ ├── core │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── multisitefrontenddemo │ │ │ └── core │ │ │ ├── filters │ │ │ ├── LoggingFilter.java │ │ │ └── package-info.java │ │ │ ├── listeners │ │ │ ├── SimpleResourceListener.java │ │ │ └── package-info.java │ │ │ ├── models │ │ │ ├── HelloWorldModel.java │ │ │ ├── StyleNameModel.java │ │ │ └── package-info.java │ │ │ ├── schedulers │ │ │ ├── SimpleScheduledTask.java │ │ │ └── package-info.java │ │ │ └── servlets │ │ │ ├── SimpleServlet.java │ │ │ └── package-info.java │ │ └── test │ │ └── java │ │ └── com │ │ └── multisitefrontenddemo │ │ └── core │ │ ├── filters │ │ └── LoggingFilterTest.java │ │ ├── listeners │ │ └── SimpleResourceListenerTest.java │ │ ├── models │ │ └── HelloWorldModelTest.java │ │ ├── schedulers │ │ └── SimpleScheduledTaskTest.java │ │ └── servlets │ │ └── SimpleServletTest.java │ ├── dispatcher │ ├── README.md │ ├── assembly.xml │ ├── pom.xml │ └── src │ │ ├── conf.d │ │ ├── available_vhosts │ │ │ └── default.vhost │ │ ├── dispatcher_vhost.conf │ │ ├── enabled_vhosts │ │ │ ├── README │ │ │ └── default.vhost │ │ ├── rewrites │ │ │ ├── default_rewrite.rules │ │ │ └── rewrite.rules │ │ └── variables │ │ │ ├── custom.vars │ │ │ └── global.vars │ │ └── conf.dispatcher.d │ │ ├── available_farms │ │ └── default.farm │ │ ├── cache │ │ ├── default_invalidate.any │ │ ├── default_rules.any │ │ └── rules.any │ │ ├── clientheaders │ │ ├── clientheaders.any │ │ └── default_clientheaders.any │ │ ├── dispatcher.any │ │ ├── enabled_farms │ │ ├── README │ │ └── default.farm │ │ ├── filters │ │ ├── default_filters.any │ │ └── filters.any │ │ ├── renders │ │ └── default_renders.any │ │ └── virtualhosts │ │ ├── default_virtualhosts.any │ │ └── virtualhosts.any │ ├── it.tests │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── multisitefrontenddemo │ │ └── it │ │ └── tests │ │ ├── CreatePageIT.java │ │ └── GetPageIT.java │ ├── pom.xml │ ├── ui.apps.structure │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── ui.apps │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── content │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ └── jcr_root │ │ │ └── apps │ │ │ ├── .content.xml │ │ │ └── multisitefrontenddemo │ │ │ ├── clientlibs │ │ │ ├── clientlib-base │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ ├── clientlib-dependencies-site1 │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ ├── clientlib-dependencies-site2 │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ │ ├── clientlib-grid │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── less │ │ │ │ │ └── grid.less │ │ │ ├── clientlib-site1 │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ ├── css │ │ │ │ │ └── site1.css │ │ │ │ ├── js.txt │ │ │ │ └── js │ │ │ │ │ └── site1.js │ │ │ └── clientlib-site2 │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ ├── css │ │ │ │ └── site2.css │ │ │ │ ├── js.txt │ │ │ │ └── js │ │ │ │ └── site2.js │ │ │ ├── components │ │ │ ├── accordion │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ └── _cq_template │ │ │ │ │ └── .content.xml │ │ │ ├── breadcrumb │ │ │ │ └── .content.xml │ │ │ ├── button │ │ │ │ └── .content.xml │ │ │ ├── carousel │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── container │ │ │ │ └── .content.xml │ │ │ ├── contentfragment │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── contentfragmentlist │ │ │ │ └── .content.xml │ │ │ ├── download │ │ │ │ └── .content.xml │ │ │ ├── embed │ │ │ │ └── .content.xml │ │ │ ├── experiencefragment │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── form │ │ │ │ ├── button │ │ │ │ │ └── .content.xml │ │ │ │ ├── container │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── new │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── hidden │ │ │ │ │ └── .content.xml │ │ │ │ ├── options │ │ │ │ │ └── .content.xml │ │ │ │ └── text │ │ │ │ │ └── .content.xml │ │ │ ├── helloworld │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ └── helloworld.html │ │ │ ├── image │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── languagenavigation │ │ │ │ └── .content.xml │ │ │ ├── list │ │ │ │ ├── .content.xml │ │ │ │ └── _cq_editConfig.xml │ │ │ ├── navigation │ │ │ │ └── .content.xml │ │ │ ├── page │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ ├── customfooterlibs.html │ │ │ │ └── customheaderlibs.html │ │ │ ├── pdfviewer │ │ │ │ └── .content.xml │ │ │ ├── progressbar │ │ │ │ └── .content.xml │ │ │ ├── search │ │ │ │ └── .content.xml │ │ │ ├── separator │ │ │ │ └── .content.xml │ │ │ ├── sharing │ │ │ │ └── .content.xml │ │ │ ├── spa │ │ │ │ └── .content.xml │ │ │ ├── tabs │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ └── _cq_template │ │ │ │ │ └── .content.xml │ │ │ ├── teaser │ │ │ │ └── .content.xml │ │ │ ├── text │ │ │ │ └── .content.xml │ │ │ ├── title │ │ │ │ └── .content.xml │ │ │ └── xfpage │ │ │ │ ├── .content.xml │ │ │ │ ├── content.html │ │ │ │ ├── customfooterlibs.html │ │ │ │ └── customheaderlibs.html │ │ │ └── i18n │ │ │ ├── .content.xml │ │ │ ├── fr.json │ │ │ └── fr.json.dir │ │ │ └── .content.xml │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── ui.config │ ├── pom.xml │ └── src │ │ └── main │ │ ├── content │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ └── jcr_root │ │ │ └── apps │ │ │ └── multisitefrontenddemo │ │ │ └── osgiconfig │ │ │ ├── config.author │ │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider~multisitefrontenddemo.cfg.json │ │ │ ├── config.prod │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config~multisitefrontenddemo.cfg.json │ │ │ ├── config.publish │ │ │ └── org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.cfg.json │ │ │ ├── config.stage │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config~multisitefrontenddemo.cfg.json │ │ │ └── config │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config~multisitefrontenddemo.cfg.json │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── ui.content │ ├── pom.xml │ └── src │ │ └── main │ │ ├── content │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── filter.xml │ │ └── jcr_root │ │ │ ├── .content.xml │ │ │ ├── conf │ │ │ ├── .content.xml │ │ │ └── multisitefrontenddemo │ │ │ │ ├── .content.xml │ │ │ │ ├── _sling_configs │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ │ └── settings │ │ │ │ ├── .content.xml │ │ │ │ ├── cloudconfigs │ │ │ │ ├── .content.xml │ │ │ │ └── commerce │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _rep_policy.xml │ │ │ │ └── wcm │ │ │ │ ├── .content.xml │ │ │ │ ├── policies │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ │ ├── segments │ │ │ │ ├── .content.xml │ │ │ │ ├── summer │ │ │ │ │ └── .content.xml │ │ │ │ └── winter │ │ │ │ │ └── .content.xml │ │ │ │ ├── template-types │ │ │ │ ├── .content.xml │ │ │ │ ├── _rep_policy.xml │ │ │ │ ├── page │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── initial │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── policies │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── structure │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── thumbnail.png │ │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ │ └── xf │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ │ └── thumbnail.png │ │ │ │ └── templates │ │ │ │ ├── .content.xml │ │ │ │ ├── _rep_policy.xml │ │ │ │ ├── page-content │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ │ └── xf-web-variation │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── _dam_thumbnails │ │ │ │ ├── _dam_thumbnail_128.png │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ └── _dam_thumbnail_48.png │ │ │ └── content │ │ │ ├── .content.xml │ │ │ ├── dam │ │ │ ├── .content.xml │ │ │ └── multisitefrontenddemo │ │ │ │ ├── .content.xml │ │ │ │ ├── _jcr_content │ │ │ │ └── folderThumbnail │ │ │ │ └── asset.jpg │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── renditions │ │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ │ ├── cq5dam.web.1280.1280.jpeg │ │ │ │ ├── original │ │ │ │ └── original.dir │ │ │ │ └── .content.xml │ │ │ ├── experience-fragments │ │ │ ├── .content.xml │ │ │ └── multisitefrontenddemo │ │ │ │ ├── .content.xml │ │ │ │ └── us │ │ │ │ ├── .content.xml │ │ │ │ ├── en │ │ │ │ ├── .content.xml │ │ │ │ └── site │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── footer │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── master │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── header │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── master │ │ │ │ │ └── .content.xml │ │ │ │ └── fr │ │ │ │ ├── .content.xml │ │ │ │ └── site │ │ │ │ ├── .content.xml │ │ │ │ ├── footer │ │ │ │ ├── .content.xml │ │ │ │ └── master │ │ │ │ │ └── .content.xml │ │ │ │ └── header │ │ │ │ ├── .content.xml │ │ │ │ └── master │ │ │ │ └── .content.xml │ │ │ └── multisitefrontenddemo │ │ │ ├── .content.xml │ │ │ ├── _jcr_content │ │ │ └── image │ │ │ │ ├── file │ │ │ │ └── file.dir │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── _dam_thumbnails │ │ │ │ ├── _dam_thumbnail_48.png │ │ │ │ └── _dam_thumbnail_480.png │ │ │ └── us │ │ │ ├── .content.xml │ │ │ ├── en │ │ │ ├── .content.xml │ │ │ └── test │ │ │ │ └── .content.xml │ │ │ └── fr │ │ │ └── .content.xml │ │ └── resources │ │ └── META-INF │ │ └── MANIFEST.MF │ ├── ui.frontend │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc.js │ ├── README.md │ ├── assembly.xml │ ├── clientlib.config.js │ ├── package.json │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── webpack │ │ │ ├── site1 │ │ │ ├── components │ │ │ │ ├── _accordion.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _button.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _container.scss │ │ │ │ ├── _contentfragment.scss │ │ │ │ ├── _contentfragmentlist.scss │ │ │ │ ├── _download.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _experiencefragment.scss │ │ │ │ ├── _form-button.scss │ │ │ │ ├── _form-options.scss │ │ │ │ ├── _form-text.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _helloworld.js │ │ │ │ ├── _helloworld.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _languagenavigation.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _navigation.scss │ │ │ │ ├── _pdfviewer.scss │ │ │ │ ├── _progressbar.scss │ │ │ │ ├── _search.scss │ │ │ │ ├── _separator.scss │ │ │ │ ├── _tabs.scss │ │ │ │ ├── _teaser.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _title.scss │ │ │ ├── resources │ │ │ │ ├── fonts │ │ │ │ │ └── .gitkeep │ │ │ │ └── images │ │ │ │ │ └── .gitkeep │ │ │ ├── site │ │ │ │ ├── _base.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── main.scss │ │ │ │ ├── main.ts │ │ │ │ └── styles │ │ │ │ │ ├── container_main.scss │ │ │ │ │ ├── experiencefragment_footer.scss │ │ │ │ │ └── experiencefragment_header.scss │ │ │ └── static │ │ │ │ └── index.html │ │ │ └── site2 │ │ │ ├── components │ │ │ ├── _accordion.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button.scss │ │ │ ├── _carousel.scss │ │ │ ├── _container.scss │ │ │ ├── _contentfragment.scss │ │ │ ├── _contentfragmentlist.scss │ │ │ ├── _download.scss │ │ │ ├── _embed.scss │ │ │ ├── _experiencefragment.scss │ │ │ ├── _form-button.scss │ │ │ ├── _form-options.scss │ │ │ ├── _form-text.scss │ │ │ ├── _form.scss │ │ │ ├── _helloworld.js │ │ │ ├── _helloworld.scss │ │ │ ├── _image.scss │ │ │ ├── _languagenavigation.scss │ │ │ ├── _list.scss │ │ │ ├── _navigation.scss │ │ │ ├── _pdfviewer.scss │ │ │ ├── _progressbar.scss │ │ │ ├── _search.scss │ │ │ ├── _separator.scss │ │ │ ├── _tabs.scss │ │ │ ├── _teaser.scss │ │ │ ├── _text.scss │ │ │ └── _title.scss │ │ │ ├── resources │ │ │ ├── fonts │ │ │ │ └── .gitkeep │ │ │ └── images │ │ │ │ └── .gitkeep │ │ │ ├── site │ │ │ ├── _base.scss │ │ │ ├── _variables.scss │ │ │ ├── main.scss │ │ │ ├── main.ts │ │ │ └── styles │ │ │ │ ├── container_main.scss │ │ │ │ ├── experiencefragment_footer.scss │ │ │ │ └── experiencefragment_header.scss │ │ │ └── static │ │ │ └── index.html │ ├── tsconfig.json │ ├── webpack.common.js │ ├── webpack.dev.js │ ├── webpack.prod.js │ └── webpack.proxy.js │ └── ui.tests │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── assembly-ui-test-docker-context.xml │ ├── docker-compose-wdio-chrome.yaml │ ├── docker-compose-wdio-firefox.yaml │ ├── pom.xml │ ├── test-module │ ├── .eslintrc.js │ ├── README.md │ ├── assets │ │ └── image.png │ ├── lib │ │ ├── commons.js │ │ ├── config.js │ │ └── wdio.commands.js │ ├── package.json │ ├── specs │ │ └── aem │ │ │ ├── assets.js │ │ │ ├── basic.js │ │ │ ├── login.js │ │ │ └── sites.js │ ├── wdio.conf.cloud.js │ ├── wdio.conf.commons.js │ └── wdio.conf.local.js │ └── wait-for-grid.sh ├── aspectj ├── .gitignore ├── LICENSE ├── README.md ├── all │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ └── META-INF │ │ └── vault │ │ ├── definition │ │ └── .content.xml │ │ └── filter.xml ├── archetype.properties ├── core │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── aspectj │ │ │ └── core │ │ │ ├── aspects │ │ │ └── LoggerAspect.java │ │ │ ├── filters │ │ │ ├── LoggingFilter.java │ │ │ └── package-info.java │ │ │ ├── listeners │ │ │ ├── SimpleResourceListener.java │ │ │ └── package-info.java │ │ │ ├── models │ │ │ ├── HelloWorldModel.java │ │ │ └── package-info.java │ │ │ ├── schedulers │ │ │ ├── SimpleScheduledTask.java │ │ │ └── package-info.java │ │ │ └── servlets │ │ │ ├── SimpleServlet.java │ │ │ └── package-info.java │ │ └── test │ │ └── java │ │ └── com │ │ └── aspectj │ │ └── core │ │ ├── filters │ │ └── LoggingFilterTest.java │ │ ├── listeners │ │ └── SimpleResourceListenerTest.java │ │ ├── models │ │ └── HelloWorldModelTest.java │ │ ├── schedulers │ │ └── SimpleScheduledTaskTest.java │ │ └── servlets │ │ └── SimpleServletTest.java ├── dispatcher │ ├── README.md │ ├── assembly.xml │ ├── pom.xml │ └── src │ │ ├── conf.d │ │ ├── available_vhosts │ │ │ └── default.vhost │ │ ├── dispatcher_vhost.conf │ │ ├── enabled_vhosts │ │ │ ├── README │ │ │ └── default.vhost │ │ ├── rewrites │ │ │ ├── default_rewrite.rules │ │ │ └── rewrite.rules │ │ └── variables │ │ │ ├── custom.vars │ │ │ └── global.vars │ │ └── conf.dispatcher.d │ │ ├── available_farms │ │ └── default.farm │ │ ├── cache │ │ ├── default_invalidate.any │ │ ├── default_rules.any │ │ └── rules.any │ │ ├── clientheaders │ │ ├── clientheaders.any │ │ └── default_clientheaders.any │ │ ├── dispatcher.any │ │ ├── enabled_farms │ │ ├── README │ │ └── default.farm │ │ ├── filters │ │ ├── default_filters.any │ │ └── filters.any │ │ ├── renders │ │ └── default_renders.any │ │ └── virtualhosts │ │ ├── default_virtualhosts.any │ │ └── virtualhosts.any ├── it.tests │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── aspectj │ │ └── it │ │ └── tests │ │ ├── CreatePageIT.java │ │ └── GetPageIT.java ├── pom.xml ├── ui.apps.structure │ └── pom.xml ├── ui.apps │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ └── apps │ │ ├── .content.xml │ │ └── aspectj │ │ ├── clientlibs │ │ ├── clientlib-base │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── js.txt │ │ └── clientlib-grid │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── less │ │ │ └── grid.less │ │ ├── components │ │ ├── accordion │ │ │ ├── .content.xml │ │ │ ├── _cq_editConfig.xml │ │ │ └── _cq_template │ │ │ │ └── .content.xml │ │ ├── breadcrumb │ │ │ └── .content.xml │ │ ├── button │ │ │ └── .content.xml │ │ ├── carousel │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── container │ │ │ └── .content.xml │ │ ├── contentfragment │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── contentfragmentlist │ │ │ └── .content.xml │ │ ├── download │ │ │ └── .content.xml │ │ ├── embed │ │ │ └── .content.xml │ │ ├── experiencefragment │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── form │ │ │ ├── button │ │ │ │ └── .content.xml │ │ │ ├── container │ │ │ │ ├── .content.xml │ │ │ │ └── new │ │ │ │ │ └── .content.xml │ │ │ ├── hidden │ │ │ │ └── .content.xml │ │ │ ├── options │ │ │ │ └── .content.xml │ │ │ └── text │ │ │ │ └── .content.xml │ │ ├── helloworld │ │ │ ├── .content.xml │ │ │ ├── _cq_dialog │ │ │ │ └── .content.xml │ │ │ └── helloworld.html │ │ ├── image │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── languagenavigation │ │ │ └── .content.xml │ │ ├── list │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── navigation │ │ │ └── .content.xml │ │ ├── page │ │ │ ├── .content.xml │ │ │ ├── customfooterlibs.html │ │ │ └── customheaderlibs.html │ │ ├── pdfviewer │ │ │ └── .content.xml │ │ ├── progressbar │ │ │ └── .content.xml │ │ ├── search │ │ │ └── .content.xml │ │ ├── separator │ │ │ └── .content.xml │ │ ├── sharing │ │ │ └── .content.xml │ │ ├── spa │ │ │ └── .content.xml │ │ ├── tabs │ │ │ ├── .content.xml │ │ │ ├── _cq_editConfig.xml │ │ │ └── _cq_template │ │ │ │ └── .content.xml │ │ ├── teaser │ │ │ └── .content.xml │ │ ├── text │ │ │ └── .content.xml │ │ ├── title │ │ │ └── .content.xml │ │ └── xfpage │ │ │ ├── .content.xml │ │ │ ├── content.html │ │ │ ├── customfooterlibs.html │ │ │ └── customheaderlibs.html │ │ └── i18n │ │ ├── .content.xml │ │ ├── fr.json │ │ └── fr.json.dir │ │ └── .content.xml ├── ui.config │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ └── apps │ │ └── aspectj │ │ └── osgiconfig │ │ ├── config.author │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider~aspectj.cfg.json │ │ ├── config.prod │ │ └── org.apache.sling.commons.log.LogManager.factory.config~aspectj.cfg.json │ │ ├── config.publish │ │ └── org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.cfg.json │ │ ├── config.stage │ │ └── org.apache.sling.commons.log.LogManager.factory.config~aspectj.cfg.json │ │ └── config │ │ └── org.apache.sling.commons.log.LogManager.factory.config~aspectj.cfg.json ├── ui.content │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ ├── conf │ │ └── aspectj │ │ │ ├── .content.xml │ │ │ ├── _sling_configs │ │ │ ├── .content.xml │ │ │ └── _rep_policy.xml │ │ │ └── settings │ │ │ ├── .content.xml │ │ │ ├── cloudconfigs │ │ │ ├── .content.xml │ │ │ └── commerce │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ └── wcm │ │ │ ├── .content.xml │ │ │ ├── policies │ │ │ ├── .content.xml │ │ │ └── _rep_policy.xml │ │ │ ├── segments │ │ │ ├── .content.xml │ │ │ ├── summer │ │ │ │ └── .content.xml │ │ │ └── winter │ │ │ │ └── .content.xml │ │ │ ├── template-types │ │ │ ├── .content.xml │ │ │ ├── _rep_policy.xml │ │ │ ├── page │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ └── xf │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ │ └── thumbnail.png │ │ │ └── templates │ │ │ ├── .content.xml │ │ │ ├── _rep_policy.xml │ │ │ ├── page-content │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.png.dir │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── _dam_thumbnails │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ └── _dam_thumbnail_48.png │ │ │ └── xf-web-variation │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ └── .content.xml │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.png.dir │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── _dam_thumbnails │ │ │ ├── _dam_thumbnail_128.png │ │ │ └── _dam_thumbnail_319.png │ │ └── content │ │ ├── aspectj │ │ ├── .content.xml │ │ ├── _jcr_content │ │ │ └── image │ │ │ │ ├── file │ │ │ │ └── file.dir │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── _dam_thumbnails │ │ │ │ ├── _dam_thumbnail_48.png │ │ │ │ └── _dam_thumbnail_480.png │ │ └── us │ │ │ ├── .content.xml │ │ │ └── en │ │ │ └── .content.xml │ │ ├── dam │ │ ├── .content.xml │ │ └── aspectj │ │ │ ├── .content.xml │ │ │ ├── _jcr_content │ │ │ └── folderThumbnail │ │ │ └── asset.jpg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ ├── cq5dam.web.1280.1280.jpeg │ │ │ ├── original │ │ │ └── original.dir │ │ │ └── .content.xml │ │ └── experience-fragments │ │ └── aspectj │ │ ├── .content.xml │ │ └── us │ │ ├── .content.xml │ │ └── en │ │ ├── .content.xml │ │ └── site │ │ ├── .content.xml │ │ ├── footer │ │ ├── .content.xml │ │ └── master │ │ │ └── .content.xml │ │ └── header │ │ ├── .content.xml │ │ └── master │ │ └── .content.xml ├── ui.frontend │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc.js │ ├── README.md │ ├── assembly.xml │ ├── clientlib.config.js │ ├── package.json │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── webpack │ │ │ ├── components │ │ │ ├── _accordion.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button.scss │ │ │ ├── _carousel.scss │ │ │ ├── _container.scss │ │ │ ├── _contentfragment.scss │ │ │ ├── _contentfragmentlist.scss │ │ │ ├── _download.scss │ │ │ ├── _embed.scss │ │ │ ├── _experiencefragment.scss │ │ │ ├── _form-button.scss │ │ │ ├── _form-options.scss │ │ │ ├── _form-text.scss │ │ │ ├── _form.scss │ │ │ ├── _helloworld.js │ │ │ ├── _helloworld.scss │ │ │ ├── _image.scss │ │ │ ├── _languagenavigation.scss │ │ │ ├── _list.scss │ │ │ ├── _navigation.scss │ │ │ ├── _pdfviewer.scss │ │ │ ├── _progressbar.scss │ │ │ ├── _search.scss │ │ │ ├── _separator.scss │ │ │ ├── _tabs.scss │ │ │ ├── _teaser.scss │ │ │ ├── _text.scss │ │ │ └── _title.scss │ │ │ ├── resources │ │ │ ├── fonts │ │ │ │ └── .gitkeep │ │ │ └── images │ │ │ │ └── .gitkeep │ │ │ ├── site │ │ │ ├── _base.scss │ │ │ ├── _variables.scss │ │ │ ├── main.scss │ │ │ ├── main.ts │ │ │ └── styles │ │ │ │ ├── container_main.scss │ │ │ │ ├── experiencefragment_footer.scss │ │ │ │ └── experiencefragment_header.scss │ │ │ └── static │ │ │ └── index.html │ ├── tsconfig.json │ ├── webpack.common.js │ ├── webpack.dev.js │ └── webpack.prod.js └── ui.tests │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── assembly-ui-test-docker-context.xml │ ├── docker-compose-wdio-chrome.yaml │ ├── docker-compose-wdio-firefox.yaml │ ├── pom.xml │ ├── test-module │ ├── .eslintrc.js │ ├── README.md │ ├── assets │ │ └── image.png │ ├── lib │ │ ├── commons.js │ │ ├── config.js │ │ └── wdio.commands.js │ ├── package.json │ ├── specs │ │ └── aem │ │ │ ├── assets.js │ │ │ ├── basic.js │ │ │ ├── login.js │ │ │ └── sites.js │ ├── wdio.conf.cloud.js │ ├── wdio.conf.commons.js │ └── wdio.conf.local.js │ └── wait-for-grid.sh ├── browser-storage-demos ├── .gitignore ├── README.MD ├── app.js ├── cachestorageapi.html ├── cookies.html ├── data.json ├── data1.json ├── data2.json ├── data3.json ├── indexdb.html ├── package-lock.json ├── package.json ├── ssl │ ├── rootCA.key │ ├── rootCA.pem │ ├── rootCA.srl │ ├── server.crt │ ├── server.csr │ ├── server.csr.cnf │ ├── server.key │ └── v3.ext ├── websqlapi.html └── webstorageapi.html ├── browser ├── Cross-Domain-Cookies │ ├── README.md │ ├── SSL │ │ ├── server.crt │ │ └── server.key │ ├── api-server.js │ ├── image-1.png │ ├── image.png │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── index.html │ └── server.js ├── broadcast-channel │ ├── app.js │ ├── embed.html │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── ssl │ │ ├── rootCA.key │ │ ├── rootCA.pem │ │ ├── rootCA.srl │ │ ├── server.crt │ │ ├── server.csr │ │ ├── server.csr.cnf │ │ ├── server.key │ │ └── v3.ext │ └── test.html ├── extentions │ └── data_management_plugin │ │ ├── README.md │ │ ├── background.js │ │ ├── css │ │ ├── all.min.css │ │ └── popup.css │ │ ├── data.sample.json │ │ ├── js │ │ ├── popup.js │ │ ├── qrcode.min.js │ │ └── xlsx.full.min.js │ │ ├── manifest.json │ │ ├── popup.html │ │ └── webfonts │ │ ├── fa-solid-900.ttf │ │ └── fa-solid-900.woff2 ├── message-channel │ ├── app.js │ ├── embed.html │ ├── index.html │ ├── package-lock.json │ ├── package.json │ └── ssl │ │ ├── rootCA.key │ │ ├── rootCA.pem │ │ ├── rootCA.srl │ │ ├── server.crt │ │ ├── server.csr │ │ ├── server.csr.cnf │ │ ├── server.key │ │ └── v3.ext ├── postmessage │ ├── app.js │ ├── embed.html │ ├── index.html │ ├── package-lock.json │ ├── package.json │ └── ssl │ │ ├── rootCA.key │ │ ├── rootCA.pem │ │ ├── rootCA.srl │ │ ├── server.crt │ │ ├── server.csr │ │ ├── server.csr.cnf │ │ ├── server.key │ │ └── v3.ext └── speculation rules │ ├── app.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── selectormatch.html │ ├── speculationrules.json │ ├── ssl │ ├── rootCA.key │ ├── rootCA.pem │ ├── rootCA.srl │ ├── server.crt │ ├── server.csr │ ├── server.csr.cnf │ ├── server.key │ └── v3.ext │ ├── test1.html │ ├── test2.html │ ├── test3.html │ ├── test4.html │ ├── test5.html │ └── test6.html ├── cm-notification-nodejs ├── .env ├── package.json └── step7-teams.js ├── code-coverage-remote ├── .classpath ├── .gitignore ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.jdt.apt.core.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.jsdt.ui.superType.name │ └── org.eclipse.wst.validation.prefs ├── README.md ├── code-coverage-local.png ├── code-coverage-sonar.png ├── pom.xml └── src │ └── main │ ├── resources │ └── com │ │ └── sample │ │ └── SampleServlet.java │ └── webapp │ ├── WEB-INF │ └── web.xml │ └── index.jsp ├── contextawareconf ├── .gitignore ├── README.md ├── all │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ └── META-INF │ │ └── vault │ │ ├── definition │ │ └── .content.xml │ │ └── filter.xml ├── core │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ ├── com │ │ │ └── contextawareconf │ │ │ │ └── core │ │ │ │ ├── filters │ │ │ │ ├── LoggingFilter.java │ │ │ │ └── package-info.java │ │ │ │ ├── listeners │ │ │ │ ├── SimpleResourceListener.java │ │ │ │ └── package-info.java │ │ │ │ ├── models │ │ │ │ ├── HelloWorldModel.java │ │ │ │ └── package-info.java │ │ │ │ ├── schedulers │ │ │ │ ├── SimpleScheduledTask.java │ │ │ │ └── package-info.java │ │ │ │ └── servlets │ │ │ │ ├── ConfigurationData.java │ │ │ │ ├── SimpleServlet.java │ │ │ │ └── package-info.java │ │ │ └── configs │ │ │ ├── NestedConfig.java │ │ │ ├── SampleCollection.java │ │ │ └── SampleConfig.java │ │ └── test │ │ └── java │ │ └── com │ │ └── contextawareconf │ │ └── core │ │ ├── filters │ │ └── LoggingFilterTest.java │ │ ├── listeners │ │ └── SimpleResourceListenerTest.java │ │ ├── models │ │ └── HelloWorldModelTest.java │ │ ├── schedulers │ │ └── SimpleScheduledTaskTest.java │ │ └── servlets │ │ └── SimpleServletTest.java ├── dispatcher │ ├── README.md │ ├── assembly.xml │ ├── pom.xml │ └── src │ │ ├── conf.d │ │ ├── README │ │ ├── autoindex.conf │ │ ├── available_vhosts │ │ │ ├── 000_unhealthy_author.vhost │ │ │ ├── 000_unhealthy_publish.vhost │ │ │ ├── aem_author.vhost │ │ │ ├── aem_flush.vhost │ │ │ ├── aem_health.vhost │ │ │ ├── aem_lc.vhost │ │ │ ├── aem_publish.vhost │ │ │ └── contextawareconf_publish.vhost │ │ ├── dispatcher_vhost.conf │ │ ├── enabled_vhosts │ │ │ ├── aem_author.vhost │ │ │ ├── aem_flush.vhost │ │ │ ├── aem_health.vhost │ │ │ └── contextawareconf_publish.vhost │ │ ├── logformat.conf │ │ ├── remoteip.conf │ │ ├── rewrites │ │ │ ├── base_rewrite.rules │ │ │ ├── contextawareconf_rewrite.rules │ │ │ └── xforwarded_forcessl_rewrite.rules │ │ ├── security.conf │ │ ├── userdir.conf │ │ ├── variables │ │ │ └── ams_default.vars │ │ ├── welcome.conf │ │ └── whitelists │ │ │ └── 000_base_whitelist.rules │ │ ├── conf.dispatcher.d │ │ ├── available_farms │ │ │ ├── 000_ams_author_farm.any │ │ │ ├── 001_ams_lc_farm.any │ │ │ └── 999_ams_publish_farm.any │ │ ├── cache │ │ │ ├── ams_author_cache.any │ │ │ ├── ams_author_invalidate_allowed.any │ │ │ ├── ams_publish_cache.any │ │ │ └── ams_publish_invalidate_allowed.any │ │ ├── clientheaders │ │ │ ├── ams_author_clientheaders.any │ │ │ ├── ams_common_clientheaders.any │ │ │ ├── ams_lc_clientheaders.any │ │ │ └── ams_publish_clientheaders.any │ │ ├── dispatcher.any │ │ ├── enabled_farms │ │ │ ├── 000_ams_author_farm.any │ │ │ └── 999_ams_publish_farm.any │ │ ├── filters │ │ │ ├── ams_author_filters.any │ │ │ ├── ams_lc_filters.any │ │ │ └── ams_publish_filters.any │ │ ├── renders │ │ │ ├── ams_author_renders.any │ │ │ ├── ams_lc_renders.any │ │ │ └── ams_publish_renders.any │ │ └── vhosts │ │ │ ├── ams_author_vhosts.any │ │ │ ├── ams_lc_vhosts.any │ │ │ └── ams_publish_vhosts.any │ │ ├── conf.modules.d │ │ ├── 00-base.conf │ │ ├── 00-dav.conf │ │ ├── 00-lua.conf │ │ ├── 00-mpm.conf │ │ ├── 00-proxy.conf │ │ ├── 00-systemd.conf │ │ ├── 01-cgi.conf │ │ └── 02-dispatcher.conf │ │ └── conf │ │ ├── httpd.conf │ │ └── magic ├── it.launcher │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── contextawareconf │ │ │ └── it │ │ │ └── launcher │ │ │ └── package-info.java │ │ └── test │ │ └── java │ │ └── com │ │ └── contextawareconf │ │ └── it │ │ └── launcher │ │ ├── SlingServerSideTest.java │ │ └── SlingServerSideTestsBase.java ├── it.tests │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── contextawareconf │ │ └── it │ │ └── tests │ │ ├── HelloWorldModelServerSideTest.java │ │ └── package-info.java ├── pom.xml ├── ui.apps.structure │ └── pom.xml ├── ui.apps │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ └── apps │ │ ├── .content.xml │ │ └── contextawareconf │ │ ├── clientlibs │ │ ├── clientlib-base │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── js.txt │ │ └── clientlib-grid │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── less │ │ │ └── grid.less │ │ ├── components │ │ ├── accordion │ │ │ ├── .content.xml │ │ │ ├── _cq_editConfig.xml │ │ │ └── _cq_template │ │ │ │ └── .content.xml │ │ ├── breadcrumb │ │ │ └── .content.xml │ │ ├── button │ │ │ └── .content.xml │ │ ├── carousel │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── container │ │ │ └── .content.xml │ │ ├── contentfragment │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── contentfragmentlist │ │ │ └── .content.xml │ │ ├── download │ │ │ └── .content.xml │ │ ├── embed │ │ │ └── .content.xml │ │ ├── experiencefragment │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── form │ │ │ ├── button │ │ │ │ └── .content.xml │ │ │ ├── container │ │ │ │ ├── .content.xml │ │ │ │ └── new │ │ │ │ │ └── .content.xml │ │ │ ├── hidden │ │ │ │ └── .content.xml │ │ │ ├── options │ │ │ │ └── .content.xml │ │ │ └── text │ │ │ │ └── .content.xml │ │ ├── helloworld │ │ │ ├── .content.xml │ │ │ ├── _cq_dialog │ │ │ │ └── .content.xml │ │ │ └── helloworld.html │ │ ├── image │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── languagenavigation │ │ │ └── .content.xml │ │ ├── list │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── navigation │ │ │ └── .content.xml │ │ ├── page │ │ │ ├── .content.xml │ │ │ ├── customfooterlibs.html │ │ │ └── customheaderlibs.html │ │ ├── search │ │ │ └── .content.xml │ │ ├── separator │ │ │ └── .content.xml │ │ ├── sharing │ │ │ └── .content.xml │ │ ├── spa │ │ │ └── .content.xml │ │ ├── tabs │ │ │ ├── .content.xml │ │ │ ├── _cq_editConfig.xml │ │ │ └── _cq_template │ │ │ │ └── .content.xml │ │ ├── teaser │ │ │ └── .content.xml │ │ ├── text │ │ │ └── .content.xml │ │ ├── title │ │ │ ├── .content.xml │ │ │ └── title.html │ │ └── xfpage │ │ │ ├── .content.xml │ │ │ ├── content.html │ │ │ ├── customfooterlibs.html │ │ │ └── customheaderlibs.html │ │ ├── config.author │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider-contextawareconf.xml │ │ ├── config.prod │ │ └── org.apache.sling.commons.log.LogManager.factory.config-contextawareconf.xml │ │ ├── config.publish │ │ └── org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.xml │ │ ├── config.stage │ │ └── org.apache.sling.commons.log.LogManager.factory.config-contextawareconf.xml │ │ ├── config │ │ └── org.apache.sling.commons.log.LogManager.factory.config-contextawareconf.xml │ │ ├── i18n │ │ ├── .content.xml │ │ ├── fr.json │ │ └── fr.json.dir │ │ │ └── .content.xml │ │ ├── templates │ │ ├── configuration-page │ │ │ └── .content.xml │ │ ├── page-content │ │ │ └── .content.xml │ │ └── page-home │ │ │ └── .content.xml │ │ └── tests │ │ ├── .content.xml │ │ ├── SampleTests.js │ │ └── js.txt ├── ui.content │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ ├── conf │ │ └── contextawareconf │ │ │ ├── .content.xml │ │ │ └── settings │ │ │ ├── .content.xml │ │ │ └── wcm │ │ │ ├── .content.xml │ │ │ ├── policies │ │ │ ├── .content.xml │ │ │ └── _rep_policy.xml │ │ │ ├── segments │ │ │ ├── .content.xml │ │ │ ├── summer │ │ │ │ └── .content.xml │ │ │ └── winter │ │ │ │ └── .content.xml │ │ │ ├── template-types │ │ │ ├── .content.xml │ │ │ ├── _rep_policy.xml │ │ │ ├── page │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ └── xf │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ │ └── thumbnail.png │ │ │ └── templates │ │ │ ├── .content.xml │ │ │ ├── _rep_policy.xml │ │ │ ├── page-content │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.png.dir │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── _dam_thumbnails │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ └── _dam_thumbnail_48.png │ │ │ └── xf-web-variation │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ └── .content.xml │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.png.dir │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── _dam_thumbnails │ │ │ ├── _dam_thumbnail_128.png │ │ │ └── _dam_thumbnail_319.png │ │ └── content │ │ ├── contextawareconf │ │ ├── .content.xml │ │ ├── _jcr_content │ │ │ └── image │ │ │ │ ├── file │ │ │ │ └── file.dir │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── _dam_thumbnails │ │ │ │ ├── _dam_thumbnail_48.png │ │ │ │ └── _dam_thumbnail_480.png │ │ └── us │ │ │ ├── .content.xml │ │ │ ├── en │ │ │ ├── .content.xml │ │ │ └── configuration │ │ │ │ └── .content.xml │ │ │ └── es │ │ │ ├── .content.xml │ │ │ └── configuration │ │ │ └── .content.xml │ │ ├── dam │ │ ├── .content.xml │ │ └── contextawareconf │ │ │ ├── .content.xml │ │ │ ├── _jcr_content │ │ │ └── folderThumbnail │ │ │ └── asset.jpg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ ├── cq5dam.web.1280.1280.jpeg │ │ │ ├── original │ │ │ └── original.dir │ │ │ └── .content.xml │ │ └── experience-fragments │ │ └── contextawareconf │ │ ├── .content.xml │ │ └── us │ │ ├── .content.xml │ │ └── en │ │ ├── .content.xml │ │ └── site │ │ ├── .content.xml │ │ ├── footer │ │ ├── .content.xml │ │ └── master │ │ │ └── .content.xml │ │ └── header │ │ ├── .content.xml │ │ └── master │ │ └── .content.xml └── ui.frontend │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc.js │ ├── README.md │ ├── assembly.xml │ ├── clientlib.config.js │ ├── package.json │ ├── pom.xml │ ├── src │ └── main │ │ └── webpack │ │ ├── components │ │ ├── _accordion.scss │ │ ├── _breadcrumb.scss │ │ ├── _button.scss │ │ ├── _carousel.scss │ │ ├── _container.scss │ │ ├── _contentfragment.scss │ │ ├── _contentfragmentlist.scss │ │ ├── _download.scss │ │ ├── _experiencefragment.scss │ │ ├── _form-button.scss │ │ ├── _form-options.scss │ │ ├── _form-text.scss │ │ ├── _form.scss │ │ ├── _helloworld.js │ │ ├── _helloworld.scss │ │ ├── _image.scss │ │ ├── _languagenavigation.scss │ │ ├── _list.scss │ │ ├── _navigation.scss │ │ ├── _search.scss │ │ ├── _tabs.scss │ │ ├── _teaser.scss │ │ ├── _text.scss │ │ └── _title.scss │ │ ├── resources │ │ ├── fonts │ │ │ └── .gitkeep │ │ └── images │ │ │ └── .gitkeep │ │ ├── site │ │ ├── _base.scss │ │ ├── _variables.scss │ │ ├── main.scss │ │ ├── main.ts │ │ └── styles │ │ │ ├── container_main.scss │ │ │ ├── experiencefragment_footer.scss │ │ │ └── experiencefragment_header.scss │ │ └── static │ │ └── index.html │ ├── tsconfig.json │ ├── webpack.common.js │ ├── webpack.dev.js │ └── webpack.prod.js ├── copyrightmanagement ├── README.md ├── copyrightmanagement-components-1.0.zip └── core │ ├── pom.xml │ ├── src │ ├── main │ │ └── java │ │ │ └── copyrightmanagement │ │ │ └── core │ │ │ ├── filters │ │ │ ├── LoggingFilter.java │ │ │ └── package-info.java │ │ │ ├── listeners │ │ │ ├── SimpleResourceListener.java │ │ │ └── package-info.java │ │ │ ├── models │ │ │ ├── CopyrightContentFragmentModel.java │ │ │ ├── HelloWorldModel.java │ │ │ └── package-info.java │ │ │ ├── schedulers │ │ │ ├── SimpleScheduledTask.java │ │ │ └── package-info.java │ │ │ └── servlets │ │ │ ├── SimpleServlet.java │ │ │ └── package-info.java │ └── test │ │ └── java │ │ └── copyrightmanagement │ │ └── core │ │ ├── filters │ │ └── LoggingFilterTest.java │ │ ├── listeners │ │ └── SimpleResourceListenerTest.java │ │ ├── models │ │ └── HelloWorldModelTest.java │ │ ├── schedulers │ │ └── SimpleScheduledTaskTest.java │ │ └── servlets │ │ └── SimpleServletTest.java │ └── target │ ├── classes │ ├── META-INF │ │ └── MANIFEST.MF │ ├── OSGI-INF │ │ ├── copyrightmanagement.core.filters.LoggingFilter.xml │ │ ├── copyrightmanagement.core.listeners.SimpleResourceListener.xml │ │ ├── copyrightmanagement.core.schedulers.SimpleScheduledTask.xml │ │ ├── copyrightmanagement.core.servlets.SimpleServlet.xml │ │ └── metatype │ │ │ └── copyrightmanagement.core.schedulers.SimpleScheduledTask$Config.xml │ └── copyrightmanagement │ │ └── core │ │ ├── filters │ │ ├── LoggingFilter.class │ │ └── package-info.class │ │ ├── listeners │ │ ├── SimpleResourceListener.class │ │ └── package-info.class │ │ ├── models │ │ ├── CopyrightContentFragmentModel.class │ │ ├── HelloWorldModel.class │ │ └── package-info.class │ │ ├── schedulers │ │ ├── SimpleScheduledTask$Config.class │ │ ├── SimpleScheduledTask.class │ │ └── package-info.class │ │ └── servlets │ │ ├── SimpleServlet.class │ │ └── package-info.class │ ├── copyrightmanagement.copyrightmanagement.core-1.0-SNAPSHOT.jar │ ├── maven-archiver │ └── pom.properties │ ├── maven-status │ └── maven-compiler-plugin │ │ ├── compile │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── testCompile │ │ └── default-testCompile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ ├── surefire-reports │ ├── TEST-copyrightmanagement.core.filters.LoggingFilterTest.xml │ ├── TEST-copyrightmanagement.core.listeners.SimpleResourceListenerTest.xml │ ├── TEST-copyrightmanagement.core.models.HelloWorldModelTest.xml │ ├── TEST-copyrightmanagement.core.schedulers.SimpleScheduledTaskTest.xml │ ├── TEST-copyrightmanagement.core.servlets.SimpleServletTest.xml │ ├── copyrightmanagement.core.filters.LoggingFilterTest.txt │ ├── copyrightmanagement.core.listeners.SimpleResourceListenerTest.txt │ ├── copyrightmanagement.core.models.HelloWorldModelTest.txt │ ├── copyrightmanagement.core.schedulers.SimpleScheduledTaskTest.txt │ └── copyrightmanagement.core.servlets.SimpleServletTest.txt │ └── test-classes │ └── copyrightmanagement │ └── core │ ├── filters │ └── LoggingFilterTest.class │ ├── listeners │ └── SimpleResourceListenerTest.class │ ├── models │ └── HelloWorldModelTest.class │ ├── schedulers │ └── SimpleScheduledTaskTest.class │ └── servlets │ └── SimpleServletTest.class ├── corecomponents ├── Configurations.txt └── ExtendedTitleModel.java ├── crypto-nodejs.txt ├── csp-express-js ├── .gitignore ├── README.MD ├── app.js ├── cspresponseheaders.html ├── package-lock.json └── package.json ├── db.json ├── edgesiteincludehandler.txt ├── editabletemplatedemo ├── README.md ├── editabledemo-base-1.0.zip ├── editabletemplate-conf-1.0.zip └── editabletemplate-content-1.0.zip ├── error-handler.conf ├── et) -C(bold green)(-ar)-C(reset)-C(bold yellow)-d-C(reset)-n -C(white)-s-C(reset) ├── express-templates ├── package.json ├── server.js └── views │ ├── pages │ └── index.ejs │ └── partials │ ├── footer.ejs │ ├── head.ejs │ ├── header.ejs │ └── maincontent.ejs ├── gatedcontent ├── .gitignore ├── README.md ├── all │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ └── META-INF │ │ └── vault │ │ ├── definition │ │ └── .content.xml │ │ └── filter.xml ├── core │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── gatedcontent │ │ │ └── core │ │ │ ├── constants │ │ │ └── Constants.java │ │ │ ├── filters │ │ │ ├── GatedContentFilter.java │ │ │ ├── LoggingFilter.java │ │ │ └── package-info.java │ │ │ ├── listeners │ │ │ ├── SimpleResourceListener.java │ │ │ └── package-info.java │ │ │ ├── models │ │ │ ├── GatedFilterInfo.java │ │ │ ├── GatedResource.java │ │ │ ├── HelloWorldModel.java │ │ │ └── package-info.java │ │ │ ├── schedulers │ │ │ ├── SimpleScheduledTask.java │ │ │ └── package-info.java │ │ │ ├── services │ │ │ ├── CookieHandler.java │ │ │ ├── GatedContentService.java │ │ │ └── GatedFormDataProcessor.java │ │ │ ├── servlets │ │ │ ├── SimpleServlet.java │ │ │ └── package-info.java │ │ │ └── utils │ │ │ └── Helpers.java │ │ └── test │ │ └── java │ │ └── com │ │ └── gatedcontent │ │ └── core │ │ ├── filters │ │ └── LoggingFilterTest.java │ │ ├── listeners │ │ └── SimpleResourceListenerTest.java │ │ ├── models │ │ └── HelloWorldModelTest.java │ │ ├── schedulers │ │ └── SimpleScheduledTaskTest.java │ │ └── servlets │ │ └── SimpleServletTest.java ├── dispatcher │ ├── README.md │ ├── assembly.xml │ ├── pom.xml │ └── src │ │ ├── conf.d │ │ ├── README │ │ ├── autoindex.conf │ │ ├── available_vhosts │ │ │ ├── 000_unhealthy_author.vhost │ │ │ ├── 000_unhealthy_publish.vhost │ │ │ ├── aem_author.vhost │ │ │ ├── aem_flush.vhost │ │ │ ├── aem_health.vhost │ │ │ ├── aem_lc.vhost │ │ │ ├── aem_publish.vhost │ │ │ └── gatedcontent_publish.vhost │ │ ├── dispatcher_vhost.conf │ │ ├── enabled_vhosts │ │ │ ├── aem_author.vhost │ │ │ ├── aem_flush.vhost │ │ │ ├── aem_health.vhost │ │ │ └── gatedcontent_publish.vhost │ │ ├── logformat.conf │ │ ├── remoteip.conf │ │ ├── rewrites │ │ │ ├── base_rewrite.rules │ │ │ ├── gatedcontent_rewrite.rules │ │ │ └── xforwarded_forcessl_rewrite.rules │ │ ├── security.conf │ │ ├── userdir.conf │ │ ├── variables │ │ │ └── ams_default.vars │ │ ├── welcome.conf │ │ └── whitelists │ │ │ └── 000_base_whitelist.rules │ │ ├── conf.dispatcher.d │ │ ├── available_farms │ │ │ ├── 000_ams_author_farm.any │ │ │ ├── 001_ams_lc_farm.any │ │ │ └── 999_ams_publish_farm.any │ │ ├── cache │ │ │ ├── ams_author_cache.any │ │ │ ├── ams_author_invalidate_allowed.any │ │ │ ├── ams_publish_cache.any │ │ │ └── ams_publish_invalidate_allowed.any │ │ ├── clientheaders │ │ │ ├── ams_author_clientheaders.any │ │ │ ├── ams_common_clientheaders.any │ │ │ ├── ams_lc_clientheaders.any │ │ │ └── ams_publish_clientheaders.any │ │ ├── dispatcher.any │ │ ├── enabled_farms │ │ │ ├── 000_ams_author_farm.any │ │ │ └── 999_ams_publish_farm.any │ │ ├── filters │ │ │ ├── ams_author_filters.any │ │ │ ├── ams_lc_filters.any │ │ │ └── ams_publish_filters.any │ │ ├── renders │ │ │ ├── ams_author_renders.any │ │ │ ├── ams_lc_renders.any │ │ │ └── ams_publish_renders.any │ │ └── vhosts │ │ │ ├── ams_author_vhosts.any │ │ │ ├── ams_lc_vhosts.any │ │ │ └── ams_publish_vhosts.any │ │ ├── conf.modules.d │ │ ├── 00-base.conf │ │ ├── 00-dav.conf │ │ ├── 00-lua.conf │ │ ├── 00-mpm.conf │ │ ├── 00-proxy.conf │ │ ├── 00-systemd.conf │ │ ├── 01-cgi.conf │ │ └── 02-dispatcher.conf │ │ └── conf │ │ ├── httpd.conf │ │ └── magic ├── it.launcher │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── gatedcontent │ │ │ └── it │ │ │ └── launcher │ │ │ └── package-info.java │ │ └── test │ │ └── java │ │ └── com │ │ └── gatedcontent │ │ └── it │ │ └── launcher │ │ ├── SlingServerSideTest.java │ │ └── SlingServerSideTestsBase.java ├── it.tests │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── gatedcontent │ │ └── it │ │ └── tests │ │ ├── HelloWorldModelServerSideTest.java │ │ └── package-info.java ├── pom.xml ├── ui.apps.structure │ └── pom.xml ├── ui.apps │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ └── apps │ │ ├── .content.xml │ │ ├── foundation │ │ ├── .content.xml │ │ └── components │ │ │ ├── .content.xml │ │ │ └── form │ │ │ ├── .content.xml │ │ │ └── actions │ │ │ ├── .content.xml │ │ │ └── gatedredirect │ │ │ ├── .content.xml │ │ │ ├── _cq_dialog │ │ │ └── .content.xml │ │ │ └── post.POST.jsp │ │ └── gatedcontent │ │ ├── clientlibs │ │ ├── clientlib-base │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── js.txt │ │ └── clientlib-grid │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── less │ │ │ └── grid.less │ │ ├── components │ │ ├── accordion │ │ │ ├── .content.xml │ │ │ ├── _cq_editConfig.xml │ │ │ └── _cq_template │ │ │ │ └── .content.xml │ │ ├── breadcrumb │ │ │ └── .content.xml │ │ ├── button │ │ │ └── .content.xml │ │ ├── carousel │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── container │ │ │ └── .content.xml │ │ ├── contentfragment │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── contentfragmentlist │ │ │ └── .content.xml │ │ ├── download │ │ │ └── .content.xml │ │ ├── embed │ │ │ └── .content.xml │ │ ├── experiencefragment │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── form │ │ │ ├── button │ │ │ │ └── .content.xml │ │ │ ├── container │ │ │ │ ├── .content.xml │ │ │ │ └── new │ │ │ │ │ └── .content.xml │ │ │ ├── hidden │ │ │ │ └── .content.xml │ │ │ ├── options │ │ │ │ └── .content.xml │ │ │ └── text │ │ │ │ └── .content.xml │ │ ├── helloworld │ │ │ ├── .content.xml │ │ │ ├── _cq_dialog │ │ │ │ └── .content.xml │ │ │ └── helloworld.html │ │ ├── image │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── languagenavigation │ │ │ └── .content.xml │ │ ├── list │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── navigation │ │ │ └── .content.xml │ │ ├── page │ │ │ ├── .content.xml │ │ │ ├── _cq_dialog │ │ │ │ └── .content.xml │ │ │ ├── customfooterlibs.html │ │ │ └── customheaderlibs.html │ │ ├── search │ │ │ └── .content.xml │ │ ├── separator │ │ │ └── .content.xml │ │ ├── sharing │ │ │ └── .content.xml │ │ ├── spa │ │ │ └── .content.xml │ │ ├── tabs │ │ │ ├── .content.xml │ │ │ ├── _cq_editConfig.xml │ │ │ └── _cq_template │ │ │ │ └── .content.xml │ │ ├── teaser │ │ │ └── .content.xml │ │ ├── text │ │ │ └── .content.xml │ │ ├── title │ │ │ └── .content.xml │ │ └── xfpage │ │ │ ├── .content.xml │ │ │ ├── content.html │ │ │ ├── customfooterlibs.html │ │ │ └── customheaderlibs.html │ │ ├── config.author │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider-gatedcontent.xml │ │ ├── config.prod │ │ └── org.apache.sling.commons.log.LogManager.factory.config-gatedcontent.xml │ │ ├── config.publish │ │ └── org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.xml │ │ ├── config.stage │ │ └── org.apache.sling.commons.log.LogManager.factory.config-gatedcontent.xml │ │ ├── config │ │ └── org.apache.sling.commons.log.LogManager.factory.config-gatedcontent.xml │ │ ├── i18n │ │ ├── .content.xml │ │ ├── fr.json │ │ └── fr.json.dir │ │ │ └── .content.xml │ │ ├── templates │ │ ├── page-content │ │ │ └── .content.xml │ │ └── page-home │ │ │ └── .content.xml │ │ └── tests │ │ ├── .content.xml │ │ ├── SampleTests.js │ │ └── js.txt ├── ui.content │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ ├── conf │ │ └── gatedcontent │ │ │ ├── .content.xml │ │ │ └── settings │ │ │ ├── .content.xml │ │ │ └── wcm │ │ │ ├── .content.xml │ │ │ ├── policies │ │ │ ├── .content.xml │ │ │ └── _rep_policy.xml │ │ │ ├── segments │ │ │ ├── .content.xml │ │ │ ├── summer │ │ │ │ └── .content.xml │ │ │ └── winter │ │ │ │ └── .content.xml │ │ │ ├── template-types │ │ │ ├── .content.xml │ │ │ ├── _rep_policy.xml │ │ │ ├── page │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ └── xf │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ │ └── thumbnail.png │ │ │ └── templates │ │ │ ├── .content.xml │ │ │ ├── _rep_policy.xml │ │ │ ├── page-content │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.png.dir │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── _dam_thumbnails │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ └── _dam_thumbnail_48.png │ │ │ └── xf-web-variation │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ └── .content.xml │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.png.dir │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── _dam_thumbnails │ │ │ ├── _dam_thumbnail_128.png │ │ │ └── _dam_thumbnail_319.png │ │ └── content │ │ ├── dam │ │ ├── .content.xml │ │ └── gatedcontent │ │ │ ├── .content.xml │ │ │ ├── _jcr_content │ │ │ └── folderThumbnail │ │ │ └── asset.jpg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ ├── cq5dam.web.1280.1280.jpeg │ │ │ ├── original │ │ │ └── original.dir │ │ │ └── .content.xml │ │ ├── experience-fragments │ │ └── gatedcontent │ │ │ ├── .content.xml │ │ │ └── us │ │ │ ├── .content.xml │ │ │ └── en │ │ │ ├── .content.xml │ │ │ └── site │ │ │ ├── .content.xml │ │ │ ├── footer │ │ │ ├── .content.xml │ │ │ └── master │ │ │ │ └── .content.xml │ │ │ └── header │ │ │ ├── .content.xml │ │ │ └── master │ │ │ └── .content.xml │ │ └── gatedcontent │ │ ├── .content.xml │ │ ├── _jcr_content │ │ └── image │ │ │ ├── file │ │ │ └── file.dir │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── _dam_thumbnails │ │ │ ├── _dam_thumbnail_48.png │ │ │ └── _dam_thumbnail_480.png │ │ └── us │ │ ├── .content.xml │ │ └── en │ │ └── .content.xml └── ui.frontend │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc.js │ ├── README.md │ ├── assembly.xml │ ├── clientlib.config.js │ ├── package.json │ ├── pom.xml │ ├── src │ └── main │ │ └── webpack │ │ ├── components │ │ ├── _accordion.scss │ │ ├── _breadcrumb.scss │ │ ├── _button.scss │ │ ├── _carousel.scss │ │ ├── _container.scss │ │ ├── _contentfragment.scss │ │ ├── _contentfragmentlist.scss │ │ ├── _download.scss │ │ ├── _experiencefragment.scss │ │ ├── _form-button.scss │ │ ├── _form-options.scss │ │ ├── _form-text.scss │ │ ├── _form.scss │ │ ├── _helloworld.js │ │ ├── _helloworld.scss │ │ ├── _image.scss │ │ ├── _languagenavigation.scss │ │ ├── _list.scss │ │ ├── _navigation.scss │ │ ├── _search.scss │ │ ├── _tabs.scss │ │ ├── _teaser.scss │ │ ├── _text.scss │ │ └── _title.scss │ │ ├── resources │ │ ├── fonts │ │ │ └── .gitkeep │ │ └── images │ │ │ └── .gitkeep │ │ ├── site │ │ ├── _base.scss │ │ ├── _variables.scss │ │ ├── main.scss │ │ ├── main.ts │ │ └── styles │ │ │ ├── container_main.scss │ │ │ ├── experiencefragment_footer.scss │ │ │ └── experiencefragment_header.scss │ │ └── static │ │ └── index.html │ ├── tsconfig.json │ ├── webpack.common.js │ ├── webpack.dev.js │ └── webpack.prod.js ├── git-secret.txt ├── jaxrsservice ├── .gitignore ├── README.md ├── core │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── jaxrsservice │ │ │ └── core │ │ │ ├── filters │ │ │ └── LoggingFilter.java │ │ │ ├── listeners │ │ │ └── SimpleResourceListener.java │ │ │ ├── models │ │ │ └── HelloWorldModel.java │ │ │ ├── package-info.java │ │ │ ├── restservices │ │ │ ├── Product.java │ │ │ └── RESTProductAPI.java │ │ │ ├── schedulers │ │ │ └── SimpleScheduledTask.java │ │ │ └── servlets │ │ │ └── SimpleServlet.java │ │ └── test │ │ └── java │ │ └── jaxrsservice │ │ └── core │ │ └── models │ │ └── TestHelloWorldModel.java ├── it.launcher │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── jaxrsservice │ │ │ └── it │ │ │ └── launcher │ │ │ └── package-info.java │ │ └── test │ │ └── java │ │ └── jaxrsservice │ │ └── it │ │ └── launcher │ │ ├── SlingServerSideTest.java │ │ └── SlingServerSideTestsBase.java ├── it.tests │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── jaxrsservice │ │ └── it │ │ └── tests │ │ └── HelloWorldModelServerSideTest.java ├── pom.xml ├── ui.apps │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ └── apps │ │ ├── .content.xml │ │ ├── jaxrsservice │ │ ├── clientlibs │ │ │ └── clientlib-base │ │ │ │ ├── .content.xml │ │ │ │ ├── css.txt │ │ │ │ └── js.txt │ │ ├── components │ │ │ ├── content │ │ │ │ ├── breadcrumb │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── clientlib │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ └── less │ │ │ │ │ │ └── breadcrumb.less │ │ │ │ ├── helloworld │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── helloworld.html │ │ │ │ ├── image │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ ├── languagenavigation │ │ │ │ │ └── .content.xml │ │ │ │ ├── list │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ ├── navigation │ │ │ │ │ └── .content.xml │ │ │ │ ├── search │ │ │ │ │ └── .content.xml │ │ │ │ ├── sharing │ │ │ │ │ └── .content.xml │ │ │ │ ├── text │ │ │ │ │ └── .content.xml │ │ │ │ └── title │ │ │ │ │ └── .content.xml │ │ │ ├── form │ │ │ │ ├── button │ │ │ │ │ └── .content.xml │ │ │ │ ├── container │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── new │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── hidden │ │ │ │ │ └── .content.xml │ │ │ │ ├── options │ │ │ │ │ └── .content.xml │ │ │ │ └── text │ │ │ │ │ └── .content.xml │ │ │ └── structure │ │ │ │ └── page │ │ │ │ ├── .content.xml │ │ │ │ ├── customfooterlibs.html │ │ │ │ └── customheaderlibs.html │ │ ├── config.author │ │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider-jaxrsservice.xml │ │ ├── config │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config-jaxrsservice.xml │ │ ├── i18n │ │ │ ├── .content.xml │ │ │ └── fr.xml │ │ ├── templates │ │ │ ├── page-content │ │ │ │ └── .content.xml │ │ │ └── page-home │ │ │ │ └── .content.xml │ │ └── tests │ │ │ ├── .content.xml │ │ │ ├── SampleTests.js │ │ │ └── js.txt │ │ └── sling │ │ └── servlet │ │ └── errorhandler │ │ ├── 404.html │ │ └── ResponseStatus.java └── ui.content │ ├── pom.xml │ └── src │ └── main │ └── content │ ├── META-INF │ └── vault │ │ └── filter.xml │ └── jcr_root │ ├── conf │ └── jaxrsservice │ │ ├── .content.xml │ │ └── settings │ │ ├── .content.xml │ │ └── wcm │ │ ├── .content.xml │ │ ├── policies │ │ ├── .content.xml │ │ └── _rep_policy.xml │ │ ├── template-types │ │ ├── .content.xml │ │ ├── _rep_policy.xml │ │ └── empty-page │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ └── .content.xml │ │ │ └── structure │ │ │ └── .content.xml │ │ └── templates │ │ ├── .content.xml │ │ ├── _rep_policy.xml │ │ └── content-page │ │ ├── .content.xml │ │ ├── initial │ │ └── .content.xml │ │ ├── policies │ │ └── .content.xml │ │ └── structure │ │ └── .content.xml │ └── content │ ├── dam │ ├── .content.xml │ └── jaxrsservice │ │ ├── .content.xml │ │ ├── _jcr_content │ │ └── folderThumbnail │ │ └── asset.jpg │ │ ├── .content.xml │ │ └── _jcr_content │ │ └── renditions │ │ ├── cq5dam.thumbnail.140.100.png │ │ ├── cq5dam.thumbnail.319.319.png │ │ ├── cq5dam.thumbnail.48.48.png │ │ ├── cq5dam.web.1280.1280.jpeg │ │ ├── original │ │ └── original.dir │ │ └── .content.xml │ └── jaxrsservice │ ├── .content.xml │ ├── _jcr_content │ └── image │ │ ├── file │ │ └── file.dir │ │ ├── .content.xml │ │ └── _jcr_content │ │ └── _dam_thumbnails │ │ ├── _dam_thumbnail_300.png │ │ ├── _dam_thumbnail_319.png │ │ └── _dam_thumbnail_48.png │ ├── en │ ├── .content.xml │ └── _jcr_content │ │ └── image │ │ ├── file │ │ └── file.dir │ │ ├── .content.xml │ │ └── _jcr_content │ │ └── _dam_thumbnails │ │ └── _dam_thumbnail_319.png │ └── fr │ ├── .content.xml │ └── _jcr_content │ └── image │ ├── file │ └── file.dir │ ├── .content.xml │ └── _jcr_content │ └── _dam_thumbnails │ └── _dam_thumbnail_319.png ├── jcr-packages └── resource-mapping │ ├── etc-mapping-1.0.zip │ └── resource-etc-map-http.json ├── lambda-edge-functions.txt ├── llms └── ollama │ ├── js │ ├── index.js │ ├── package-lock.json │ └── package.json │ └── py │ ├── Adobe-Experience-Manager.pdf │ ├── ollama_langchain.py │ ├── ollama_llamaindex.py │ └── ollama_phi_python.py ├── lucene ├── SuggestionData.java ├── luceneindex-lowercase-1.0.zip ├── luceneindex-suggestion-1.0.zip └── luceneindex-synonyms-1.0.zip ├── maven-sample-webapp ├── .classpath ├── .gitignore ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.jdt.apt.core.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.wst.jsdt.ui.superType.name │ └── org.eclipse.wst.validation.prefs ├── README.md ├── pom.xml └── src │ └── main │ ├── resources │ └── com │ │ └── sample │ │ └── SampleServlet.java │ └── webapp │ ├── WEB-INF │ └── web.xml │ └── index.jsp ├── mousetrap-demo ├── README.md └── client │ ├── package-lock.json │ ├── package.json │ ├── public │ └── index.html │ ├── src │ ├── App.css │ ├── App.js │ ├── index.css │ ├── index.js │ └── logo.svg │ └── yarn.lock ├── node-cron └── JobHandler.js ├── nodeapp-email ├── package.json ├── server.js └── server │ ├── emailConfig.js │ ├── files │ └── hello.txt │ ├── server.js │ └── templates │ └── test │ ├── html.ejs │ ├── subject.ejs │ └── text.ejs ├── performance-api-demo ├── .gitignore ├── README.MD ├── app.js ├── highresolutionapi.js ├── navigationtimingapi.js ├── package-lock.json ├── package.json ├── painttimingapi.js ├── performanceapidemo.html ├── resourcetimingapi.js ├── user-timing-dev-tools.png └── usertimingapi.js ├── redirect-admin ├── redirect_map_converter.sh └── redirectmanager │ ├── .gitignore │ ├── README.md │ ├── all │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ └── META-INF │ │ └── vault │ │ ├── definition │ │ └── .content.xml │ │ └── filter.xml │ ├── core │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── redirectmanager │ │ └── core │ │ ├── models │ │ ├── RedirectRule.java │ │ ├── RuleConfigModel.java │ │ ├── RuleResourceModel.java │ │ └── package-info.java │ │ ├── servlets │ │ └── RedirectRulesConfigServlet.java │ │ └── utilities │ │ └── RedirectsRuleUtil.java │ ├── pom.xml │ ├── ui.apps │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ └── apps │ │ ├── .content.xml │ │ └── redirectmanager │ │ ├── clientlibs │ │ ├── clientlib-base │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── js.txt │ │ └── clientlib-grid │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── less │ │ │ └── grid.less │ │ ├── components │ │ ├── content │ │ │ ├── perm-redirects │ │ │ │ ├── .content.xml │ │ │ │ ├── perm-redirects.html │ │ │ │ ├── perm-redirects.html.dir │ │ │ │ │ └── .content.xml │ │ │ │ └── rule │ │ │ │ │ ├── .content.xml │ │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── rule.html │ │ │ │ │ └── rule.html.dir │ │ │ │ │ └── .content.xml │ │ │ └── temp-redirects │ │ │ │ ├── .content.xml │ │ │ │ ├── rule │ │ │ │ ├── .content.xml │ │ │ │ ├── _cq_dialog │ │ │ │ │ └── .content.xml │ │ │ │ └── rule.html │ │ │ │ ├── temp-redirects.html │ │ │ │ └── temp-redirects.html.dir │ │ │ │ └── .content.xml │ │ └── structure │ │ │ └── page │ │ │ ├── .content.xml │ │ │ ├── body.html │ │ │ ├── customfooterlibs.html │ │ │ └── customheaderlibs.html │ │ ├── config.author │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider-redirect-manager.xml │ │ ├── config.publish │ │ └── org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.xml │ │ ├── config │ │ └── org.apache.sling.commons.log.LogManager.factory.config-redirect-manager.xml │ │ └── i18n │ │ ├── .content.xml │ │ ├── fr.json │ │ └── fr.json.dir │ │ └── .content.xml │ └── ui.content │ ├── pom.xml │ └── src │ └── main │ └── content │ ├── META-INF │ └── vault │ │ └── filter.xml │ └── jcr_root │ ├── conf │ ├── .content.xml │ └── redirectmanager │ │ ├── .content.xml │ │ └── settings │ │ ├── .content.xml │ │ └── wcm │ │ ├── .content.xml │ │ ├── policies │ │ ├── .content.xml │ │ └── _rep_policy.xml │ │ ├── segments │ │ ├── .content.xml │ │ ├── summer │ │ │ └── .content.xml │ │ └── winter │ │ │ └── .content.xml │ │ ├── template-types │ │ ├── .content.xml │ │ ├── _rep_policy.xml │ │ └── empty-page │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ └── .content.xml │ │ │ └── structure │ │ │ └── .content.xml │ │ └── templates │ │ ├── .content.xml │ │ ├── _rep_policy.xml │ │ └── redirectmanager-template │ │ ├── .content.xml │ │ ├── initial │ │ └── .content.xml │ │ ├── policies │ │ └── .content.xml │ │ └── structure │ │ └── .content.xml │ └── content │ ├── dam │ ├── .content.xml │ └── redirectmanager │ │ ├── .content.xml │ │ ├── _jcr_content │ │ ├── folderThumbnail │ │ └── folderThumbnail.dir │ │ │ └── .content.xml │ │ └── warn.png │ │ ├── .content.xml │ │ └── _jcr_content │ │ └── renditions │ │ ├── cq5dam.thumbnail.140.100.png │ │ ├── cq5dam.thumbnail.140.100.png.dir │ │ └── .content.xml │ │ ├── cq5dam.thumbnail.319.319.png │ │ ├── cq5dam.thumbnail.319.319.png.dir │ │ └── .content.xml │ │ ├── cq5dam.thumbnail.48.48.png │ │ ├── cq5dam.thumbnail.48.48.png.dir │ │ └── .content.xml │ │ ├── cq5dam.web.1280.1280.png │ │ ├── cq5dam.web.1280.1280.png.dir │ │ └── .content.xml │ │ ├── original │ │ └── original.dir │ │ └── .content.xml │ └── redirectmanager │ ├── .content.xml │ ├── _jcr_content │ └── image │ │ ├── file │ │ └── file.dir │ │ ├── .content.xml │ │ └── _jcr_content │ │ └── _dam_thumbnails │ │ ├── _dam_thumbnail_300.png │ │ ├── _dam_thumbnail_48.png │ │ └── _dam_thumbnail_480.png │ └── test-site │ └── .content.xml ├── renderconditins ├── .gitignore ├── README.md ├── all │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ └── META-INF │ │ └── vault │ │ ├── definition │ │ └── .content.xml │ │ └── filter.xml ├── core │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── renderconditions │ │ │ └── core │ │ │ ├── cutomconditions │ │ │ └── CustomRenderConditions.java │ │ │ ├── filters │ │ │ ├── LoggingFilter.java │ │ │ └── package-info.java │ │ │ ├── listeners │ │ │ ├── SimpleResourceListener.java │ │ │ └── package-info.java │ │ │ ├── models │ │ │ ├── HelloWorldModel.java │ │ │ └── package-info.java │ │ │ ├── schedulers │ │ │ ├── SimpleScheduledTask.java │ │ │ └── package-info.java │ │ │ └── servlets │ │ │ ├── SimpleServlet.java │ │ │ └── package-info.java │ │ └── test │ │ └── java │ │ └── renderconditions │ │ └── core │ │ ├── filters │ │ └── LoggingFilterTest.java │ │ ├── listeners │ │ └── SimpleResourceListenerTest.java │ │ ├── models │ │ └── HelloWorldModelTest.java │ │ ├── schedulers │ │ └── SimpleScheduledTaskTest.java │ │ └── servlets │ │ └── SimpleServletTest.java ├── dispatcher │ ├── README.md │ ├── assembly.xml │ ├── pom.xml │ └── src │ │ ├── conf.d │ │ ├── README │ │ ├── autoindex.conf │ │ ├── available_vhosts │ │ │ ├── 000_unhealthy_author.vhost │ │ │ ├── 000_unhealthy_publish.vhost │ │ │ ├── aem_author.vhost │ │ │ ├── aem_flush.vhost │ │ │ ├── aem_health.vhost │ │ │ ├── aem_lc.vhost │ │ │ ├── aem_publish.vhost │ │ │ └── renderconditins_publish.vhost │ │ ├── dispatcher_vhost.conf │ │ ├── enabled_vhosts │ │ │ ├── aem_author.vhost │ │ │ ├── aem_flush.vhost │ │ │ ├── aem_health.vhost │ │ │ └── renderconditins_publish.vhost │ │ ├── logformat.conf │ │ ├── remoteip.conf │ │ ├── rewrites │ │ │ ├── base_rewrite.rules │ │ │ ├── renderconditins_rewrite.rules │ │ │ └── xforwarded_forcessl_rewrite.rules │ │ ├── security.conf │ │ ├── userdir.conf │ │ ├── variables │ │ │ └── ams_default.vars │ │ ├── welcome.conf │ │ └── whitelists │ │ │ └── 000_base_whitelist.rules │ │ ├── conf.dispatcher.d │ │ ├── available_farms │ │ │ ├── 000_ams_author_farm.any │ │ │ ├── 001_ams_lc_farm.any │ │ │ └── 999_ams_publish_farm.any │ │ ├── cache │ │ │ ├── ams_author_cache.any │ │ │ ├── ams_author_invalidate_allowed.any │ │ │ ├── ams_publish_cache.any │ │ │ └── ams_publish_invalidate_allowed.any │ │ ├── clientheaders │ │ │ ├── ams_author_clientheaders.any │ │ │ ├── ams_common_clientheaders.any │ │ │ ├── ams_lc_clientheaders.any │ │ │ └── ams_publish_clientheaders.any │ │ ├── dispatcher.any │ │ ├── enabled_farms │ │ │ ├── 000_ams_author_farm.any │ │ │ └── 999_ams_publish_farm.any │ │ ├── filters │ │ │ ├── ams_author_filters.any │ │ │ ├── ams_lc_filters.any │ │ │ └── ams_publish_filters.any │ │ ├── renders │ │ │ ├── ams_author_renders.any │ │ │ ├── ams_lc_renders.any │ │ │ └── ams_publish_renders.any │ │ └── vhosts │ │ │ ├── ams_author_vhosts.any │ │ │ ├── ams_lc_vhosts.any │ │ │ └── ams_publish_vhosts.any │ │ ├── conf.modules.d │ │ ├── 00-base.conf │ │ ├── 00-dav.conf │ │ ├── 00-lua.conf │ │ ├── 00-mpm.conf │ │ ├── 00-proxy.conf │ │ ├── 00-systemd.conf │ │ ├── 01-cgi.conf │ │ └── 02-dispatcher.conf │ │ └── conf │ │ ├── httpd.conf │ │ └── magic ├── it.launcher │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── renderconditions │ │ │ └── it │ │ │ └── launcher │ │ │ └── package-info.java │ │ └── test │ │ └── java │ │ └── renderconditions │ │ └── it │ │ └── launcher │ │ ├── SlingServerSideTest.java │ │ └── SlingServerSideTestsBase.java ├── it.tests │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── renderconditions │ │ └── it │ │ └── tests │ │ ├── HelloWorldModelServerSideTest.java │ │ └── package-info.java ├── pom.xml ├── ui.apps.structure │ └── pom.xml ├── ui.apps │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ └── apps │ │ ├── .content.xml │ │ └── renderconditins │ │ ├── clientlibs │ │ ├── clientlib-base │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── js.txt │ │ └── clientlib-grid │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ └── less │ │ │ └── grid.less │ │ ├── components │ │ ├── accordion │ │ │ ├── .content.xml │ │ │ ├── _cq_editConfig.xml │ │ │ └── _cq_template │ │ │ │ └── .content.xml │ │ ├── breadcrumb │ │ │ └── .content.xml │ │ ├── button │ │ │ └── .content.xml │ │ ├── carousel │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── container │ │ │ └── .content.xml │ │ ├── contentfragment │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── contentfragmentlist │ │ │ └── .content.xml │ │ ├── download │ │ │ └── .content.xml │ │ ├── embed │ │ │ └── .content.xml │ │ ├── experiencefragment │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── form │ │ │ ├── button │ │ │ │ └── .content.xml │ │ │ ├── container │ │ │ │ ├── .content.xml │ │ │ │ └── new │ │ │ │ │ └── .content.xml │ │ │ ├── hidden │ │ │ │ └── .content.xml │ │ │ ├── options │ │ │ │ └── .content.xml │ │ │ └── text │ │ │ │ └── .content.xml │ │ ├── helloworld │ │ │ ├── .content.xml │ │ │ ├── _cq_dialog │ │ │ │ └── .content.xml │ │ │ └── helloworld.html │ │ ├── image │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── languagenavigation │ │ │ └── .content.xml │ │ ├── list │ │ │ ├── .content.xml │ │ │ └── _cq_editConfig.xml │ │ ├── navigation │ │ │ └── .content.xml │ │ ├── page │ │ │ ├── .content.xml │ │ │ ├── _cq_dialog │ │ │ │ └── .content.xml │ │ │ ├── customfooterlibs.html │ │ │ └── customheaderlibs.html │ │ ├── search │ │ │ └── .content.xml │ │ ├── separator │ │ │ └── .content.xml │ │ ├── sharing │ │ │ └── .content.xml │ │ ├── spa │ │ │ └── .content.xml │ │ ├── tabs │ │ │ ├── .content.xml │ │ │ ├── _cq_editConfig.xml │ │ │ └── _cq_template │ │ │ │ └── .content.xml │ │ ├── teaser │ │ │ └── .content.xml │ │ ├── text │ │ │ └── .content.xml │ │ ├── title │ │ │ └── .content.xml │ │ └── xfpage │ │ │ ├── .content.xml │ │ │ ├── content.html │ │ │ ├── customfooterlibs.html │ │ │ └── customheaderlibs.html │ │ ├── config.author │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider-renderconditins.xml │ │ ├── config.prod │ │ └── org.apache.sling.commons.log.LogManager.factory.config-renderconditins.xml │ │ ├── config.publish │ │ └── org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.xml │ │ ├── config.stage │ │ └── org.apache.sling.commons.log.LogManager.factory.config-renderconditins.xml │ │ ├── config │ │ └── org.apache.sling.commons.log.LogManager.factory.config-renderconditins.xml │ │ ├── i18n │ │ ├── .content.xml │ │ ├── fr.json │ │ └── fr.json.dir │ │ │ └── .content.xml │ │ ├── templates │ │ ├── page-content │ │ │ └── .content.xml │ │ └── page-home │ │ │ └── .content.xml │ │ └── tests │ │ ├── .content.xml │ │ ├── SampleTests.js │ │ └── js.txt ├── ui.content │ ├── pom.xml │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ ├── conf │ │ └── renderconditins │ │ │ ├── .content.xml │ │ │ └── settings │ │ │ ├── .content.xml │ │ │ └── wcm │ │ │ ├── .content.xml │ │ │ ├── policies │ │ │ ├── .content.xml │ │ │ └── _rep_policy.xml │ │ │ ├── segments │ │ │ ├── .content.xml │ │ │ ├── summer │ │ │ │ └── .content.xml │ │ │ └── winter │ │ │ │ └── .content.xml │ │ │ ├── template-types │ │ │ ├── .content.xml │ │ │ ├── _rep_policy.xml │ │ │ ├── page │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ │ └── .content.xml │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnail.png.dir │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _jcr_content │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ └── xf │ │ │ │ ├── .content.xml │ │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ │ └── thumbnail.png │ │ │ └── templates │ │ │ ├── .content.xml │ │ │ ├── _rep_policy.xml │ │ │ ├── page-content │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ │ └── .content.xml │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.png.dir │ │ │ │ ├── .content.xml │ │ │ │ └── _jcr_content │ │ │ │ └── _dam_thumbnails │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ └── _dam_thumbnail_48.png │ │ │ └── xf-web-variation │ │ │ ├── .content.xml │ │ │ ├── initial │ │ │ └── .content.xml │ │ │ ├── policies │ │ │ └── .content.xml │ │ │ ├── structure │ │ │ └── .content.xml │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.png.dir │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── _dam_thumbnails │ │ │ ├── _dam_thumbnail_128.png │ │ │ └── _dam_thumbnail_319.png │ │ └── content │ │ ├── dam │ │ ├── .content.xml │ │ └── renderconditins │ │ │ ├── .content.xml │ │ │ ├── _jcr_content │ │ │ └── folderThumbnail │ │ │ └── asset.jpg │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── renditions │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ ├── cq5dam.web.1280.1280.jpeg │ │ │ ├── original │ │ │ └── original.dir │ │ │ └── .content.xml │ │ ├── experience-fragments │ │ └── renderconditins │ │ │ ├── .content.xml │ │ │ └── us │ │ │ ├── .content.xml │ │ │ └── en │ │ │ ├── .content.xml │ │ │ └── site │ │ │ ├── .content.xml │ │ │ ├── footer │ │ │ ├── .content.xml │ │ │ └── master │ │ │ │ └── .content.xml │ │ │ └── header │ │ │ ├── .content.xml │ │ │ └── master │ │ │ └── .content.xml │ │ └── renderconditins │ │ ├── .content.xml │ │ ├── _jcr_content │ │ └── image │ │ │ ├── file │ │ │ └── file.dir │ │ │ ├── .content.xml │ │ │ └── _jcr_content │ │ │ └── _dam_thumbnails │ │ │ ├── _dam_thumbnail_48.png │ │ │ └── _dam_thumbnail_480.png │ │ └── us │ │ ├── .content.xml │ │ └── en │ │ └── .content.xml └── ui.frontend │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc.js │ ├── README.md │ ├── assembly.xml │ ├── clientlib.config.js │ ├── package.json │ ├── pom.xml │ ├── src │ └── main │ │ └── webpack │ │ ├── components │ │ ├── _accordion.scss │ │ ├── _breadcrumb.scss │ │ ├── _button.scss │ │ ├── _carousel.scss │ │ ├── _container.scss │ │ ├── _contentfragment.scss │ │ ├── _contentfragmentlist.scss │ │ ├── _download.scss │ │ ├── _experiencefragment.scss │ │ ├── _form-button.scss │ │ ├── _form-options.scss │ │ ├── _form-text.scss │ │ ├── _form.scss │ │ ├── _helloworld.js │ │ ├── _helloworld.scss │ │ ├── _image.scss │ │ ├── _languagenavigation.scss │ │ ├── _list.scss │ │ ├── _navigation.scss │ │ ├── _search.scss │ │ ├── _tabs.scss │ │ ├── _teaser.scss │ │ ├── _text.scss │ │ └── _title.scss │ │ ├── resources │ │ ├── fonts │ │ │ └── .gitkeep │ │ └── images │ │ │ └── .gitkeep │ │ ├── site │ │ ├── _base.scss │ │ ├── _variables.scss │ │ ├── main.scss │ │ ├── main.ts │ │ └── styles │ │ │ ├── container_main.scss │ │ │ ├── experiencefragment_footer.scss │ │ │ └── experiencefragment_header.scss │ │ └── static │ │ └── index.html │ ├── tsconfig.json │ ├── webpack.common.js │ ├── webpack.dev.js │ └── webpack.prod.js ├── robotxtxt ├── RobotsTextServlet.java └── robotsTxtComponents-1.0.zip ├── sample-sling-servlets ├── DemoDefaultResourceServlet.java ├── DemoJsonServlet.java ├── DemoNodeTypeBasedServlet.java ├── DemoOptingServlet.java ├── DemoPathBasedServlet.java ├── DemoResourceBasedServlet.java ├── DynamicResourceTypeServlet.java └── RunModeBasedServlet.java ├── scripts └── wlst │ ├── ChangeClusterConstraint.py │ ├── ConfigureForeignJMSServer │ ├── ConfigureForeignJMSServer.properties │ └── ConfigureForeignJMSServer.py │ ├── ConfigureTLOGSSharedFileStore.py │ ├── CreateMultiDataSource.py │ ├── DomainLogConfigurtionChange │ ├── DomainLogConfigurtionChange.py │ └── domain_log.properties │ ├── EnableArchiving.py │ ├── EnableORDisableDFlags │ ├── EnableORDisableDFlags.properties │ └── EnableORDisableDFlags.py │ ├── GridLinkDatasourceCreation │ ├── GridLinkDataSource.properties │ └── GridLinkDatasourceCreation.py │ ├── JMSConfiguration │ ├── JMSConfiguration.properties │ └── JMSConfiguration.py │ ├── MigrateFileStoreToJDBSStore.py │ ├── ModifyJDBCResourcesTargets │ ├── JDBCProperties.properties │ └── ModifyJDBCResourcesTargets.py │ ├── ResetAllDataSourcePassword.py │ ├── SetJDBCTimeoutProperties.py │ ├── SetXATimeoutProperties.py │ ├── UpdateGracefulShutdownParameters.py │ └── applyJRFToDomain.py ├── server.xml-connector-selfsigned ├── sketch2code-designs ├── design1.jpg ├── design2.jpg └── design3.jpg ├── test-coverage-report-jacoco ├── .gitignore ├── README.md ├── aggregated-coverage-report-sonar.png ├── aggregated-coverage-report.png ├── module1 │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── coveragedemo │ │ │ └── module1 │ │ │ └── Sample1.java │ │ └── test │ │ └── java │ │ └── com │ │ └── codecoverage │ │ └── module1 │ │ ├── it │ │ └── Sample1IT.java │ │ └── ut │ │ └── Sample1Test.java ├── module2 │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── coveragedemo │ │ │ └── module2 │ │ │ ├── Sample2.java │ │ │ └── Sample3.java │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── coveragedemo │ │ │ └── module2 │ │ │ ├── ft │ │ │ ├── Sample3CucumberTest.java │ │ │ └── Sample3TestSteps.java │ │ │ └── ut │ │ │ └── Sample2Test.java │ │ └── resources │ │ ├── com │ │ └── coveragedemo │ │ │ └── module2 │ │ │ └── ft │ │ │ └── sample3.feature │ │ ├── cucumber.properties │ │ └── junit-platform.properties ├── pom.xml └── test-aggregate │ └── pom.xml ├── testarea └── symlinks │ ├── available │ └── test-link.txt │ └── enable │ └── test-link1.txt ├── user-agent-client-hints ├── .gitignore ├── README.MD ├── app.js ├── child.html ├── index.html ├── index1.html ├── package-lock.json ├── package.json └── ssl │ ├── rootCA.key │ ├── rootCA.pem │ ├── rootCA.srl │ ├── server.crt │ ├── server.csr │ ├── server.csr.cnf │ ├── server.key │ └── v3.ext ├── utilities └── Cloudmersive.APIClient.Java.Example-master │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.apt.core.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── .vscode │ ├── launch.json │ └── settings.json │ ├── CloudmersiveJavaClientDemoApp.iml │ ├── pom.xml │ └── src │ └── main │ └── java │ └── com │ └── cloudmersive │ ├── Callback.java │ └── Main.java └── workflow-launcher-exclude-list.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/.gitignore -------------------------------------------------------------------------------- /AEM-SPA/externalspawitheditableareas/spaeditableareas/dispatcher/src/opt-in/USE_SOURCES_DIRECTLY: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/aem-spa-headless/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/aem-spa-headless/.gitignore -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/aem-spa-headless/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/aem-spa-headless/LICENSE -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/aem-spa-headless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/aem-spa-headless/README.md -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/aem-spa-headless/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/aem-spa-headless/all/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/aem-spa-headless/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/aem-spa-headless/core/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/aem-spa-headless/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/aem-spa-headless/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/aem-spa-headless/ui.apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/aem-spa-headless/ui.apps/.gitignore -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/aem-spa-headless/ui.apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/aem-spa-headless/ui.apps/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/aem-spa-headless/ui.config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/aem-spa-headless/ui.config/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/aem-spa-headless/ui.content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/aem-spa-headless/ui.content/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/.env.development -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/.gitignore -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/README.md -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/package.json -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/public/favicon.ico -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/public/index.html -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/public/logo192.png -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/public/logo512.png -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/public/manifest.json -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/public/robots.txt -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/src/App.css -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/src/App.js -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/src/App.test.js -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/src/api/useGraphQL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/src/api/useGraphQL.js -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/src/components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/src/components/Error.js -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/src/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/src/components/Loading.js -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/src/images/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/src/images/icon-close.svg -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/src/index.css -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/src/index.js -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/src/logo.svg -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/src/reportWebVitals.js -------------------------------------------------------------------------------- /AEM-SPA/headlessspa/spa-react/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/headlessspa/spa-react/src/setupTests.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/.gitignore -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/LICENSE -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/README.md -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/all/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/archetype.properties -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/core/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/dispatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/dispatcher/README.md -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/dispatcher/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/dispatcher/assembly.xml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/dispatcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/dispatcher/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/dispatcher/src/conf.d/enabled_vhosts/default.vhost: -------------------------------------------------------------------------------- 1 | ../available_vhosts/default.vhost -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/dispatcher/src/conf.dispatcher.d/enabled_farms/default.farm: -------------------------------------------------------------------------------- 1 | ../available_farms/default.farm -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/dispatcher/src/opt-in/USE_SOURCES_DIRECTLY: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/it.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/it.tests/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.apps.structure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.apps.structure/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.apps/.gitignore -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.apps/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.config/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.content/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/.env -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/.env.development -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/README.md -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/actions/common/app.js: -------------------------------------------------------------------------------- 1 | //placeholder 2 | -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/actions/ssr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/actions/ssr/index.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/assembly.xml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/clientlib.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/clientlib.config.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/manifest.yml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/package-lock.json -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/package.json -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/public/favicon.ico -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/public/index.html -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/public/logo192.png -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/public/logo512.png -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/public/manifest.json -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/scripts/postWebhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/scripts/postWebhook.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/src/App.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/src/App.test.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/src/index.css -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/src/index.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/src/server/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/src/server/bootstrap.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/src/server/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/src/server/express.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/src/setupTests.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.frontend/utils/entrypoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.frontend/utils/entrypoints.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.tests/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.tests/.dockerignore -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.tests/Dockerfile -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.tests/README.md -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.tests/pom.xml -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.tests/test-module/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.tests/test-module/.eslintrc.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.tests/test-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.tests/test-module/README.md -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.tests/test-module/lib/commons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.tests/test-module/lib/commons.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.tests/test-module/lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.tests/test-module/lib/config.js -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.tests/test-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.tests/test-module/package.json -------------------------------------------------------------------------------- /AEM-SPA/ssr/spassr/ui.tests/wait-for-grid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AEM-SPA/ssr/spassr/ui.tests/wait-for-grid.sh -------------------------------------------------------------------------------- /API/grapghql-schema-stitching/graphql-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/API/grapghql-schema-stitching/graphql-gateway/README.md -------------------------------------------------------------------------------- /API/grapghql-schema-stitching/graphql-gateway/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/API/grapghql-schema-stitching/graphql-gateway/index.js -------------------------------------------------------------------------------- /AntiSamyDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AntiSamyDemo/.classpath -------------------------------------------------------------------------------- /AntiSamyDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AntiSamyDemo/.project -------------------------------------------------------------------------------- /AntiSamyDemo/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AntiSamyDemo/.settings/.jsdtscope -------------------------------------------------------------------------------- /AntiSamyDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AntiSamyDemo/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AntiSamyDemo/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AntiSamyDemo/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /AntiSamyDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /AntiSamyDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /AntiSamyDemo/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /AntiSamyDemo/WebContent/WEB-INF/lib/antisamy-1.5.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AntiSamyDemo/WebContent/WEB-INF/lib/antisamy-1.5.10.jar -------------------------------------------------------------------------------- /AntiSamyDemo/WebContent/WEB-INF/lib/batik-css-1.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AntiSamyDemo/WebContent/WEB-INF/lib/batik-css-1.7.jar -------------------------------------------------------------------------------- /AntiSamyDemo/WebContent/WEB-INF/lib/nekohtml-1.9.21.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AntiSamyDemo/WebContent/WEB-INF/lib/nekohtml-1.9.21.jar -------------------------------------------------------------------------------- /AntiSamyDemo/src/antisamy/AntiSamyDemoServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AntiSamyDemo/src/antisamy/AntiSamyDemoServlet.java -------------------------------------------------------------------------------- /AntiSamyDemo/src/antisamy/antisamy-slashdot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/AntiSamyDemo/src/antisamy/antisamy-slashdot.xml -------------------------------------------------------------------------------- /CORS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/CORS/index.html -------------------------------------------------------------------------------- /DeepLearning/djl.examples/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/DeepLearning/djl.examples/.classpath -------------------------------------------------------------------------------- /DeepLearning/djl.examples/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/DeepLearning/djl.examples/.project -------------------------------------------------------------------------------- /DeepLearning/djl.examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/DeepLearning/djl.examples/pom.xml -------------------------------------------------------------------------------- /DeepLearning/djl.examples/src/test/resources/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/DeepLearning/djl.examples/src/test/resources/car.jpg -------------------------------------------------------------------------------- /DeepLearning/djl.examples/src/test/resources/dogs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/DeepLearning/djl.examples/src/test/resources/dogs.jpg -------------------------------------------------------------------------------- /DeepLearning/djl.examples/target/test-classes/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/DeepLearning/djl.examples/target/test-classes/car.jpg -------------------------------------------------------------------------------- /DeepLearning/djl.examples/target/test-classes/dogs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/DeepLearning/djl.examples/target/test-classes/dogs.jpg -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/CHIPS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/CHIPS/README.md -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/CHIPS/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/CHIPS/app.js -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/CHIPS/embed-indexsitea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/CHIPS/embed-indexsitea.html -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/CHIPS/embed-indexsiteb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/CHIPS/embed-indexsiteb.html -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/CHIPS/embed-sitea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/CHIPS/embed-sitea.js -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/CHIPS/embed-siteb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/CHIPS/embed-siteb.js -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/CHIPS/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/CHIPS/package-lock.json -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/CHIPS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/CHIPS/package.json -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/CHIPS/sitea-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/CHIPS/sitea-index.html -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/CHIPS/siteb-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/CHIPS/siteb-index.html -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/CHIPS/sslcert/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/CHIPS/sslcert/server.crt -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/CHIPS/sslcert/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/CHIPS/sslcert/server.key -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/storage-access-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/storage-access-api/README.md -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/storage-access-api/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/storage-access-api/app.js -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/storage-access-api/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/storage-access-api/embed.js -------------------------------------------------------------------------------- /Google-Privacy-Sandbox/storage-access-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Google-Privacy-Sandbox/storage-access-api/package.json -------------------------------------------------------------------------------- /MongoDBAtlasClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/MongoDBAtlasClient.java -------------------------------------------------------------------------------- /Python/Recommendation_System/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Python/Recommendation_System/README.md -------------------------------------------------------------------------------- /Python/Recommendation_System/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Python/Recommendation_System/app.py -------------------------------------------------------------------------------- /Python/Recommendation_System/checkfaissIndex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Python/Recommendation_System/checkfaissIndex.py -------------------------------------------------------------------------------- /Python/Recommendation_System/content_id_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Python/Recommendation_System/content_id_map.json -------------------------------------------------------------------------------- /Python/Recommendation_System/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Python/Recommendation_System/db.py -------------------------------------------------------------------------------- /Python/Recommendation_System/fetch_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Python/Recommendation_System/fetch_content.py -------------------------------------------------------------------------------- /Python/Recommendation_System/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Python/Recommendation_System/requirements.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Redirect_Tester.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/Redirect_Tester.xlsm -------------------------------------------------------------------------------- /SameSiteCookieAttributes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/SameSiteCookieAttributes.java -------------------------------------------------------------------------------- /WAF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/WAF.txt -------------------------------------------------------------------------------- /active-directory-b2c/oauth/b2c-policies/ProfileEdit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/active-directory-b2c/oauth/b2c-policies/ProfileEdit.xml -------------------------------------------------------------------------------- /active-directory-b2c/saml/aem-filter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/active-directory-b2c/saml/aem-filter/readme.md -------------------------------------------------------------------------------- /active-directory-b2c/saml/b2c-polices/ProfileEdit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/active-directory-b2c/saml/b2c-polices/ProfileEdit.xml -------------------------------------------------------------------------------- /active-directory-b2c/saml/b2c-polices/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/active-directory-b2c/saml/b2c-polices/readme.md -------------------------------------------------------------------------------- /address-locator/grocery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/address-locator/grocery.png -------------------------------------------------------------------------------- /address-locator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/address-locator/index.html -------------------------------------------------------------------------------- /address-locator/locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/address-locator/locations.json -------------------------------------------------------------------------------- /address-locator/locator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/address-locator/locator.js -------------------------------------------------------------------------------- /address-locator/retailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/address-locator/retailer.png -------------------------------------------------------------------------------- /address-locator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/address-locator/style.css -------------------------------------------------------------------------------- /aem-qulaity-project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/.gitignore -------------------------------------------------------------------------------- /aem-qulaity-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/README.md -------------------------------------------------------------------------------- /aem-qulaity-project/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/all/pom.xml -------------------------------------------------------------------------------- /aem-qulaity-project/all/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /aem-qulaity-project/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/core/pom.xml -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/dispatcher/README.md -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/dispatcher/assembly.xml -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/dispatcher/pom.xml -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/dispatcher/src/conf.d/README -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf.d/enabled_vhosts/aem_author.vhost: -------------------------------------------------------------------------------- 1 | ../available_vhosts/aem_author.vhost -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf.d/enabled_vhosts/aem_flush.vhost: -------------------------------------------------------------------------------- 1 | ../available_vhosts/aem_flush.vhost -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf.d/enabled_vhosts/aem_health.vhost: -------------------------------------------------------------------------------- 1 | ../available_vhosts/aem_health.vhost -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf.d/enabled_vhosts/sample_publish.vhost: -------------------------------------------------------------------------------- 1 | ../available_vhosts/sample_publish.vhost -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf.d/remoteip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/dispatcher/src/conf.d/remoteip.conf -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf.d/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/dispatcher/src/conf.d/security.conf -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf.d/userdir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/dispatcher/src/conf.d/userdir.conf -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf.d/welcome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/dispatcher/src/conf.d/welcome.conf -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf.dispatcher.d/clientheaders/ams_publish_clientheaders.any: -------------------------------------------------------------------------------- 1 | # Any publish specific clientheaders go here -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf.dispatcher.d/enabled_farms/000_ams_author_farm.any: -------------------------------------------------------------------------------- 1 | ../available_farms/000_ams_author_farm.any -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf.dispatcher.d/enabled_farms/999_ams_publish_farm.any: -------------------------------------------------------------------------------- 1 | ../available_farms/999_ams_publish_farm.any -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/dispatcher/src/conf/httpd.conf -------------------------------------------------------------------------------- /aem-qulaity-project/dispatcher/src/conf/magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/dispatcher/src/conf/magic -------------------------------------------------------------------------------- /aem-qulaity-project/it.launcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/it.launcher/pom.xml -------------------------------------------------------------------------------- /aem-qulaity-project/it.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/it.tests/pom.xml -------------------------------------------------------------------------------- /aem-qulaity-project/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/pom.xml -------------------------------------------------------------------------------- /aem-qulaity-project/ui.apps.structure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/ui.apps.structure/pom.xml -------------------------------------------------------------------------------- /aem-qulaity-project/ui.apps.structure/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /aem-qulaity-project/ui.apps/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aem-qulaity-project/ui.apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/ui.apps/pom.xml -------------------------------------------------------------------------------- /aem-qulaity-project/ui.apps/src/main/content/jcr_root/apps/sample/tests/js.txt: -------------------------------------------------------------------------------- 1 | SampleTests.js -------------------------------------------------------------------------------- /aem-qulaity-project/ui.apps/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /aem-qulaity-project/ui.content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem-qulaity-project/ui.content/pom.xml -------------------------------------------------------------------------------- /aem-qulaity-project/ui.content/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /aem.groovy.samples/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem.groovy.samples/.classpath -------------------------------------------------------------------------------- /aem.groovy.samples/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem.groovy.samples/.project -------------------------------------------------------------------------------- /aem.groovy.samples/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem.groovy.samples/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /aem.groovy.samples/.settings/org.eclipse.jdt.groovy.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | groovy.compiler.level=30 3 | -------------------------------------------------------------------------------- /aem.groovy.samples/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem.groovy.samples/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /aem.groovy.samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem.groovy.samples/pom.xml -------------------------------------------------------------------------------- /aem.groovy.samples/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem.groovy.samples/target/classes/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /aem/aem-cloud/extensions/cftest/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/aem-cloud/extensions/cftest/.babelrc -------------------------------------------------------------------------------- /aem/aem-cloud/extensions/cftest/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/aem-cloud/extensions/cftest/.eslintrc.json -------------------------------------------------------------------------------- /aem/aem-cloud/extensions/cftest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/aem-cloud/extensions/cftest/.gitignore -------------------------------------------------------------------------------- /aem/aem-cloud/extensions/cftest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/aem-cloud/extensions/cftest/README.md -------------------------------------------------------------------------------- /aem/aem-cloud/extensions/cftest/app.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/aem-cloud/extensions/cftest/app.config.yaml -------------------------------------------------------------------------------- /aem/aem-cloud/extensions/cftest/extension-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/aem-cloud/extensions/cftest/extension-manifest.json -------------------------------------------------------------------------------- /aem/aem-cloud/extensions/cftest/hooks/post-deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/aem-cloud/extensions/cftest/hooks/post-deploy.js -------------------------------------------------------------------------------- /aem/aem-cloud/extensions/cftest/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/aem-cloud/extensions/cftest/jest.setup.js -------------------------------------------------------------------------------- /aem/aem-cloud/extensions/cftest/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/aem-cloud/extensions/cftest/package-lock.json -------------------------------------------------------------------------------- /aem/aem-cloud/extensions/cftest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/aem-cloud/extensions/cftest/package.json -------------------------------------------------------------------------------- /aem/aem-cloud/extensions/cftest/src/aem-cf-editor-1/web-src/src/components/Constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extensionId: 'CustomDropDownField' 3 | } 4 | -------------------------------------------------------------------------------- /aem/chatgptintegration/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/.gitattributes -------------------------------------------------------------------------------- /aem/chatgptintegration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/.gitignore -------------------------------------------------------------------------------- /aem/chatgptintegration/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/.vscode/settings.json -------------------------------------------------------------------------------- /aem/chatgptintegration/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/LICENSE -------------------------------------------------------------------------------- /aem/chatgptintegration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/README.md -------------------------------------------------------------------------------- /aem/chatgptintegration/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/all/pom.xml -------------------------------------------------------------------------------- /aem/chatgptintegration/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/archetype.properties -------------------------------------------------------------------------------- /aem/chatgptintegration/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/core/pom.xml -------------------------------------------------------------------------------- /aem/chatgptintegration/it.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/it.tests/pom.xml -------------------------------------------------------------------------------- /aem/chatgptintegration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/pom.xml -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.apps.structure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.apps.structure/pom.xml -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.apps/.gitignore -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.apps/pom.xml -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.apps/src/main/content/jcr_root/apps/chatgptintegration/clientlibs/editor/sites/page/hook/chatgpt/js.txt: -------------------------------------------------------------------------------- 1 | 2 | #base=js 3 | ToolbarAction.CHATGPT.js -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.config/pom.xml -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.content/pom.xml -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.frontend/.babelrc -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | ../ui.apps/ 2 | ./src/main/webpack/tests/ 3 | -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.frontend/.eslintrc.js -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.frontend/README.md -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.frontend/assembly.xml -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/clientlib.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.frontend/clientlib.config.js -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.frontend/package-lock.json -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.frontend/package.json -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.frontend/pom.xml -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/src/main/webpack/components/_container.scss: -------------------------------------------------------------------------------- 1 | .cmp-container {} -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/src/main/webpack/components/_contentfragmentlist.scss: -------------------------------------------------------------------------------- 1 | .cmp-contentfragmentlist {} -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/src/main/webpack/components/_embed.scss: -------------------------------------------------------------------------------- 1 | .cmp-embed {} -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/src/main/webpack/components/_form-button.scss: -------------------------------------------------------------------------------- 1 | .cmp-form-button {} -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/src/main/webpack/components/_form.scss: -------------------------------------------------------------------------------- 1 | .cmp-form {} -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/src/main/webpack/resources/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/src/main/webpack/resources/images/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.frontend/tsconfig.json -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.frontend/webpack.common.js -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.frontend/webpack.dev.js -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.frontend/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.frontend/webpack.prod.js -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.tests/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.tests/.dockerignore -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.tests/Dockerfile -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.tests/README.md -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.tests/pom.xml -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.tests/test-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.tests/test-module/README.md -------------------------------------------------------------------------------- /aem/chatgptintegration/ui.tests/wait-for-grid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/chatgptintegration/ui.tests/wait-for-grid.sh -------------------------------------------------------------------------------- /aem/components/containerlimiter/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/components/containerlimiter/.content.xml -------------------------------------------------------------------------------- /aem/components/containerlimiter/_cq_editConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/components/containerlimiter/_cq_editConfig.xml -------------------------------------------------------------------------------- /aem/components/openhtml/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/components/openhtml/.content.xml -------------------------------------------------------------------------------- /aem/components/openhtml/_cq_dialog/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/components/openhtml/_cq_dialog/.content.xml -------------------------------------------------------------------------------- /aem/components/openhtml/openhtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/components/openhtml/openhtml.html -------------------------------------------------------------------------------- /aem/custom-validation-multifields-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/custom-validation-multifields-1.0.zip -------------------------------------------------------------------------------- /aem/customcloudservice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customcloudservice/.gitignore -------------------------------------------------------------------------------- /aem/customcloudservice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customcloudservice/README.md -------------------------------------------------------------------------------- /aem/customcloudservice/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customcloudservice/all/pom.xml -------------------------------------------------------------------------------- /aem/customcloudservice/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customcloudservice/core/pom.xml -------------------------------------------------------------------------------- /aem/customcloudservice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customcloudservice/pom.xml -------------------------------------------------------------------------------- /aem/customcloudservice/ui.apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customcloudservice/ui.apps/.gitignore -------------------------------------------------------------------------------- /aem/customcloudservice/ui.apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customcloudservice/ui.apps/pom.xml -------------------------------------------------------------------------------- /aem/customembed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/.gitignore -------------------------------------------------------------------------------- /aem/customembed/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/LICENSE -------------------------------------------------------------------------------- /aem/customembed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/README.md -------------------------------------------------------------------------------- /aem/customembed/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/all/pom.xml -------------------------------------------------------------------------------- /aem/customembed/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/archetype.properties -------------------------------------------------------------------------------- /aem/customembed/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/core/pom.xml -------------------------------------------------------------------------------- /aem/customembed/dispatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/dispatcher/README.md -------------------------------------------------------------------------------- /aem/customembed/dispatcher/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/dispatcher/assembly.xml -------------------------------------------------------------------------------- /aem/customembed/dispatcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/dispatcher/pom.xml -------------------------------------------------------------------------------- /aem/customembed/it.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/it.tests/pom.xml -------------------------------------------------------------------------------- /aem/customembed/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/pom.xml -------------------------------------------------------------------------------- /aem/customembed/ui.apps.structure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.apps.structure/pom.xml -------------------------------------------------------------------------------- /aem/customembed/ui.apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.apps/.gitignore -------------------------------------------------------------------------------- /aem/customembed/ui.apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.apps/pom.xml -------------------------------------------------------------------------------- /aem/customembed/ui.config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.config/pom.xml -------------------------------------------------------------------------------- /aem/customembed/ui.content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.content/pom.xml -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.frontend/.babelrc -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | ../ui.apps/ 2 | ./src/main/webpack/tests/ 3 | -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.frontend/.eslintrc.js -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.frontend/README.md -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.frontend/assembly.xml -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/clientlib.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.frontend/clientlib.config.js -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.frontend/package.json -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.frontend/pom.xml -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/src/main/webpack/components/_container.scss: -------------------------------------------------------------------------------- 1 | .cmp-container {} -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/src/main/webpack/components/_contentfragmentlist.scss: -------------------------------------------------------------------------------- 1 | .cmp-contentfragmentlist {} -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/src/main/webpack/components/_embed.scss: -------------------------------------------------------------------------------- 1 | .cmp-embed {} -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/src/main/webpack/components/_form-button.scss: -------------------------------------------------------------------------------- 1 | .cmp-form-button {} -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/src/main/webpack/components/_form.scss: -------------------------------------------------------------------------------- 1 | .cmp-form {} -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/src/main/webpack/resources/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/src/main/webpack/resources/images/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.frontend/tsconfig.json -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.frontend/webpack.common.js -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.frontend/webpack.dev.js -------------------------------------------------------------------------------- /aem/customembed/ui.frontend/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.frontend/webpack.prod.js -------------------------------------------------------------------------------- /aem/customembed/ui.tests/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.tests/.dockerignore -------------------------------------------------------------------------------- /aem/customembed/ui.tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.tests/Dockerfile -------------------------------------------------------------------------------- /aem/customembed/ui.tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.tests/README.md -------------------------------------------------------------------------------- /aem/customembed/ui.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.tests/pom.xml -------------------------------------------------------------------------------- /aem/customembed/ui.tests/test-module/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.tests/test-module/.eslintrc.js -------------------------------------------------------------------------------- /aem/customembed/ui.tests/test-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.tests/test-module/README.md -------------------------------------------------------------------------------- /aem/customembed/ui.tests/test-module/lib/commons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.tests/test-module/lib/commons.js -------------------------------------------------------------------------------- /aem/customembed/ui.tests/test-module/lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.tests/test-module/lib/config.js -------------------------------------------------------------------------------- /aem/customembed/ui.tests/test-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.tests/test-module/package.json -------------------------------------------------------------------------------- /aem/customembed/ui.tests/wait-for-grid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/customembed/ui.tests/wait-for-grid.sh -------------------------------------------------------------------------------- /aem/handle-coral-ui3-select-change-event-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/handle-coral-ui3-select-change-event-1.0.zip -------------------------------------------------------------------------------- /aem/hide-show-touchui-tabs-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/hide-show-touchui-tabs-1.0.zip -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/.gitignore -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/LICENSE -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/README.md -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/all/pom.xml -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/all/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/archetype.properties -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/core/pom.xml -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/dispatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/dispatcher/README.md -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/dispatcher/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/dispatcher/assembly.xml -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/dispatcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/dispatcher/pom.xml -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/dispatcher/src/conf.d/enabled_vhosts/default.vhost: -------------------------------------------------------------------------------- 1 | ../available_vhosts/default.vhost -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/dispatcher/src/conf.dispatcher.d/enabled_farms/default.farm: -------------------------------------------------------------------------------- 1 | ../available_farms/default.farm -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/it.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/it.tests/pom.xml -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/pom.xml -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.apps.structure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.apps.structure/pom.xml -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.apps.structure/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.apps/.gitignore -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.apps/pom.xml -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.apps/src/main/content/jcr_root/apps/multisitefrontenddemo/clientlibs/clientlib-dependencies-site1/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.apps/src/main/content/jcr_root/apps/multisitefrontenddemo/clientlibs/clientlib-dependencies-site1/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.apps/src/main/content/jcr_root/apps/multisitefrontenddemo/clientlibs/clientlib-dependencies-site2/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.apps/src/main/content/jcr_root/apps/multisitefrontenddemo/clientlibs/clientlib-dependencies-site2/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.apps/src/main/content/jcr_root/apps/multisitefrontenddemo/clientlibs/clientlib-site1/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | site1.css -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.apps/src/main/content/jcr_root/apps/multisitefrontenddemo/clientlibs/clientlib-site1/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | site1.js -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.apps/src/main/content/jcr_root/apps/multisitefrontenddemo/clientlibs/clientlib-site2/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | 3 | site2.css -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.apps/src/main/content/jcr_root/apps/multisitefrontenddemo/clientlibs/clientlib-site2/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | 3 | site2.js -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.apps/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.config/pom.xml -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.config/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.content/pom.xml -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.content/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.frontend/.babelrc -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | ../ui.apps/ 2 | ./src/main/webpack/tests/ 3 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.frontend/.eslintrc.js -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.frontend/README.md -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.frontend/assembly.xml -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.frontend/package.json -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.frontend/pom.xml -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site1/components/_container.scss: -------------------------------------------------------------------------------- 1 | .cmp-container {} -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site1/components/_contentfragmentlist.scss: -------------------------------------------------------------------------------- 1 | .cmp-contentfragmentlist {} -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site1/components/_embed.scss: -------------------------------------------------------------------------------- 1 | .cmp-embed {} -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site1/components/_form-button.scss: -------------------------------------------------------------------------------- 1 | .cmp-form-button {} -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site1/components/_form.scss: -------------------------------------------------------------------------------- 1 | .cmp-form {} -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site1/resources/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site1/resources/images/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site2/components/_container.scss: -------------------------------------------------------------------------------- 1 | .cmp-container {} -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site2/components/_contentfragmentlist.scss: -------------------------------------------------------------------------------- 1 | .cmp-contentfragmentlist {} -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site2/components/_embed.scss: -------------------------------------------------------------------------------- 1 | .cmp-embed {} -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site2/components/_form-button.scss: -------------------------------------------------------------------------------- 1 | .cmp-form-button {} -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site2/components/_form.scss: -------------------------------------------------------------------------------- 1 | .cmp-form {} -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site2/resources/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/src/main/webpack/site2/resources/images/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.frontend/tsconfig.json -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.frontend/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.frontend/webpack.dev.js -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.tests/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.tests/.dockerignore -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.tests/Dockerfile -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.tests/README.md -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.tests/pom.xml -------------------------------------------------------------------------------- /aem/multisitefrontenddemo/ui.tests/wait-for-grid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aem/multisitefrontenddemo/ui.tests/wait-for-grid.sh -------------------------------------------------------------------------------- /aspectj/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/.gitignore -------------------------------------------------------------------------------- /aspectj/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/LICENSE -------------------------------------------------------------------------------- /aspectj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/README.md -------------------------------------------------------------------------------- /aspectj/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/all/pom.xml -------------------------------------------------------------------------------- /aspectj/archetype.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/archetype.properties -------------------------------------------------------------------------------- /aspectj/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/core/pom.xml -------------------------------------------------------------------------------- /aspectj/dispatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/dispatcher/README.md -------------------------------------------------------------------------------- /aspectj/dispatcher/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/dispatcher/assembly.xml -------------------------------------------------------------------------------- /aspectj/dispatcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/dispatcher/pom.xml -------------------------------------------------------------------------------- /aspectj/dispatcher/src/conf.d/dispatcher_vhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/dispatcher/src/conf.d/dispatcher_vhost.conf -------------------------------------------------------------------------------- /aspectj/dispatcher/src/conf.d/enabled_vhosts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/dispatcher/src/conf.d/enabled_vhosts/README -------------------------------------------------------------------------------- /aspectj/dispatcher/src/conf.d/rewrites/rewrite.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/dispatcher/src/conf.d/rewrites/rewrite.rules -------------------------------------------------------------------------------- /aspectj/dispatcher/src/conf.d/variables/custom.vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/dispatcher/src/conf.d/variables/custom.vars -------------------------------------------------------------------------------- /aspectj/dispatcher/src/conf.d/variables/global.vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/dispatcher/src/conf.d/variables/global.vars -------------------------------------------------------------------------------- /aspectj/it.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/it.tests/pom.xml -------------------------------------------------------------------------------- /aspectj/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/pom.xml -------------------------------------------------------------------------------- /aspectj/ui.apps.structure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.apps.structure/pom.xml -------------------------------------------------------------------------------- /aspectj/ui.apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.apps/.gitignore -------------------------------------------------------------------------------- /aspectj/ui.apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.apps/pom.xml -------------------------------------------------------------------------------- /aspectj/ui.config/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.config/pom.xml -------------------------------------------------------------------------------- /aspectj/ui.content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.content/pom.xml -------------------------------------------------------------------------------- /aspectj/ui.frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/.babelrc -------------------------------------------------------------------------------- /aspectj/ui.frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | ../ui.apps/ 2 | ./src/main/webpack/tests/ 3 | -------------------------------------------------------------------------------- /aspectj/ui.frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/.eslintrc.js -------------------------------------------------------------------------------- /aspectj/ui.frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/README.md -------------------------------------------------------------------------------- /aspectj/ui.frontend/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/assembly.xml -------------------------------------------------------------------------------- /aspectj/ui.frontend/clientlib.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/clientlib.config.js -------------------------------------------------------------------------------- /aspectj/ui.frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/package.json -------------------------------------------------------------------------------- /aspectj/ui.frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/pom.xml -------------------------------------------------------------------------------- /aspectj/ui.frontend/src/main/webpack/components/_container.scss: -------------------------------------------------------------------------------- 1 | .cmp-container {} -------------------------------------------------------------------------------- /aspectj/ui.frontend/src/main/webpack/components/_contentfragmentlist.scss: -------------------------------------------------------------------------------- 1 | .cmp-contentfragmentlist {} -------------------------------------------------------------------------------- /aspectj/ui.frontend/src/main/webpack/components/_embed.scss: -------------------------------------------------------------------------------- 1 | .cmp-embed {} -------------------------------------------------------------------------------- /aspectj/ui.frontend/src/main/webpack/components/_form-button.scss: -------------------------------------------------------------------------------- 1 | .cmp-form-button {} -------------------------------------------------------------------------------- /aspectj/ui.frontend/src/main/webpack/components/_form.scss: -------------------------------------------------------------------------------- 1 | .cmp-form {} -------------------------------------------------------------------------------- /aspectj/ui.frontend/src/main/webpack/resources/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aspectj/ui.frontend/src/main/webpack/resources/images/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aspectj/ui.frontend/src/main/webpack/site/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/src/main/webpack/site/_base.scss -------------------------------------------------------------------------------- /aspectj/ui.frontend/src/main/webpack/site/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/src/main/webpack/site/main.scss -------------------------------------------------------------------------------- /aspectj/ui.frontend/src/main/webpack/site/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/src/main/webpack/site/main.ts -------------------------------------------------------------------------------- /aspectj/ui.frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/tsconfig.json -------------------------------------------------------------------------------- /aspectj/ui.frontend/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/webpack.common.js -------------------------------------------------------------------------------- /aspectj/ui.frontend/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/webpack.dev.js -------------------------------------------------------------------------------- /aspectj/ui.frontend/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.frontend/webpack.prod.js -------------------------------------------------------------------------------- /aspectj/ui.tests/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/.dockerignore -------------------------------------------------------------------------------- /aspectj/ui.tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/Dockerfile -------------------------------------------------------------------------------- /aspectj/ui.tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/README.md -------------------------------------------------------------------------------- /aspectj/ui.tests/assembly-ui-test-docker-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/assembly-ui-test-docker-context.xml -------------------------------------------------------------------------------- /aspectj/ui.tests/docker-compose-wdio-chrome.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/docker-compose-wdio-chrome.yaml -------------------------------------------------------------------------------- /aspectj/ui.tests/docker-compose-wdio-firefox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/docker-compose-wdio-firefox.yaml -------------------------------------------------------------------------------- /aspectj/ui.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/pom.xml -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/.eslintrc.js -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/README.md -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/assets/image.png -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/lib/commons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/lib/commons.js -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/lib/config.js -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/lib/wdio.commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/lib/wdio.commands.js -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/package.json -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/specs/aem/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/specs/aem/assets.js -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/specs/aem/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/specs/aem/basic.js -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/specs/aem/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/specs/aem/login.js -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/specs/aem/sites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/specs/aem/sites.js -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/wdio.conf.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/wdio.conf.cloud.js -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/wdio.conf.commons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/wdio.conf.commons.js -------------------------------------------------------------------------------- /aspectj/ui.tests/test-module/wdio.conf.local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/test-module/wdio.conf.local.js -------------------------------------------------------------------------------- /aspectj/ui.tests/wait-for-grid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/aspectj/ui.tests/wait-for-grid.sh -------------------------------------------------------------------------------- /browser-storage-demos/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /browser-storage-demos/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/README.MD -------------------------------------------------------------------------------- /browser-storage-demos/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/app.js -------------------------------------------------------------------------------- /browser-storage-demos/cachestorageapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/cachestorageapi.html -------------------------------------------------------------------------------- /browser-storage-demos/cookies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/cookies.html -------------------------------------------------------------------------------- /browser-storage-demos/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/data.json -------------------------------------------------------------------------------- /browser-storage-demos/data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/data1.json -------------------------------------------------------------------------------- /browser-storage-demos/data2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/data2.json -------------------------------------------------------------------------------- /browser-storage-demos/data3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/data3.json -------------------------------------------------------------------------------- /browser-storage-demos/indexdb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/indexdb.html -------------------------------------------------------------------------------- /browser-storage-demos/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/package-lock.json -------------------------------------------------------------------------------- /browser-storage-demos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/package.json -------------------------------------------------------------------------------- /browser-storage-demos/ssl/rootCA.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/ssl/rootCA.key -------------------------------------------------------------------------------- /browser-storage-demos/ssl/rootCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/ssl/rootCA.pem -------------------------------------------------------------------------------- /browser-storage-demos/ssl/rootCA.srl: -------------------------------------------------------------------------------- 1 | 9AC98A10F39C572B 2 | -------------------------------------------------------------------------------- /browser-storage-demos/ssl/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/ssl/server.crt -------------------------------------------------------------------------------- /browser-storage-demos/ssl/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/ssl/server.csr -------------------------------------------------------------------------------- /browser-storage-demos/ssl/server.csr.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/ssl/server.csr.cnf -------------------------------------------------------------------------------- /browser-storage-demos/ssl/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/ssl/server.key -------------------------------------------------------------------------------- /browser-storage-demos/ssl/v3.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/ssl/v3.ext -------------------------------------------------------------------------------- /browser-storage-demos/websqlapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/websqlapi.html -------------------------------------------------------------------------------- /browser-storage-demos/webstorageapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser-storage-demos/webstorageapi.html -------------------------------------------------------------------------------- /browser/Cross-Domain-Cookies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/Cross-Domain-Cookies/README.md -------------------------------------------------------------------------------- /browser/Cross-Domain-Cookies/SSL/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/Cross-Domain-Cookies/SSL/server.crt -------------------------------------------------------------------------------- /browser/Cross-Domain-Cookies/SSL/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/Cross-Domain-Cookies/SSL/server.key -------------------------------------------------------------------------------- /browser/Cross-Domain-Cookies/api-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/Cross-Domain-Cookies/api-server.js -------------------------------------------------------------------------------- /browser/Cross-Domain-Cookies/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/Cross-Domain-Cookies/image-1.png -------------------------------------------------------------------------------- /browser/Cross-Domain-Cookies/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/Cross-Domain-Cookies/image.png -------------------------------------------------------------------------------- /browser/Cross-Domain-Cookies/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/Cross-Domain-Cookies/package-lock.json -------------------------------------------------------------------------------- /browser/Cross-Domain-Cookies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/Cross-Domain-Cookies/package.json -------------------------------------------------------------------------------- /browser/Cross-Domain-Cookies/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/Cross-Domain-Cookies/public/index.html -------------------------------------------------------------------------------- /browser/Cross-Domain-Cookies/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/Cross-Domain-Cookies/server.js -------------------------------------------------------------------------------- /browser/broadcast-channel/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/broadcast-channel/app.js -------------------------------------------------------------------------------- /browser/broadcast-channel/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/broadcast-channel/embed.html -------------------------------------------------------------------------------- /browser/broadcast-channel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/broadcast-channel/index.html -------------------------------------------------------------------------------- /browser/broadcast-channel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/broadcast-channel/package-lock.json -------------------------------------------------------------------------------- /browser/broadcast-channel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/broadcast-channel/package.json -------------------------------------------------------------------------------- /browser/broadcast-channel/ssl/rootCA.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/broadcast-channel/ssl/rootCA.key -------------------------------------------------------------------------------- /browser/broadcast-channel/ssl/rootCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/broadcast-channel/ssl/rootCA.pem -------------------------------------------------------------------------------- /browser/broadcast-channel/ssl/rootCA.srl: -------------------------------------------------------------------------------- 1 | 9AC98A10F39C572B 2 | -------------------------------------------------------------------------------- /browser/broadcast-channel/ssl/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/broadcast-channel/ssl/server.crt -------------------------------------------------------------------------------- /browser/broadcast-channel/ssl/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/broadcast-channel/ssl/server.csr -------------------------------------------------------------------------------- /browser/broadcast-channel/ssl/server.csr.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/broadcast-channel/ssl/server.csr.cnf -------------------------------------------------------------------------------- /browser/broadcast-channel/ssl/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/broadcast-channel/ssl/server.key -------------------------------------------------------------------------------- /browser/broadcast-channel/ssl/v3.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/broadcast-channel/ssl/v3.ext -------------------------------------------------------------------------------- /browser/broadcast-channel/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/broadcast-channel/test.html -------------------------------------------------------------------------------- /browser/extentions/data_management_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/extentions/data_management_plugin/README.md -------------------------------------------------------------------------------- /browser/extentions/data_management_plugin/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/extentions/data_management_plugin/popup.html -------------------------------------------------------------------------------- /browser/message-channel/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/message-channel/app.js -------------------------------------------------------------------------------- /browser/message-channel/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/message-channel/embed.html -------------------------------------------------------------------------------- /browser/message-channel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/message-channel/index.html -------------------------------------------------------------------------------- /browser/message-channel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/message-channel/package-lock.json -------------------------------------------------------------------------------- /browser/message-channel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/message-channel/package.json -------------------------------------------------------------------------------- /browser/message-channel/ssl/rootCA.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/message-channel/ssl/rootCA.key -------------------------------------------------------------------------------- /browser/message-channel/ssl/rootCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/message-channel/ssl/rootCA.pem -------------------------------------------------------------------------------- /browser/message-channel/ssl/rootCA.srl: -------------------------------------------------------------------------------- 1 | 9AC98A10F39C572B 2 | -------------------------------------------------------------------------------- /browser/message-channel/ssl/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/message-channel/ssl/server.crt -------------------------------------------------------------------------------- /browser/message-channel/ssl/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/message-channel/ssl/server.csr -------------------------------------------------------------------------------- /browser/message-channel/ssl/server.csr.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/message-channel/ssl/server.csr.cnf -------------------------------------------------------------------------------- /browser/message-channel/ssl/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/message-channel/ssl/server.key -------------------------------------------------------------------------------- /browser/message-channel/ssl/v3.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/message-channel/ssl/v3.ext -------------------------------------------------------------------------------- /browser/postmessage/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/postmessage/app.js -------------------------------------------------------------------------------- /browser/postmessage/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/postmessage/embed.html -------------------------------------------------------------------------------- /browser/postmessage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/postmessage/index.html -------------------------------------------------------------------------------- /browser/postmessage/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/postmessage/package-lock.json -------------------------------------------------------------------------------- /browser/postmessage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/postmessage/package.json -------------------------------------------------------------------------------- /browser/postmessage/ssl/rootCA.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/postmessage/ssl/rootCA.key -------------------------------------------------------------------------------- /browser/postmessage/ssl/rootCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/postmessage/ssl/rootCA.pem -------------------------------------------------------------------------------- /browser/postmessage/ssl/rootCA.srl: -------------------------------------------------------------------------------- 1 | 9AC98A10F39C572B 2 | -------------------------------------------------------------------------------- /browser/postmessage/ssl/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/postmessage/ssl/server.crt -------------------------------------------------------------------------------- /browser/postmessage/ssl/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/postmessage/ssl/server.csr -------------------------------------------------------------------------------- /browser/postmessage/ssl/server.csr.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/postmessage/ssl/server.csr.cnf -------------------------------------------------------------------------------- /browser/postmessage/ssl/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/postmessage/ssl/server.key -------------------------------------------------------------------------------- /browser/postmessage/ssl/v3.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/postmessage/ssl/v3.ext -------------------------------------------------------------------------------- /browser/speculation rules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/app.js -------------------------------------------------------------------------------- /browser/speculation rules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/index.html -------------------------------------------------------------------------------- /browser/speculation rules/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/package-lock.json -------------------------------------------------------------------------------- /browser/speculation rules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/package.json -------------------------------------------------------------------------------- /browser/speculation rules/selectormatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/selectormatch.html -------------------------------------------------------------------------------- /browser/speculation rules/speculationrules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/speculationrules.json -------------------------------------------------------------------------------- /browser/speculation rules/ssl/rootCA.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/ssl/rootCA.key -------------------------------------------------------------------------------- /browser/speculation rules/ssl/rootCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/ssl/rootCA.pem -------------------------------------------------------------------------------- /browser/speculation rules/ssl/rootCA.srl: -------------------------------------------------------------------------------- 1 | 6EF34A0F823339CEAC429DE7A948A4B235C9C387 2 | -------------------------------------------------------------------------------- /browser/speculation rules/ssl/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/ssl/server.crt -------------------------------------------------------------------------------- /browser/speculation rules/ssl/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/ssl/server.csr -------------------------------------------------------------------------------- /browser/speculation rules/ssl/server.csr.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/ssl/server.csr.cnf -------------------------------------------------------------------------------- /browser/speculation rules/ssl/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/ssl/server.key -------------------------------------------------------------------------------- /browser/speculation rules/ssl/v3.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/ssl/v3.ext -------------------------------------------------------------------------------- /browser/speculation rules/test1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/test1.html -------------------------------------------------------------------------------- /browser/speculation rules/test2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/test2.html -------------------------------------------------------------------------------- /browser/speculation rules/test3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/test3.html -------------------------------------------------------------------------------- /browser/speculation rules/test4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/test4.html -------------------------------------------------------------------------------- /browser/speculation rules/test5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/test5.html -------------------------------------------------------------------------------- /browser/speculation rules/test6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/browser/speculation rules/test6.html -------------------------------------------------------------------------------- /cm-notification-nodejs/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/cm-notification-nodejs/.env -------------------------------------------------------------------------------- /cm-notification-nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/cm-notification-nodejs/package.json -------------------------------------------------------------------------------- /cm-notification-nodejs/step7-teams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/cm-notification-nodejs/step7-teams.js -------------------------------------------------------------------------------- /code-coverage-remote/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/code-coverage-remote/.classpath -------------------------------------------------------------------------------- /code-coverage-remote/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/code-coverage-remote/.gitignore -------------------------------------------------------------------------------- /code-coverage-remote/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/code-coverage-remote/.settings/.jsdtscope -------------------------------------------------------------------------------- /code-coverage-remote/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /code-coverage-remote/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /code-coverage-remote/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /code-coverage-remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/code-coverage-remote/README.md -------------------------------------------------------------------------------- /code-coverage-remote/code-coverage-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/code-coverage-remote/code-coverage-local.png -------------------------------------------------------------------------------- /code-coverage-remote/code-coverage-sonar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/code-coverage-remote/code-coverage-sonar.png -------------------------------------------------------------------------------- /code-coverage-remote/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/code-coverage-remote/pom.xml -------------------------------------------------------------------------------- /code-coverage-remote/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/code-coverage-remote/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /code-coverage-remote/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/code-coverage-remote/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /contextawareconf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/.gitignore -------------------------------------------------------------------------------- /contextawareconf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/README.md -------------------------------------------------------------------------------- /contextawareconf/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/all/pom.xml -------------------------------------------------------------------------------- /contextawareconf/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/core/pom.xml -------------------------------------------------------------------------------- /contextawareconf/dispatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/dispatcher/README.md -------------------------------------------------------------------------------- /contextawareconf/dispatcher/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/dispatcher/assembly.xml -------------------------------------------------------------------------------- /contextawareconf/dispatcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/dispatcher/pom.xml -------------------------------------------------------------------------------- /contextawareconf/dispatcher/src/conf.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/dispatcher/src/conf.d/README -------------------------------------------------------------------------------- /contextawareconf/dispatcher/src/conf.d/remoteip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/dispatcher/src/conf.d/remoteip.conf -------------------------------------------------------------------------------- /contextawareconf/dispatcher/src/conf.d/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/dispatcher/src/conf.d/security.conf -------------------------------------------------------------------------------- /contextawareconf/dispatcher/src/conf.d/userdir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/dispatcher/src/conf.d/userdir.conf -------------------------------------------------------------------------------- /contextawareconf/dispatcher/src/conf.d/welcome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/dispatcher/src/conf.d/welcome.conf -------------------------------------------------------------------------------- /contextawareconf/dispatcher/src/conf.dispatcher.d/clientheaders/ams_publish_clientheaders.any: -------------------------------------------------------------------------------- 1 | # Any publish specific clientheaders go here -------------------------------------------------------------------------------- /contextawareconf/dispatcher/src/conf/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/dispatcher/src/conf/httpd.conf -------------------------------------------------------------------------------- /contextawareconf/dispatcher/src/conf/magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/dispatcher/src/conf/magic -------------------------------------------------------------------------------- /contextawareconf/it.launcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/it.launcher/pom.xml -------------------------------------------------------------------------------- /contextawareconf/it.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/it.tests/pom.xml -------------------------------------------------------------------------------- /contextawareconf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/pom.xml -------------------------------------------------------------------------------- /contextawareconf/ui.apps.structure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.apps.structure/pom.xml -------------------------------------------------------------------------------- /contextawareconf/ui.apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.apps/.gitignore -------------------------------------------------------------------------------- /contextawareconf/ui.apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.apps/pom.xml -------------------------------------------------------------------------------- /contextawareconf/ui.apps/src/main/content/jcr_root/apps/contextawareconf/tests/js.txt: -------------------------------------------------------------------------------- 1 | SampleTests.js -------------------------------------------------------------------------------- /contextawareconf/ui.content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.content/pom.xml -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.frontend/.babelrc -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | ../ui.apps/ 2 | ./src/main/webpack/tests/ 3 | -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.frontend/.eslintrc.js -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.frontend/README.md -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.frontend/assembly.xml -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/clientlib.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.frontend/clientlib.config.js -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.frontend/package.json -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.frontend/pom.xml -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/src/main/webpack/components/_container.scss: -------------------------------------------------------------------------------- 1 | .cmp-container {} -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/src/main/webpack/components/_contentfragmentlist.scss: -------------------------------------------------------------------------------- 1 | .cmp-contentfragmentlist {} -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/src/main/webpack/components/_experiencefragment.scss: -------------------------------------------------------------------------------- 1 | .cmp-experiencefragment {} -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/src/main/webpack/components/_form-button.scss: -------------------------------------------------------------------------------- 1 | .cmp-form-button {} -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/src/main/webpack/components/_form.scss: -------------------------------------------------------------------------------- 1 | .cmp-form {} -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/src/main/webpack/resources/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/src/main/webpack/resources/images/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.frontend/tsconfig.json -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.frontend/webpack.common.js -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.frontend/webpack.dev.js -------------------------------------------------------------------------------- /contextawareconf/ui.frontend/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/contextawareconf/ui.frontend/webpack.prod.js -------------------------------------------------------------------------------- /copyrightmanagement/README.md: -------------------------------------------------------------------------------- 1 | "# copyrightmanagement" 2 | -------------------------------------------------------------------------------- /copyrightmanagement/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/copyrightmanagement/core/pom.xml -------------------------------------------------------------------------------- /corecomponents/Configurations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/corecomponents/Configurations.txt -------------------------------------------------------------------------------- /corecomponents/ExtendedTitleModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/corecomponents/ExtendedTitleModel.java -------------------------------------------------------------------------------- /crypto-nodejs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/crypto-nodejs.txt -------------------------------------------------------------------------------- /csp-express-js/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /csp-express-js/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/csp-express-js/README.MD -------------------------------------------------------------------------------- /csp-express-js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/csp-express-js/app.js -------------------------------------------------------------------------------- /csp-express-js/cspresponseheaders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/csp-express-js/cspresponseheaders.html -------------------------------------------------------------------------------- /csp-express-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/csp-express-js/package-lock.json -------------------------------------------------------------------------------- /csp-express-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/csp-express-js/package.json -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/db.json -------------------------------------------------------------------------------- /edgesiteincludehandler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/edgesiteincludehandler.txt -------------------------------------------------------------------------------- /editabletemplatedemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/editabletemplatedemo/README.md -------------------------------------------------------------------------------- /editabletemplatedemo/editabledemo-base-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/editabletemplatedemo/editabledemo-base-1.0.zip -------------------------------------------------------------------------------- /editabletemplatedemo/editabletemplate-conf-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/editabletemplatedemo/editabletemplate-conf-1.0.zip -------------------------------------------------------------------------------- /error-handler.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/error-handler.conf -------------------------------------------------------------------------------- /express-templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/express-templates/package.json -------------------------------------------------------------------------------- /express-templates/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/express-templates/server.js -------------------------------------------------------------------------------- /express-templates/views/pages/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/express-templates/views/pages/index.ejs -------------------------------------------------------------------------------- /express-templates/views/partials/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/express-templates/views/partials/footer.ejs -------------------------------------------------------------------------------- /express-templates/views/partials/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/express-templates/views/partials/head.ejs -------------------------------------------------------------------------------- /express-templates/views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/express-templates/views/partials/header.ejs -------------------------------------------------------------------------------- /express-templates/views/partials/maincontent.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/express-templates/views/partials/maincontent.ejs -------------------------------------------------------------------------------- /gatedcontent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/.gitignore -------------------------------------------------------------------------------- /gatedcontent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/README.md -------------------------------------------------------------------------------- /gatedcontent/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/all/pom.xml -------------------------------------------------------------------------------- /gatedcontent/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/core/.gitignore -------------------------------------------------------------------------------- /gatedcontent/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/core/pom.xml -------------------------------------------------------------------------------- /gatedcontent/dispatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/dispatcher/README.md -------------------------------------------------------------------------------- /gatedcontent/dispatcher/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/dispatcher/assembly.xml -------------------------------------------------------------------------------- /gatedcontent/dispatcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/dispatcher/pom.xml -------------------------------------------------------------------------------- /gatedcontent/dispatcher/src/conf.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/dispatcher/src/conf.d/README -------------------------------------------------------------------------------- /gatedcontent/dispatcher/src/conf.d/autoindex.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/dispatcher/src/conf.d/autoindex.conf -------------------------------------------------------------------------------- /gatedcontent/dispatcher/src/conf.d/logformat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/dispatcher/src/conf.d/logformat.conf -------------------------------------------------------------------------------- /gatedcontent/dispatcher/src/conf.d/remoteip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/dispatcher/src/conf.d/remoteip.conf -------------------------------------------------------------------------------- /gatedcontent/dispatcher/src/conf.d/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/dispatcher/src/conf.d/security.conf -------------------------------------------------------------------------------- /gatedcontent/dispatcher/src/conf.d/userdir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/dispatcher/src/conf.d/userdir.conf -------------------------------------------------------------------------------- /gatedcontent/dispatcher/src/conf.d/welcome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/dispatcher/src/conf.d/welcome.conf -------------------------------------------------------------------------------- /gatedcontent/dispatcher/src/conf.dispatcher.d/clientheaders/ams_publish_clientheaders.any: -------------------------------------------------------------------------------- 1 | # Any publish specific clientheaders go here -------------------------------------------------------------------------------- /gatedcontent/dispatcher/src/conf/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/dispatcher/src/conf/httpd.conf -------------------------------------------------------------------------------- /gatedcontent/dispatcher/src/conf/magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/dispatcher/src/conf/magic -------------------------------------------------------------------------------- /gatedcontent/it.launcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/it.launcher/pom.xml -------------------------------------------------------------------------------- /gatedcontent/it.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/it.tests/pom.xml -------------------------------------------------------------------------------- /gatedcontent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/pom.xml -------------------------------------------------------------------------------- /gatedcontent/ui.apps.structure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.apps.structure/pom.xml -------------------------------------------------------------------------------- /gatedcontent/ui.apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.apps/.gitignore -------------------------------------------------------------------------------- /gatedcontent/ui.apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.apps/pom.xml -------------------------------------------------------------------------------- /gatedcontent/ui.apps/src/main/content/jcr_root/apps/gatedcontent/tests/js.txt: -------------------------------------------------------------------------------- 1 | SampleTests.js -------------------------------------------------------------------------------- /gatedcontent/ui.content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.content/pom.xml -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.frontend/.babelrc -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | ../ui.apps/ 2 | ./src/main/webpack/tests/ 3 | -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.frontend/.eslintrc.js -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.frontend/README.md -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.frontend/assembly.xml -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/clientlib.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.frontend/clientlib.config.js -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.frontend/package.json -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.frontend/pom.xml -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/src/main/webpack/components/_container.scss: -------------------------------------------------------------------------------- 1 | .cmp-container {} -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/src/main/webpack/components/_contentfragmentlist.scss: -------------------------------------------------------------------------------- 1 | .cmp-contentfragmentlist {} -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/src/main/webpack/components/_experiencefragment.scss: -------------------------------------------------------------------------------- 1 | .cmp-experiencefragment {} -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/src/main/webpack/components/_form-button.scss: -------------------------------------------------------------------------------- 1 | .cmp-form-button {} -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/src/main/webpack/components/_form.scss: -------------------------------------------------------------------------------- 1 | .cmp-form {} -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/src/main/webpack/resources/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/src/main/webpack/resources/images/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.frontend/tsconfig.json -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.frontend/webpack.common.js -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.frontend/webpack.dev.js -------------------------------------------------------------------------------- /gatedcontent/ui.frontend/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/gatedcontent/ui.frontend/webpack.prod.js -------------------------------------------------------------------------------- /git-secret.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/git-secret.txt -------------------------------------------------------------------------------- /jaxrsservice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/jaxrsservice/.gitignore -------------------------------------------------------------------------------- /jaxrsservice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/jaxrsservice/README.md -------------------------------------------------------------------------------- /jaxrsservice/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/jaxrsservice/core/pom.xml -------------------------------------------------------------------------------- /jaxrsservice/it.launcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/jaxrsservice/it.launcher/pom.xml -------------------------------------------------------------------------------- /jaxrsservice/it.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/jaxrsservice/it.tests/pom.xml -------------------------------------------------------------------------------- /jaxrsservice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/jaxrsservice/pom.xml -------------------------------------------------------------------------------- /jaxrsservice/ui.apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/jaxrsservice/ui.apps/pom.xml -------------------------------------------------------------------------------- /jaxrsservice/ui.apps/src/main/content/jcr_root/apps/jaxrsservice/tests/js.txt: -------------------------------------------------------------------------------- 1 | SampleTests.js -------------------------------------------------------------------------------- /jaxrsservice/ui.content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/jaxrsservice/ui.content/pom.xml -------------------------------------------------------------------------------- /jcr-packages/resource-mapping/etc-mapping-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/jcr-packages/resource-mapping/etc-mapping-1.0.zip -------------------------------------------------------------------------------- /lambda-edge-functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/lambda-edge-functions.txt -------------------------------------------------------------------------------- /llms/ollama/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/llms/ollama/js/index.js -------------------------------------------------------------------------------- /llms/ollama/js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/llms/ollama/js/package-lock.json -------------------------------------------------------------------------------- /llms/ollama/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/llms/ollama/js/package.json -------------------------------------------------------------------------------- /llms/ollama/py/Adobe-Experience-Manager.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/llms/ollama/py/Adobe-Experience-Manager.pdf -------------------------------------------------------------------------------- /llms/ollama/py/ollama_langchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/llms/ollama/py/ollama_langchain.py -------------------------------------------------------------------------------- /llms/ollama/py/ollama_llamaindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/llms/ollama/py/ollama_llamaindex.py -------------------------------------------------------------------------------- /llms/ollama/py/ollama_phi_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/llms/ollama/py/ollama_phi_python.py -------------------------------------------------------------------------------- /lucene/SuggestionData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/lucene/SuggestionData.java -------------------------------------------------------------------------------- /lucene/luceneindex-lowercase-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/lucene/luceneindex-lowercase-1.0.zip -------------------------------------------------------------------------------- /lucene/luceneindex-suggestion-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/lucene/luceneindex-suggestion-1.0.zip -------------------------------------------------------------------------------- /lucene/luceneindex-synonyms-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/lucene/luceneindex-synonyms-1.0.zip -------------------------------------------------------------------------------- /maven-sample-webapp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/maven-sample-webapp/.classpath -------------------------------------------------------------------------------- /maven-sample-webapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/maven-sample-webapp/.gitignore -------------------------------------------------------------------------------- /maven-sample-webapp/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/maven-sample-webapp/.settings/.jsdtscope -------------------------------------------------------------------------------- /maven-sample-webapp/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /maven-sample-webapp/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /maven-sample-webapp/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /maven-sample-webapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/maven-sample-webapp/README.md -------------------------------------------------------------------------------- /maven-sample-webapp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/maven-sample-webapp/pom.xml -------------------------------------------------------------------------------- /maven-sample-webapp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/maven-sample-webapp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /maven-sample-webapp/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/maven-sample-webapp/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /mousetrap-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/mousetrap-demo/README.md -------------------------------------------------------------------------------- /mousetrap-demo/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/mousetrap-demo/client/package-lock.json -------------------------------------------------------------------------------- /mousetrap-demo/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/mousetrap-demo/client/package.json -------------------------------------------------------------------------------- /mousetrap-demo/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/mousetrap-demo/client/public/index.html -------------------------------------------------------------------------------- /mousetrap-demo/client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/mousetrap-demo/client/src/App.css -------------------------------------------------------------------------------- /mousetrap-demo/client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/mousetrap-demo/client/src/App.js -------------------------------------------------------------------------------- /mousetrap-demo/client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/mousetrap-demo/client/src/index.css -------------------------------------------------------------------------------- /mousetrap-demo/client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/mousetrap-demo/client/src/index.js -------------------------------------------------------------------------------- /mousetrap-demo/client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/mousetrap-demo/client/src/logo.svg -------------------------------------------------------------------------------- /mousetrap-demo/client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/mousetrap-demo/client/yarn.lock -------------------------------------------------------------------------------- /node-cron/JobHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/node-cron/JobHandler.js -------------------------------------------------------------------------------- /nodeapp-email/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/nodeapp-email/package.json -------------------------------------------------------------------------------- /nodeapp-email/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/nodeapp-email/server.js -------------------------------------------------------------------------------- /nodeapp-email/server/emailConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/nodeapp-email/server/emailConfig.js -------------------------------------------------------------------------------- /nodeapp-email/server/files/hello.txt: -------------------------------------------------------------------------------- 1 | test files -------------------------------------------------------------------------------- /nodeapp-email/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/nodeapp-email/server/server.js -------------------------------------------------------------------------------- /nodeapp-email/server/templates/test/html.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/nodeapp-email/server/templates/test/html.ejs -------------------------------------------------------------------------------- /nodeapp-email/server/templates/test/subject.ejs: -------------------------------------------------------------------------------- 1 | Test email for <%= name %> -------------------------------------------------------------------------------- /nodeapp-email/server/templates/test/text.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/nodeapp-email/server/templates/test/text.ejs -------------------------------------------------------------------------------- /performance-api-demo/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /performance-api-demo/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/performance-api-demo/README.MD -------------------------------------------------------------------------------- /performance-api-demo/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/performance-api-demo/app.js -------------------------------------------------------------------------------- /performance-api-demo/highresolutionapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/performance-api-demo/highresolutionapi.js -------------------------------------------------------------------------------- /performance-api-demo/navigationtimingapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/performance-api-demo/navigationtimingapi.js -------------------------------------------------------------------------------- /performance-api-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/performance-api-demo/package-lock.json -------------------------------------------------------------------------------- /performance-api-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/performance-api-demo/package.json -------------------------------------------------------------------------------- /performance-api-demo/painttimingapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/performance-api-demo/painttimingapi.js -------------------------------------------------------------------------------- /performance-api-demo/performanceapidemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/performance-api-demo/performanceapidemo.html -------------------------------------------------------------------------------- /performance-api-demo/resourcetimingapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/performance-api-demo/resourcetimingapi.js -------------------------------------------------------------------------------- /performance-api-demo/user-timing-dev-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/performance-api-demo/user-timing-dev-tools.png -------------------------------------------------------------------------------- /performance-api-demo/usertimingapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/performance-api-demo/usertimingapi.js -------------------------------------------------------------------------------- /redirect-admin/redirect_map_converter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/redirect-admin/redirect_map_converter.sh -------------------------------------------------------------------------------- /redirect-admin/redirectmanager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/redirect-admin/redirectmanager/.gitignore -------------------------------------------------------------------------------- /redirect-admin/redirectmanager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/redirect-admin/redirectmanager/README.md -------------------------------------------------------------------------------- /redirect-admin/redirectmanager/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/redirect-admin/redirectmanager/all/pom.xml -------------------------------------------------------------------------------- /redirect-admin/redirectmanager/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/redirect-admin/redirectmanager/core/pom.xml -------------------------------------------------------------------------------- /redirect-admin/redirectmanager/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/redirect-admin/redirectmanager/pom.xml -------------------------------------------------------------------------------- /redirect-admin/redirectmanager/ui.apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/redirect-admin/redirectmanager/ui.apps/.gitignore -------------------------------------------------------------------------------- /redirect-admin/redirectmanager/ui.apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/redirect-admin/redirectmanager/ui.apps/pom.xml -------------------------------------------------------------------------------- /redirect-admin/redirectmanager/ui.content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/redirect-admin/redirectmanager/ui.content/pom.xml -------------------------------------------------------------------------------- /renderconditins/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/.gitignore -------------------------------------------------------------------------------- /renderconditins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/README.md -------------------------------------------------------------------------------- /renderconditins/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/all/pom.xml -------------------------------------------------------------------------------- /renderconditins/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/core/pom.xml -------------------------------------------------------------------------------- /renderconditins/dispatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/dispatcher/README.md -------------------------------------------------------------------------------- /renderconditins/dispatcher/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/dispatcher/assembly.xml -------------------------------------------------------------------------------- /renderconditins/dispatcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/dispatcher/pom.xml -------------------------------------------------------------------------------- /renderconditins/dispatcher/src/conf.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/dispatcher/src/conf.d/README -------------------------------------------------------------------------------- /renderconditins/dispatcher/src/conf.d/autoindex.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/dispatcher/src/conf.d/autoindex.conf -------------------------------------------------------------------------------- /renderconditins/dispatcher/src/conf.d/logformat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/dispatcher/src/conf.d/logformat.conf -------------------------------------------------------------------------------- /renderconditins/dispatcher/src/conf.d/remoteip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/dispatcher/src/conf.d/remoteip.conf -------------------------------------------------------------------------------- /renderconditins/dispatcher/src/conf.d/security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/dispatcher/src/conf.d/security.conf -------------------------------------------------------------------------------- /renderconditins/dispatcher/src/conf.d/userdir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/dispatcher/src/conf.d/userdir.conf -------------------------------------------------------------------------------- /renderconditins/dispatcher/src/conf.d/welcome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/dispatcher/src/conf.d/welcome.conf -------------------------------------------------------------------------------- /renderconditins/dispatcher/src/conf.dispatcher.d/clientheaders/ams_publish_clientheaders.any: -------------------------------------------------------------------------------- 1 | # Any publish specific clientheaders go here -------------------------------------------------------------------------------- /renderconditins/dispatcher/src/conf/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/dispatcher/src/conf/httpd.conf -------------------------------------------------------------------------------- /renderconditins/dispatcher/src/conf/magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/dispatcher/src/conf/magic -------------------------------------------------------------------------------- /renderconditins/it.launcher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/it.launcher/pom.xml -------------------------------------------------------------------------------- /renderconditins/it.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/it.tests/pom.xml -------------------------------------------------------------------------------- /renderconditins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/pom.xml -------------------------------------------------------------------------------- /renderconditins/ui.apps.structure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.apps.structure/pom.xml -------------------------------------------------------------------------------- /renderconditins/ui.apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.apps/.gitignore -------------------------------------------------------------------------------- /renderconditins/ui.apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.apps/pom.xml -------------------------------------------------------------------------------- /renderconditins/ui.apps/src/main/content/jcr_root/apps/renderconditins/tests/js.txt: -------------------------------------------------------------------------------- 1 | SampleTests.js -------------------------------------------------------------------------------- /renderconditins/ui.content/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.content/pom.xml -------------------------------------------------------------------------------- /renderconditins/ui.frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.frontend/.babelrc -------------------------------------------------------------------------------- /renderconditins/ui.frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | ../ui.apps/ 2 | ./src/main/webpack/tests/ 3 | -------------------------------------------------------------------------------- /renderconditins/ui.frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.frontend/.eslintrc.js -------------------------------------------------------------------------------- /renderconditins/ui.frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.frontend/README.md -------------------------------------------------------------------------------- /renderconditins/ui.frontend/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.frontend/assembly.xml -------------------------------------------------------------------------------- /renderconditins/ui.frontend/clientlib.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.frontend/clientlib.config.js -------------------------------------------------------------------------------- /renderconditins/ui.frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.frontend/package.json -------------------------------------------------------------------------------- /renderconditins/ui.frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.frontend/pom.xml -------------------------------------------------------------------------------- /renderconditins/ui.frontend/src/main/webpack/components/_container.scss: -------------------------------------------------------------------------------- 1 | .cmp-container {} -------------------------------------------------------------------------------- /renderconditins/ui.frontend/src/main/webpack/components/_contentfragmentlist.scss: -------------------------------------------------------------------------------- 1 | .cmp-contentfragmentlist {} -------------------------------------------------------------------------------- /renderconditins/ui.frontend/src/main/webpack/components/_experiencefragment.scss: -------------------------------------------------------------------------------- 1 | .cmp-experiencefragment {} -------------------------------------------------------------------------------- /renderconditins/ui.frontend/src/main/webpack/components/_form-button.scss: -------------------------------------------------------------------------------- 1 | .cmp-form-button {} -------------------------------------------------------------------------------- /renderconditins/ui.frontend/src/main/webpack/components/_form.scss: -------------------------------------------------------------------------------- 1 | .cmp-form {} -------------------------------------------------------------------------------- /renderconditins/ui.frontend/src/main/webpack/resources/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /renderconditins/ui.frontend/src/main/webpack/resources/images/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /renderconditins/ui.frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.frontend/tsconfig.json -------------------------------------------------------------------------------- /renderconditins/ui.frontend/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.frontend/webpack.common.js -------------------------------------------------------------------------------- /renderconditins/ui.frontend/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.frontend/webpack.dev.js -------------------------------------------------------------------------------- /renderconditins/ui.frontend/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/renderconditins/ui.frontend/webpack.prod.js -------------------------------------------------------------------------------- /robotxtxt/RobotsTextServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/robotxtxt/RobotsTextServlet.java -------------------------------------------------------------------------------- /robotxtxt/robotsTxtComponents-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/robotxtxt/robotsTxtComponents-1.0.zip -------------------------------------------------------------------------------- /sample-sling-servlets/DemoJsonServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/sample-sling-servlets/DemoJsonServlet.java -------------------------------------------------------------------------------- /sample-sling-servlets/DemoNodeTypeBasedServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/sample-sling-servlets/DemoNodeTypeBasedServlet.java -------------------------------------------------------------------------------- /sample-sling-servlets/DemoOptingServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/sample-sling-servlets/DemoOptingServlet.java -------------------------------------------------------------------------------- /sample-sling-servlets/DemoPathBasedServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/sample-sling-servlets/DemoPathBasedServlet.java -------------------------------------------------------------------------------- /sample-sling-servlets/DemoResourceBasedServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/sample-sling-servlets/DemoResourceBasedServlet.java -------------------------------------------------------------------------------- /sample-sling-servlets/RunModeBasedServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/sample-sling-servlets/RunModeBasedServlet.java -------------------------------------------------------------------------------- /scripts/wlst/ChangeClusterConstraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/scripts/wlst/ChangeClusterConstraint.py -------------------------------------------------------------------------------- /scripts/wlst/ConfigureTLOGSSharedFileStore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/scripts/wlst/ConfigureTLOGSSharedFileStore.py -------------------------------------------------------------------------------- /scripts/wlst/CreateMultiDataSource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/scripts/wlst/CreateMultiDataSource.py -------------------------------------------------------------------------------- /scripts/wlst/EnableArchiving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/scripts/wlst/EnableArchiving.py -------------------------------------------------------------------------------- /scripts/wlst/JMSConfiguration/JMSConfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/scripts/wlst/JMSConfiguration/JMSConfiguration.py -------------------------------------------------------------------------------- /scripts/wlst/MigrateFileStoreToJDBSStore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/scripts/wlst/MigrateFileStoreToJDBSStore.py -------------------------------------------------------------------------------- /scripts/wlst/ResetAllDataSourcePassword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/scripts/wlst/ResetAllDataSourcePassword.py -------------------------------------------------------------------------------- /scripts/wlst/SetJDBCTimeoutProperties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/scripts/wlst/SetJDBCTimeoutProperties.py -------------------------------------------------------------------------------- /scripts/wlst/SetXATimeoutProperties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/scripts/wlst/SetXATimeoutProperties.py -------------------------------------------------------------------------------- /scripts/wlst/UpdateGracefulShutdownParameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/scripts/wlst/UpdateGracefulShutdownParameters.py -------------------------------------------------------------------------------- /scripts/wlst/applyJRFToDomain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/scripts/wlst/applyJRFToDomain.py -------------------------------------------------------------------------------- /server.xml-connector-selfsigned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/server.xml-connector-selfsigned -------------------------------------------------------------------------------- /sketch2code-designs/design1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/sketch2code-designs/design1.jpg -------------------------------------------------------------------------------- /sketch2code-designs/design2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/sketch2code-designs/design2.jpg -------------------------------------------------------------------------------- /sketch2code-designs/design3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/sketch2code-designs/design3.jpg -------------------------------------------------------------------------------- /test-coverage-report-jacoco/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/test-coverage-report-jacoco/.gitignore -------------------------------------------------------------------------------- /test-coverage-report-jacoco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/test-coverage-report-jacoco/README.md -------------------------------------------------------------------------------- /test-coverage-report-jacoco/module1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/test-coverage-report-jacoco/module1/pom.xml -------------------------------------------------------------------------------- /test-coverage-report-jacoco/module2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/test-coverage-report-jacoco/module2/pom.xml -------------------------------------------------------------------------------- /test-coverage-report-jacoco/module2/src/test/resources/cucumber.properties: -------------------------------------------------------------------------------- 1 | cucumber.publish.quiet=true -------------------------------------------------------------------------------- /test-coverage-report-jacoco/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/test-coverage-report-jacoco/pom.xml -------------------------------------------------------------------------------- /test-coverage-report-jacoco/test-aggregate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/test-coverage-report-jacoco/test-aggregate/pom.xml -------------------------------------------------------------------------------- /testarea/symlinks/available/test-link.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testarea/symlinks/enable/test-link1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user-agent-client-hints/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /user-agent-client-hints/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/README.MD -------------------------------------------------------------------------------- /user-agent-client-hints/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/app.js -------------------------------------------------------------------------------- /user-agent-client-hints/child.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/child.html -------------------------------------------------------------------------------- /user-agent-client-hints/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/index.html -------------------------------------------------------------------------------- /user-agent-client-hints/index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/index1.html -------------------------------------------------------------------------------- /user-agent-client-hints/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/package-lock.json -------------------------------------------------------------------------------- /user-agent-client-hints/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/package.json -------------------------------------------------------------------------------- /user-agent-client-hints/ssl/rootCA.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/ssl/rootCA.key -------------------------------------------------------------------------------- /user-agent-client-hints/ssl/rootCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/ssl/rootCA.pem -------------------------------------------------------------------------------- /user-agent-client-hints/ssl/rootCA.srl: -------------------------------------------------------------------------------- 1 | 9AC98A10F39C572B 2 | -------------------------------------------------------------------------------- /user-agent-client-hints/ssl/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/ssl/server.crt -------------------------------------------------------------------------------- /user-agent-client-hints/ssl/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/ssl/server.csr -------------------------------------------------------------------------------- /user-agent-client-hints/ssl/server.csr.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/ssl/server.csr.cnf -------------------------------------------------------------------------------- /user-agent-client-hints/ssl/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/ssl/server.key -------------------------------------------------------------------------------- /user-agent-client-hints/ssl/v3.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/user-agent-client-hints/ssl/v3.ext -------------------------------------------------------------------------------- /workflow-launcher-exclude-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techforum-repo/youttubedata/HEAD/workflow-launcher-exclude-list.txt --------------------------------------------------------------------------------