├── src ├── test │ └── resources │ │ ├── archetype11 │ │ ├── ui.apps │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── content │ │ │ │ ├── jcr_root │ │ │ │ ├── apps │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ │ ├── colctrl │ │ │ │ │ │ │ │ │ ├── clientlib │ │ │ │ │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ ├── textimage │ │ │ │ │ │ │ │ │ ├── clientlib │ │ │ │ │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ ├── helloworld │ │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ │ └── dialog.xml │ │ │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ └── title │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── structure │ │ │ │ │ │ │ │ ├── page │ │ │ │ │ │ │ │ ├── clientlib │ │ │ │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ ├── topnav │ │ │ │ │ │ │ │ ├── clientlib │ │ │ │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ └── logo │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ └── fr.xml │ │ │ │ │ │ ├── config.author │ │ │ │ │ │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider-sample.xml │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config-sample.xml │ │ │ │ │ └── .content.xml │ │ │ │ └── etc │ │ │ │ │ ├── designs │ │ │ │ │ └── sample │ │ │ │ │ │ ├── clientlib-all │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── README.md │ │ │ │ │ │ ├── clientlib-site │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ ├── css.txt │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ └── script.js │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── page │ │ │ │ │ │ └── logo │ │ │ │ │ │ ├── image │ │ │ │ │ │ └── image.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── workflow │ │ │ │ │ ├── models │ │ │ │ │ ├── dam │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── projects │ │ │ │ │ │ ├── request_copy │ │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ │ │ └── image │ │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ │ └── _dam_thumbnail_400.png │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── request_email │ │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ │ │ └── image │ │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ │ │ │ │ └── _dam_thumbnail_400.png │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── request_launch │ │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ │ │ └── image │ │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ │ │ │ │ └── _dam_thumbnail_400.png │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── approval_workflow │ │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ │ │ └── image │ │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ │ │ │ │ └── _dam_thumbnail_400.png │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── product_photo_shoot │ │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ │ │ └── image │ │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ │ │ │ │ └── _dam_thumbnail_400.png │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── request_landing_page │ │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ │ │ └── image │ │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ │ │ │ │ └── _dam_thumbnail_400.png │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── photo_shoot_submission │ │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ │ └── image │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ │ │ │ └── _dam_thumbnail_400.png │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── s7dam │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── social │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── launcher │ │ │ │ │ ├── config │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── update_from_lightbox_mod │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── update_from_lightbox_create │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── reverse_replicate_fb_likes_tags │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── update_asset_create │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── replicate_created_drafts_and_submissions │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── replicate_modified_drafts_and_submissions │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── dam_autotag_assets │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── newsletter_bounce_check │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── update_asset_mod │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── parse_word_doc_create │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── parse_word_doc_mod │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── metadata_set_lastmodified │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── dam_xmp_writeback │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── dm_encode_video_create │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── parse_word_docx_create │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── parse_word_docx_mod │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── dm_encode_video_mod │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── dm_video_thumbnail_replacement_mod │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── update_asset_create_without_DM │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── dm_video_thumbnail_replacement_create │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── dm_video_user_uploaded_thumbnail_mod │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── dm_video_user_uploaded_thumbnail_create │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── update_asset_mod_without_DM │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── _rep_policy.xml │ │ │ │ │ └── .content.xml │ │ │ │ └── META-INF │ │ │ │ └── vault │ │ │ │ └── filter.xml │ │ ├── ui.content │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── content │ │ │ │ ├── META-INF │ │ │ │ └── vault │ │ │ │ │ └── filter.xml │ │ │ │ └── jcr_root │ │ │ │ └── content │ │ │ │ ├── sample │ │ │ │ ├── _jcr_content │ │ │ │ │ └── image │ │ │ │ │ │ ├── file │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ └── _dam_thumbnail_319.png │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── en │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── image │ │ │ │ │ │ ├── file │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ └── _dam_thumbnail_319.png │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── fr │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── image │ │ │ │ │ │ ├── file │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ └── _dam_thumbnail_319.png │ │ │ │ │ │ └── .content.xml │ │ │ │ └── .content.xml │ │ │ │ └── dam │ │ │ │ ├── sample │ │ │ │ ├── _jcr_content │ │ │ │ │ └── folderThumbnail │ │ │ │ ├── asset.jpg │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ └── renditions │ │ │ │ │ │ ├── original │ │ │ │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ │ │ │ └── original.dir │ │ │ │ │ │ └── .content.xml │ │ │ │ └── .content.xml │ │ │ │ └── .content.xml │ │ └── core │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── adobe │ │ │ └── core │ │ │ └── package-info.java │ │ ├── archetype17 │ │ ├── ui.apps │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── content │ │ │ │ ├── jcr_root │ │ │ │ └── apps │ │ │ │ │ ├── sample │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── clientlib-site │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── clientlib-base │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── components │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ ├── breadcrumb │ │ │ │ │ │ │ │ ├── clientlib │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── helloworld │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── title │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── navigation │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── sharing │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── tabs │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ │ │ │ │ └── _cq_template │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── carousel │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ │ │ │ ├── languagenavigation │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── teaser │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── structure │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── form │ │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── hidden │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── container │ │ │ │ │ │ │ ├── new │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── fr.xml │ │ │ │ │ ├── config.author │ │ │ │ │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider-sample.xml │ │ │ │ │ └── config │ │ │ │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config-sample.xml │ │ │ │ │ └── .content.xml │ │ │ │ └── META-INF │ │ │ │ └── vault │ │ │ │ └── filter.xml │ │ ├── ui.content │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── content │ │ │ │ ├── jcr_root │ │ │ │ ├── content │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ └── image │ │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ │ ├── _dam_thumbnail_48.png │ │ │ │ │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ │ │ │ │ └── _dam_thumbnail_319.png │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── en │ │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ │ │ └── image │ │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ │ └── _dam_thumbnail_319.png │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── fr │ │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ │ └── image │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ └── _dam_thumbnail_319.png │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── dam │ │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ └── folderThumbnail │ │ │ │ │ │ ├── asset.jpg │ │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ │ │ └── renditions │ │ │ │ │ │ │ │ ├── original │ │ │ │ │ │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ │ │ │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ │ │ │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ │ │ │ │ │ └── original.dir │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── conf │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ └── wcm │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ ├── template-types │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ ├── _rep_policy.xml │ │ │ │ │ │ │ │ └── empty-page │ │ │ │ │ │ │ │ │ ├── initial │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ │ └── policies │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ └── content-page │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── global │ │ │ │ │ │ └── settings │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── dam │ │ │ │ │ │ └── video │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── workflow │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── config │ │ │ │ │ │ ├── dam_xmp_writeback │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── update-asset-marketing-launcher │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── collection-replication-node-created │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── collection-replication-node-modified │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── update_asset_create │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── update_asset_mod │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── update-asset-marketing-node-modified-launcher │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── global-marketing-create-project-launcher │ │ │ │ │ │ └── .content.xml │ │ │ │ └── var │ │ │ │ │ ├── workflow │ │ │ │ │ ├── models │ │ │ │ │ │ ├── dam │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── .content.xml │ │ │ │ │ └── .content.xml │ │ │ │ └── META-INF │ │ │ │ └── vault │ │ │ │ └── filter.xml │ │ └── core │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── adobe │ │ │ └── sample │ │ │ └── core │ │ │ └── package-info.java │ │ ├── archetype23 │ │ ├── ui.apps │ │ │ ├── src │ │ │ │ └── main │ │ │ │ │ └── content │ │ │ │ │ ├── jcr_root │ │ │ │ │ └── apps │ │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ ├── fr.json │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ └── fr.json.dir │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── helloworld │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── spa │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── embed │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── page │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── title │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ ├── hidden │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ └── container │ │ │ │ │ │ │ │ │ ├── new │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── download │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── breadcrumb │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── separator │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── xfpage │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ └── content.html │ │ │ │ │ │ │ ├── navigation │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── sharing │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── tabs │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ │ │ │ │ └── _cq_template │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── carousel │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ │ │ │ ├── accordion │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ │ │ │ │ └── _cq_template │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── languagenavigation │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── teaser │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── contentfragment │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── container │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── experiencefragment │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── contentfragmentlist │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ │ ├── clientlib-grid │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── clientlib-base │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── config.publish │ │ │ │ │ │ │ └── org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.xml │ │ │ │ │ │ ├── config.author │ │ │ │ │ │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider-sample.xml │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config-sample.xml │ │ │ │ │ │ ├── config.prod │ │ │ │ │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config-sample.xml │ │ │ │ │ │ └── config.stage │ │ │ │ │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config-sample.xml │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── META-INF │ │ │ │ │ └── vault │ │ │ │ │ └── filter.xml │ │ │ └── .gitignore │ │ ├── ui.content │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── content │ │ │ │ ├── jcr_root │ │ │ │ ├── conf │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ └── wcm │ │ │ │ │ │ │ │ ├── template-types │ │ │ │ │ │ │ │ ├── page │ │ │ │ │ │ │ │ │ ├── thumbnail.png │ │ │ │ │ │ │ │ │ ├── thumbnail.png.dir │ │ │ │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ │ │ │ │ ├── _dam_thumbnail_48.png │ │ │ │ │ │ │ │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ │ │ │ │ │ │ │ └── _dam_thumbnail_319.png │ │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ ├── xf │ │ │ │ │ │ │ │ │ ├── thumbnail.png │ │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ │ └── policies │ │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ └── _rep_policy.xml │ │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ ├── page-content │ │ │ │ │ │ │ │ │ ├── thumbnail.png │ │ │ │ │ │ │ │ │ ├── thumbnail.png.dir │ │ │ │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ │ │ │ │ ├── _dam_thumbnail_300.png │ │ │ │ │ │ │ │ │ │ │ │ ├── _dam_thumbnail_319.png │ │ │ │ │ │ │ │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ ├── xf-web-variation │ │ │ │ │ │ │ │ │ ├── thumbnail.png │ │ │ │ │ │ │ │ │ ├── thumbnail.png.dir │ │ │ │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ │ │ │ │ ├── _dam_thumbnail_128.png │ │ │ │ │ │ │ │ │ │ │ │ └── _dam_thumbnail_319.png │ │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ └── segments │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── global │ │ │ │ │ │ └── settings │ │ │ │ │ │ ├── dam │ │ │ │ │ │ └── video │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── workflow │ │ │ │ │ │ └── launcher │ │ │ │ │ │ └── config │ │ │ │ │ │ ├── dam_xmp_writeback │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── update-asset-marketing-launcher │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── collection-replication-node-created │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── collection-replication-node-modified │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── update_asset_create │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── update_asset_mod │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── update-asset-marketing-node-modified-launcher │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── global-marketing-create-project-launcher │ │ │ │ │ │ └── .content.xml │ │ │ │ ├── var │ │ │ │ │ ├── workflow │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ ├── dam │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── .content.xml │ │ │ │ └── content │ │ │ │ │ ├── dam │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── asset.jpg │ │ │ │ │ │ │ └── _jcr_content │ │ │ │ │ │ │ │ └── renditions │ │ │ │ │ │ │ │ ├── original │ │ │ │ │ │ │ │ ├── cq5dam.web.1280.1280.jpeg │ │ │ │ │ │ │ │ ├── cq5dam.thumbnail.48.48.png │ │ │ │ │ │ │ │ ├── cq5dam.thumbnail.140.100.png │ │ │ │ │ │ │ │ ├── cq5dam.thumbnail.319.319.png │ │ │ │ │ │ │ │ └── original.dir │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── sample │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ └── image │ │ │ │ │ │ │ └── file.dir │ │ │ │ │ │ │ ├── _jcr_content │ │ │ │ │ │ │ └── _dam_thumbnails │ │ │ │ │ │ │ │ ├── _dam_thumbnail_48.png │ │ │ │ │ │ │ │ └── _dam_thumbnail_480.png │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── us │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── experience-fragments │ │ │ │ │ └── sample │ │ │ │ │ ├── us │ │ │ │ │ ├── .content.xml │ │ │ │ │ └── en │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── site │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ ├── footer │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── header │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── .content.xml │ │ │ │ └── META-INF │ │ │ │ └── vault │ │ │ │ └── filter.xml │ │ └── core │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── adobe │ │ │ └── sample │ │ │ └── core │ │ │ ├── models │ │ │ └── package-info.java │ │ │ ├── filters │ │ │ └── package-info.java │ │ │ ├── servlets │ │ │ └── package-info.java │ │ │ ├── listeners │ │ │ └── package-info.java │ │ │ └── schedulers │ │ │ └── package-info.java │ │ ├── testMissingWFProject │ │ ├── ui.apps │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── content │ │ │ │ ├── jcr_root │ │ │ │ └── apps │ │ │ │ │ ├── sample │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── js.txt │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── components │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ ├── breadcrumb │ │ │ │ │ │ │ │ ├── clientlib │ │ │ │ │ │ │ │ │ ├── less │ │ │ │ │ │ │ │ │ │ └── breadcrumb.less │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── helloworld │ │ │ │ │ │ │ │ ├── helloworld.html │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── carousel │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ └── _cq_editConfig.xml │ │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── title │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── navigation │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── sharing │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── tabs │ │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ │ ├── _cq_editConfig.xml │ │ │ │ │ │ │ │ └── _cq_template │ │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── contentfragment │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── languagenavigation │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── contentfragmentlist │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── teaser │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ ├── structure │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ ├── customfooterlibs.html │ │ │ │ │ │ │ │ ├── customheaderlibs.html │ │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ └── form │ │ │ │ │ │ │ ├── text │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── hidden │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── container │ │ │ │ │ │ │ ├── new │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── fr.xml │ │ │ │ │ ├── clientlibs │ │ │ │ │ │ ├── clientlib-site │ │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ │ └── less │ │ │ │ │ │ │ │ └── grid.less │ │ │ │ │ │ └── clientlib-base │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ ├── config.author │ │ │ │ │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider-sample.xml │ │ │ │ │ └── config │ │ │ │ │ │ └── org.apache.sling.commons.log.LogManager.factory.config-sample.xml │ │ │ │ │ └── .content.xml │ │ │ │ └── META-INF │ │ │ │ └── vault │ │ │ │ └── filter.xml │ │ └── core │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── adobe │ │ │ └── core │ │ │ └── package-info.java │ │ ├── testProjectNoLauncher │ │ └── ui.conf.wf │ │ │ └── src │ │ │ └── main │ │ │ └── content │ │ │ └── jcr_root │ │ │ └── conf │ │ │ └── global │ │ │ └── settings │ │ │ └── workflow │ │ │ └── .content.xml │ │ └── testProjectNoModel │ │ └── ui.content │ │ └── src │ │ └── main │ │ └── content │ │ └── jcr_root │ │ └── conf │ │ └── global │ │ └── settings │ │ └── workflow │ │ ├── .content.xml │ │ └── launcher │ │ ├── .content.xml │ │ └── config │ │ ├── .content.xml │ │ ├── parse_word_doc_create │ │ └── .content.xml │ │ ├── parse_word_doc_mod │ │ └── .content.xml │ │ ├── parse_word_docx_create │ │ └── .content.xml │ │ └── parse_word_docx_mod │ │ └── .content.xml └── main │ └── resources │ └── template │ ├── aem-cloud-migration.content │ └── src │ │ └── main │ │ └── content │ │ ├── META-INF │ │ └── vault │ │ │ └── filter.xml │ │ └── jcr_root │ │ └── conf │ │ └── global │ │ └── settings │ │ └── dam │ │ ├── .content.xml │ │ └── processing │ │ └── .content.xml │ └── aem-cloud-migration.apps │ └── src │ └── main │ └── content │ └── META-INF │ └── vault │ └── filter.xml ├── .gitignore └── .github └── ISSUE_TEMPLATE.md /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/tests/js.txt: -------------------------------------------------------------------------------- 1 | SampleTests.js -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/sample/tests/js.txt: -------------------------------------------------------------------------------- 1 | SampleTests.js -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/tests/js.txt: -------------------------------------------------------------------------------- 1 | SampleTests.js -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/designs/sample/clientlib-all/css.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/designs/sample/clientlib-all/js.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/jcr_root/apps/sample/tests/js.txt: -------------------------------------------------------------------------------- 1 | SampleTests.js -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/designs/sample/clientlib-site/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | script.js 3 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/designs/sample/clientlib-site/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | style.css 3 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/content/colctrl/clientlib/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | style.css -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/structure/page/clientlib/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | style.css 3 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/content/textimage/clientlib/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | style.css 3 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/structure/topnav/clientlib/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | style.css 3 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/designs/sample/clientlib-site/js/script.js: -------------------------------------------------------------------------------- 1 | /** a JS file that shall be included */ -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/.gitignore: -------------------------------------------------------------------------------- 1 | src/main/content/jcr_root/apps/sample/clientlibs/clientlib-site 2 | src/main/content/jcr_root/apps/sample/clientlibs/clientlib-dependencies 3 | -------------------------------------------------------------------------------- /src/main/resources/template/aem-cloud-migration.content/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/i18n/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "© {0} Sample Site. All rights reserved." : "© {0} Sample Site. Tous droits réservés." 3 | } -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/main/resources/template/aem-cloud-migration.apps/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.content/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/sample/en/_jcr_content/image/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/sample/en/_jcr_content/image/file -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/sample/fr/_jcr_content/image/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/sample/fr/_jcr_content/image/file -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/en/_jcr_content/image/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/en/_jcr_content/image/file -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/fr/_jcr_content/image/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/fr/_jcr_content/image/file -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/designs/sample/_jcr_content/page/logo/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/designs/sample/_jcr_content/page/logo/image -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/designs/sample/clientlib-site/README.md: -------------------------------------------------------------------------------- 1 | 2 | This client library should contain general styles and scripts. Everything specific to components should be placed in client libraries below the corresponding components. 3 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/dam/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/dam/sample/_jcr_content/folderThumbnail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/dam/sample/_jcr_content/folderThumbnail -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/conf/sample/settings/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/dam/sample/_jcr_content/folderThumbnail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/dam/sample/_jcr_content/folderThumbnail -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/var/workflow/models/dam/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/var/workflow/models/dam/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/launcher/config/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/i18n/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/jcr_root/apps/sample/components/content/breadcrumb/clientlib/less/breadcrumb.less: -------------------------------------------------------------------------------- 1 | .cmp-breadcrumb__item { 2 | &:before { 3 | content: "\003e"; 4 | 5 | display: inline-block; 6 | padding: 0 10px; 7 | } 8 | } -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/jcr_root/apps/sample/components/structure/page/customfooterlibs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/conf/sample/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/page/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/page/thumbnail.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/xf/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/xf/thumbnail.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_copy/_jcr_content/image/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_copy/_jcr_content/image/file -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_email/_jcr_content/image/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_email/_jcr_content/image/file -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/original -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/original -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/page-content/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/page-content/thumbnail.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/original -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_launch/_jcr_content/image/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_launch/_jcr_content/image/file -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/xf-web-variation/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/xf-web-variation/thumbnail.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/approval_workflow/_jcr_content/image/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/approval_workflow/_jcr_content/image/file -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/designs/sample/clientlib-site/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/product_photo_shoot/_jcr_content/image/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/product_photo_shoot/_jcr_content/image/file -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_landing_page/_jcr_content/image/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_landing_page/_jcr_content/image/file -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/jcr_root/apps/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/photo_shoot_submission/_jcr_content/image/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/photo_shoot_submission/_jcr_content/image/file -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/jcr_root/apps/sample/components/content/helloworld/helloworld.html: -------------------------------------------------------------------------------- 1 |

