├── .gitignore ├── README.md ├── anatomy.md ├── content-author ├── pom.xml └── src │ └── main │ └── content │ ├── .gitignore │ ├── META-INF │ └── vault │ │ ├── config.xml │ │ ├── definition │ │ └── .content.xml │ │ ├── filter.xml │ │ ├── nodetypes.cnd │ │ └── properties.xml │ └── jcr_root │ └── content │ ├── dam │ └── justinedelson │ │ ├── .content.xml │ │ └── helloworld │ │ ├── .content.xml │ │ ├── _jcr_content │ │ ├── folderThumbnail │ │ └── folderThumbnail.dir │ │ │ └── .content.xml │ │ └── thumbnail.png │ │ ├── .content.xml │ │ └── _jcr_content │ │ └── renditions │ │ ├── cq5dam.thumbnail.140.100.png │ │ ├── cq5dam.thumbnail.319.319.png │ │ ├── cq5dam.thumbnail.48.48.png │ │ ├── cq5dam.web.1280.1280.png │ │ ├── cqdam.pyramid.tiff │ │ ├── cqdam.pyramid.tiff.dir │ │ └── .content.xml │ │ ├── original │ │ └── original.dir │ │ └── .content.xml │ └── phonegap │ └── helloworld │ ├── .content.xml │ └── en │ ├── .content.xml │ ├── _jcr_content │ └── pge-app │ │ ├── app-config-dev │ │ ├── .content.xml │ │ ├── assets │ │ │ └── .content.xml │ │ ├── clientlibs-all │ │ │ └── .content.xml │ │ ├── content-listing │ │ │ └── .content.xml │ │ ├── pages │ │ │ └── .content.xml │ │ └── splash-screen │ │ │ └── .content.xml │ │ └── app-config │ │ ├── .content.xml │ │ ├── assets │ │ └── .content.xml │ │ ├── clientlibs-all │ │ └── .content.xml │ │ ├── content-listing │ │ └── .content.xml │ │ ├── pages │ │ └── .content.xml │ │ └── splash-screen │ │ └── .content.xml │ └── home │ └── .content.xml ├── content-dev ├── pom.xml └── src │ └── main │ └── content │ ├── .gitignore │ ├── META-INF │ └── vault │ │ ├── config.xml │ │ ├── definition │ │ └── .content.xml │ │ ├── filter.xml │ │ ├── nodetypes.cnd │ │ └── properties.xml │ └── jcr_root │ ├── apps │ └── justinedelson │ │ └── helloworld │ │ ├── components │ │ ├── .content.xml │ │ └── page │ │ │ ├── .content.xml │ │ │ ├── page │ │ │ ├── .content.xml │ │ │ ├── body.html │ │ │ ├── frameworkContentExporterUtils.js │ │ │ ├── head.html │ │ │ └── page.html │ │ │ └── splash-page │ │ │ ├── .content.xml │ │ │ ├── bodylibs.jsp │ │ │ ├── clientlibs │ │ │ ├── .content.xml │ │ │ ├── css.txt │ │ │ ├── js.txt │ │ │ └── style.css │ │ │ └── headlibs.jsp │ │ ├── config │ │ └── com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider-pgehello.xml │ │ └── templates │ │ └── page │ │ ├── .content.xml │ │ ├── thumbnail.png │ │ └── thumbnail.png.dir │ │ ├── .content.xml │ │ └── _jcr_content │ │ └── _dam_thumbnails │ │ └── _dam_thumbnail_319.png │ ├── content │ └── phonegap │ │ └── helloworld │ │ ├── .content.xml │ │ └── shell │ │ ├── .content.xml │ │ └── _jcr_content │ │ ├── .vltignore │ │ └── pge-app │ │ ├── app-config-dev │ │ ├── .content.xml │ │ ├── ams-ADBMobileConfig │ │ │ └── .content.xml │ │ ├── content-listing │ │ │ └── .content.xml │ │ ├── content-packages-listing │ │ │ └── .content.xml │ │ ├── phonegap-static-files │ │ │ └── .content.xml │ │ ├── splash-screen-clientlib │ │ │ └── .content.xml │ │ └── splash-screen │ │ │ └── .content.xml │ │ ├── app-config │ │ ├── .content.xml │ │ ├── ams-ADBMobileConfig │ │ │ └── .content.xml │ │ ├── content-listing │ │ │ └── .content.xml │ │ ├── content-packages-listing │ │ │ └── .content.xml │ │ ├── phonegap-static-files │ │ │ └── .content.xml │ │ ├── splash-screen-clientlib │ │ │ └── .content.xml │ │ └── splash-screen │ │ │ └── .content.xml │ │ ├── app-content │ │ └── phonegap │ │ │ ├── .cordova │ │ │ └── config.json │ │ │ ├── platforms │ │ │ └── .gitignore │ │ │ ├── plugins │ │ │ └── .gitignore │ │ │ └── www │ │ │ ├── config.xml │ │ │ └── index.html │ │ ├── helloworld-dev │ │ ├── .content.xml │ │ ├── content-listing │ │ │ └── .content.xml │ │ ├── en │ │ │ └── .content.xml │ │ └── shell │ │ │ └── .content.xml │ │ └── helloworld │ │ ├── .content.xml │ │ ├── content-listing │ │ └── .content.xml │ │ ├── en │ │ └── .content.xml │ │ └── shell │ │ └── .content.xml │ └── etc │ ├── clientlibs │ └── justinedelson │ │ └── helloworld │ │ └── phonegap │ │ ├── clientlibsall │ │ ├── .content.xml │ │ ├── css.txt │ │ ├── css │ │ │ └── main.css │ │ ├── js.txt │ │ └── js │ │ │ └── updateHandler.js │ │ └── vendor │ │ └── zepto │ │ ├── .content.xml │ │ ├── js.txt │ │ └── zepto.min.js │ └── designs │ └── justinedelson │ └── helloworld │ └── phonegap │ └── .content.xml ├── images ├── download.png └── update-dialog.png └── pom.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/README.md -------------------------------------------------------------------------------- /anatomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/anatomy.md -------------------------------------------------------------------------------- /content-author/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/pom.xml -------------------------------------------------------------------------------- /content-author/src/main/content/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/.gitignore -------------------------------------------------------------------------------- /content-author/src/main/content/META-INF/vault/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/META-INF/vault/config.xml -------------------------------------------------------------------------------- /content-author/src/main/content/META-INF/vault/definition/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/META-INF/vault/definition/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/META-INF/vault/filter.xml -------------------------------------------------------------------------------- /content-author/src/main/content/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/META-INF/vault/nodetypes.cnd -------------------------------------------------------------------------------- /content-author/src/main/content/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/META-INF/vault/properties.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/dam/justinedelson/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/dam/justinedelson/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/_jcr_content/folderThumbnail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/_jcr_content/folderThumbnail -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/_jcr_content/folderThumbnail.dir/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/_jcr_content/folderThumbnail.dir/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/cq5dam.thumbnail.140.100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/cq5dam.thumbnail.140.100.png -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/cq5dam.thumbnail.319.319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/cq5dam.thumbnail.319.319.png -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/cq5dam.thumbnail.48.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/cq5dam.thumbnail.48.48.png -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/cq5dam.web.1280.1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/cq5dam.web.1280.1280.png -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/cqdam.pyramid.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/cqdam.pyramid.tiff -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/cqdam.pyramid.tiff.dir/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/cqdam.pyramid.tiff.dir/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/original -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/original.dir/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/dam/justinedelson/helloworld/thumbnail.png/_jcr_content/renditions/original.dir/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config-dev/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config-dev/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config-dev/assets/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config-dev/assets/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config-dev/clientlibs-all/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config-dev/clientlibs-all/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config-dev/content-listing/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config-dev/content-listing/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config-dev/pages/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config-dev/pages/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config-dev/splash-screen/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config-dev/splash-screen/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config/assets/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config/assets/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config/clientlibs-all/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config/clientlibs-all/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config/content-listing/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config/content-listing/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config/pages/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config/pages/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config/splash-screen/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/_jcr_content/pge-app/app-config/splash-screen/.content.xml -------------------------------------------------------------------------------- /content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/home/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-author/src/main/content/jcr_root/content/phonegap/helloworld/en/home/.content.xml -------------------------------------------------------------------------------- /content-dev/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/pom.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/.gitignore -------------------------------------------------------------------------------- /content-dev/src/main/content/META-INF/vault/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/META-INF/vault/config.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/META-INF/vault/definition/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/META-INF/vault/definition/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/META-INF/vault/filter.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/META-INF/vault/nodetypes.cnd -------------------------------------------------------------------------------- /content-dev/src/main/content/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/META-INF/vault/properties.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/page/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/page/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/page/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/page/body.html -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/page/frameworkContentExporterUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/page/frameworkContentExporterUtils.js -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/page/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/page/head.html -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/page/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/page/page.html -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/splash-page/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/splash-page/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/splash-page/bodylibs.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/splash-page/bodylibs.jsp -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/splash-page/clientlibs/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/splash-page/clientlibs/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/splash-page/clientlibs/css.txt: -------------------------------------------------------------------------------- 1 | style.css -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/splash-page/clientlibs/js.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/splash-page/clientlibs/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: yellow; 3 | } -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/splash-page/headlibs.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/components/page/splash-page/headlibs.jsp -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/config/com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider-pgehello.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/config/com.day.cq.wcm.mobile.core.impl.MobileEmulatorProvider-pgehello.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/templates/page/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/templates/page/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/templates/page/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/templates/page/thumbnail.png -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/templates/page/thumbnail.png.dir/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/templates/page/thumbnail.png.dir/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/templates/page/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/apps/justinedelson/helloworld/templates/page/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_319.png -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/.vltignore: -------------------------------------------------------------------------------- 1 | reports 2 | -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/ams-ADBMobileConfig/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/ams-ADBMobileConfig/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/content-listing/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/content-listing/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/content-packages-listing/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/content-packages-listing/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/phonegap-static-files/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/phonegap-static-files/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/splash-screen-clientlib/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/splash-screen-clientlib/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/splash-screen/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config-dev/splash-screen/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/ams-ADBMobileConfig/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/ams-ADBMobileConfig/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/content-listing/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/content-listing/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/content-packages-listing/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/content-packages-listing/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/phonegap-static-files/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/phonegap-static-files/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/splash-screen-clientlib/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/splash-screen-clientlib/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/splash-screen/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-config/splash-screen/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-content/phonegap/.cordova/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-content/phonegap/.cordova/config.json -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-content/phonegap/platforms/.gitignore: -------------------------------------------------------------------------------- 1 | # make content-sync include this directory -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-content/phonegap/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | # make content-sync include this directory -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-content/phonegap/www/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-content/phonegap/www/config.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-content/phonegap/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/app-content/phonegap/www/index.html -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld-dev/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld-dev/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld-dev/content-listing/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld-dev/content-listing/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld-dev/en/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld-dev/en/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld-dev/shell/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld-dev/shell/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld/content-listing/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld/content-listing/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld/en/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld/en/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld/shell/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/content/phonegap/helloworld/shell/_jcr_content/pge-app/helloworld/shell/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/etc/clientlibs/justinedelson/helloworld/phonegap/clientlibsall/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/etc/clientlibs/justinedelson/helloworld/phonegap/clientlibsall/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/etc/clientlibs/justinedelson/helloworld/phonegap/clientlibsall/css.txt: -------------------------------------------------------------------------------- 1 | #base=css 2 | main.css -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/etc/clientlibs/justinedelson/helloworld/phonegap/clientlibsall/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/etc/clientlibs/justinedelson/helloworld/phonegap/clientlibsall/css/main.css -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/etc/clientlibs/justinedelson/helloworld/phonegap/clientlibsall/js.txt: -------------------------------------------------------------------------------- 1 | #base=js 2 | updateHandler.js -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/etc/clientlibs/justinedelson/helloworld/phonegap/clientlibsall/js/updateHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/etc/clientlibs/justinedelson/helloworld/phonegap/clientlibsall/js/updateHandler.js -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/etc/clientlibs/justinedelson/helloworld/phonegap/vendor/zepto/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/etc/clientlibs/justinedelson/helloworld/phonegap/vendor/zepto/.content.xml -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/etc/clientlibs/justinedelson/helloworld/phonegap/vendor/zepto/js.txt: -------------------------------------------------------------------------------- 1 | zepto.min.js -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/etc/clientlibs/justinedelson/helloworld/phonegap/vendor/zepto/zepto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/etc/clientlibs/justinedelson/helloworld/phonegap/vendor/zepto/zepto.min.js -------------------------------------------------------------------------------- /content-dev/src/main/content/jcr_root/etc/designs/justinedelson/helloworld/phonegap/.content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/content-dev/src/main/content/jcr_root/etc/designs/justinedelson/helloworld/phonegap/.content.xml -------------------------------------------------------------------------------- /images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/images/download.png -------------------------------------------------------------------------------- /images/update-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/images/update-dialog.png -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinedelson/pgehello/HEAD/pom.xml --------------------------------------------------------------------------------