adding example apps, fixing powerup issues
authorChris Koeritz <fred@gruntose.com>
Mon, 28 Jan 2019 21:42:30 +0000 (16:42 -0500)
committerChris Koeritz <fred@gruntose.com>
Mon, 28 Jan 2019 21:42:30 +0000 (16:42 -0500)
commit935f2f9f0aa8a1cadc390326c2dce73433c44fb2
tree18506538ba02c478446cf59453f91f27fe0d5732
parent911c9ea38f0a6d5ac43091f717e6ffed85f24c8a
adding example apps, fixing powerup issues

the new example apps are in nascent state but provide two demos, one of the google maps using a zipcode database and the other implementing a shared calendar view in google.
the site avenger shared support and all scripts have been updated to allow an empty app_dirname, such as when you are already in a directory and want to just say powerup.  this works with existing avenger5 folders already, but still needs some help to be generalized.
928 files changed:
production/example_apps/shared_calendar/.buildpath [new file with mode: 0644]
production/example_apps/shared_calendar/.editorconfig [new file with mode: 0644]
production/example_apps/shared_calendar/.gitattributes [new file with mode: 0644]
production/example_apps/shared_calendar/.github/ISSUE_TEMPLATE.md [new file with mode: 0644]
production/example_apps/shared_calendar/.github/PULL_REQUEST_TEMPLATE.md [new file with mode: 0644]
production/example_apps/shared_calendar/.gitignore [new file with mode: 0644]
production/example_apps/shared_calendar/.htaccess [new file with mode: 0644]
production/example_apps/shared_calendar/.project [new file with mode: 0644]
production/example_apps/shared_calendar/.settings/.jsdtscope [new file with mode: 0644]
production/example_apps/shared_calendar/.settings/org.eclipse.php.core.prefs [new file with mode: 0644]
production/example_apps/shared_calendar/.settings/org.eclipse.wst.common.project.facet.core.xml [new file with mode: 0644]
production/example_apps/shared_calendar/.settings/org.eclipse.wst.jsdt.ui.superType.container [new file with mode: 0644]
production/example_apps/shared_calendar/.settings/org.eclipse.wst.jsdt.ui.superType.name [new file with mode: 0644]
production/example_apps/shared_calendar/.travis.yml [new file with mode: 0644]
production/example_apps/shared_calendar/bin/cake [new file with mode: 0644]
production/example_apps/shared_calendar/bin/cake.bat [new file with mode: 0644]
production/example_apps/shared_calendar/bin/cake.php [new file with mode: 0644]
production/example_apps/shared_calendar/composer.json [new file with mode: 0644]
production/example_apps/shared_calendar/composer.lock [new file with mode: 0644]
production/example_apps/shared_calendar/config/Migrations/20170725211622_CreateUsers.php [new file with mode: 0644]
production/example_apps/shared_calendar/config/Migrations/schema-dump-default.lock [new file with mode: 0644]
production/example_apps/shared_calendar/config/app.default.php [new file with mode: 0644]
production/example_apps/shared_calendar/config/bootstrap.php [new file with mode: 0644]
production/example_apps/shared_calendar/config/bootstrap_cli.php [new file with mode: 0644]
production/example_apps/shared_calendar/config/paths.php [new file with mode: 0644]
production/example_apps/shared_calendar/config/routes.php [new file with mode: 0644]
production/example_apps/shared_calendar/config/schema/i18n.sql [new file with mode: 0644]
production/example_apps/shared_calendar/config/schema/sessions.sql [new file with mode: 0644]
production/example_apps/shared_calendar/docs/google_apis_and_credentials.odt [new file with mode: 0644]
production/example_apps/shared_calendar/docs/google_apis_and_credentials.pdf [new file with mode: 0644]
production/example_apps/shared_calendar/docs/readme.txt [new file with mode: 0644]
production/example_apps/shared_calendar/index.php [new file with mode: 0644]
production/example_apps/shared_calendar/phpunit.xml.dist [new file with mode: 0644]
production/example_apps/shared_calendar/plugins/empty [new file with mode: 0644]
production/example_apps/shared_calendar/scripts/launch_local_cake.sh [new file with mode: 0644]
production/example_apps/shared_calendar/scripts/launch_serene_cake.sh [new file with mode: 0644]
production/example_apps/shared_calendar/src/Application.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/Console/Installer.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/Controller/AppController.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/Controller/AuthorizerController.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/Controller/ErrorController.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/Controller/PagesController.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/Controller/UsersController.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/Model/Behavior/empty [new file with mode: 0644]
production/example_apps/shared_calendar/src/Model/Entity/User.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/Model/Table/UsersTable.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/Shell/ConsoleShell.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Cell/GoogleCalendar/display.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Element/Flash/default.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Element/Flash/error.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Element/Flash/success.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Email/html/default.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Email/text/default.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Error/error400.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Error/error500.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Layout/Email/html/default.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Layout/Email/text/default.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Layout/ajax.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Layout/default.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Layout/error.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Layout/rss/default.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Pages/home.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Users/add.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Users/callback.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Users/edit.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Users/index.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Users/revoke.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Users/show_calendar.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Template/Users/view.ctp [new file with mode: 0644]
production/example_apps/shared_calendar/src/Traits/GoogleOauthTrait.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/View/AjaxView.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/View/AppView.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/View/Cell/GoogleCalendarCell.php [new file with mode: 0644]
production/example_apps/shared_calendar/src/View/Helper/empty [new file with mode: 0644]
production/example_apps/shared_calendar/tests/Fixture/UsersFixture.php [new file with mode: 0644]
production/example_apps/shared_calendar/tests/TestCase/ApplicationTest.php [new file with mode: 0644]
production/example_apps/shared_calendar/tests/TestCase/Controller/AuthorizerControllerTest.php [new file with mode: 0644]
production/example_apps/shared_calendar/tests/TestCase/Controller/PagesControllerTest.php [new file with mode: 0644]
production/example_apps/shared_calendar/tests/TestCase/Controller/UsersControllerTest.php [new file with mode: 0644]
production/example_apps/shared_calendar/tests/TestCase/Model/Behavior/empty [new file with mode: 0644]
production/example_apps/shared_calendar/tests/TestCase/Model/Table/UsersTableTest.php [new file with mode: 0644]
production/example_apps/shared_calendar/tests/TestCase/View/Cell/GoogleCalendarCellTest.php [new file with mode: 0644]
production/example_apps/shared_calendar/tests/TestCase/View/Helper/empty [new file with mode: 0644]
production/example_apps/shared_calendar/tests/bootstrap.php [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/.htaccess [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/css/base.css [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/css/cake.css [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/css/home.css [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/favicon.ico [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/font/cakedingbats-webfont.eot [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/font/cakedingbats-webfont.svg [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/font/cakedingbats-webfont.ttf [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/font/cakedingbats-webfont.woff [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/font/cakedingbats-webfont.woff2 [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/img/cake-logo.png [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/img/cake.icon.png [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/img/cake.logo.svg [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/img/cake.power.gif [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/index.php [new file with mode: 0644]
production/example_apps/shared_calendar/webroot/js/empty [new file with mode: 0644]
production/example_apps/zippy_maps/.buildpath [new file with mode: 0644]
production/example_apps/zippy_maps/.editorconfig [new file with mode: 0644]
production/example_apps/zippy_maps/.gitattributes [new file with mode: 0644]
production/example_apps/zippy_maps/.github/ISSUE_TEMPLATE.md [new file with mode: 0644]
production/example_apps/zippy_maps/.github/PULL_REQUEST_TEMPLATE.md [new file with mode: 0644]
production/example_apps/zippy_maps/.gitignore [new file with mode: 0644]
production/example_apps/zippy_maps/.htaccess [new file with mode: 0644]
production/example_apps/zippy_maps/.project [new file with mode: 0644]
production/example_apps/zippy_maps/.settings/org.eclipse.php.core.prefs [new file with mode: 0644]
production/example_apps/zippy_maps/.settings/org.eclipse.wst.common.project.facet.core.xml [new file with mode: 0644]
production/example_apps/zippy_maps/.travis.yml [new file with mode: 0644]
production/example_apps/zippy_maps/bin/cake [new file with mode: 0644]
production/example_apps/zippy_maps/bin/cake.bat [new file with mode: 0644]
production/example_apps/zippy_maps/bin/cake.php [new file with mode: 0644]
production/example_apps/zippy_maps/composer.json [new file with mode: 0644]
production/example_apps/zippy_maps/composer.lock [new file with mode: 0644]
production/example_apps/zippy_maps/config/Migrations/20170421142733_create_locations_table.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/Migrations/20170426140248_create_categories_table.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/Migrations/20170426150747_create_location_categories_table.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/Migrations/20170501180455_drop_location_categories_table.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/Migrations/20170501183019_create_categories_locations_table.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/Migrations/20170519145000_add_image_to_categories.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/Migrations/20170525190322_drop_parent_from_categories.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/Migrations/20170712140650_AddLatLongColumnsToLocationsTable.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/Migrations/20170712142151_TransmogrifyLatLongDataInLocations.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/Migrations/20170712152942_DropLatlongFromLocationsTable.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/Migrations/schema-dump-default.lock [new file with mode: 0644]
production/example_apps/zippy_maps/config/app.default.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/bootstrap.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/bootstrap_cli.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/config_google.default.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/paths.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/routes.php [new file with mode: 0644]
production/example_apps/zippy_maps/config/schema/i18n.sql [new file with mode: 0644]
production/example_apps/zippy_maps/config/schema/sessions.sql [new file with mode: 0644]
production/example_apps/zippy_maps/docs/google_api_info.txt [new file with mode: 0644]
production/example_apps/zippy_maps/docs/mysql_scratch_sheet_looking_at_tables_v001.sql [new file with mode: 0644]
production/example_apps/zippy_maps/docs/producing_location_tables_from_zip_db_v001.sql [new file with mode: 0644]
production/example_apps/zippy_maps/docs/zipcode_dump-sql.zip [new file with mode: 0644]
production/example_apps/zippy_maps/index.php [new file with mode: 0644]
production/example_apps/zippy_maps/phpunit.xml.dist [new file with mode: 0644]
production/example_apps/zippy_maps/readme.txt [new file with mode: 0644]
production/example_apps/zippy_maps/reference/zipcode.php [new file with mode: 0644]
production/example_apps/zippy_maps/scripts/launch_local_cake.sh [new file with mode: 0644]
production/example_apps/zippy_maps/scripts/launch_serene_cake.sh [new file with mode: 0644]
production/example_apps/zippy_maps/scripts/prepare_project.sh [new file with mode: 0644]
production/example_apps/zippy_maps/src/Application.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Console/Installer.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Controller/AppController.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Controller/CategoriesController.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Controller/Component/empty [new file with mode: 0644]
production/example_apps/zippy_maps/src/Controller/ErrorController.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Controller/LocationsController.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Controller/PagesController.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Model/Behavior/empty [new file with mode: 0644]
production/example_apps/zippy_maps/src/Model/Entity/CategoriesLocation.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Model/Entity/Category.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Model/Entity/Location.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Model/Table/CategoriesLocationsTable.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Model/Table/CategoriesTable.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Model/Table/LocationsTable.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Shell/ConsoleShell.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Categories/add.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Categories/center.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Categories/edit.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Categories/index.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Categories/map.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Categories/view.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Element/Flash/default.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Element/Flash/error.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Element/Flash/success.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Email/html/default.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Email/text/default.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Error/error400.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Error/error500.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Layout/Email/html/default.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Layout/Email/text/default.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Layout/ajax.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Layout/default.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Layout/error.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Layout/rss/default.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Locations/add.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Locations/distance.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Locations/edit.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Locations/index.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Locations/jump.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Locations/radius.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Locations/view.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/Template/Pages/home.ctp [new file with mode: 0644]
production/example_apps/zippy_maps/src/View/AjaxView.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/View/AppView.php [new file with mode: 0644]
production/example_apps/zippy_maps/src/View/Helper/empty [new file with mode: 0644]
production/example_apps/zippy_maps/tests/Fixture/CategoriesFixture.php [new file with mode: 0644]
production/example_apps/zippy_maps/tests/Fixture/CategoriesLocationsFixture.php [new file with mode: 0644]
production/example_apps/zippy_maps/tests/Fixture/LocationsFixture.php [new file with mode: 0644]
production/example_apps/zippy_maps/tests/TestCase/ApplicationTest.php [new file with mode: 0644]
production/example_apps/zippy_maps/tests/TestCase/Controller/CategoriesControllerTest.php [new file with mode: 0644]
production/example_apps/zippy_maps/tests/TestCase/Controller/Component/empty [new file with mode: 0644]
production/example_apps/zippy_maps/tests/TestCase/Controller/LocationsControllerTest.php [new file with mode: 0644]
production/example_apps/zippy_maps/tests/TestCase/Controller/PagesControllerTest.php [new file with mode: 0644]
production/example_apps/zippy_maps/tests/TestCase/Model/Behavior/empty [new file with mode: 0644]
production/example_apps/zippy_maps/tests/TestCase/Model/Table/CategoriesLocationsTableTest.php [new file with mode: 0644]
production/example_apps/zippy_maps/tests/TestCase/Model/Table/CategoriesTableTest.php [new file with mode: 0644]
production/example_apps/zippy_maps/tests/TestCase/Model/Table/LocationsTableTest.php [new file with mode: 0644]
production/example_apps/zippy_maps/tests/TestCase/View/Helper/empty [new file with mode: 0644]
production/example_apps/zippy_maps/tests/bootstrap.php [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/.htaccess [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/css/base.css [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/css/cake.css [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/css/home.css [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/favicon.ico [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/font/cakedingbats-webfont.eot [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/font/cakedingbats-webfont.svg [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/font/cakedingbats-webfont.ttf [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/font/cakedingbats-webfont.woff [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/font/cakedingbats-webfont.woff2 [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/cake-logo.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/cake.icon.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/cake.logo.svg [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/cake.power.gif [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/charlottesville_minimap.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/2hand.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/360degrees.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/_readme-license.txt [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/abduction.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/aboriginal.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/accesdenied.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/acupuncture.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/administration.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/administrativeboundary.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/aed-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/agritourism.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/air_fixwing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/aircraftcarrier.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/aircraftsmall.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/airport.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/airport_apron.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/airport_runway.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/airport_terminal.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/airshow-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/algae.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/alien.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/alligator.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/amphitheater-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/amphitheater.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/anchorpier.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/anemometer_mono.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/animal-shelter-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/anniversary.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/ant-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/anthropo.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/apartment-3.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/apple.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/aquarium.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/arch.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/archery.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/army.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/art-museum-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/artgallery.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/atm-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/atv.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/audio.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/australianfootball.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/avalanche1.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/award.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/badminton-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bags.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bank.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bar.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bar_coktail.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bar_juice.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/barbecue.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/barber.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/barrier.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/baseball.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/basketball.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bats.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/battlefield.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/battleship-3.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/beach.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/beachvolleyball.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/beautifulview.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/beautysalon.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bed_breakfast1-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/beergarden.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bicycle_shop.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bigcity.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bike_downhill.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bike_rising.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/billiard-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/binoculars.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/birds-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/blast.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/boardercross.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/boat.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/boatcrane.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bobsleigh.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bollie.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bomb.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bomber-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bouddha.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bowling.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/boxing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bread.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/brewery1.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bridge_modern.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bridge_old.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bulldozer.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bullfight.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bunker-2-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bus.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/busstop.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/bustour.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/butcher-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/butterfly-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cabin-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cablecar.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cafetaria.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/calendar-3.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/campfire-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/camping-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/candy.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/canyon-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/car.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/caraccident.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/carrental.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/carwash.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/casino-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/castle-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cathedral.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/catholicgrave.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/caution.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cave-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cctv.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cemetary.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/channelchange.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/chapel-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/chart-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cheese.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/chemistry-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/chicken-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/childmuseum01.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/chiropractor.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/christmasmarket.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/church-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cinema.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/circus.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/citysquare.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/citywalls.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/climbing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/clock.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/closedroad.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/clothers_female.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/clothers_male.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cloudy.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cloudysunny.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/coffee.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/coins.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/comedyclub.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/comics.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/comment-map-icon.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/communitycentre.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/company.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/compost.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/computers.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/condominium.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/conference.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/congress.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/construction.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/constructioncrane.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/contract.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/conveniencestore.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/convent-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/conversation-map-icon.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/convertible.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/corral.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/country.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/court.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cow-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cowabduction.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/craftstore.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cramschool.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cricket.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/crimescene.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cromlech.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cropcircles.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cross-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/crossingguard.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cruiseship.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cup.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/curling-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/currencyexchange.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/customs.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cycling.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cycling_feed.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/cycling_sprint.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/dam.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/dance_class.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/dancinghall.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/database.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/daycare.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/deepseafishing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/deer.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/dentist.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/departmentstore.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/desert-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/dinopark.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/direction_down.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/disability.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/diving.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/dogs_leash.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/dolphins.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/doublebendright.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/downloadicon.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/drinkingfountain.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/drinkingwater.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/drugstore.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/duck-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/earthquake-3.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/eggs.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/elephants.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/elevator.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/elevator_down.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/elevator_up.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/embassy.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/entrance.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/exchequer.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/exit.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/expert.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/factory.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fallingrocks.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/family.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/farm-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/farmstand.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fastfood.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/female-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/ferriswheel.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/ferry.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/festival.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fetalalcoholsyndrom.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/field.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fillingstation.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/findajob.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/finish.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fire-hydrant-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fire.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fireexstinguisher.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/firemen.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fireworks.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/firstaid.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fishchips.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fishing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fishingboat.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fishingstore.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fitness.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fjord-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/flag-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/flood.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/flowers.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/folder-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fooddeliveryservice.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/foodtruck.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/footprint.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/ford-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/forest.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/forest2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fossils.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/foundry-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fountain-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fourbyfour.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/freqchg.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/frog-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/fruits.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/ft.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/funicolar-22x22.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/gas_cylinder1.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/gay-female.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/gay-male.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/geocaching-3.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/geothermal-site.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/geyser-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/ghosttown.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/gifts.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/glacier-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/glasses.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/golfing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/gondola-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/gourmet_0star.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/grass.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/grocery.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/group-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/gumball_machine.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/handball.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/hanggliding.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/harbor.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/hare1.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/hats.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/haybale.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/headstone-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/helicopter.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/highhills.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/highschool.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/highway.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/hiking.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/historical_museum.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/historicalquarter.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/hoergeraeteakustiker_22px.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/home-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/homecenter.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/honeycomb.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/hookah_final.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/horseriding.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/hospital-building.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/hostel_0star.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/hotairbaloon.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/hotel_0star.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/hotspring.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/house.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/hunting.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/hut.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/icecream.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/icehockey.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/iceskating.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/icy_road.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/indoor-arena.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/information.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/iobridge.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/jacuzzi.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/japanese-food.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/japanese-lantern.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/japanese-sake.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/japanese-sweet-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/japanese-temple.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/jazzclub.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/jeep.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/jetfighter.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/jewelry.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/jewishgrave.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/jewishquarter.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/jogging.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/judo.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/junction.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/karate.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/karting.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/kayak1.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/kayaking.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/kebab.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/kingair.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/kiosk.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/kitesurfing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/laboratory.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/lake.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/landfill.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/landmark.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/laterne.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/laundromat.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/levelcrossing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/library.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/lifeguard-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/lighthouse-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/linedown.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/lingerie.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/liquor.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/lobster-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/lock.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/lockerrental.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/lodging_0star.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/love_date.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/loveinterest.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/magicshow.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/mainroad.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/male-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/mall.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/map.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/mapicon.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/marina-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/market.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/massage.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/mastcrane1.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/medicalstore.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/medicine.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/megalith.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/memorial.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/metronetwork.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/military.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/mine.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/missile-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/mobilephonetower.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/modernmonument.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/moderntower.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/monkey-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/monument-historique-icon-white-22x22.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/monument.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/moonstar.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/mosquee.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/mosquito-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/motel-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/motorbike.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/motorcycle.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/mountain-pass-locator-diagonal-reverse-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/mountainbiking-3.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/mountains.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/movierental.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/moving-walkway-enter-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/muffin_bagle.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/mural.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/museum_archeological.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/museum_art.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/museum_crafts.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/museum_industry.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/museum_naval.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/museum_openair.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/museum_science.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/museum_war.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/mushroom.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/music.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/music_choral.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/music_classical.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/music_hiphop.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/music_live.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/music_rock.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/nanny.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/ne_barn-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/newsagent.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/no-nuke-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/nordicski.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/notvisited.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/nursery.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/nursing_home_icon.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/observatory.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/office-building.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/oil-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/oilpumpjack.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/oilrig2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/olympicsite.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/ophthalmologist.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/outlet2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/oyster-3.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/pagoda-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/paint.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/paintball.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/palace-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/palm-tree-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/panoramicview.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/paragliding.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/parasailing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/parkandride.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/parking-meter-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/parkinggarage.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/party-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/patisserie.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/peace.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/pedestriancrossing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/penguin-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/pens.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/perfumery.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/petanque.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/petroglyphs-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/pets.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/phantom.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/phones.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/photo.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/photography.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/picnic-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/pig.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/pin-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/pirates.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/pizzaria.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/planecrash.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/planetarium-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/playground.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/pleasurepier.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/poker.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/police.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/postal.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/powerlinepole.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/poweroutage.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/powerplant.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/powersubstation.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/prayer.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/presentation.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/price-tag-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/printer-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/prison.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/publicart.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/pyramid.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/quadrifoglio.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/radar.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/radiation.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/radio-control-model-car.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/radio-station-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/rainy.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/rape.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/reatorlogowhite-22x22.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/recycle.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/regroup.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/repair.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/rescue-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/resort.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_african.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_breakfast.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_buffet.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_chinese.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_fish.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_greek.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_indian.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_italian.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_korean.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_mediterranean.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_mexican.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_romantic.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_steakhouse.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_tapas.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_thai.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_turkish.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/restaurant_vegetarian.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/revolt.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/riparianhabitat.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/river-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/road.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/roadtype_gravel.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/rockhouse.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/rodent.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/rollerskate.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/ropescourse.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/rowboat.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/rugbyfield.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/ruins-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sailing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sandwich-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sauna.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sawmill-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/school.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/schreibwaren_web.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/scoutgroup.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/scubadiving.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/seals.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/segway.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/seniorsite.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/septic_tank.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/share.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/shark-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/shintoshrine.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/shipwreck.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/shoes.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/shooting.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/shootingrange.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/shore-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/shower.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sight-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/signpost-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sikh.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/ski_shoe1.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/skiing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/skijump.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/skilifting.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/skis.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/skull.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sledge.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sledge_summer.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sledgerental.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/slipway.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/smallcity.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/smiley_happy.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/smoking.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/snail.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/snakes.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sneakers.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/snorkeling.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/snowboarding.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/snowmobiling.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/snowpark_arc.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/snowshoeing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/snowy-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/soccer.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/solarenergy.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sozialeeinrichtung.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/spa.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/spaceport-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/speed_50.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/speedhump.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/speedriding.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/spelunking.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/spider.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/splice.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sportscar.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sportutilityvehicle.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/square-compass.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/squash-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/stadium.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/stairs.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/star-3.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/stargate-raw.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/start-race-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/statue-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/steamtrain.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/stop.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/strike.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/stripclub2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/submarine-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sugar-shack.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/summercamp.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sumo-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sunny.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/sunsetland.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/supermarket.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/surfacelift.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/surfing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/surfpaddle.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/surveying-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/swimming.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/synagogue-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/taekwondo-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tailor.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/takeaway.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/targ.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/taxi.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/taxiboat.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/taxiway.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/teahouse.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tebletennis.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/telephone.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/temple-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/templehindu.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tennis.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/terrace.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/text.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/textiles.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/theater.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/theft.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/themepark.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/therapy.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/theravadapagoda.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/theravadatemple.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/thunderstorm.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/ticket_office2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tidaldiamond.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tiger-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tires.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/toilets.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tollstation.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tools.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tornado-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/torture.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tower.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/townhouse.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/toys.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/trafficcamera.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/trafficlight.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/train.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tramway.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/trash.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/travel_agency.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/treasure-mark.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/treedown.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/triskelion.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/trolley.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/truck3.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tsunami.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tunnel.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/turtle-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/tweet.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/u-pick_stand.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/ufo.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/umbrella-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/underground.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/university.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/usfootball.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/van.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/vespa.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/veterinary.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/video.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/videogames.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/villa.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/vineyard-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/volcano-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/volleyball.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/waiting.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/walkingtour.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/war.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/warehouse-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/water.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/watercraft.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/waterfall-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/watermill-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/waterpark.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/waterskiing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/watertower.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/waterwell.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/waterwellpump.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/webcam.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/wedding.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/weights.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/wetlands.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/whale-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/wifi.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/wiki-export.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/wildlifecrossing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/wind-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/windmill-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/windsurfing.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/windturbine.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/winebar.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/winetasting.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/woodshed.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/workoffice.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/workshop.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/world.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/worldwildway.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/wrestling-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/yoga.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/yooner.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/you-are-here-2.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/youthhostel.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/zombie-outbreak1.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/zoo.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/img/icons/zoom.png [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/index.php [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/js/empty [new file with mode: 0644]
production/example_apps/zippy_maps/webroot/js/jquery-3.2.1.min.js [new file with mode: 0644]
scripts/site_avenger/avcoreup.sh
scripts/site_avenger/powerup.sh
scripts/site_avenger/shared_site_mgr.sh
scripts/site_avenger/sitepush.sh
scripts/site_avenger/siteup.sh
scripts/site_avenger/standup.sh
scripts/site_avenger/teardown.sh