Text property: ${properties.text}

2 | 3 |
4 | HelloWorldModel says:
5 | ${hello.message}
6 | 
7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | pom.xml.tag 3 | pom.xml.releaseBackup 4 | pom.xml.versionsBackup 5 | pom.xml.next 6 | release.properties 7 | dependency-reduced-pom.xml 8 | buildNumber.properties 9 | .mvn/timing.properties 10 | 11 | # Avoid ignoring Maven wrapper jar file (.jar files are usually ignored) 12 | !/.mvn/wrapper/maven-wrapper.jar 13 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/structure/page/clientlib/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/var/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/var/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/content/colctrl/clientlib/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/structure/topnav/clientlib/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.web.1280.1280.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.web.1280.1280.jpeg -------------------------------------------------------------------------------- /src/main/resources/template/aem-cloud-migration.content/src/main/content/jcr_root/conf/global/settings/dam/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/content/textimage/clientlib/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/i18n/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.48.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.48.48.png -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/sample/clientlibs/clientlib-site/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/sample/components/content/breadcrumb/clientlib/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/sample/i18n/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.48.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.48.48.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.48.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.48.48.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/s7dam/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.140.100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.140.100.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.319.319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.319.319.png -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/conf/global/settings/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.140.100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.140.100.png -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.319.319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.319.319.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.140.100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.140.100.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.319.319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/cq5dam.thumbnail.319.319.png -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/jcr_root/apps/sample/i18n/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/jcr_root/apps/sample/clientlibs/clientlib-site/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/jcr_root/apps/sample/components/content/breadcrumb/clientlib/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/content/helloworld/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/sample/components/content/helloworld/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/components/helloworld/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/tests/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/sample/tests/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_48.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/tests/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_48.png -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/jcr_root/apps/sample/components/content/helloworld/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/launcher/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_300.png -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/clientlibs/clientlib-grid/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/sample/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_480.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/sample/en/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/sample/en/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/sample/fr/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/sample/fr/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/en/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/en/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/fr/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/sample/fr/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/jcr_root/apps/sample/tests/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/structure/topnav/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/test/resources/testProjectNoLauncher/ui.conf.wf/src/main/content/jcr_root/conf/global/settings/workflow/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/testProjectNoModel/ui.content/src/main/content/jcr_root/conf/global/settings/workflow/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/designs/sample/clientlib-all/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/page/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/page/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_48.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/config.publish/org.apache.sling.jcr.resource.internal.JcrResourceResolverFactoryImpl.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/page/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/page/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_300.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/page/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/page/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/testProjectNoModel/ui.content/src/main/content/jcr_root/conf/global/settings/workflow/launcher/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_copy/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_copy/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/page-content/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/page-content/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_300.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/page-content/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/page-content/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/page-content/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/page-content/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_48.png -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/jcr_root/apps/sample/components/structure/page/customheaderlibs.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_email/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_email/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_email/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_email/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_launch/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_launch/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_launch/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_launch/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/approval_workflow/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/approval_workflow/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/approval_workflow/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/approval_workflow/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/xf-web-variation/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/xf-web-variation/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_128.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/xf-web-variation/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/templates/xf-web-variation/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/product_photo_shoot/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/product_photo_shoot/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/product_photo_shoot/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/product_photo_shoot/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/var/workflow/models/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/var/workflow/models/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/testProjectNoModel/ui.content/src/main/content/jcr_root/conf/global/settings/workflow/launcher/config/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/photo_shoot_submission/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/photo_shoot_submission/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/photo_shoot_submission/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/photo_shoot_submission/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_landing_page/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_landing_page/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_landing_page/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-migration/HEAD/src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/projects/request_landing_page/_jcr_content/image/file.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_400.png -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/experience-fragments/sample/us/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/designs/sample/_jcr_content/page/logo/image.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/components/spa/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/experience-fragments/sample/us/en/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/conf/global/settings/dam/video/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/i18n/fr.json.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 8 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/global/settings/dam/video/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/content/image/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/content/text/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/content/title/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/structure/logo/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/sample/components/content/list/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/sample/components/content/text/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/components/embed/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/components/page/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/etc/workflow/models/social/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/sample/components/content/image/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/sample/components/content/title/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/components/image/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/components/list/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/components/text/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/components/title/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/dam/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/structure/page/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/original.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/sample/components/structure/page/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/original.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/components/button/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/dam/sample/asset.jpg/_jcr_content/renditions/original.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/jcr_root/apps/sample/components/content/list/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/testMissingWFProject/ui.apps/src/main/content/jcr_root/apps/sample/components/content/text/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype11/ui.apps/src/main/content/jcr_root/apps/sample/components/content/colctrl/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/sample/components/content/search/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype17/ui.apps/src/main/content/jcr_root/apps/sample/components/form/text/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.apps/src/main/content/jcr_root/apps/sample/components/form/text/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/conf/sample/settings/wcm/template-types/page/thumbnail.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | -------------------------------------------------------------------------------- /src/test/resources/archetype23/ui.content/src/main/content/jcr_root/content/experience-fragments/sample/us/en/site/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 |
7 |