├── .gitignore ├── .htaccess ├── CHANGELOG.txt ├── COPYRIGHT ├── CREDITS ├── LICENSE ├── README.md ├── assets ├── css │ ├── autocomplete │ │ └── jquery.autocomplete.css │ ├── bootstrap-material │ │ ├── material-fullpalette.css │ │ ├── material-fullpalette.css.map │ │ ├── material-fullpalette.min.css │ │ ├── material-fullpalette.min.css.map │ │ ├── material.css │ │ ├── material.css.map │ │ ├── material.min.css │ │ ├── material.min.css.map │ │ ├── ripples.css │ │ ├── ripples.css.map │ │ ├── ripples.min.css │ │ ├── ripples.min.css.map │ │ ├── roboto.css │ │ ├── roboto.css.map │ │ ├── roboto.min.css │ │ └── roboto.min.css.map │ ├── bootstrap │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── box │ │ └── box.css │ ├── datatables │ │ ├── Readme.txt │ │ ├── datatables.css │ │ ├── images │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ ├── license-bsd.txt │ │ └── license-gpl2.txt │ ├── datetimepicker │ │ ├── bootstrap-datetimepicker.css │ │ └── bootstrap-datetimepicker.min.css │ ├── dropzone │ │ └── dropzone.css │ ├── fonts │ │ ├── Material-Design-Icons.eot │ │ ├── Material-Design-Icons.svg │ │ ├── Material-Design-Icons.ttf │ │ ├── Material-Design-Icons.woff │ │ ├── RobotoDraftBold.woff │ │ ├── RobotoDraftBold.woff2 │ │ ├── RobotoDraftItalic.woff │ │ ├── RobotoDraftItalic.woff2 │ │ ├── RobotoDraftMedium.woff │ │ ├── RobotoDraftMedium.woff2 │ │ ├── RobotoDraftRegular.woff │ │ ├── RobotoDraftRegular.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── close.png │ │ ├── loading.gif │ │ ├── next.png │ │ └── prev.png │ ├── instagram │ │ └── leaflet.instagram.css │ ├── jPlayer │ │ ├── css │ │ │ ├── jplayer.blue.monday.css │ │ │ └── jplayer.blue.monday.min.css │ │ ├── image │ │ │ ├── jplayer.blue.monday.jpg │ │ │ ├── jplayer.blue.monday.seeking.gif │ │ │ └── jplayer.blue.monday.video.play.png │ │ └── mustache │ │ │ ├── jplayer.blue.monday.audio.playlist.html │ │ │ ├── jplayer.blue.monday.audio.single.html │ │ │ ├── jplayer.blue.monday.audio.stream.html │ │ │ ├── jplayer.blue.monday.video.playlist.html │ │ │ └── jplayer.blue.monday.video.single.html │ ├── jquery-flipster │ │ └── jquery.flipster.min.css │ ├── jssor │ │ ├── img │ │ │ ├── a01.png │ │ │ ├── a02.png │ │ │ ├── a03.png │ │ │ ├── a04.png │ │ │ ├── a06.png │ │ │ ├── a07.png │ │ │ ├── a10.png │ │ │ ├── a11.png │ │ │ ├── a12.png │ │ │ ├── a13.png │ │ │ ├── a14.png │ │ │ ├── a15.png │ │ │ └── browser-icons.png │ │ └── jssor.slider.css │ ├── leaflet-draw │ │ ├── images │ │ │ ├── spritesheet-2x.png │ │ │ └── spritesheet.png │ │ └── leaflet.draw.css │ ├── leaflet-easybutton │ │ └── easy-button.css │ ├── leaflet-groupedlayercontrol │ │ └── leaflet.groupedlayercontrol.css │ ├── leaflet-markercluster │ │ ├── MarkerCluster.Default.css │ │ └── MarkerCluster.css │ ├── leaflet-openweathermap │ │ ├── Weather.png │ │ ├── leaflet-openweathermap.css │ │ ├── map.css │ │ └── owmloading.gif │ ├── leaflet-photomarker │ │ ├── leaflet.photomarker.css │ │ └── leaflet.photomarker.js │ ├── leaflet-rm │ │ ├── leaflet-routing-machine.css │ │ ├── leaflet.routing.icons.png │ │ ├── leaflet.routing.icons.svg │ │ └── routing-icon.png │ ├── leaflet │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ └── layers.png │ │ └── leaflet.css │ ├── lightbox │ │ └── lightbox.css │ ├── owl_carousel │ │ ├── AjaxLoader.gif │ │ ├── bootstrapTheme.css │ │ ├── custom.css │ │ ├── google-code-prettify │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ └── run_prettify.js │ │ ├── grabbing.png │ │ ├── owl.carousel.css │ │ ├── owl.theme.css │ │ ├── owl.transitions.css │ │ └── responsive.css │ ├── pikaday │ │ ├── pikaday.css │ │ ├── site.css │ │ └── theme.css │ ├── popmenu │ │ ├── img │ │ │ ├── mirage-menu.png │ │ │ ├── p7spep_submenu.png │ │ │ ├── p7spep_submenu_vert.png │ │ │ ├── pmm_carbon_root.jpg │ │ │ ├── pmm_carbon_subs.jpg │ │ │ ├── pmm_carbon_vroot.jpg │ │ │ ├── pmm_east_dark.gif │ │ │ ├── pmm_east_light.gif │ │ │ ├── pmm_east_medium.gif │ │ │ ├── pmm_greystone_root.jpg │ │ │ ├── pmm_greystone_subs.jpg │ │ │ ├── pmm_greystone_vroot.jpg │ │ │ ├── pmm_iefix.gif │ │ │ ├── pmm_north_dark.gif │ │ │ ├── pmm_north_light.gif │ │ │ ├── pmm_north_medium.gif │ │ │ ├── pmm_oak_root.jpg │ │ │ ├── pmm_oak_subs.jpg │ │ │ ├── pmm_pipe_dark.gif │ │ │ ├── pmm_pipe_light.gif │ │ │ ├── pmm_sheer_root.png │ │ │ ├── pmm_sheer_root_vertical.png │ │ │ ├── pmm_sheer_subs.png │ │ │ ├── pmm_south_dark.gif │ │ │ ├── pmm_south_light.gif │ │ │ ├── pmm_south_medium.gif │ │ │ ├── pmm_topaz_left.jpg │ │ │ ├── pmm_topaz_right.jpg │ │ │ ├── pmm_topaz_sub.jpg │ │ │ ├── pmm_topaz_v1.jpg │ │ │ ├── pmm_topaz_vsub.jpg │ │ │ ├── pmm_west_dark.gif │ │ │ ├── pmm_west_light.gif │ │ │ └── pmm_west_medium.gif │ │ ├── p7PMMh01.css │ │ ├── p7PMMh02.css │ │ ├── p7PMMh03.css │ │ ├── p7PMMh04.css │ │ ├── p7PMMh05.css │ │ ├── p7PMMh06.css │ │ ├── p7PMMh07.css │ │ ├── p7PMMh08.css │ │ ├── p7PMMh09.css │ │ ├── p7PMMh10.css │ │ ├── p7PMMh15.css │ │ ├── p7PMMh16.css │ │ ├── p7PMMh19.css │ │ ├── p7PMMscripts.js │ │ ├── p7PMMv01.css │ │ ├── p7PMMv02.css │ │ ├── p7PMMv03.css │ │ ├── p7PMMv04.css │ │ ├── p7PMMv05.css │ │ ├── p7PMMv06.css │ │ ├── p7PMMv07.css │ │ ├── p7PMMv08.css │ │ ├── p7PMMv09.css │ │ ├── p7PMMv10.css │ │ ├── p7PMMv15.css │ │ ├── p7PMMv16.css │ │ └── p7PMMv19.css │ ├── slide │ │ └── slide.css │ ├── slidemenu │ │ └── slidemenu.css │ └── treemenu │ │ ├── img │ │ ├── tmm_east_black.gif │ │ ├── tmm_east_gray.gif │ │ ├── tmm_east_white.gif │ │ ├── tmm_exist_page_black.gif │ │ ├── tmm_exist_page_white.gif │ │ ├── tmm_exist_submenu.jpg │ │ ├── tmm_gradientRed.jpg │ │ ├── tmm_gradientTeal.jpg │ │ ├── tmm_minus_black.gif │ │ ├── tmm_minus_white.gif │ │ ├── tmm_neon_minusBlue.gif │ │ ├── tmm_neon_minusGreen.gif │ │ ├── tmm_neon_minusRed.gif │ │ ├── tmm_neon_minusYellow.gif │ │ ├── tmm_neon_plusBlue.gif │ │ ├── tmm_neon_plusGreen.gif │ │ ├── tmm_neon_plusRed.gif │ │ ├── tmm_neon_plusYellow.gif │ │ ├── tmm_page.gif │ │ ├── tmm_page_diamond_black.gif │ │ ├── tmm_page_square.gif │ │ ├── tmm_page_square_gray.gif │ │ ├── tmm_page_square_white.gif │ │ ├── tmm_page_squareopen_black.gif │ │ ├── tmm_page_squareopen_white.gif │ │ ├── tmm_plus_black.gif │ │ ├── tmm_plus_white.gif │ │ ├── tmm_rootGradientBlack.jpg │ │ ├── tmm_rootGradientGray.jpg │ │ ├── tmm_south_black.gif │ │ ├── tmm_south_gray.gif │ │ ├── tmm_south_white.gif │ │ ├── tmm_trans_white.png │ │ └── tmmbevel_white.jpg │ │ ├── p7TMM01.css │ │ ├── p7TMM02.css │ │ ├── p7TMM03.css │ │ ├── p7TMM04.css │ │ ├── p7TMM05.css │ │ ├── p7TMM06.css │ │ ├── p7TMM07.css │ │ ├── p7TMM08.css │ │ ├── p7TMM09.css │ │ ├── p7TMM10.css │ │ ├── p7TMM11.css │ │ ├── p7TMM12.css │ │ ├── p7TMM13.css │ │ ├── p7TMM14.css │ │ └── p7TMM15.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── asset.form.js │ ├── asset.map.control.js │ ├── asset.map.js │ ├── asset.map_ori.js │ ├── autocomplete │ ├── jquery.autocomplete.css │ └── jquery.autocomplete.js │ ├── bootstrap-material │ ├── material.js │ ├── material.min.js │ ├── material.min.js.map │ ├── ripples.js │ ├── ripples.min.js │ └── ripples.min.js.map │ ├── bootstrap │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── LICENSE-MIT │ ├── README.md │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── bootstrap.tabs.js │ └── npm.js │ ├── custom_menu.js │ ├── datatables │ ├── Readme.txt │ ├── jquery.dataTables.bootstrap.js │ ├── jquery.dataTables.min.js │ ├── license-bsd.txt │ └── license-gpl2.txt │ ├── datetimepicker │ ├── bootstrap-datetimepicker.js │ └── bootstrap-datetimepicker.min.js │ ├── dropzone │ ├── dropzone.min.js │ └── readme.md │ ├── instagram │ ├── leaflet.instagram.cartodb.js │ └── leaflet.instagram.cluster.js │ ├── jPlayer │ ├── jquery.jplayer.js │ ├── jquery.jplayer.min.js │ └── jquery.jplayer.swf │ ├── jquery-cookie │ ├── .gitignore │ ├── .jshintrc │ ├── .tm_properties │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── MIT-LICENSE.txt │ ├── README.md │ └── jquery.cookie.js │ ├── jquery-geo │ └── jquery.geo.core.js │ ├── jquery │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery-1.8.0.js │ └── jquery-2.1.1.min.js │ ├── jssor │ ├── icon-lupe.png │ ├── jssor.js │ ├── jssor.options.js │ └── jssor.slider.js │ ├── leaflet-draw │ ├── Control.Draw.js │ ├── Leaflet.draw.js │ ├── Toolbar.js │ ├── Tooltip.js │ ├── copyright.js │ ├── draw │ │ ├── DrawToolbar.js │ │ └── handler │ │ │ ├── Draw.Circle.js │ │ │ ├── Draw.Feature.js │ │ │ ├── Draw.Marker.js │ │ │ ├── Draw.Polygon.js │ │ │ ├── Draw.Polyline.js │ │ │ ├── Draw.Rectangle.js │ │ │ └── Draw.SimpleShape.js │ ├── edit │ │ ├── EditToolbar.js │ │ └── handler │ │ │ ├── Edit.Circle.js │ │ │ ├── Edit.Marker.js │ │ │ ├── Edit.Poly.js │ │ │ ├── Edit.Rectangle.js │ │ │ ├── Edit.SimpleShape.js │ │ │ ├── EditToolbar.Delete.js │ │ │ └── EditToolbar.Edit.js │ ├── ext │ │ ├── GeometryUtil.js │ │ ├── LatLngUtil.js │ │ ├── LineUtil.Intersect.js │ │ ├── Polygon.Intersect.js │ │ └── Polyline.Intersect.js │ └── images │ │ └── spritesheet.svg │ ├── leaflet-easybutton │ └── easy-button.js │ ├── leaflet-groupedlayercontrol │ └── leaflet.groupedlayercontrol.js │ ├── leaflet-markercluster │ ├── leaflet.markercluster-src.js │ └── leaflet.markercluster.js │ ├── leaflet-openweathermap │ ├── NT2.png │ ├── excanvas.js │ ├── leaflet-openweathermap.js │ ├── map.js │ ├── map_i18n.js │ └── owmloading.gif │ ├── leaflet-photomarker │ ├── PhotoIcon.js │ ├── PhotoMarker.js │ ├── PhotoMarkerMatrix.js │ └── leaflet.photomarker.js │ ├── leaflet-rm │ ├── Control.Geocoder.js │ ├── leaflet-routing-machine.css │ ├── leaflet-routing-machine.js │ ├── leaflet-routing-machine.min.js │ ├── leaflet.routing.icons.png │ ├── leaflet.routing.icons.svg │ └── routing-icon.png │ ├── leaflet-weather │ └── leaflet-weathericonslayer.js │ ├── leaflet.draw.setting.js │ ├── leaflet.rm.setting.js │ ├── leaflet │ ├── images │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ └── marker-shadow.png │ ├── leaflet.js │ ├── terraformer-wkt-parser.min.js │ └── terraformer.min.js │ ├── lightbox │ └── lightbox.min.js │ ├── moment-with-locales.js │ ├── owl_carousel │ ├── application.js │ ├── bootstrap-collapse.js │ ├── bootstrap-tab.js │ ├── bootstrap-transition.js │ ├── owl.carousel.js │ └── owl.carousel.min.js │ ├── pikaday │ ├── moment.js │ ├── pikaday.jquery.js │ └── pikaday.js │ ├── popmenu │ └── p7PMMscripts.js │ ├── slidemenu │ └── slidemenu.js │ ├── tinymce │ ├── jquery.tinymce.min.js │ ├── langs │ │ └── readme.md │ ├── license.txt │ ├── plugins │ │ ├── advlist │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ └── plugin.min.js │ │ ├── code │ │ │ └── plugin.min.js │ │ ├── compat3x │ │ │ ├── editable_selects.js │ │ │ ├── form_utils.js │ │ │ ├── mctabs.js │ │ │ ├── tiny_mce_popup.js │ │ │ └── validate.js │ │ ├── contextmenu │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ └── plugin.min.js │ │ ├── example │ │ │ └── plugin.min.js │ │ ├── example_dependency │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ └── plugin.min.js │ │ ├── image │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ └── plugin.min.js │ │ ├── layer │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ └── plugin.min.js │ │ ├── link │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── moxieplayer.swf │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ └── plugin.min.js │ │ ├── print │ │ │ └── plugin.min.js │ │ ├── save │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ └── plugin.min.js │ │ ├── table │ │ │ └── plugin.min.js │ │ ├── template │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ └── visualblocks.css │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ └── plugin.min.js │ ├── skins │ │ └── lightgray │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── fonts │ │ │ ├── icomoon-small.eot │ │ │ ├── icomoon-small.svg │ │ │ ├── icomoon-small.ttf │ │ │ ├── icomoon-small.woff │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ ├── icomoon.woff │ │ │ └── readme.md │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── loader.gif │ │ │ ├── object.gif │ │ │ ├── trans.gif │ │ │ └── wline.gif │ │ │ ├── skin.ie7.min.css │ │ │ └── skin.min.css │ ├── themes │ │ └── modern │ │ │ └── theme.min.js │ ├── tinymce.init.js │ └── tinymce.min.js │ └── treemenu │ └── p7TMMscripts.js ├── bin ├── classes │ ├── abs.class.extension.php │ ├── abs.class.record.php │ ├── class.category.php │ ├── class.event.php │ ├── class.language.php │ ├── class.menu.php │ ├── class.meta.php │ ├── class.module.php │ ├── class.page.php │ ├── class.place.php │ ├── class.post.php │ ├── class.preferences.php │ ├── class.route.php │ ├── class.routing.php │ ├── class.template.php │ ├── class.url.php │ ├── class.user.php │ └── class.widget.php ├── mbin.assets.php ├── mbin.auth.php ├── mbin.extension.php ├── mbin.object.php └── mbin.visit.php ├── binaries.php ├── description ├── doc ├── developer │ └── development.rst ├── index.rst ├── manual_en.rst ├── manual_it.rst ├── mappiamo_manual-en.odt ├── mappiamo_manual-en.pdf └── mappiamo_manual_en.md ├── favicon.ico ├── favicon.png ├── favicon_single.png ├── feed ├── index.php └── sitemap.php ├── includes.php ├── includes ├── helper.php ├── include.php ├── lang.php ├── listings.php └── url.php ├── index.php ├── lib ├── facebook │ ├── base_facebook.php │ ├── facebook.php │ └── fb_ca_chain_bundle.crt ├── feedwritter │ ├── COPYING │ ├── FeedItem.php │ ├── FeedTypes.php │ ├── FeedWriter.php │ └── README ├── geocoder │ ├── Geocoder │ │ ├── Dumper │ │ │ ├── DumperInterface.php │ │ │ ├── GeoJsonDumper.php │ │ │ ├── GpxDumper.php │ │ │ ├── KmlDumper.php │ │ │ ├── WkbDumper.php │ │ │ └── WktDumper.php │ │ ├── Exception │ │ │ ├── ChainNoResultException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── ExtensionNotLoadedException.php │ │ │ ├── HttpException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidCredentialsException.php │ │ │ ├── NoResultException.php │ │ │ ├── QuotaExceededException.php │ │ │ ├── RuntimeException.php │ │ │ └── UnsupportedException.php │ │ ├── Formatter │ │ │ ├── Formatter.php │ │ │ └── FormatterInterface.php │ │ ├── Geocoder.php │ │ ├── GeocoderInterface.php │ │ ├── HttpAdapter │ │ │ ├── BuzzHttpAdapter.php │ │ │ ├── CurlHttpAdapter.php │ │ │ ├── GuzzleHttpAdapter.php │ │ │ ├── HttpAdapterInterface.php │ │ │ ├── SocketHttpAdapter.php │ │ │ └── ZendHttpAdapter.php │ │ ├── Provider │ │ │ ├── AbstractProvider.php │ │ │ ├── ArcGISOnlineProvider.php │ │ │ ├── BaiduProvider.php │ │ │ ├── BingMapsProvider.php │ │ │ ├── ChainProvider.php │ │ │ ├── CloudMadeProvider.php │ │ │ ├── DataScienceToolkitProvider.php │ │ │ ├── FreeGeoIpProvider.php │ │ │ ├── GeoIPsProvider.php │ │ │ ├── GeoPluginProvider.php │ │ │ ├── GeocoderCaProvider.php │ │ │ ├── GeocoderUsProvider.php │ │ │ ├── GeoipProvider.php │ │ │ ├── GeonamesProvider.php │ │ │ ├── GoogleMapsBusinessProvider.php │ │ │ ├── GoogleMapsProvider.php │ │ │ ├── HostIpProvider.php │ │ │ ├── IGNOpenLSProvider.php │ │ │ ├── IpGeoBaseProvider.php │ │ │ ├── IpInfoDbProvider.php │ │ │ ├── LocaleAwareProviderInterface.php │ │ │ ├── MapQuestProvider.php │ │ │ ├── MaxMindBinaryProvider.php │ │ │ ├── MaxMindProvider.php │ │ │ ├── NominatimProvider.php │ │ │ ├── OIORestProvider.php │ │ │ ├── OpenStreetMapProvider.php │ │ │ ├── OpenStreetMapsProvider.php │ │ │ ├── ProviderInterface.php │ │ │ ├── TomTomProvider.php │ │ │ └── YandexProvider.php │ │ └── Result │ │ │ ├── AbstractResult.php │ │ │ ├── DefaultResultFactory.php │ │ │ ├── Geocoded.php │ │ │ ├── MultipleResultFactory.php │ │ │ ├── ResultFactoryInterface.php │ │ │ └── ResultInterface.php │ ├── LICENSE │ ├── README.md │ └── autoload.php ├── htmlpurifier │ ├── CREDITS │ ├── INSTALL │ ├── LICENSE │ ├── NEWS │ └── library │ │ ├── HTMLPurifier.auto.php │ │ ├── HTMLPurifier.autoload.php │ │ ├── HTMLPurifier.composer.php │ │ ├── HTMLPurifier.func.php │ │ ├── HTMLPurifier.includes.php │ │ ├── HTMLPurifier.kses.php │ │ ├── HTMLPurifier.path.php │ │ ├── HTMLPurifier.php │ │ ├── HTMLPurifier.safe-includes.php │ │ └── HTMLPurifier │ │ ├── AttrCollections.php │ │ ├── AttrDef.php │ │ ├── AttrDef │ │ ├── CSS.php │ │ ├── CSS │ │ │ ├── AlphaValue.php │ │ │ ├── Background.php │ │ │ ├── BackgroundPosition.php │ │ │ ├── Border.php │ │ │ ├── Color.php │ │ │ ├── Composite.php │ │ │ ├── DenyElementDecorator.php │ │ │ ├── Filter.php │ │ │ ├── Font.php │ │ │ ├── FontFamily.php │ │ │ ├── Ident.php │ │ │ ├── ImportantDecorator.php │ │ │ ├── Length.php │ │ │ ├── ListStyle.php │ │ │ ├── Multiple.php │ │ │ ├── Number.php │ │ │ ├── Percentage.php │ │ │ ├── TextDecoration.php │ │ │ └── URI.php │ │ ├── Clone.php │ │ ├── Enum.php │ │ ├── HTML │ │ │ ├── Bool.php │ │ │ ├── Class.php │ │ │ ├── Color.php │ │ │ ├── FrameTarget.php │ │ │ ├── ID.php │ │ │ ├── Length.php │ │ │ ├── LinkTypes.php │ │ │ ├── MultiLength.php │ │ │ ├── Nmtokens.php │ │ │ └── Pixels.php │ │ ├── Integer.php │ │ ├── Lang.php │ │ ├── Switch.php │ │ ├── Text.php │ │ ├── URI.php │ │ └── URI │ │ │ ├── Email.php │ │ │ ├── Email │ │ │ └── SimpleCheck.php │ │ │ ├── Host.php │ │ │ ├── IPv4.php │ │ │ └── IPv6.php │ │ ├── AttrTransform.php │ │ ├── AttrTransform │ │ ├── Background.php │ │ ├── BdoDir.php │ │ ├── BgColor.php │ │ ├── BoolToCSS.php │ │ ├── Border.php │ │ ├── EnumToCSS.php │ │ ├── ImgRequired.php │ │ ├── ImgSpace.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Length.php │ │ ├── Name.php │ │ ├── NameSync.php │ │ ├── Nofollow.php │ │ ├── SafeEmbed.php │ │ ├── SafeObject.php │ │ ├── SafeParam.php │ │ ├── ScriptRequired.php │ │ ├── TargetBlank.php │ │ └── Textarea.php │ │ ├── AttrTypes.php │ │ ├── AttrValidator.php │ │ ├── Bootstrap.php │ │ ├── CSSDefinition.php │ │ ├── ChildDef.php │ │ ├── ChildDef │ │ ├── Chameleon.php │ │ ├── Custom.php │ │ ├── Empty.php │ │ ├── List.php │ │ ├── Optional.php │ │ ├── Required.php │ │ ├── StrictBlockquote.php │ │ └── Table.php │ │ ├── Config.php │ │ ├── ConfigSchema.php │ │ ├── ConfigSchema │ │ ├── Builder │ │ │ ├── ConfigSchema.php │ │ │ └── Xml.php │ │ ├── Exception.php │ │ ├── Interchange.php │ │ ├── Interchange │ │ │ ├── Directive.php │ │ │ └── Id.php │ │ ├── InterchangeBuilder.php │ │ ├── Validator.php │ │ ├── ValidatorAtom.php │ │ ├── schema.ser │ │ └── schema │ │ │ ├── Attr.AllowedClasses.txt │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ ├── Attr.AllowedRel.txt │ │ │ ├── Attr.AllowedRev.txt │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ ├── Attr.EnableID.txt │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ ├── Attr.IDBlacklist.txt │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ ├── Attr.IDPrefix.txt │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ ├── AutoFormat.Custom.txt │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ ├── AutoFormat.Linkify.txt │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ ├── CSS.AllowImportant.txt │ │ │ ├── CSS.AllowTricky.txt │ │ │ ├── CSS.AllowedFonts.txt │ │ │ ├── CSS.AllowedProperties.txt │ │ │ ├── CSS.DefinitionRev.txt │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ ├── CSS.MaxImgLength.txt │ │ │ ├── CSS.Proprietary.txt │ │ │ ├── CSS.Trusted.txt │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ ├── Cache.SerializerPath.txt │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ ├── Core.CollectErrors.txt │ │ │ ├── Core.ColorKeywords.txt │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ ├── Core.DisableExcludes.txt │ │ │ ├── Core.EnableIDNA.txt │ │ │ ├── Core.Encoding.txt │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ ├── Core.HiddenElements.txt │ │ │ ├── Core.Language.txt │ │ │ ├── Core.LexerImpl.txt │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ ├── Filter.Custom.txt │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ ├── Filter.YouTube.txt │ │ │ ├── HTML.Allowed.txt │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ ├── HTML.AllowedComments.txt │ │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ │ ├── HTML.AllowedElements.txt │ │ │ ├── HTML.AllowedModules.txt │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ ├── HTML.BlockWrapper.txt │ │ │ ├── HTML.CoreModules.txt │ │ │ ├── HTML.CustomDoctype.txt │ │ │ ├── HTML.DefinitionID.txt │ │ │ ├── HTML.DefinitionRev.txt │ │ │ ├── HTML.Doctype.txt │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ ├── HTML.MaxImgLength.txt │ │ │ ├── HTML.Nofollow.txt │ │ │ ├── HTML.Parent.txt │ │ │ ├── HTML.Proprietary.txt │ │ │ ├── HTML.SafeEmbed.txt │ │ │ ├── HTML.SafeIframe.txt │ │ │ ├── HTML.SafeObject.txt │ │ │ ├── HTML.SafeScripting.txt │ │ │ ├── HTML.Strict.txt │ │ │ ├── HTML.TargetBlank.txt │ │ │ ├── HTML.TidyAdd.txt │ │ │ ├── HTML.TidyLevel.txt │ │ │ ├── HTML.TidyRemove.txt │ │ │ ├── HTML.Trusted.txt │ │ │ ├── HTML.XHTML.txt │ │ │ ├── Output.CommentScriptContents.txt │ │ │ ├── Output.FixInnerHTML.txt │ │ │ ├── Output.FlashCompat.txt │ │ │ ├── Output.Newline.txt │ │ │ ├── Output.SortAttr.txt │ │ │ ├── Output.TidyFormat.txt │ │ │ ├── Test.ForceNoIconv.txt │ │ │ ├── URI.AllowedSchemes.txt │ │ │ ├── URI.Base.txt │ │ │ ├── URI.DefaultScheme.txt │ │ │ ├── URI.DefinitionID.txt │ │ │ ├── URI.DefinitionRev.txt │ │ │ ├── URI.Disable.txt │ │ │ ├── URI.DisableExternal.txt │ │ │ ├── URI.DisableExternalResources.txt │ │ │ ├── URI.DisableResources.txt │ │ │ ├── URI.Host.txt │ │ │ ├── URI.HostBlacklist.txt │ │ │ ├── URI.MakeAbsolute.txt │ │ │ ├── URI.Munge.txt │ │ │ ├── URI.MungeResources.txt │ │ │ ├── URI.MungeSecretKey.txt │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ ├── URI.SafeIframeRegexp.txt │ │ │ └── info.ini │ │ ├── ContentSets.php │ │ ├── Context.php │ │ ├── Definition.php │ │ ├── DefinitionCache.php │ │ ├── DefinitionCache │ │ ├── Decorator.php │ │ ├── Decorator │ │ │ ├── Cleanup.php │ │ │ ├── Memory.php │ │ │ └── Template.php.in │ │ ├── Null.php │ │ ├── Serializer.php │ │ └── Serializer │ │ │ ├── CSS │ │ │ └── 4.5.0,1b10aad0901b16856d5e8000758e1873af94045a,1.ser │ │ │ ├── README │ │ │ └── URI │ │ │ └── 4.5.0,6712a5f8f33b288c1050f38423d8e3544fa57b5e,1.ser │ │ ├── DefinitionCacheFactory.php │ │ ├── Doctype.php │ │ ├── DoctypeRegistry.php │ │ ├── ElementDef.php │ │ ├── Encoder.php │ │ ├── EntityLookup.php │ │ ├── EntityLookup │ │ └── entities.ser │ │ ├── EntityParser.php │ │ ├── ErrorCollector.php │ │ ├── ErrorStruct.php │ │ ├── Exception.php │ │ ├── Filter.php │ │ ├── Filter │ │ ├── ExtractStyleBlocks.php │ │ └── YouTube.php │ │ ├── Generator.php │ │ ├── HTMLDefinition.php │ │ ├── HTMLModule.php │ │ ├── HTMLModule │ │ ├── Bdo.php │ │ ├── CommonAttributes.php │ │ ├── Edit.php │ │ ├── Forms.php │ │ ├── Hypertext.php │ │ ├── Iframe.php │ │ ├── Image.php │ │ ├── Legacy.php │ │ ├── List.php │ │ ├── Name.php │ │ ├── Nofollow.php │ │ ├── NonXMLCommonAttributes.php │ │ ├── Object.php │ │ ├── Presentation.php │ │ ├── Proprietary.php │ │ ├── Ruby.php │ │ ├── SafeEmbed.php │ │ ├── SafeObject.php │ │ ├── SafeScripting.php │ │ ├── Scripting.php │ │ ├── StyleAttribute.php │ │ ├── Tables.php │ │ ├── Target.php │ │ ├── TargetBlank.php │ │ ├── Text.php │ │ ├── Tidy.php │ │ ├── Tidy │ │ │ ├── Name.php │ │ │ ├── Proprietary.php │ │ │ ├── Strict.php │ │ │ ├── Transitional.php │ │ │ ├── XHTML.php │ │ │ └── XHTMLAndHTML4.php │ │ └── XMLCommonAttributes.php │ │ ├── HTMLModuleManager.php │ │ ├── IDAccumulator.php │ │ ├── Injector.php │ │ ├── Injector │ │ ├── AutoParagraph.php │ │ ├── DisplayLinkURI.php │ │ ├── Linkify.php │ │ ├── PurifierLinkify.php │ │ ├── RemoveEmpty.php │ │ ├── RemoveSpansWithoutAttributes.php │ │ └── SafeObject.php │ │ ├── Language.php │ │ ├── Language │ │ ├── classes │ │ │ └── en-x-test.php │ │ └── messages │ │ │ ├── en-x-test.php │ │ │ ├── en-x-testmini.php │ │ │ └── en.php │ │ ├── LanguageFactory.php │ │ ├── Length.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ ├── DOMLex.php │ │ ├── DirectLex.php │ │ └── PH5P.php │ │ ├── PercentEncoder.php │ │ ├── Printer.php │ │ ├── Printer │ │ ├── CSSDefinition.php │ │ ├── ConfigForm.css │ │ ├── ConfigForm.js │ │ ├── ConfigForm.php │ │ └── HTMLDefinition.php │ │ ├── PropertyList.php │ │ ├── PropertyListIterator.php │ │ ├── Strategy.php │ │ ├── Strategy │ │ ├── Composite.php │ │ ├── Core.php │ │ ├── FixNesting.php │ │ ├── MakeWellFormed.php │ │ ├── RemoveForeignElements.php │ │ └── ValidateAttributes.php │ │ ├── StringHash.php │ │ ├── StringHashParser.php │ │ ├── TagTransform.php │ │ ├── TagTransform │ │ ├── Font.php │ │ └── Simple.php │ │ ├── Token.php │ │ ├── Token │ │ ├── Comment.php │ │ ├── Empty.php │ │ ├── End.php │ │ ├── Start.php │ │ ├── Tag.php │ │ └── Text.php │ │ ├── TokenFactory.php │ │ ├── URI.php │ │ ├── URIDefinition.php │ │ ├── URIFilter.php │ │ ├── URIFilter │ │ ├── DisableExternal.php │ │ ├── DisableExternalResources.php │ │ ├── DisableResources.php │ │ ├── HostBlacklist.php │ │ ├── MakeAbsolute.php │ │ ├── Munge.php │ │ └── SafeIframe.php │ │ ├── URIParser.php │ │ ├── URIScheme.php │ │ ├── URIScheme │ │ ├── data.php │ │ ├── file.php │ │ ├── ftp.php │ │ ├── http.php │ │ ├── https.php │ │ ├── mailto.php │ │ ├── news.php │ │ └── nntp.php │ │ ├── URISchemeRegistry.php │ │ ├── UnitConverter.php │ │ ├── VarParser.php │ │ ├── VarParser │ │ ├── Flexible.php │ │ └── Native.php │ │ └── VarParserException.php ├── idiorm │ ├── README.markdown │ └── idiorm.php ├── image_resizer │ ├── GD.php │ ├── PHPThumb.php │ ├── PluginInterface.php │ └── Plugins │ │ └── Reflection.php ├── mlib.crypt.php ├── mlib.get.php ├── mlib.html.php ├── mlib.messaging.php ├── mlib.purifier.php ├── mlib.put.php ├── mlib.table.php ├── mlib.validate.php ├── parsedown │ ├── LICENSE.txt │ └── Parsedown.php ├── php-thumb │ ├── cache │ │ ├── index.php │ │ ├── phpThumbCacheStats.txt │ │ └── source │ │ │ └── index.php │ ├── docs │ │ ├── phpthumb.changelog.txt │ │ ├── phpthumb.faq.txt │ │ ├── phpthumb.license.commercial.txt │ │ ├── phpthumb.license.txt │ │ └── phpthumb.readme.txt │ ├── fonts │ │ └── readme.txt │ ├── images │ │ └── readme.txt │ ├── index.php │ ├── phpThumb.config.php │ ├── phpThumb.php │ ├── phpthumb.bmp.php │ ├── phpthumb.class.php │ ├── phpthumb.filters.php │ ├── phpthumb.functions.php │ ├── phpthumb.gif.php │ ├── phpthumb.ico.php │ └── phpthumb.unsharp.php ├── recaptcha │ └── recaptchalib.php ├── swift │ ├── CHANGES │ ├── LICENSE │ ├── README │ ├── VERSION │ └── lib │ │ ├── classes │ │ ├── Swift.php │ │ └── Swift │ │ │ ├── Attachment.php │ │ │ ├── ByteStream │ │ │ ├── AbstractFilterableInputStream.php │ │ │ ├── ArrayByteStream.php │ │ │ ├── FileByteStream.php │ │ │ └── TemporaryFileByteStream.php │ │ │ ├── CharacterReader.php │ │ │ ├── CharacterReader │ │ │ ├── GenericFixedWidthReader.php │ │ │ ├── UsAsciiReader.php │ │ │ └── Utf8Reader.php │ │ │ ├── CharacterReaderFactory.php │ │ │ ├── CharacterReaderFactory │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ ├── CharacterStream.php │ │ │ ├── CharacterStream │ │ │ ├── ArrayCharacterStream.php │ │ │ └── NgCharacterStream.php │ │ │ ├── ConfigurableSpool.php │ │ │ ├── DependencyContainer.php │ │ │ ├── DependencyException.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── Encoder.php │ │ │ ├── Encoder │ │ │ ├── Base64Encoder.php │ │ │ ├── QpEncoder.php │ │ │ └── Rfc2231Encoder.php │ │ │ ├── Encoding.php │ │ │ ├── Events │ │ │ ├── CommandEvent.php │ │ │ ├── CommandListener.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventListener.php │ │ │ ├── EventObject.php │ │ │ ├── ResponseEvent.php │ │ │ ├── ResponseListener.php │ │ │ ├── SendEvent.php │ │ │ ├── SendListener.php │ │ │ ├── SimpleEventDispatcher.php │ │ │ ├── TransportChangeEvent.php │ │ │ ├── TransportChangeListener.php │ │ │ ├── TransportExceptionEvent.php │ │ │ └── TransportExceptionListener.php │ │ │ ├── FailoverTransport.php │ │ │ ├── FileSpool.php │ │ │ ├── FileStream.php │ │ │ ├── Filterable.php │ │ │ ├── Image.php │ │ │ ├── InputByteStream.php │ │ │ ├── IoException.php │ │ │ ├── KeyCache.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCache.php │ │ │ ├── DiskKeyCache.php │ │ │ ├── KeyCacheInputStream.php │ │ │ ├── NullKeyCache.php │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailTransport.php │ │ │ ├── Mailer.php │ │ │ ├── Mailer │ │ │ ├── ArrayRecipientIterator.php │ │ │ └── RecipientIterator.php │ │ │ ├── MemorySpool.php │ │ │ ├── Message.php │ │ │ ├── Mime │ │ │ ├── Attachment.php │ │ │ ├── CharsetObserver.php │ │ │ ├── ContentEncoder.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ ├── QpContentEncoder.php │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ └── RawContentEncoder.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── EncodingObserver.php │ │ │ ├── Grammar.php │ │ │ ├── Header.php │ │ │ ├── HeaderEncoder.php │ │ │ ├── HeaderEncoder │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ └── QpHeaderEncoder.php │ │ │ ├── HeaderFactory.php │ │ │ ├── HeaderSet.php │ │ │ ├── Headers │ │ │ │ ├── AbstractHeader.php │ │ │ │ ├── DateHeader.php │ │ │ │ ├── IdentificationHeader.php │ │ │ │ ├── MailboxHeader.php │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ ├── PathHeader.php │ │ │ │ └── UnstructuredHeader.php │ │ │ ├── Message.php │ │ │ ├── MimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── ParameterizedHeader.php │ │ │ ├── SimpleHeaderFactory.php │ │ │ ├── SimpleHeaderSet.php │ │ │ ├── SimpleMessage.php │ │ │ └── SimpleMimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── NullTransport.php │ │ │ ├── OutputByteStream.php │ │ │ ├── Plugins │ │ │ ├── AntiFloodPlugin.php │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ ├── Decorator │ │ │ │ └── Replacements.php │ │ │ ├── DecoratorPlugin.php │ │ │ ├── ImpersonatePlugin.php │ │ │ ├── Logger.php │ │ │ ├── LoggerPlugin.php │ │ │ ├── Loggers │ │ │ │ ├── ArrayLogger.php │ │ │ │ └── EchoLogger.php │ │ │ ├── MessageLogger.php │ │ │ ├── Pop │ │ │ │ ├── Pop3Connection.php │ │ │ │ └── Pop3Exception.php │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ ├── RedirectingPlugin.php │ │ │ ├── Reporter.php │ │ │ ├── ReporterPlugin.php │ │ │ ├── Reporters │ │ │ │ ├── HitReporter.php │ │ │ │ └── HtmlReporter.php │ │ │ ├── Sleeper.php │ │ │ ├── ThrottlerPlugin.php │ │ │ └── Timer.php │ │ │ ├── Preferences.php │ │ │ ├── ReplacementFilterFactory.php │ │ │ ├── RfcComplianceException.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SignedMessage.php │ │ │ ├── Signer.php │ │ │ ├── Signers │ │ │ ├── BodySigner.php │ │ │ ├── DKIMSigner.php │ │ │ ├── DomainKeySigner.php │ │ │ ├── HeaderSigner.php │ │ │ └── SMimeSigner.php │ │ │ ├── SmtpTransport.php │ │ │ ├── Spool.php │ │ │ ├── SpoolTransport.php │ │ │ ├── StreamFilter.php │ │ │ ├── StreamFilters │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ ├── StringReplacementFilter.php │ │ │ └── StringReplacementFilterFactory.php │ │ │ ├── SwiftException.php │ │ │ ├── Transport.php │ │ │ ├── Transport │ │ │ ├── AbstractSmtpTransport.php │ │ │ ├── Esmtp │ │ │ │ ├── Auth │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ └── PlainAuthenticator.php │ │ │ │ ├── AuthHandler.php │ │ │ │ └── Authenticator.php │ │ │ ├── EsmtpHandler.php │ │ │ ├── EsmtpTransport.php │ │ │ ├── FailoverTransport.php │ │ │ ├── IoBuffer.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailInvoker.php │ │ │ ├── MailTransport.php │ │ │ ├── NullTransport.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SimpleMailInvoker.php │ │ │ ├── SmtpAgent.php │ │ │ ├── SpoolTransport.php │ │ │ └── StreamBuffer.php │ │ │ ├── TransportException.php │ │ │ └── Validate.php │ │ ├── dependency_maps │ │ ├── cache_deps.php │ │ ├── message_deps.php │ │ ├── mime_deps.php │ │ └── transport_deps.php │ │ ├── mime_types.php │ │ ├── preferences.php │ │ ├── swift_init.php │ │ ├── swift_required.php │ │ └── swift_required_pear.php └── telegram │ └── Telegram.php ├── libraries.php ├── load.php ├── manager ├── index.php ├── mappiamo.php ├── modules │ ├── dashboard │ │ ├── dashboard.php │ │ └── views │ │ │ └── default.php │ ├── denied │ │ ├── denied.php │ │ └── views │ │ │ └── default.php │ ├── login │ │ ├── login.php │ │ └── views │ │ │ └── default.php │ ├── majax │ │ ├── majax.php │ │ └── models │ │ │ ├── majax.php │ │ │ └── majax_geo.php │ ├── mcategory │ │ ├── mcategory.php │ │ ├── models │ │ │ └── mcategory.php │ │ └── views │ │ │ ├── add.php │ │ │ ├── default.php │ │ │ ├── delete.php │ │ │ └── edit.php │ ├── mcontent │ │ ├── ajax │ │ │ └── GetAddressList.php │ │ ├── mcontent.php │ │ ├── meta_wizard │ │ │ ├── JobPosting.php │ │ │ ├── LegalService.php │ │ │ ├── MotorcycleDealer.php │ │ │ └── Organization.php │ │ ├── models │ │ │ ├── mcontent.php │ │ │ ├── mcontent_import.php │ │ │ └── meta_wizard.php │ │ └── views │ │ │ ├── add.php │ │ │ ├── default.php │ │ │ ├── delete.php │ │ │ ├── edit.php │ │ │ ├── import.php │ │ │ ├── import_results.php │ │ │ └── modal.php │ ├── mgeojsonimport │ │ ├── mgeojsonimport.php │ │ ├── models │ │ │ └── mgeojsonimport.php │ │ └── views │ │ │ ├── default.php │ │ │ └── process_import.php │ ├── mmenu │ │ ├── mmenu.php │ │ ├── models │ │ │ └── mmenu.php │ │ └── views │ │ │ ├── add.php │ │ │ ├── default.php │ │ │ ├── delete.php │ │ │ └── edit.php │ ├── mmodule │ │ ├── error.php │ │ ├── mmodule.php │ │ ├── models │ │ │ └── mmodule.php │ │ └── views │ │ │ └── default.php │ ├── mpage │ │ ├── models │ │ │ └── mpage.php │ │ ├── mpage.php │ │ └── views │ │ │ ├── add.php │ │ │ ├── default.php │ │ │ ├── delete.php │ │ │ ├── edit.php │ │ │ └── modal.php │ ├── mtemplate │ │ ├── models │ │ │ └── mtemplate.php │ │ ├── mtemplate.php │ │ └── views │ │ │ └── default.php │ ├── muser │ │ ├── models │ │ │ └── muser.php │ │ ├── muser.php │ │ └── views │ │ │ ├── add.php │ │ │ ├── default.php │ │ │ ├── delete.php │ │ │ └── edit.php │ ├── mwidget │ │ ├── models │ │ │ └── mwidget.php │ │ ├── mwidget.php │ │ └── views │ │ │ └── default.php │ ├── mxmlimport │ │ ├── .DS_Store │ │ ├── models │ │ │ ├── .DS_Store │ │ │ └── mxmlimport.php │ │ ├── mxmlimport.php │ │ └── views │ │ │ ├── .DS_Store │ │ │ ├── default.php │ │ │ ├── preview.php │ │ │ └── process_import.php │ ├── passrenew │ │ ├── models │ │ │ └── passrenew.php │ │ ├── passrenew.php │ │ └── views │ │ │ ├── default.php │ │ │ ├── getnewpass.php │ │ │ ├── mail_sent.php │ │ │ └── newpassdone.php │ ├── preferences │ │ ├── models │ │ │ └── preferences.php │ │ ├── preferences.php │ │ └── views │ │ │ └── default.php │ ├── profile │ │ ├── models │ │ │ └── profile.php │ │ ├── profile.php │ │ └── views │ │ │ └── default.php │ └── register │ │ ├── models │ │ └── register.php │ │ ├── register.php │ │ └── views │ │ └── default.php └── templates │ └── manager │ ├── body.php │ ├── css │ └── mappiamo-manager.css │ ├── foot.php │ ├── head.php │ ├── login.php │ ├── nav.php │ ├── passrenew.php │ └── register.php ├── mappiamo.php ├── media ├── contents │ └── README.txt ├── default_content.jpg ├── default_slider.jpg ├── images │ ├── avatar.png │ ├── box_garage.jpg │ ├── box_storia.jpg │ ├── box_v7.jpg │ ├── intro.jpg │ ├── logo_motoguzzi.png │ ├── mappiamo-geocms.png │ ├── mappiamo.png │ ├── motoguzzilogo2.png │ ├── notfound.png │ ├── sa_inserimento.png │ ├── sa_modifica.png │ ├── soccorso.png │ └── soccorsoAquilaAdesivo.png ├── mapicons │ ├── cities-100000.png │ ├── dealers.png │ ├── events.png │ ├── guzzi-club.png │ └── soccorso-aquila.png └── slider │ ├── moto001.jpg │ ├── moto002.jpg │ ├── moto003.jpg │ └── soccorsoAquilaCopertina.png ├── modules ├── ajax │ ├── ajax.md │ ├── ajax.php │ └── models │ │ └── ajax.php ├── api │ ├── api.md │ ├── api.php │ └── models │ │ └── api.php ├── blog │ ├── blog.md │ └── blog.php ├── category │ ├── category.md │ ├── category.php │ ├── lang │ │ └── en.ini │ └── views │ │ └── default.php ├── content │ ├── content.md │ ├── content.php │ ├── models │ │ ├── content.php │ │ └── content_map.php │ └── views │ │ └── default.php ├── event │ ├── Images │ │ ├── 1day.png │ │ ├── 1month.png │ │ ├── 1quarter.png │ │ ├── 1week.png │ │ ├── 1year.png │ │ ├── activedate.png │ │ ├── customdate.png │ │ ├── loc_clear.png │ │ ├── map-marker-1.png │ │ ├── sort_asc.png │ │ ├── sort_desc.png │ │ ├── sort_end.png │ │ ├── sort_end_asc.png │ │ ├── sort_end_desc.png │ │ ├── sort_loc.png │ │ ├── sort_loc_asc.png │ │ ├── sort_loc_desc.png │ │ ├── sort_modi.png │ │ ├── sort_modi_asc.png │ │ ├── sort_modi_desc.png │ │ ├── sort_start.png │ │ ├── sort_start_asc.png │ │ ├── sort_start_desc.png │ │ ├── sort_title.png │ │ ├── sort_title_asc.png │ │ ├── sort_title_desc.png │ │ └── update.png │ ├── ajax │ │ └── GetAddressList.php │ ├── event.md │ ├── event.php │ ├── lang │ │ └── en.ini │ ├── models │ │ └── event.php │ └── views │ │ ├── default.php │ │ └── events.css ├── finder │ ├── finder.md │ ├── finder.php │ ├── models │ │ └── finder.php │ └── views │ │ └── default.php ├── home │ ├── home.md │ └── home.php └── page404 │ ├── page404.md │ ├── page404.php │ └── views │ └── default.php ├── phpInfo.php ├── setup ├── Database │ ├── Configuration.php │ ├── Connection.php │ ├── DatabaseHandler.php │ └── setup.sql ├── ajax │ └── setupcheck.php ├── done.php ├── index.php ├── setup.php ├── setup.template └── setupform.css ├── telegram ├── about ├── about_it ├── address ├── address_it ├── help ├── help_it ├── index.php ├── language ├── language_it ├── location ├── location_it ├── radius ├── radius_it ├── returndata ├── returndata_it ├── rules ├── rules_it ├── search ├── search_it ├── setting ├── setting_it ├── start ├── start_it ├── system │ ├── accept_integer │ ├── accept_integer_it │ ├── category_count │ ├── category_count_it │ ├── category_missing │ ├── category_missing_it │ ├── current_setting │ ├── current_setting_it │ ├── database_error │ ├── database_error_it │ ├── default │ ├── default_it │ ├── filter_cancelled │ ├── filter_cancelled_it │ ├── filter_saved │ ├── filter_saved_detailed │ ├── filter_saved_detailed_it │ ├── filter_saved_it │ ├── invalid_command │ ├── invalid_command_it │ ├── invalid_queue │ ├── invalid_queue_it │ ├── location_deleted │ ├── location_deleted_it │ ├── location_info │ ├── location_info_it │ ├── location_missing │ ├── location_missing_it │ ├── location_notsaved │ ├── location_notsaved_it │ ├── no_result │ ├── no_result_it │ ├── no_return │ ├── no_return_it │ ├── no_saved_setting │ ├── no_saved_setting_it │ ├── records_show │ ├── records_show_it │ ├── search_count │ ├── search_count_it │ ├── search_current │ ├── search_current_it │ ├── search_current_null │ ├── search_current_null_it │ ├── search_invalid │ ├── search_invalid_it │ ├── search_null │ ├── search_null_it │ ├── setting_deleted │ ├── setting_deleted_it │ ├── setting_first │ ├── setting_first_it │ ├── setting_invalid │ ├── setting_invalid_it │ ├── setting_received │ └── setting_received_it ├── type └── type_it ├── templates └── mappiamo │ ├── body.php │ ├── css │ ├── bootstrap.min.css │ └── mappiamo.css │ ├── foot.php │ ├── head.php │ ├── home.php │ ├── images │ ├── banner.jpg │ ├── feed16px.png │ └── logo.png │ ├── js │ ├── ajax.test.js │ ├── bootstrap.min.js │ ├── holder.js │ └── jquery-1.10.2.min.js │ ├── mappiamo.jpg │ ├── mappiamo.md │ ├── nav.php │ └── register.php └── widgets ├── Widgets.md ├── address ├── Readme.md ├── address.md └── address.php ├── booking ├── booking.md ├── booking.php ├── lang │ └── en.ini └── star.png ├── bottommenu ├── bottommenu.md ├── bottommenu.php └── lang │ ├── fr.ini │ ├── hu.ini │ ├── it.ini │ ├── si.ini │ └── sr.ini ├── box ├── box.md └── box.php ├── box_allmeta ├── Readme.md ├── box_allmeta.md ├── box_allmeta.php └── model │ └── getallmeta.php ├── box_collabrators ├── Readme.md ├── box_collabrators.md ├── box_collabrators.php └── model │ └── getcollab.php ├── box_cookie ├── Readme.md ├── ajax │ └── check_cookie.php ├── box_cookie.md └── box_cookie.php ├── box_distance ├── Readme.md ├── box_distance.md ├── box_distance.php └── model │ └── getdistance.php ├── box_events ├── Readme.md ├── box_events.md ├── box_events.php └── model │ └── getevents.php ├── box_gpsbooking ├── Readme.md ├── box_gpsbooking.md ├── box_gpsbooking.php └── model │ └── getdata.php ├── box_instagram ├── Readme.md ├── box_instagram.md ├── box_instagram.php └── css_js │ ├── instagram.css │ └── instagram.js ├── box_onemeta ├── Readme.md ├── box_onemeta.md ├── box_onemeta.php └── model │ └── getonemeta.php ├── box_youtube ├── Readme.md ├── box_youtube.md ├── box_youtube.php ├── css_js │ ├── youtube.css │ └── youtube.js └── google │ ├── Google_Client.php │ ├── auth │ ├── Google_AssertionCredentials.php │ ├── Google_Auth.php │ ├── Google_AuthNone.php │ ├── Google_LoginTicket.php │ ├── Google_OAuth2.php │ ├── Google_P12Signer.php │ ├── Google_PemVerifier.php │ ├── Google_Signer.php │ └── Google_Verifier.php │ ├── cache │ ├── Google_ApcCache.php │ ├── Google_Cache.php │ ├── Google_FileCache.php │ └── Google_MemcacheCache.php │ ├── config.php │ ├── contrib │ ├── Google_AdExchangeSellerService.php │ ├── Google_AdSenseService.php │ ├── Google_AdexchangebuyerService.php │ ├── Google_AdsensehostService.php │ ├── Google_AnalyticsService.php │ ├── Google_AndroidpublisherService.php │ ├── Google_AppstateService.php │ ├── Google_AuditService.php │ ├── Google_BigqueryService.php │ ├── Google_BloggerService.php │ ├── Google_BooksService.php │ ├── Google_CalendarService.php │ ├── Google_CivicInfoService.php │ ├── Google_ComputeService.php │ ├── Google_CoordinateService.php │ ├── Google_CustomsearchService.php │ ├── Google_DatastoreService.php │ ├── Google_DfareportingService.php │ ├── Google_DirectoryService.php │ ├── Google_DriveService.php │ ├── Google_FreebaseService.php │ ├── Google_FusiontablesService.php │ ├── Google_GamesManagementService.php │ ├── Google_GamesService.php │ ├── Google_GanService.php │ ├── Google_GroupssettingsService.php │ ├── Google_LicensingService.php │ ├── Google_MirrorService.php │ ├── Google_ModeratorService.php │ ├── Google_Oauth2Service.php │ ├── Google_OrkutService.php │ ├── Google_PagespeedonlineService.php │ ├── Google_PlusDomainsService.php │ ├── Google_PlusService.php │ ├── Google_PredictionService.php │ ├── Google_ReportsService.php │ ├── Google_ResellerService.php │ ├── Google_SQLAdminService.php │ ├── Google_ShoppingService.php │ ├── Google_SiteVerificationService.php │ ├── Google_StorageService.php │ ├── Google_TaskqueueService.php │ ├── Google_TasksService.php │ ├── Google_TranslateService.php │ ├── Google_UrlshortenerService.php │ ├── Google_WebfontsService.php │ ├── Google_YouTubeAnalyticsService.php │ └── Google_YouTubeService.php │ ├── external │ └── URITemplateParser.php │ ├── io │ ├── Google_CacheParser.php │ ├── Google_CurlIO.php │ ├── Google_HttpRequest.php │ ├── Google_HttpStreamIO.php │ ├── Google_IO.php │ ├── Google_REST.php │ └── cacerts.pem │ └── service │ ├── Google_BatchRequest.php │ ├── Google_MediaFileUpload.php │ ├── Google_Model.php │ ├── Google_Service.php │ ├── Google_ServiceResource.php │ └── Google_Utils.php ├── breadcrumbs ├── breadcrumbs.md └── breadcrumbs.php ├── category_list ├── category_list.md └── category_list.php ├── content ├── content.md └── content.php ├── content_allmeta ├── Readme.md ├── content_allmeta.md ├── content_allmeta.php └── model │ └── getallmeta.php ├── content_headline ├── Readme.md ├── content_headline.md └── content_headline.php ├── content_image ├── content_image.md └── content_image.php ├── content_market ├── content_market.md └── content_market.php ├── content_slideshow ├── content_slideshow.md └── content_slideshow.php ├── disqus ├── disqus.md └── disqus.php ├── dividedmenu ├── dividedmenu.md ├── dividedmenu.php └── lang │ ├── en.ini │ └── it.ini ├── dropdownmenu ├── dropdownmenu.md ├── dropdownmenu.php └── lang │ ├── en.ini │ └── it.ini ├── events ├── events.md └── events.php ├── flickr ├── Readme.md ├── ajax │ └── ReadFlickrdata.php ├── flickr.md └── flickr.php ├── form_contact ├── Readme.md ├── ajax │ └── MailSend.php ├── form_contact.md └── form_contact.php ├── gravatar ├── Readme.md ├── gravatar.md ├── gravatar.php └── model │ ├── Gravatar.php │ ├── Image.php │ └── Profile.php ├── homescreen ├── homescreen.md └── homescreen.php ├── intro ├── intro.md └── intro.php ├── jplayer ├── Readme.md ├── dist │ ├── add-on │ │ ├── jplayer.playlist.js │ │ ├── jplayer.playlist.min.js │ │ ├── jquery.jplayer.inspector.js │ │ └── jquery.jplayer.inspector.min.js │ ├── jplayer │ │ ├── jquery.jplayer.js │ │ ├── jquery.jplayer.min.js │ │ └── jquery.jplayer.swf │ ├── popcorn │ │ ├── popcorn.jplayer.js │ │ └── popcorn.jplayer.min.js │ └── skin │ │ ├── blue.monday │ │ ├── css │ │ │ ├── jplayer.blue.monday.css │ │ │ └── jplayer.blue.monday.min.css │ │ ├── image │ │ │ ├── jplayer.blue.monday.jpg │ │ │ ├── jplayer.blue.monday.seeking.gif │ │ │ └── jplayer.blue.monday.video.play.png │ │ └── mustache │ │ │ ├── jplayer.blue.monday.audio.playlist.html │ │ │ ├── jplayer.blue.monday.audio.single.html │ │ │ ├── jplayer.blue.monday.audio.stream.html │ │ │ ├── jplayer.blue.monday.video.playlist.html │ │ │ └── jplayer.blue.monday.video.single.html │ │ └── pink.flag │ │ ├── css │ │ ├── jplayer.pink.flag.css │ │ └── jplayer.pink.flag.min.css │ │ ├── image │ │ ├── jplayer.pink.flag.jpg │ │ ├── jplayer.pink.flag.seeking.gif │ │ └── jplayer.pink.flag.video.play.png │ │ └── mustache │ │ ├── jplayer.pink.flag.audio.playlist.html │ │ ├── jplayer.pink.flag.audio.single.html │ │ ├── jplayer.pink.flag.audio.stream.html │ │ ├── jplayer.pink.flag.video.playlist.html │ │ └── jplayer.pink.flag.video.single.html ├── jplayer.md └── jplayer.php ├── language_switch ├── language_switch.md └── language_switch.php ├── lastcontent ├── Readme.md ├── lastcontent.md └── lastcontent.php ├── leaflet_panel ├── Readme.md ├── leaflet_panel.md ├── leaflet_panel.php └── model │ └── layermodels.php ├── licence ├── icons │ ├── cc-by-sa.png │ ├── cc-by.png │ ├── cc0.png │ ├── copyright.png │ ├── iodlv2.0.png │ └── odbl.png ├── licence.md └── licence.php ├── map ├── map.md └── map.php ├── mapGPSBooking ├── ajax │ └── BookingParser.php ├── mapGPSBooking.md └── mapGPSBooking.php ├── menu ├── menu.md └── menu.php ├── menu_full ├── Readme.md ├── menu_full.md ├── menu_full.php └── model │ └── getfullmenu.php ├── owl_image ├── Readme.md ├── owl_image.md └── owl_image.php ├── owl_video ├── Readme.md ├── owl_video.md └── owl_video.php ├── panoramabox ├── panoramabox.md └── panoramabox.php ├── photos ├── photos.md └── photos.php ├── search ├── search.md └── search.php ├── share ├── share.md └── share.php ├── slider ├── slider.md └── slider.php ├── soccorso ├── soccorso.md └── soccorso.php ├── togglemenu ├── Readme.md ├── togglemenu.md └── togglemenu.php ├── topmenu ├── en.ini ├── lang │ ├── en.ini │ └── it.ini ├── topmenu.md └── topmenu.php ├── videobox ├── videobox.md └── videobox.php ├── weather ├── Readme.md ├── weather.md └── weather.php └── website_title ├── website_title.md └── website_title.php /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | settings.php 3 | .idea 4 | .docs 5 | install 6 | /media 7 | 8 | #HTMLPurifier 9 | lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer/*/ 10 | 11 | # templates 12 | templates/avs 13 | templates/gal2 14 | templates/mgwc 15 | templates/soccorso 16 | templates/squares 17 | templates/vsangone 18 | templates/reali 19 | templates/puglia 20 | widgets/routes 21 | widgets/togglemenu 22 | 23 | # lib 24 | lib/php-thumb/cache 25 | -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | #MAPPIAMO CHANGELOG 2 | =================== 3 | 4 | no changes.... -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | #mappiamo core 0.0.7 2 | László Perjés 3 | 4 | #mappiamo core 0.0.6 5 | Ernő Magyar 6 | 7 | #mappiamo language 8 | Alfred Nagy 9 | 10 | modules/mapi_api 11 | Alfred Nagy 12 | -------------------------------------------------------------------------------- /assets/css/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /assets/css/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /assets/css/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/datatables/images/sort_both.png -------------------------------------------------------------------------------- /assets/css/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /assets/css/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /assets/css/fonts/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/Material-Design-Icons.eot -------------------------------------------------------------------------------- /assets/css/fonts/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /assets/css/fonts/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/Material-Design-Icons.woff -------------------------------------------------------------------------------- /assets/css/fonts/RobotoDraftBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/RobotoDraftBold.woff -------------------------------------------------------------------------------- /assets/css/fonts/RobotoDraftBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/RobotoDraftBold.woff2 -------------------------------------------------------------------------------- /assets/css/fonts/RobotoDraftItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/RobotoDraftItalic.woff -------------------------------------------------------------------------------- /assets/css/fonts/RobotoDraftItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/RobotoDraftItalic.woff2 -------------------------------------------------------------------------------- /assets/css/fonts/RobotoDraftMedium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/RobotoDraftMedium.woff -------------------------------------------------------------------------------- /assets/css/fonts/RobotoDraftMedium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/RobotoDraftMedium.woff2 -------------------------------------------------------------------------------- /assets/css/fonts/RobotoDraftRegular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/RobotoDraftRegular.woff -------------------------------------------------------------------------------- /assets/css/fonts/RobotoDraftRegular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/RobotoDraftRegular.woff2 -------------------------------------------------------------------------------- /assets/css/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/css/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/css/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/css/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/css/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/images/close.png -------------------------------------------------------------------------------- /assets/css/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/images/loading.gif -------------------------------------------------------------------------------- /assets/css/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/images/next.png -------------------------------------------------------------------------------- /assets/css/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/images/prev.png -------------------------------------------------------------------------------- /assets/css/jPlayer/image/jplayer.blue.monday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jPlayer/image/jplayer.blue.monday.jpg -------------------------------------------------------------------------------- /assets/css/jPlayer/image/jplayer.blue.monday.seeking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jPlayer/image/jplayer.blue.monday.seeking.gif -------------------------------------------------------------------------------- /assets/css/jPlayer/image/jplayer.blue.monday.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jPlayer/image/jplayer.blue.monday.video.play.png -------------------------------------------------------------------------------- /assets/css/jssor/img/a01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jssor/img/a01.png -------------------------------------------------------------------------------- /assets/css/jssor/img/a02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jssor/img/a02.png -------------------------------------------------------------------------------- /assets/css/jssor/img/a03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jssor/img/a03.png -------------------------------------------------------------------------------- /assets/css/jssor/img/a04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jssor/img/a04.png -------------------------------------------------------------------------------- /assets/css/jssor/img/a06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jssor/img/a06.png -------------------------------------------------------------------------------- /assets/css/jssor/img/a07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jssor/img/a07.png -------------------------------------------------------------------------------- /assets/css/jssor/img/a10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jssor/img/a10.png -------------------------------------------------------------------------------- /assets/css/jssor/img/a11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jssor/img/a11.png -------------------------------------------------------------------------------- /assets/css/jssor/img/a12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jssor/img/a12.png -------------------------------------------------------------------------------- /assets/css/jssor/img/a13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jssor/img/a13.png -------------------------------------------------------------------------------- /assets/css/jssor/img/a14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jssor/img/a14.png -------------------------------------------------------------------------------- /assets/css/jssor/img/a15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jssor/img/a15.png -------------------------------------------------------------------------------- /assets/css/jssor/img/browser-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/jssor/img/browser-icons.png -------------------------------------------------------------------------------- /assets/css/leaflet-draw/images/spritesheet-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/leaflet-draw/images/spritesheet-2x.png -------------------------------------------------------------------------------- /assets/css/leaflet-draw/images/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/leaflet-draw/images/spritesheet.png -------------------------------------------------------------------------------- /assets/css/leaflet-groupedlayercontrol/leaflet.groupedlayercontrol.css: -------------------------------------------------------------------------------- 1 | .leaflet-control-layers-group-name { 2 | font-weight: bold; 3 | margin-bottom: .2em; 4 | display: block; 5 | } 6 | 7 | .leaflet-control-layers-group { 8 | margin-bottom: .5em; 9 | } 10 | 11 | .leaflet-control-layers-group label { 12 | padding-left: .5em; 13 | } -------------------------------------------------------------------------------- /assets/css/leaflet-openweathermap/Weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/leaflet-openweathermap/Weather.png -------------------------------------------------------------------------------- /assets/css/leaflet-openweathermap/map.css: -------------------------------------------------------------------------------- 1 | html, body { 2 | margin: 0; 3 | padding: 0; 4 | height: 100%; 5 | } 6 | 7 | #map { 8 | width: 100%; 9 | height: 100%; 10 | } 11 | 12 | .bold { 13 | font-weight: bold; 14 | } 15 | 16 | .owm-layercontrol-header { 17 | font-size: larger; 18 | font-weight: bold; 19 | display: block; 20 | position: relative; 21 | } 22 | 23 | -------------------------------------------------------------------------------- /assets/css/leaflet-openweathermap/owmloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/leaflet-openweathermap/owmloading.gif -------------------------------------------------------------------------------- /assets/css/leaflet-photomarker/leaflet.photomarker.css: -------------------------------------------------------------------------------- 1 | .leaflet-photomarker-container .leaflet-photomarker-img { 2 | border: solid white 2px; 3 | background-color: white; 4 | -webkit-transition:width 0.25s ease, height 0.25s ease; 5 | -moz-transition:width 0.25s ease, height 0.25s ease; 6 | -o-transition:width 0.25s ease, height 0.25s ease; 7 | transition:width 0.25s ease, height 0.25s ease; 8 | } 9 | -------------------------------------------------------------------------------- /assets/css/leaflet-rm/leaflet.routing.icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/leaflet-rm/leaflet.routing.icons.png -------------------------------------------------------------------------------- /assets/css/leaflet-rm/routing-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/leaflet-rm/routing-icon.png -------------------------------------------------------------------------------- /assets/css/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /assets/css/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/leaflet/images/layers.png -------------------------------------------------------------------------------- /assets/css/owl_carousel/AjaxLoader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/owl_carousel/AjaxLoader.gif -------------------------------------------------------------------------------- /assets/css/owl_carousel/grabbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/owl_carousel/grabbing.png -------------------------------------------------------------------------------- /assets/css/popmenu/img/mirage-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/mirage-menu.png -------------------------------------------------------------------------------- /assets/css/popmenu/img/p7spep_submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/p7spep_submenu.png -------------------------------------------------------------------------------- /assets/css/popmenu/img/p7spep_submenu_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/p7spep_submenu_vert.png -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_carbon_root.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_carbon_root.jpg -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_carbon_subs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_carbon_subs.jpg -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_carbon_vroot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_carbon_vroot.jpg -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_east_dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_east_dark.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_east_light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_east_light.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_east_medium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_east_medium.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_greystone_root.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_greystone_root.jpg -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_greystone_subs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_greystone_subs.jpg -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_greystone_vroot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_greystone_vroot.jpg -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_iefix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_iefix.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_north_dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_north_dark.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_north_light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_north_light.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_north_medium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_north_medium.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_oak_root.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_oak_root.jpg -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_oak_subs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_oak_subs.jpg -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_pipe_dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_pipe_dark.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_pipe_light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_pipe_light.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_sheer_root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_sheer_root.png -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_sheer_root_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_sheer_root_vertical.png -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_sheer_subs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_sheer_subs.png -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_south_dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_south_dark.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_south_light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_south_light.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_south_medium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_south_medium.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_topaz_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_topaz_left.jpg -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_topaz_right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_topaz_right.jpg -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_topaz_sub.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_topaz_sub.jpg -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_topaz_v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_topaz_v1.jpg -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_topaz_vsub.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_topaz_vsub.jpg -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_west_dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_west_dark.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_west_light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_west_light.gif -------------------------------------------------------------------------------- /assets/css/popmenu/img/pmm_west_medium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/popmenu/img/pmm_west_medium.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_east_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_east_black.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_east_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_east_gray.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_east_white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_east_white.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_exist_page_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_exist_page_black.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_exist_page_white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_exist_page_white.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_exist_submenu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_exist_submenu.jpg -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_gradientRed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_gradientRed.jpg -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_gradientTeal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_gradientTeal.jpg -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_minus_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_minus_black.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_minus_white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_minus_white.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_neon_minusBlue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_neon_minusBlue.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_neon_minusGreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_neon_minusGreen.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_neon_minusRed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_neon_minusRed.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_neon_minusYellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_neon_minusYellow.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_neon_plusBlue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_neon_plusBlue.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_neon_plusGreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_neon_plusGreen.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_neon_plusRed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_neon_plusRed.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_neon_plusYellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_neon_plusYellow.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_page.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_page_diamond_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_page_diamond_black.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_page_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_page_square.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_page_square_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_page_square_gray.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_page_square_white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_page_square_white.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_page_squareopen_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_page_squareopen_black.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_page_squareopen_white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_page_squareopen_white.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_plus_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_plus_black.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_plus_white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_plus_white.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_rootGradientBlack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_rootGradientBlack.jpg -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_rootGradientGray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_rootGradientGray.jpg -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_south_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_south_black.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_south_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_south_gray.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_south_white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_south_white.gif -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmm_trans_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmm_trans_white.png -------------------------------------------------------------------------------- /assets/css/treemenu/img/tmmbevel_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/css/treemenu/img/tmmbevel_white.jpg -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/js/bootstrap/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /assets/js/dropzone/readme.md: -------------------------------------------------------------------------------- 1 | # Warning! 2 | 3 | You shouldn't pull these files from the github master branch directly! 4 | 5 | They might be outdated or not working at all since I normally only push them 6 | when I create a version release. 7 | 8 | To be sure to get a proper release, please go to the 9 | [dropzone releases section on github](https://github.com/enyo/dropzone/releases/latest). 10 | 11 | -------------------------------------------------------------------------------- /assets/js/jPlayer/jquery.jplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/jPlayer/jquery.jplayer.swf -------------------------------------------------------------------------------- /assets/js/jquery-cookie/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .sizecache.json 4 | *.log -------------------------------------------------------------------------------- /assets/js/jquery-cookie/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "boss": true, 3 | "browser": true, 4 | "curly": true, 5 | "eqeqeq": true, 6 | "eqnull": true, 7 | "expr": true, 8 | "evil": true, 9 | "newcap": true, 10 | "noarg": true, 11 | "undef": true, 12 | "globals": { 13 | "define": true, 14 | "jQuery": true 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /assets/js/jquery-cookie/.tm_properties: -------------------------------------------------------------------------------- 1 | softTabs = false 2 | tabSize = 2 3 | 4 | [ text.plain ] 5 | softWrap = true 6 | wrapColumn = "Use Window Frame" 7 | softTabs = true 8 | tabSize = 4 9 | 10 | [ "*.md" ] 11 | fileType = "text.plain" 12 | -------------------------------------------------------------------------------- /assets/js/jquery-cookie/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | before_script: 5 | - npm install -g grunt-cli 6 | script: grunt ci --verbose 7 | env: 8 | global: 9 | - secure: HRae0kyIDDuhonvMi2SfEl1WJb4K/wX8WmzT9YkxFbmWwLjiOMkmqyuEyi76DbTC1cb9o7WwGVgbP1DhSm6n6m0Lz+PSzpprBN4QZuJc56jcc+tBA6gM81hyUufaTT0yUWz112Bu06kWIAs44w5PtG0FYZR0CuIN8fQvZi8fXCQ= 10 | - secure: c+M5ECIfxDcVrr+ZlqgpGjv8kVM/hxiz3ACMCn4ZkDiaeq4Rw0wWIGZYL6aV5fhsoHgzEQ/XQPca8xKs3Umr7R3b6Vr3AEyFnW+LP67K/1Qbz4Pi3PvhDH/h4rvK7fOoTqTDCVVDEH3v4pefsz2VaKemG4iBKxrcof5aR4Rjopk= 11 | -------------------------------------------------------------------------------- /assets/js/jssor/icon-lupe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/jssor/icon-lupe.png -------------------------------------------------------------------------------- /assets/js/leaflet-draw/copyright.js: -------------------------------------------------------------------------------- 1 | /* 2 | Leaflet.draw, a plugin that adds drawing and editing tools to Leaflet powered maps. 3 | (c) 2012-2013, Jacob Toye, Smartrak 4 | 5 | https://github.com/Leaflet/Leaflet.draw 6 | http://leafletjs.com 7 | https://github.com/jacobtoye 8 | */ 9 | -------------------------------------------------------------------------------- /assets/js/leaflet-draw/ext/LatLngUtil.js: -------------------------------------------------------------------------------- 1 | /* 2 | * L.LatLngUtil contains different utility functions for LatLngs. 3 | */ 4 | 5 | L.LatLngUtil = { 6 | // Clones a LatLngs[], returns [][] 7 | cloneLatLngs: function (latlngs) { 8 | var clone = []; 9 | for (var i = 0, l = latlngs.length; i < l; i++) { 10 | clone.push(this.cloneLatLng(latlngs[i])); 11 | } 12 | return clone; 13 | }, 14 | 15 | cloneLatLng: function (latlng) { 16 | return L.latLng(latlng.lat, latlng.lng); 17 | } 18 | }; -------------------------------------------------------------------------------- /assets/js/leaflet-openweathermap/NT2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/leaflet-openweathermap/NT2.png -------------------------------------------------------------------------------- /assets/js/leaflet-openweathermap/owmloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/leaflet-openweathermap/owmloading.gif -------------------------------------------------------------------------------- /assets/js/leaflet-rm/leaflet.routing.icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/leaflet-rm/leaflet.routing.icons.png -------------------------------------------------------------------------------- /assets/js/leaflet-rm/routing-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/leaflet-rm/routing-icon.png -------------------------------------------------------------------------------- /assets/js/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /assets/js/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/leaflet/images/layers.png -------------------------------------------------------------------------------- /assets/js/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /assets/js/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /assets/js/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /assets/js/tinymce/langs/readme.md: -------------------------------------------------------------------------------- 1 | This is where language files should be placed. 2 | 3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ 4 | -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/anchor/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("anchor",function(e){function t(){var t=e.selection.getNode();e.windowManager.open({title:"Anchor",body:{type:"textbox",name:"name",size:40,label:"Name",value:t.name||t.id},onsubmit:function(t){e.execCommand("mceInsertContent",!1,e.dom.createHTML("a",{id:t.data.name}))}})}e.addButton("anchor",{icon:"anchor",tooltip:"Anchor",onclick:t,stateSelector:"a:not([href])"}),e.addMenuItem("anchor",{icon:"anchor",text:"Anchor",context:"insert",onclick:t})}); -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/code/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("code",function(e){function t(){e.windowManager.open({title:"Source code",body:{type:"textbox",name:"code",multiline:!0,minWidth:e.getParam("code_dialog_width",600),minHeight:e.getParam("code_dialog_height",500),value:e.getContent({source_view:!0}),spellcheck:!1},onSubmit:function(t){e.undoManager.transact(function(){e.setContent(t.data.code)}),e.nodeChanged()}})}e.addCommand("mceCodeEditor",t),e.addButton("code",{icon:"code",tooltip:"Source code",onclick:t}),e.addMenuItem("code",{icon:"code",text:"Source code",context:"tools",onclick:t})}); -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-cool.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-cry.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-frown.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-innocent.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-kiss.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-laughing.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-sealed.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-smile.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-surprised.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-undecided.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-wink.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/emoticons/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/emoticons/img/smiley-yell.gif -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/example/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("example",function(e){e.addButton("example",{text:"My button",icon:!1,onclick:function(){e.windowManager.open({title:"Example plugin",body:[{type:"textbox",name:"title",label:"Title"}],onsubmit:function(t){e.insertContent("Title: "+t.data.title)}})}}),e.addMenuItem("example",{text:"Example plugin",context:"tools",onclick:function(){e.windowManager.open({title:"TinyMCE site",url:"http://www.tinymce.com",width:800,height:600,buttons:[{text:"Close",onclick:"close"}]})}})}); -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/example_dependency/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("example_dependency",function(){},["example"]); -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/hr/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("hr",function(e){e.addCommand("InsertHorizontalRule",function(){e.execCommand("mceInsertContent",!1,"
")}),e.addButton("hr",{icon:"hr",tooltip:"Horizontal line",cmd:"InsertHorizontalRule"}),e.addMenuItem("hr",{icon:"hr",text:"Horizontal line",cmd:"InsertHorizontalRule",context:"insert"})}); -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/media/moxieplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/plugins/media/moxieplayer.swf -------------------------------------------------------------------------------- /assets/js/tinymce/plugins/print/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("print",function(t){t.addCommand("mcePrint",function(){t.getWin().print()}),t.addButton("print",{title:"Print",cmd:"mcePrint"}),t.addShortcut("Ctrl+P","","mcePrint"),t.addMenuItem("print",{text:"Print",cmd:"mcePrint",icon:"print",shortcut:"Ctrl+P",context:"file"})}); -------------------------------------------------------------------------------- /assets/js/tinymce/skins/lightgray/fonts/icomoon-small.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/skins/lightgray/fonts/icomoon-small.eot -------------------------------------------------------------------------------- /assets/js/tinymce/skins/lightgray/fonts/icomoon-small.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/skins/lightgray/fonts/icomoon-small.ttf -------------------------------------------------------------------------------- /assets/js/tinymce/skins/lightgray/fonts/icomoon-small.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/skins/lightgray/fonts/icomoon-small.woff -------------------------------------------------------------------------------- /assets/js/tinymce/skins/lightgray/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/skins/lightgray/fonts/icomoon.eot -------------------------------------------------------------------------------- /assets/js/tinymce/skins/lightgray/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/skins/lightgray/fonts/icomoon.ttf -------------------------------------------------------------------------------- /assets/js/tinymce/skins/lightgray/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/skins/lightgray/fonts/icomoon.woff -------------------------------------------------------------------------------- /assets/js/tinymce/skins/lightgray/fonts/readme.md: -------------------------------------------------------------------------------- 1 | Icons are generated and provided by the http://icomoon.io service. 2 | -------------------------------------------------------------------------------- /assets/js/tinymce/skins/lightgray/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/skins/lightgray/img/anchor.gif -------------------------------------------------------------------------------- /assets/js/tinymce/skins/lightgray/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/skins/lightgray/img/loader.gif -------------------------------------------------------------------------------- /assets/js/tinymce/skins/lightgray/img/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/skins/lightgray/img/object.gif -------------------------------------------------------------------------------- /assets/js/tinymce/skins/lightgray/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/skins/lightgray/img/trans.gif -------------------------------------------------------------------------------- /assets/js/tinymce/skins/lightgray/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/assets/js/tinymce/skins/lightgray/img/wline.gif -------------------------------------------------------------------------------- /assets/js/tinymce/tinymce.init.js: -------------------------------------------------------------------------------- 1 | tinymce.init({ 2 | plugins: ["code textcolor image media table lists anchor searchreplace link wordcount"], 3 | toolbar: "undo redo | styleselect | bold italic underline | forecolor backcolor | alignleft aligncenter alignright alignjustify | outdent indent | bullist numlist | table | link unlink | anchor | image media | code | searchreplace | wordcount", 4 | menubar : false, 5 | selector: ".mceditor", 6 | height: 450 7 | }); 8 | -------------------------------------------------------------------------------- /bin/classes/class.route.php: -------------------------------------------------------------------------------- 1 | read( $id ); 10 | } 11 | 12 | } 13 | 14 | ?> -------------------------------------------------------------------------------- /description: -------------------------------------------------------------------------------- 1 | Unnamed repository; edit this file 'description' to name the repository. 2 | -------------------------------------------------------------------------------- /doc/developer/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/doc/developer/development.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- 1 | mappiamo 2 | ======== 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :caption: English documentation 7 | 8 | manual_en 9 | 10 | .. toctree:: 11 | :maxdepth: 2 12 | :caption: Documentazione italiana 13 | 14 | manual_it -------------------------------------------------------------------------------- /doc/manual_it.rst: -------------------------------------------------------------------------------- 1 | Mappiamo 2 | ======== 3 | 4 | This is the Mappiamo documentation. 5 | 6 | Introduction 7 | ============ 8 | 9 | Italian translation required ........... 10 | 11 | The first italian subtitle 12 | -------------------------- 13 | 14 | Italian translation required ........... 15 | 16 | The second italian subtitle 17 | --------------------------- -------------------------------------------------------------------------------- /doc/mappiamo_manual-en.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/doc/mappiamo_manual-en.odt -------------------------------------------------------------------------------- /doc/mappiamo_manual-en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/doc/mappiamo_manual-en.pdf -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/favicon.ico -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/favicon.png -------------------------------------------------------------------------------- /favicon_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/favicon_single.png -------------------------------------------------------------------------------- /lib/geocoder/Geocoder/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | interface ExceptionInterface 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/geocoder/Geocoder/Exception/ExtensionNotLoadedException.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | class ExtensionNotLoadedException extends \RuntimeException implements ExceptionInterface 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/geocoder/Geocoder/Exception/HttpException.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | class HttpException extends \RuntimeException implements ExceptionInterface 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/geocoder/Geocoder/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/geocoder/Geocoder/Exception/InvalidCredentialsException.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | class InvalidCredentialsException extends RuntimeException implements ExceptionInterface 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/geocoder/Geocoder/Exception/NoResultException.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | class NoResultException extends \RuntimeException implements ExceptionInterface 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/geocoder/Geocoder/Exception/QuotaExceededException.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | class QuotaExceededException extends \RuntimeException implements ExceptionInterface 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/geocoder/Geocoder/Exception/RuntimeException.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | class RuntimeException extends \RuntimeException implements ExceptionInterface 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/geocoder/Geocoder/Exception/UnsupportedException.php: -------------------------------------------------------------------------------- 1 | 15 | */ 16 | class UnsupportedException extends InvalidArgumentException implements ExceptionInterface 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /lib/htmlpurifier/CREDITS: -------------------------------------------------------------------------------- 1 | 2 | CREDITS 3 | 4 | Almost everything written by Edward Z. Yang (Ambush Commander). Lots of thanks 5 | to the DevNetwork Community for their help (see docs/ref-devnetwork.html for 6 | more details), Feyd especially (namely IPv6 and optimization). Thanks to RSnake 7 | for letting me package his fantastic XSS cheatsheet for a smoketest. 8 | 9 | vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier.auto.php: -------------------------------------------------------------------------------- 1 | parseCDATA($string); 11 | } 12 | 13 | } 14 | 15 | // vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php: -------------------------------------------------------------------------------- 1 | 5 | */ 6 | class HTMLPurifier_AttrTransform_ScriptRequired extends HTMLPurifier_AttrTransform 7 | { 8 | public function transform($attr, $config, $context) { 9 | if (!isset($attr['type'])) { 10 | $attr['type'] = 'text/javascript'; 11 | } 12 | return $attr; 13 | } 14 | } 15 | 16 | // vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/AttrTransform/Textarea.php: -------------------------------------------------------------------------------- 1 | 5 | */ 6 | class HTMLPurifier_AttrTransform_Textarea extends HTMLPurifier_AttrTransform 7 | { 8 | 9 | public function transform($attr, $config, $context) { 10 | // Calculated from Firefox 11 | if (!isset($attr['cols'])) $attr['cols'] = '22'; 12 | if (!isset($attr['rows'])) $attr['rows'] = '3'; 13 | return $attr; 14 | } 15 | 16 | } 17 | 18 | // vim: et sw=4 sts=4 19 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php: -------------------------------------------------------------------------------- 1 | 8 | This directive can be used to add custom auto-format injectors. 9 | Specify an array of injector names (class name minus the prefix) 10 | or concrete implementations. Injector class must exist. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.DisplayLinkURI 2 | TYPE: bool 3 | VERSION: 3.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | This directive turns on the in-text display of URIs in <a> tags, and disables 8 | those links. For example, example becomes 9 | example (http://example.com). 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.Linkify 2 | TYPE: bool 3 | VERSION: 2.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive turns on linkification, auto-linking http, ftp and 9 | https URLs. a tags with the href attribute 10 | must be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.PurifierLinkify.DocURL 2 | TYPE: string 3 | VERSION: 2.0.1 4 | DEFAULT: '#%s' 5 | ALIASES: AutoFormatParam.PurifierLinkifyDocURL 6 | --DESCRIPTION-- 7 |

8 | Location of configuration documentation to link to, let %s substitute 9 | into the configuration's namespace and directive names sans the percent 10 | sign. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.PurifierLinkify 2 | TYPE: bool 3 | VERSION: 2.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Internal auto-formatter that converts configuration directives in 9 | syntax %Namespace.Directive to links. a tags 10 | with the href attribute must be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions 2 | TYPE: lookup 3 | VERSION: 4.0.0 4 | DEFAULT: array('td' => true, 'th' => true) 5 | --DESCRIPTION-- 6 |

7 | When %AutoFormat.RemoveEmpty and %AutoFormat.RemoveEmpty.RemoveNbsp 8 | are enabled, this directive defines what HTML elements should not be 9 | removede if they have only a non-breaking space in them. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveSpansWithoutAttributes 2 | TYPE: bool 3 | VERSION: 4.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | This directive causes span tags without any attributes 8 | to be removed. It will also remove spans that had all attributes 9 | removed during processing. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowImportant 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 3.1.0 5 | --DESCRIPTION-- 6 | This parameter determines whether or not !important cascade modifiers should 7 | be allowed in user CSS. If false, !important will stripped. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowTricky 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 3.1.0 5 | --DESCRIPTION-- 6 | This parameter determines whether or not to allow "tricky" CSS properties and 7 | values. Tricky CSS properties/values can drastically modify page layout or 8 | be used for deceptive practices but do not directly constitute a security risk. 9 | For example, display:none; is considered a tricky property that 10 | will only be allowed if this directive is set to true. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowedFonts.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowedFonts 2 | TYPE: lookup/null 3 | VERSION: 4.3.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 |

7 | Allows you to manually specify a set of allowed fonts. If 8 | NULL, all fonts are allowed. This directive 9 | affects generic names (serif, sans-serif, monospace, cursive, 10 | fantasy) as well as specific font families. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | CSS.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.0.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt: -------------------------------------------------------------------------------- 1 | CSS.Proprietary 2 | TYPE: bool 3 | VERSION: 3.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Whether or not to allow safe, proprietary CSS values. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt: -------------------------------------------------------------------------------- 1 | CSS.Trusted 2 | TYPE: bool 3 | VERSION: 4.2.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Indicates whether or not the user's CSS input is trusted or not. If the 7 | input is trusted, a more expansive set of allowed properties. See 8 | also %HTML.Trusted. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt: -------------------------------------------------------------------------------- 1 | Cache.DefinitionImpl 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: 'Serializer' 5 | --DESCRIPTION-- 6 | 7 | This directive defines which method to use when caching definitions, 8 | the complex data-type that makes HTML Purifier tick. Set to null 9 | to disable caching (not recommended, as you will see a definite 10 | performance degradation). 11 | 12 | --ALIASES-- 13 | Core.DefinitionCache 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt: -------------------------------------------------------------------------------- 1 | Cache.SerializerPath 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Absolute path with no trailing slash to store serialized definitions in. 9 | Default is within the 10 | HTML Purifier library inside DefinitionCache/Serializer. This 11 | path must be writable by the webserver. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt: -------------------------------------------------------------------------------- 1 | Cache.SerializerPermissions 2 | TYPE: int 3 | VERSION: 4.3.0 4 | DEFAULT: 0755 5 | --DESCRIPTION-- 6 | 7 |

8 | Directory permissions of the files and directories created inside 9 | the DefinitionCache/Serializer or other custom serializer path. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt: -------------------------------------------------------------------------------- 1 | Core.CollectErrors 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 | Whether or not to collect errors found while filtering the document. This 8 | is a useful way to give feedback to your users. Warning: 9 | Currently this feature is very patchy and experimental, with lots of 10 | possible error messages not yet implemented. It will not cause any 11 | problems, but it may not help your users either. 12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt: -------------------------------------------------------------------------------- 1 | Core.ConvertDocumentToFragment 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | 6 | This parameter determines whether or not the filter should convert 7 | input that is a full document with html and body tags to a fragment 8 | of just the contents of a body tag. This parameter is simply something 9 | HTML Purifier can do during an edge-case: for most inputs, this 10 | processing is not necessary. 11 | 12 | --ALIASES-- 13 | Core.AcceptFullDocuments 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.DisableExcludes.txt: -------------------------------------------------------------------------------- 1 | Core.DisableExcludes 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.5.0 5 | --DESCRIPTION-- 6 |

7 | This directive disables SGML-style exclusions, e.g. the exclusion of 8 | <object> in any descendant of a 9 | <pre> tag. Disabling excludes will allow some 10 | invalid documents to pass through HTML Purifier, but HTML Purifier 11 | will also be less likely to accidentally remove large documents during 12 | processing. 13 |

14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EnableIDNA.txt: -------------------------------------------------------------------------------- 1 | Core.EnableIDNA 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.4.0 5 | --DESCRIPTION-- 6 | Allows international domain names in URLs. This configuration option 7 | requires the PEAR Net_IDNA2 module to be installed. It operates by 8 | punycoding any internationalized host names for maximum portability. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidChildren 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When true, a child is found that is not allowed in the context of the 6 | parent element will be transformed into text as if it were ASCII. When 7 | false, that element and all internal tags will be dropped, though text will 8 | be preserved. There is no option for dropping the element but preserving 9 | child nodes. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidTags 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When true, invalid tags will be written back to the document as plain text. 6 | Otherwise, they are silently dropped. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.Language.txt: -------------------------------------------------------------------------------- 1 | Core.Language 2 | TYPE: string 3 | VERSION: 2.0.0 4 | DEFAULT: 'en' 5 | --DESCRIPTION-- 6 | 7 | ISO 639 language code for localizable things in HTML Purifier to use, 8 | which is mainly error reporting. There is currently only an English (en) 9 | translation, so this directive is currently useless. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt: -------------------------------------------------------------------------------- 1 | Core.NormalizeNewlines 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 |

7 | Whether or not to normalize newlines to the operating 8 | system default. When false, HTML Purifier 9 | will attempt to preserve mixed newline files. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveInvalidImg 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.3.0 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive enables pre-emptive URI checking in img 9 | tags, as the attribute validation strategy is not authorized to 10 | remove elements from the document. Revert to pre-1.3.0 behavior by setting to false. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveProcessingInstructions 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Instead of escaping processing instructions in the form <? ... 7 | ?>, remove it out-right. This may be useful if the HTML 8 | you are validating contains XML processing instruction gunk, however, 9 | it can also be user-unfriendly for people attempting to post PHP 10 | snippets. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveScriptContents 2 | TYPE: bool/null 3 | DEFAULT: NULL 4 | VERSION: 2.0.0 5 | DEPRECATED-VERSION: 2.1.0 6 | DEPRECATED-USE: Core.HiddenElements 7 | --DESCRIPTION-- 8 |

9 | This directive enables HTML Purifier to remove not only script tags 10 | but all of their contents. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt: -------------------------------------------------------------------------------- 1 | Filter.Custom 2 | TYPE: list 3 | VERSION: 3.1.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

7 | This directive can be used to add custom filters; it is nearly the 8 | equivalent of the now deprecated HTMLPurifier->addFilter() 9 | method. Specify an array of concrete implementations. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt: -------------------------------------------------------------------------------- 1 | HTML.AllowedComments 2 | TYPE: lookup 3 | VERSION: 4.4.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | A whitelist which indicates what explicit comment bodies should be 7 | allowed, modulo leading and trailing whitespace. See also %HTML.AllowedCommentsRegexp 8 | (these directives are union'ed together, so a comment is considered 9 | valid if any directive deems it valid.) 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt: -------------------------------------------------------------------------------- 1 | HTML.Attr.Name.UseCDATA 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.0.0 5 | --DESCRIPTION-- 6 | The W3C specification DTD defines the name attribute to be CDATA, not ID, due 7 | to limitations of DTD. In certain documents, this relaxed behavior is desired, 8 | whether it is to specify duplicate names, or to specify names that would be 9 | illegal IDs (for example, names that begin with a digit.) Set this configuration 10 | directive to true to use the relaxed parsing rules. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt: -------------------------------------------------------------------------------- 1 | HTML.CustomDoctype 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 | A custom doctype for power-users who defined there own document 8 | type. This directive only applies when %HTML.Doctype is blank. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt: -------------------------------------------------------------------------------- 1 | HTML.Doctype 2 | TYPE: string/null 3 | DEFAULT: NULL 4 | --DESCRIPTION-- 5 | Doctype to use during filtering. Technically speaking this is not actually 6 | a doctype (as it does not identify a corresponding DTD), but we are using 7 | this name for sake of simplicity. When non-blank, this will override any 8 | older directives like %HTML.XHTML or %HTML.Strict. 9 | --ALLOWED-- 10 | 'HTML 4.01 Transitional', 'HTML 4.01 Strict', 'XHTML 1.0 Transitional', 'XHTML 1.0 Strict', 'XHTML 1.1' 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt: -------------------------------------------------------------------------------- 1 | HTML.FlashAllowFullScreen 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit embedded Flash content from 8 | %HTML.SafeObject to expand to the full screen. Corresponds to 9 | the allowFullScreen parameter. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt: -------------------------------------------------------------------------------- 1 | HTML.Nofollow 2 | TYPE: bool 3 | VERSION: 4.3.0 4 | DEFAULT: FALSE 5 | --DESCRIPTION-- 6 | If enabled, nofollow rel attributes are added to all outgoing links. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt: -------------------------------------------------------------------------------- 1 | HTML.Parent 2 | TYPE: string 3 | VERSION: 1.3.0 4 | DEFAULT: 'div' 5 | --DESCRIPTION-- 6 | 7 |

8 | String name of element that HTML fragment passed to library will be 9 | inserted in. An interesting variation would be using span as the 10 | parent element, meaning that only inline tags would be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt: -------------------------------------------------------------------------------- 1 | HTML.Proprietary 2 | TYPE: bool 3 | VERSION: 3.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to allow proprietary elements and attributes in your 8 | documents, as per HTMLPurifier_HTMLModule_Proprietary. 9 | Warning: This can cause your documents to stop 10 | validating! 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeIframe 2 | TYPE: bool 3 | VERSION: 4.4.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit iframe tags in untrusted documents. This 8 | directive must be accompanied by a whitelist of permitted iframes, 9 | such as %URI.SafeIframeRegexp, otherwise it will fatally error. 10 | This directive has no effect on strict doctypes, as iframes are not 11 | valid. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeObject 2 | TYPE: bool 3 | VERSION: 3.1.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit object tags in documents, with a number of extra 8 | security features added to prevent script execution. This is similar to 9 | what websites like MySpace do to object tags. You should also enable 10 | %Output.FlashCompat in order to generate Internet Explorer 11 | compatibility code for your object tags. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeScripting 2 | TYPE: lookup 3 | VERSION: 4.5.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit script tags to external scripts in documents. 8 | Inline scripting is not allowed, and the script must match an explicit whitelist. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt: -------------------------------------------------------------------------------- 1 | HTML.Strict 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not to use Transitional (loose) or Strict rulesets. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetBlank.txt: -------------------------------------------------------------------------------- 1 | HTML.TargetBlank 2 | TYPE: bool 3 | VERSION: 4.4.0 4 | DEFAULT: FALSE 5 | --DESCRIPTION-- 6 | If enabled, target=blank attributes are added to all outgoing links. 7 | (This includes links from an HTTPS version of a page to an HTTP version.) 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyAdd 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 | Fixes to add to the default set of Tidy fixes as per your level. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyRemove 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 | Fixes to remove from the default set of Tidy fixes as per your level. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt: -------------------------------------------------------------------------------- 1 | HTML.Trusted 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Indicates whether or not the user input is trusted or not. If the input is 7 | trusted, a more expansive set of allowed tags and attributes will be used. 8 | See also %CSS.Trusted. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt: -------------------------------------------------------------------------------- 1 | HTML.XHTML 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.1.0 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not output is XHTML 1.0 or HTML 4.01 flavor. 9 | --ALIASES-- 10 | Core.XHTML 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt: -------------------------------------------------------------------------------- 1 | Output.CommentScriptContents 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 | Determines whether or not HTML Purifier should attempt to fix up the 7 | contents of script tags for legacy browsers with comments. 8 | --ALIASES-- 9 | Core.CommentScriptContents 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt: -------------------------------------------------------------------------------- 1 | Output.FlashCompat 2 | TYPE: bool 3 | VERSION: 4.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | If true, HTML Purifier will generate Internet Explorer compatibility 8 | code for all object code. This is highly recommended if you enable 9 | %HTML.SafeObject. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt: -------------------------------------------------------------------------------- 1 | Output.Newline 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Newline string to format final output with. If left null, HTML Purifier 9 | will auto-detect the default newline type of the system and use that; 10 | you can manually override it here. Remember, \r\n is Windows, \r 11 | is Mac, and \n is Unix. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt: -------------------------------------------------------------------------------- 1 | Test.ForceNoIconv 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When set to true, HTMLPurifier_Encoder will act as if iconv does not exist 6 | and use only pure PHP implementations. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt: -------------------------------------------------------------------------------- 1 | URI.DefaultScheme 2 | TYPE: string 3 | DEFAULT: 'http' 4 | --DESCRIPTION-- 5 | 6 |

7 | Defines through what scheme the output will be served, in order to 8 | select the proper object validator when no scheme information is present. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionID 2 | TYPE: string/null 3 | VERSION: 2.1.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Unique identifier for a custom-built URI definition. If you want 9 | to add custom URIFilters, you must specify this value. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.1.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt: -------------------------------------------------------------------------------- 1 | URI.Disable 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Disables all URIs in all forms. Not sure why you'd want to do that 9 | (after all, the Internet's founded on the notion of a hyperlink). 10 |

11 | 12 | --ALIASES-- 13 | Attr.DisableURI 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt: -------------------------------------------------------------------------------- 1 | URI.DisableExternal 2 | TYPE: bool 3 | VERSION: 1.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Disables links to external websites. This is a highly effective anti-spam 7 | and anti-pagerank-leech measure, but comes at a hefty price: nolinks or 8 | images outside of your domain will be allowed. Non-linkified URIs will 9 | still be preserved. If you want to be able to link to subdomains or use 10 | absolute URIs, specify %URI.Host for your website. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt: -------------------------------------------------------------------------------- 1 | URI.DisableResources 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Disables embedding resources, essentially meaning no pictures. You can 8 | still link to them though. See %URI.DisableExternalResources for why 9 | this might be a good idea. 10 |

11 |

12 | Note: While this directive has been available since 1.3.0, 13 | it didn't actually start doing anything until 4.2.0. 14 |

15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt: -------------------------------------------------------------------------------- 1 | URI.HostBlacklist 2 | TYPE: list 3 | VERSION: 1.3.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of strings that are forbidden in the host of any URI. Use it to kill 7 | domain names of spam, etc. Note that it will catch anything in the domain, 8 | so moo.com will catch moo.com.example.com. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt: -------------------------------------------------------------------------------- 1 | URI.MakeAbsolute 2 | TYPE: bool 3 | VERSION: 2.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Converts all URIs into absolute forms. This is useful when the HTML 9 | being filtered assumes a specific base path, but will actually be 10 | viewed in a different context (and setting an alternate base URI is 11 | not possible). %URI.Base must be set for this directive to work. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt: -------------------------------------------------------------------------------- 1 | URI.OverrideAllowedSchemes 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | If this is set to true (which it is by default), you can override 6 | %URI.AllowedSchemes by simply registering a HTMLPurifier_URIScheme to the 7 | registry. If false, you will also have to update that directive in order 8 | to add more schemes. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer/CSS/4.5.0,1b10aad0901b16856d5e8000758e1873af94045a,1.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer/CSS/4.5.0,1b10aad0901b16856d5e8000758e1873af94045a,1.ser -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer/README: -------------------------------------------------------------------------------- 1 | This is a dummy file to prevent Git from ignoring this empty directory. 2 | 3 | vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/Exception.php: -------------------------------------------------------------------------------- 1 | addBlankElement('a'); 14 | $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_Nofollow(); 15 | } 16 | 17 | } 18 | 19 | // vim: et sw=4 sts=4 20 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php: -------------------------------------------------------------------------------- 1 | array( 9 | 'lang' => 'LanguageCode', 10 | ) 11 | ); 12 | } 13 | 14 | // vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php: -------------------------------------------------------------------------------- 1 | addBlankElement('a'); 14 | $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_TargetBlank(); 15 | } 16 | 17 | } 18 | 19 | // vim: et sw=4 sts=4 20 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php: -------------------------------------------------------------------------------- 1 | array( 9 | 'xml:lang' => 'LanguageCode', 10 | ) 11 | ); 12 | } 13 | 14 | // vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/Language/classes/en-x-test.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier X' 9 | ); 10 | 11 | // vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/Language/messages/en-x-testmini.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier XNone' 10 | ); 11 | 12 | // vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.css: -------------------------------------------------------------------------------- 1 | 2 | .hp-config {} 3 | 4 | .hp-config tbody th {text-align:right; padding-right:0.5em;} 5 | .hp-config thead, .hp-config .namespace {background:#3C578C; color:#FFF;} 6 | .hp-config .namespace th {text-align:center;} 7 | .hp-config .verbose {display:none;} 8 | .hp-config .controls {text-align:center;} 9 | 10 | /* vim: et sw=4 sts=4 */ 11 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.js: -------------------------------------------------------------------------------- 1 | function toggleWriteability(id_of_patient, checked) { 2 | document.getElementById(id_of_patient).disabled = checked; 3 | } 4 | 5 | // vim: et sw=4 sts=4 6 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/Token/Empty.php: -------------------------------------------------------------------------------- 1 | get('EmbeddedURI', true)) return true; 8 | return parent::filter($uri, $config, $context); 9 | } 10 | } 11 | 12 | // vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php: -------------------------------------------------------------------------------- 1 | get('EmbeddedURI', true); 8 | } 9 | } 10 | 11 | // vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/URIScheme/http.php: -------------------------------------------------------------------------------- 1 | userinfo = null; 14 | return true; 15 | } 16 | 17 | } 18 | 19 | // vim: et sw=4 sts=4 20 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/URIScheme/https.php: -------------------------------------------------------------------------------- 1 | userinfo = null; 13 | $uri->query = null; 14 | return true; 15 | } 16 | 17 | } 18 | 19 | // vim: et sw=4 sts=4 20 | -------------------------------------------------------------------------------- /lib/htmlpurifier/library/HTMLPurifier/VarParserException.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/php-thumb/cache/phpThumbCacheStats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/lib/php-thumb/cache/phpThumbCacheStats.txt -------------------------------------------------------------------------------- /lib/php-thumb/cache/source/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/php-thumb/docs/phpthumb.changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/lib/php-thumb/docs/phpthumb.changelog.txt -------------------------------------------------------------------------------- /lib/php-thumb/docs/phpthumb.readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/lib/php-thumb/docs/phpthumb.readme.txt -------------------------------------------------------------------------------- /lib/php-thumb/fonts/readme.txt: -------------------------------------------------------------------------------- 1 | This is the default location for TTF fonts. 2 | 3 | You can safely delete or ignore this directory if you're not using 4 | TTF fonts for text watermarks. You can also specify an alternate 5 | directory in phpThumb.config.php -------------------------------------------------------------------------------- /lib/php-thumb/images/readme.txt: -------------------------------------------------------------------------------- 1 | If you're looking for the demo images, they can be downloaded from 2 | the bottom of the phpThumb demo page on SourceForge: 3 | 4 | http://phpthumb.sourceforge.net/demo/demo/phpThumb.demo.demo.php -------------------------------------------------------------------------------- /lib/php-thumb/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/php-thumb/phpthumb.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/lib/php-thumb/phpthumb.class.php -------------------------------------------------------------------------------- /lib/php-thumb/phpthumb.filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/lib/php-thumb/phpthumb.filters.php -------------------------------------------------------------------------------- /lib/php-thumb/phpthumb.unsharp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/lib/php-thumb/phpthumb.unsharp.php -------------------------------------------------------------------------------- /lib/swift/VERSION: -------------------------------------------------------------------------------- 1 | Swift-5.0.3 2 | -------------------------------------------------------------------------------- /lib/swift/lib/classes/Swift/Events/EventListener.php: -------------------------------------------------------------------------------- 1 | 18 | */ 19 | interface Swift_Signer 20 | { 21 | public function reset(); 22 | } 23 | -------------------------------------------------------------------------------- /lib/swift/lib/dependency_maps/message_deps.php: -------------------------------------------------------------------------------- 1 | register('message.message') 5 | ->asNewInstanceOf('Swift_Message') 6 | 7 | ->register('message.mimepart') 8 | ->asNewInstanceOf('Swift_MimePart') 9 | ; 10 | -------------------------------------------------------------------------------- /manager/modules/dashboard/dashboard.php: -------------------------------------------------------------------------------- 1 | set_page_title( '#mappiamo - Dashboard' ); 10 | 11 | $this->view(); 12 | } 13 | 14 | } 15 | 16 | ?> -------------------------------------------------------------------------------- /manager/modules/denied/denied.php: -------------------------------------------------------------------------------- 1 | set_page_title( '#mappiamo - Access denied' ); 10 | 11 | $this->view(); 12 | } 13 | 14 | } 15 | 16 | ?> -------------------------------------------------------------------------------- /manager/modules/login/login.php: -------------------------------------------------------------------------------- 1 | set_page_title( '#mappiamo - Login' ); 10 | 11 | if( isset( $_POST['do-login'] ) ) { 12 | if ( isset( $_POST['remember'] ) ) MAuth::$remember = true; 13 | 14 | MAuth::do_login(); 15 | } 16 | 17 | if( isset( $_POST['do-logout'] ) ) MAuth::do_logout(); 18 | 19 | $this->view(); 20 | } 21 | 22 | } 23 | 24 | ?> -------------------------------------------------------------------------------- /manager/modules/majax/majax.php: -------------------------------------------------------------------------------- 1 | model( 'geocode', null, 'majax_geo' ); 14 | 15 | if ( $result ) { 16 | echo json_encode( $result ); 17 | } 18 | } 19 | 20 | } 21 | 22 | ?> -------------------------------------------------------------------------------- /manager/modules/majax/models/majax.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manager/modules/mmodule/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/manager/modules/mmodule/error.php -------------------------------------------------------------------------------- /manager/modules/mxmlimport/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/manager/modules/mxmlimport/.DS_Store -------------------------------------------------------------------------------- /manager/modules/mxmlimport/models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/manager/modules/mxmlimport/models/.DS_Store -------------------------------------------------------------------------------- /manager/modules/mxmlimport/views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/manager/modules/mxmlimport/views/.DS_Store -------------------------------------------------------------------------------- /manager/modules/preferences/preferences.php: -------------------------------------------------------------------------------- 1 | set_page_title( '#mappiamo - Preferences' ); 10 | 11 | if ( isset( $_POST['preferences_update'] ) && mapi_csrf_check( MGet::string( 'mapi_csrf' ) ) ) $this->model( 'update_preferences' ); 12 | 13 | $preferences = $this->model( 'get_preferences' ); 14 | $this->view( 'default', $preferences ); 15 | } 16 | 17 | } 18 | 19 | ?> -------------------------------------------------------------------------------- /manager/templates/manager/foot.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /manager/templates/manager/login.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | content; ?> 11 | 12 | -------------------------------------------------------------------------------- /manager/templates/manager/passrenew.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | content; ?> 10 | 11 | -------------------------------------------------------------------------------- /manager/templates/manager/register.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | content; ?> 11 | 12 | -------------------------------------------------------------------------------- /media/contents/README.txt: -------------------------------------------------------------------------------- 1 | Keep this file to keep contents directory in github 2 | -------------------------------------------------------------------------------- /media/default_content.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/default_content.jpg -------------------------------------------------------------------------------- /media/default_slider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/default_slider.jpg -------------------------------------------------------------------------------- /media/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/avatar.png -------------------------------------------------------------------------------- /media/images/box_garage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/box_garage.jpg -------------------------------------------------------------------------------- /media/images/box_storia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/box_storia.jpg -------------------------------------------------------------------------------- /media/images/box_v7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/box_v7.jpg -------------------------------------------------------------------------------- /media/images/intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/intro.jpg -------------------------------------------------------------------------------- /media/images/logo_motoguzzi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/logo_motoguzzi.png -------------------------------------------------------------------------------- /media/images/mappiamo-geocms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/mappiamo-geocms.png -------------------------------------------------------------------------------- /media/images/mappiamo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/mappiamo.png -------------------------------------------------------------------------------- /media/images/motoguzzilogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/motoguzzilogo2.png -------------------------------------------------------------------------------- /media/images/notfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/notfound.png -------------------------------------------------------------------------------- /media/images/sa_inserimento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/sa_inserimento.png -------------------------------------------------------------------------------- /media/images/sa_modifica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/sa_modifica.png -------------------------------------------------------------------------------- /media/images/soccorso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/soccorso.png -------------------------------------------------------------------------------- /media/images/soccorsoAquilaAdesivo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/images/soccorsoAquilaAdesivo.png -------------------------------------------------------------------------------- /media/mapicons/cities-100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/mapicons/cities-100000.png -------------------------------------------------------------------------------- /media/mapicons/dealers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/mapicons/dealers.png -------------------------------------------------------------------------------- /media/mapicons/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/mapicons/events.png -------------------------------------------------------------------------------- /media/mapicons/guzzi-club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/mapicons/guzzi-club.png -------------------------------------------------------------------------------- /media/mapicons/soccorso-aquila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/mapicons/soccorso-aquila.png -------------------------------------------------------------------------------- /media/slider/moto001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/slider/moto001.jpg -------------------------------------------------------------------------------- /media/slider/moto002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/slider/moto002.jpg -------------------------------------------------------------------------------- /media/slider/moto003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/slider/moto003.jpg -------------------------------------------------------------------------------- /media/slider/soccorsoAquilaCopertina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/media/slider/soccorsoAquilaCopertina.png -------------------------------------------------------------------------------- /modules/ajax/ajax.md: -------------------------------------------------------------------------------- 1 | #Ajax module 2 | 3 | ##0.0.6 4 | 5 | Frontend ajax run 6 | -------------------------------------------------------------------------------- /modules/ajax/ajax.php: -------------------------------------------------------------------------------- 1 | model( 'geocode', null ); 14 | 15 | if ( $result ) { 16 | echo json_encode( $result ); 17 | } 18 | } 19 | 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /modules/blog/blog.md: -------------------------------------------------------------------------------- 1 | #Blog module 2 | 3 | ##0.0.3 4 | 5 | Display content blog -------------------------------------------------------------------------------- /modules/blog/blog.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/category/category.md: -------------------------------------------------------------------------------- 1 | #Category 2 | 3 | ##0.0.6 4 | 5 | Display a category in a bloglike format -------------------------------------------------------------------------------- /modules/category/lang/en.ini: -------------------------------------------------------------------------------- 1 | Leggi tutto=Read More 2 | Contenuto in lingua non trovato=Content not found on your language -------------------------------------------------------------------------------- /modules/content/content.md: -------------------------------------------------------------------------------- 1 | #Content 2 | 3 | ##0.0.3 4 | 5 | Display content -------------------------------------------------------------------------------- /modules/event/Images/1day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/1day.png -------------------------------------------------------------------------------- /modules/event/Images/1month.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/1month.png -------------------------------------------------------------------------------- /modules/event/Images/1quarter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/1quarter.png -------------------------------------------------------------------------------- /modules/event/Images/1week.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/1week.png -------------------------------------------------------------------------------- /modules/event/Images/1year.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/1year.png -------------------------------------------------------------------------------- /modules/event/Images/activedate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/activedate.png -------------------------------------------------------------------------------- /modules/event/Images/customdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/customdate.png -------------------------------------------------------------------------------- /modules/event/Images/loc_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/loc_clear.png -------------------------------------------------------------------------------- /modules/event/Images/map-marker-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/map-marker-1.png -------------------------------------------------------------------------------- /modules/event/Images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_asc.png -------------------------------------------------------------------------------- /modules/event/Images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_desc.png -------------------------------------------------------------------------------- /modules/event/Images/sort_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_end.png -------------------------------------------------------------------------------- /modules/event/Images/sort_end_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_end_asc.png -------------------------------------------------------------------------------- /modules/event/Images/sort_end_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_end_desc.png -------------------------------------------------------------------------------- /modules/event/Images/sort_loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_loc.png -------------------------------------------------------------------------------- /modules/event/Images/sort_loc_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_loc_asc.png -------------------------------------------------------------------------------- /modules/event/Images/sort_loc_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_loc_desc.png -------------------------------------------------------------------------------- /modules/event/Images/sort_modi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_modi.png -------------------------------------------------------------------------------- /modules/event/Images/sort_modi_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_modi_asc.png -------------------------------------------------------------------------------- /modules/event/Images/sort_modi_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_modi_desc.png -------------------------------------------------------------------------------- /modules/event/Images/sort_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_start.png -------------------------------------------------------------------------------- /modules/event/Images/sort_start_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_start_asc.png -------------------------------------------------------------------------------- /modules/event/Images/sort_start_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_start_desc.png -------------------------------------------------------------------------------- /modules/event/Images/sort_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_title.png -------------------------------------------------------------------------------- /modules/event/Images/sort_title_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_title_asc.png -------------------------------------------------------------------------------- /modules/event/Images/sort_title_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/sort_title_desc.png -------------------------------------------------------------------------------- /modules/event/Images/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/modules/event/Images/update.png -------------------------------------------------------------------------------- /modules/event/event.md: -------------------------------------------------------------------------------- 1 | #Event 2 | 3 | ##0.0.6 4 | 5 | Display a events in a bloglike format -------------------------------------------------------------------------------- /modules/event/lang/en.ini: -------------------------------------------------------------------------------- 1 | Leggi tutto=Read More 2 | Contenuto in lingua non trovato=Content not found on your language -------------------------------------------------------------------------------- /modules/finder/finder.md: -------------------------------------------------------------------------------- 1 | #Finder Module Core 2 | 3 | ##1.0.0 4 | 5 | Search module. 6 | It researches in contents (title and text) and in categories (name and title). 7 | It supports all standard content types: route, event, place and post. 8 | If you need custom content type you have to create a new module. -------------------------------------------------------------------------------- /modules/finder/finder.php: -------------------------------------------------------------------------------- 1 | model('search', $_GET['search']); 8 | 9 | if ($SearchResult) { 10 | $this->view('default', $SearchResult); 11 | } else { 12 | $this->view('default', 'Search string "'.$_GET['search'].'" have no result. Please use another keyword.'); 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /modules/home/home.md: -------------------------------------------------------------------------------- 1 | #Home module 2 | 3 | ##0.0.6 4 | 5 | Mappiamo home module -------------------------------------------------------------------------------- /modules/home/home.php: -------------------------------------------------------------------------------- 1 | get_value() ) > 0 ) $this->set_page_title( $title->get_value() ); 12 | } 13 | 14 | } 15 | 16 | ?> -------------------------------------------------------------------------------- /modules/page404/page404.md: -------------------------------------------------------------------------------- 1 | #Page 404 2 | 3 | ##0.0.1 4 | 5 | A 404 page 6 | -------------------------------------------------------------------------------- /modules/page404/page404.php: -------------------------------------------------------------------------------- 1 | view('default'); 13 | } 14 | 15 | 16 | } 17 | 18 | ?> 19 | -------------------------------------------------------------------------------- /modules/page404/views/default.php: -------------------------------------------------------------------------------- 1 | 7 | 8 |
9 |

404 not found

10 |

This content wasn't found, sorry.

11 |
12 | -------------------------------------------------------------------------------- /phpInfo.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /telegram/about: -------------------------------------------------------------------------------- 1 | This is the Telegram bot of #mappiamo project. 2 | 3 | Visit the project page 4 | Download project from GIT 5 | Read project document 6 | 7 | Start this bot with these commands: 8 | /start 9 | /help 10 | 11 | Drop an email to hello@mappiamo.com to get a similar bot. -------------------------------------------------------------------------------- /telegram/about_it: -------------------------------------------------------------------------------- 1 | Questo è il bot Telegram del progetto #mappiamo 2 | 3 | Visita #mappiamo 4 | Scarica #mappiamo da GITHUB 5 | Documentazione #mappiamo 6 | 7 | Inizia con i seguenti comandi: 8 | /start 9 | /help 10 | 11 | Scrivi a hello@mappiamo.com per avere un bot come questo. -------------------------------------------------------------------------------- /telegram/address: -------------------------------------------------------------------------------- 1 | You can set the default address with this command if you insert valid address after this word: 2 | 3 | Examples: 4 | --------------- 5 | address:Paris 6 | address:Roma 7 | address:London 8 | 9 | The value after the address have to be available in the database. 10 | The value of this setting is case sensitive and must be same as the content of address filed in the database. 11 | 12 | Remove your personal address settings: 13 | address:reset 14 | 15 | Show all your current settings: 16 | setting:show 17 | 18 | Please use /help if you need more information. -------------------------------------------------------------------------------- /telegram/address_it: -------------------------------------------------------------------------------- 1 | Per usare un'indirizzo di base scrivi il comando address: 2 | 3 | Esempi: 4 | --------------- 5 | address:Paris 6 | address:Roma 7 | address:London 8 | 9 | Il valore dopo address: deve esistere nel sito e devi rispettare le Maiuscole. 10 | 11 | Per cancellare le impostazioni di address: 12 | address:reset 13 | 14 | Mostra tutte le impostazioni: 15 | setting:show 16 | 17 | Con /help troverai maggiori delucidazioni -------------------------------------------------------------------------------- /telegram/language: -------------------------------------------------------------------------------- 1 | You can set the default language with this command if you insert language sign after this word: 2 | 3 | Examples: 4 | --------------- 5 | language:it 6 | language:en 7 | language:de 8 | language:fr 9 | 10 | Remove your personal language settings: 11 | language:reset 12 | 13 | Show all your current settings: 14 | setting:show 15 | 16 | Please use /help if you need more information. -------------------------------------------------------------------------------- /telegram/language_it: -------------------------------------------------------------------------------- 1 | Per gestire una lingua di base usa il comando language 2 | 3 | Esempi: 4 | --------------- 5 | language:it 6 | language:en 7 | language:de 8 | language:xx 9 | 10 | Per cancellare le impostazioni di language: 11 | language:reset 12 | 13 | Mostra tutte le impostazioni: 14 | setting:show 15 | 16 | Con /help troverai maggiori delucidazioni -------------------------------------------------------------------------------- /telegram/location_it: -------------------------------------------------------------------------------- 1 | Il bot è in grado di limitare i risultati in base alla localizzazione. 2 | Quando invii i dati della localizzazione 📎 -> Posizione il bot risponde secondo al radius: impostato. 3 | 4 | Quando desideri utilizzare il /search (cerca), hai due possibilità: 5 | - Hai già inviato la 📎 -> Posizione al bot Telegram e la ricerca viene effettuata in base a questo parametro. 6 | 7 | - Se non hai mai inviato la Posizione al bot Telegram, oppure l’hai azzerata col comando location:reset, la ricerca sarà libera e ignorerà anche il radius impostato. -------------------------------------------------------------------------------- /telegram/radius: -------------------------------------------------------------------------------- 1 | You can set the default radius with this command if you insert numeric value after this word: 2 | 3 | Examples: 4 | --------------- 5 | radius:3 6 | radius:5 7 | radius:10 8 | radius:50 9 | 10 | The numeric value after the radius is the distance from you in kilometers. 11 | The accepted maximum radius value is 10000 (kilometers) 12 | 13 | Remove your personal radius settings: 14 | radius:reset 15 | 16 | Show all your current settings: 17 | setting:show 18 | 19 | Please use /help if you need more information. -------------------------------------------------------------------------------- /telegram/radius_it: -------------------------------------------------------------------------------- 1 | È possibile impostare un raggio (radius) in km per i quali richiedere i dati 2 | 3 | Esempio: 4 | --------------- 5 | radius:3 6 | radius:5 7 | radius:10 8 | radius:50 9 | 10 | Il numero che segue il comando radius è il raggio di azione definito in chilometri intorno alla 📎 -> Posizione inviata. 11 | 12 | Il raggio massimo accettato è di 10000 km 13 | 14 | Per cancellare le impostazioni di radius: 15 | radius:reset 16 | 17 | Mostra tutte le impostazioni: 18 | setting:show 19 | 20 | Con /help troverai maggiori delucidazioni -------------------------------------------------------------------------------- /telegram/returndata_it: -------------------------------------------------------------------------------- 1 | Per ottimizzare la visualizzazione sugli schermi è possibile impostare il numero di risposte (returndata): 2 | 3 | Examples: 4 | --------------- 5 | returndata:3 6 | returndata:5 7 | returndata:10 8 | returndata:15 9 | 10 | Il numero massimo di risposte visualizzabili è 15. 11 | 12 | 13 | Per azzerare le impostazioni di returndata: 14 | returndata:reset 15 | 16 | Mostra tutte le impostazioni: 17 | setting:show 18 | 19 | Con /help troverai maggiori delucidazioni -------------------------------------------------------------------------------- /telegram/setting: -------------------------------------------------------------------------------- 1 | After the word 'setting' you have two valid values: 2 | 3 | --------------- 4 | setting:show - show all your personal settigs 5 | setting:reset - delete all your personal settings 6 | 7 | Please use /help if you need more information. -------------------------------------------------------------------------------- /telegram/setting_it: -------------------------------------------------------------------------------- 1 | Il comando ‘settings’ accetta due valori: 2 | 3 | --------------- 4 | setting:show - mostra tutte le impostazioni 5 | setting:reset - azzera/cancella tutte le impostazioni 6 | 7 | Con /help troverai maggiori delucidazioni -------------------------------------------------------------------------------- /telegram/start: -------------------------------------------------------------------------------- 1 | This is telegram bot of Mappiamo 2 | http://www.mappiamo.org 3 | 4 | Please send /help or /about command to bot. -------------------------------------------------------------------------------- /telegram/start_it: -------------------------------------------------------------------------------- 1 | Questo è il bot Telegram di #mappiamo 2 | http://www.mappiamo.org 3 | 4 | Prego inviare il comando /help o /about al bot. -------------------------------------------------------------------------------- /telegram/system/accept_integer: -------------------------------------------------------------------------------- 1 | This setting need integer value, no other data type (for example letters) accepted. -------------------------------------------------------------------------------- /telegram/system/accept_integer_it: -------------------------------------------------------------------------------- 1 | Questa impostazione richiede valori interi e non accetta altri caratteri (ad es. lettere). -------------------------------------------------------------------------------- /telegram/system/category_count: -------------------------------------------------------------------------------- 1 | [CAT_COUNT] categories found in this database: 2 | 3 | -------------------------------------------------------------------------------- /telegram/system/category_count_it: -------------------------------------------------------------------------------- 1 | [CAT_COUNT] categorie trovate in questo database: 2 | 3 | -------------------------------------------------------------------------------- /telegram/system/category_missing: -------------------------------------------------------------------------------- 1 | No categories found in current database. -------------------------------------------------------------------------------- /telegram/system/category_missing_it: -------------------------------------------------------------------------------- 1 | Nessuna categoria trovata in questo database. -------------------------------------------------------------------------------- /telegram/system/current_setting: -------------------------------------------------------------------------------- 1 | Your current saved settings: 2 | ---------------------------- 3 | [FILTER_LIST] -------------------------------------------------------------------------------- /telegram/system/current_setting_it: -------------------------------------------------------------------------------- 1 | Le tue impostazioni salvate: 2 | ---------------------------- 3 | [FILTER_LIST] -------------------------------------------------------------------------------- /telegram/system/database_error: -------------------------------------------------------------------------------- 1 | Database error. Cannot read records. -------------------------------------------------------------------------------- /telegram/system/database_error_it: -------------------------------------------------------------------------------- 1 | Errore. Non posso leggere i dati. -------------------------------------------------------------------------------- /telegram/system/default: -------------------------------------------------------------------------------- 1 | Unknown error. Please contact with developer. -------------------------------------------------------------------------------- /telegram/system/default_it: -------------------------------------------------------------------------------- 1 | Errore sconosciuto. Contattate lo sviluppatore hello@mappiamo.com -------------------------------------------------------------------------------- /telegram/system/filter_cancelled: -------------------------------------------------------------------------------- 1 | No data in this database with this filter. Filter settings ignored -------------------------------------------------------------------------------- /telegram/system/filter_cancelled_it: -------------------------------------------------------------------------------- 1 | Non ci sono dati per questo filtro. Impostazione filtro ignorata. -------------------------------------------------------------------------------- /telegram/system/filter_saved: -------------------------------------------------------------------------------- 1 | Valid filter received and saved. 2 | [RECORDS] data found in the database with this one filter without location data. 3 | 4 | Send your current location and check your current radius and all filters to get filtered data from database. 5 | -------------------------------------------------------------------------------- /telegram/system/filter_saved_detailed: -------------------------------------------------------------------------------- 1 | Valid filter received and saved. 2 | [RECORDS] data found in the database with this one filter without location data. 3 | ------------------------------- 4 | You have previously saved filters: 5 | [SAVEDFILTERS] 6 | ------------------------------- 7 | With all your new filters we have [FILTERED] records without location: 8 | [STRINGTOSAVE] 9 | 10 | Send your current location and check your current radius and all filters to get filtered data from database. 11 | -------------------------------------------------------------------------------- /telegram/system/filter_saved_detailed_it: -------------------------------------------------------------------------------- 1 | 2 | Impostazione filtro valida e salvata. 3 | [RECORDS] dati trovati nel database con il filtro senza l’invio della Posizione. 4 | ------------------------------- 5 | Ci sono filtri precedentemente salvati: 6 | [SAVEDFILTERS] 7 | ------------------------------- 8 | Con i nuovi filtri, senza localizzarti, hai a disposizione [FILTERED] record: 9 | [STRINGTOSAVE] 10 | 11 | Per ottenere i dati dal servizio secondo i filtri impostati invia tramite 📎 -> Posizione 12 | -------------------------------------------------------------------------------- /telegram/system/filter_saved_it: -------------------------------------------------------------------------------- 1 | Impostazione filtro valida e salvata. 2 | [RECORDS] dati trovati nel database con il filtro senza l’invio della Posizione. 3 | 4 | Per ottenere i dati dal servizio secondo i filtri impostati invia tramite 📎 -> Posizione 5 | -------------------------------------------------------------------------------- /telegram/system/invalid_command: -------------------------------------------------------------------------------- 1 | Invalid command or message. Please use /help -------------------------------------------------------------------------------- /telegram/system/invalid_command_it: -------------------------------------------------------------------------------- 1 | Comando o messaggio non valido. Per favore consulta /help -------------------------------------------------------------------------------- /telegram/system/invalid_queue: -------------------------------------------------------------------------------- 1 | Invalid search queue. Maybe contains invalid character or the search string is too short. -------------------------------------------------------------------------------- /telegram/system/invalid_queue_it: -------------------------------------------------------------------------------- 1 | Ricerca non valida. Potrebbe contenere caratteri non validi o la ricerca è troppo corta. -------------------------------------------------------------------------------- /telegram/system/location_deleted: -------------------------------------------------------------------------------- 1 | Your previous location setting was deleted. If you want to use your current position for filtering search results by distance, use 📎 sign on Telegram. -------------------------------------------------------------------------------- /telegram/system/location_deleted_it: -------------------------------------------------------------------------------- 1 | La tua precedente posizione è stata cancellata. Se desideri usare la tua posizione attuale per filtrare i risultati invialo tramite 📎 -> Posizione -------------------------------------------------------------------------------- /telegram/system/location_info: -------------------------------------------------------------------------------- 1 | 2 | You have saved location. 3 | The search result will be filtered to your current location with radius: [RADIUS] km and all saved filters. 4 | -------------------------------------------------------------------------------- /telegram/system/location_info_it: -------------------------------------------------------------------------------- 1 | 2 | Hai la Posizione salvata. 3 | I risultati di ricerca saranno mostrati in base ai filtri impostati e alla tua posizione con raggio di [RADIUS] km. -------------------------------------------------------------------------------- /telegram/system/location_missing: -------------------------------------------------------------------------------- 1 | 2 | You have no saved location yet. Please use location service first. 3 | The search result not filtered to your current location: 4 | -------------------------------------------------------------------------------- /telegram/system/location_missing_it: -------------------------------------------------------------------------------- 1 | 2 | Non hai inviato la tua posizione. Per inviare la tua posizione usa 📎 -> Posizione 3 | I risultati non saranno mostrati secondo la Posizione: 4 | -------------------------------------------------------------------------------- /telegram/system/location_notsaved: -------------------------------------------------------------------------------- 1 | You have no saved location. Send it to the bot by Telegram using 📎 sign. -------------------------------------------------------------------------------- /telegram/system/location_notsaved_it: -------------------------------------------------------------------------------- 1 | Non hai inviato la tua Posizione. Invialo tramite 📎 -> Posizione 2 | -------------------------------------------------------------------------------- /telegram/system/no_result: -------------------------------------------------------------------------------- 1 | We cannot send result with these settings and filters. Use another keyword or delete something from filters, increase the current radius, or reset saved location. -------------------------------------------------------------------------------- /telegram/system/no_result_it: -------------------------------------------------------------------------------- 1 | Non possiamo fornire risultati con queste impostazioni. Si prega di scegliere altre parole chiavi o azzerare alcuni filtri, aumentare il raggio o cancellate la posizione precedentemente impostata. -------------------------------------------------------------------------------- /telegram/system/no_return: -------------------------------------------------------------------------------- 1 | No return data with this radius ([RADIUS] kilometers) from you. Delete some of filters or increase current radius. -------------------------------------------------------------------------------- /telegram/system/no_return_it: -------------------------------------------------------------------------------- 1 | Non ci sono dati nel raggio di ([RADIUS] chilometri) da te. Azzera qualche filtro o incrementa il raggio con il comando /radius. -------------------------------------------------------------------------------- /telegram/system/no_saved_setting: -------------------------------------------------------------------------------- 1 | You have no saved settings yet. -------------------------------------------------------------------------------- /telegram/system/no_saved_setting_it: -------------------------------------------------------------------------------- 1 | Non hai alcuna impostazione salvata. -------------------------------------------------------------------------------- /telegram/system/records_show: -------------------------------------------------------------------------------- 1 | [REC_COUNT] records detected within [RADIUS] km radius from you: 2 | 3 | [REC_CONTENT] -------------------------------------------------------------------------------- /telegram/system/records_show_it: -------------------------------------------------------------------------------- 1 | [REC_COUNT] record individuati nel raggio di [RADIUS] km: 2 | 3 | [REC_CONTENT] -------------------------------------------------------------------------------- /telegram/system/search_count: -------------------------------------------------------------------------------- 1 | You started search process by keywords... 2 | We have [SEARCH_COUNT] search result in the database without location filter. 3 | -------------------------------------------------------------------------------- /telegram/system/search_count_it: -------------------------------------------------------------------------------- 1 | Hai iniziato la ricerca con… 2 | Senza il filtro della posizione abbiamo [SEARCH_COUNT] risultati nel database. 3 | -------------------------------------------------------------------------------- /telegram/system/search_current: -------------------------------------------------------------------------------- 1 | With your current saved settings we have [SEARCH_COUNT] results. 2 | -------------------------------------------------------------------------------- /telegram/system/search_current_it: -------------------------------------------------------------------------------- 1 | Con le impostazioni correnti abbiamo [SEARCH_COUNT] risultati. 2 | -------------------------------------------------------------------------------- /telegram/system/search_current_null: -------------------------------------------------------------------------------- 1 | 2 | We have no result using your current search query and saved filters. Please use less keywords or reset settings. -------------------------------------------------------------------------------- /telegram/system/search_current_null_it: -------------------------------------------------------------------------------- 1 | 2 | Non abbiamo risultati con la attuali impostazioni. Si prega di ridurre le parole chiavi o azzerare alcuni filtri. -------------------------------------------------------------------------------- /telegram/system/search_invalid: -------------------------------------------------------------------------------- 1 | Search query is invalid. Please use /help command. -------------------------------------------------------------------------------- /telegram/system/search_invalid_it: -------------------------------------------------------------------------------- 1 | La richiesta non è valida. Si prega di usare /help -------------------------------------------------------------------------------- /telegram/system/search_null: -------------------------------------------------------------------------------- 1 | 2 | We have no result data with your current search query. Please use less keywords. -------------------------------------------------------------------------------- /telegram/system/search_null_it: -------------------------------------------------------------------------------- 1 | 2 | Non abbiamo risultati con la ricerca corrente. Si prega di usare altre parole chiavi. -------------------------------------------------------------------------------- /telegram/system/setting_deleted: -------------------------------------------------------------------------------- 1 | All your saved settings deleted. Result will use default values. -------------------------------------------------------------------------------- /telegram/system/setting_deleted_it: -------------------------------------------------------------------------------- 1 | Tutte le personalizzazioni sono state eliminate e riportate alle impostazioni di base. -------------------------------------------------------------------------------- /telegram/system/setting_first: -------------------------------------------------------------------------------- 1 | New valid setting received and saved: [COMMAND] 2 | 3 | Send your current location by 📎 sign, check your current radius and all other filters to get filtered data from database. 4 | -------------------------------------------------------------------------------- /telegram/system/setting_first_it: -------------------------------------------------------------------------------- 1 | Nuove impostazioni salvate: [COMMAND] 2 | 3 | Invia la tua 📎 -> Posizione corrente e verifica le impostazioni attuali /setting:show per ottenere i risultati desiderati. 4 | -------------------------------------------------------------------------------- /telegram/system/setting_invalid: -------------------------------------------------------------------------------- 1 | This command: [COMMAND] currently not valid. 2 | Maybe you have no current settings. -------------------------------------------------------------------------------- /telegram/system/setting_invalid_it: -------------------------------------------------------------------------------- 1 | Questo comando: [COMMAND] non è valido. 2 | Forse le tue impostazioni non ne permettono l’uso. -------------------------------------------------------------------------------- /telegram/system/setting_received: -------------------------------------------------------------------------------- 1 | New valid setting received and saved: [COMMAND] 2 | 3 | Send location data to apply new filters listed below. 4 | 5 | Your current settings: 6 | ---------------------- 7 | [SETTINGS] 8 | 9 | Send your current location by 📎 sign, check your current radius and all other filters to get filtered data from database. 10 | -------------------------------------------------------------------------------- /telegram/system/setting_received_it: -------------------------------------------------------------------------------- 1 | Nuove impostazioni salvate: [COMMAND] 2 | 3 | Invia la tua posizione per applicare i filtri mostrati di seguito. 4 | 5 | Impostazioni attuali: 6 | ---------------------- 7 | [SETTINGS] 8 | 9 | Invia la tua 📎 -> Posizione corrente e verifica le impostazioni attuali /setting:show per ottenere i risultati desiderati. 10 | -------------------------------------------------------------------------------- /telegram/type: -------------------------------------------------------------------------------- 1 | You can set the default content type with this command if you insert type after this word: 2 | 3 | Examples: 4 | --------------- 5 | type:place 6 | type:event 7 | type:post 8 | type:route 9 | 10 | Remove your personal type settings: 11 | type:reset 12 | 13 | Show all your current settings: 14 | setting:show 15 | 16 | Please use /help if you need more information. -------------------------------------------------------------------------------- /telegram/type_it: -------------------------------------------------------------------------------- 1 | I type dei contenuti di #mappiamo sono i seguenti: 2 | 3 | Examples: 4 | --------------- 5 | type:place 6 | type:event 7 | type:post 8 | type:route 9 | 10 | Azzera le impostazioni 11 | type:reset 12 | 13 | Mostra le impostazioni 14 | setting:show 15 | 16 | Con /help troverai maggiori delucidazioni -------------------------------------------------------------------------------- /templates/mappiamo/foot.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /templates/mappiamo/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/templates/mappiamo/images/banner.jpg -------------------------------------------------------------------------------- /templates/mappiamo/images/feed16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/templates/mappiamo/images/feed16px.png -------------------------------------------------------------------------------- /templates/mappiamo/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/templates/mappiamo/images/logo.png -------------------------------------------------------------------------------- /templates/mappiamo/mappiamo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/templates/mappiamo/mappiamo.jpg -------------------------------------------------------------------------------- /templates/mappiamo/mappiamo.md: -------------------------------------------------------------------------------- 1 | #Mappiamo template 2 | 3 | ##0.0.6 4 | 5 | Default frontend template for the #mappiamo CMS -------------------------------------------------------------------------------- /templates/mappiamo/register.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 12 | 13 |
14 | content; ?> 15 | 16 |
17 |
18 | 19 | -------------------------------------------------------------------------------- /widgets/address/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #Address 6 | ##0.0.6 7 | 8 | Widget name: Address 9 | Usage code example: 10 | 11 | ## 12 | 13 | 14 | This widget have no parameters, creating search box for map, the widget centering map for the search address. 15 | The search string must be real name (for example city name) to get real latitude and longitude. -------------------------------------------------------------------------------- /widgets/address/address.md: -------------------------------------------------------------------------------- 1 | #Address widget 2 | 3 | ##0.0.6 4 | 5 | Address widget -------------------------------------------------------------------------------- /widgets/booking/booking.md: -------------------------------------------------------------------------------- 1 | #Booking widget 2 | 3 | ##0.0.6 4 | 5 | Booking widget -------------------------------------------------------------------------------- /widgets/booking/lang/en.ini: -------------------------------------------------------------------------------- 1 | Hotel booking=Hotel booking 2 | Check in:=Check in: 3 | Check out:=Check out: 4 | Person (>12 yo):=Person (>12 yo): 5 | Children (<12 yo):=Children (<12 yo): 6 | Check free room=Check free room -------------------------------------------------------------------------------- /widgets/booking/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/booking/star.png -------------------------------------------------------------------------------- /widgets/bottommenu/bottommenu.md: -------------------------------------------------------------------------------- 1 | #BottomMenu 2 | 3 | ##0.0.6 4 | 5 | Display bottom menu items -------------------------------------------------------------------------------- /widgets/bottommenu/lang/fr.ini: -------------------------------------------------------------------------------- 1 | Contact Us=Contactez-nous 2 | Legal Notes=Informations légales 3 | motoguzzi.com=MotoGuzzi.fr 4 | Recall campaigns=Campagne de rappel -------------------------------------------------------------------------------- /widgets/bottommenu/lang/hu.ini: -------------------------------------------------------------------------------- 1 | Contact Us=Kapcsolat 2 | Legal Notes=Jogi tudnivalók 3 | motoguzzi.com=MotoGuzzi.hu 4 | Recall campaigns=Visszahívási akciók -------------------------------------------------------------------------------- /widgets/bottommenu/lang/it.ini: -------------------------------------------------------------------------------- 1 | Contact Us=Contattaci 2 | Legal Notes=Note legali 3 | motoguzzi.com=MotoGuzzi.it 4 | Recall campaigns=Campagne di richiamo -------------------------------------------------------------------------------- /widgets/bottommenu/lang/si.ini: -------------------------------------------------------------------------------- 1 | Contact Us=Kontakt 2 | Legal Notes=Pravna obvestila 3 | motoguzzi.com=MotoGuzzi.si 4 | Recall campaigns=Nazaj poklicati -------------------------------------------------------------------------------- /widgets/bottommenu/lang/sr.ini: -------------------------------------------------------------------------------- 1 | Contact Us=Kontaktirajte nas 2 | Legal Notes=Pravne napomene 3 | motoguzzi.com=MotoGuzzi.com 4 | Recall campaigns=Opoziv -------------------------------------------------------------------------------- /widgets/box/box.md: -------------------------------------------------------------------------------- 1 | #Box widget 2 | 3 | ##0.0.6 4 | 5 | Box widget to display image links -------------------------------------------------------------------------------- /widgets/box_allmeta/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #box_allmeta 6 | ##0.0.6 7 | 8 | Widget name: box_allmeta 9 | Usage code example: 10 | 11 | ## widget('box_allmeta'); ?> 12 | 13 | This widget have no parameters, creating list (table) of all meta data of content. 14 | This widget is ideal for right column. The disabled meta names is on the row 13 on the code. -------------------------------------------------------------------------------- /widgets/box_allmeta/box_allmeta.md: -------------------------------------------------------------------------------- 1 | #Box Allmeta widget 2 | 3 | ##0.0.6 4 | 5 | Box Allmeta widget to display meta data -------------------------------------------------------------------------------- /widgets/box_collabrators/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #box_collabrators 6 | ##0.0.6 7 | 8 | Widget name: box_collabrators 9 | Usage code example: 10 | 11 | ## widget('box_collabrators' array(n)); ?> 12 | 13 | This widget have one parameters "n", what is the maximum number of collabotators article based on the selected content. 14 | The collaborator's e-mail must be saved to the meta value with name "collaborator". -------------------------------------------------------------------------------- /widgets/box_collabrators/box_collabrators.md: -------------------------------------------------------------------------------- 1 | #Box Collaborator widget 2 | 3 | ##0.0.6 4 | 5 | Box Collaborator widget to display collaborators articles -------------------------------------------------------------------------------- /widgets/box_cookie/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #box_cookie 6 | ##0.0.6 7 | 8 | Widget name: box_cookie 9 | Usage code example: 10 | 11 | ## widget('box_cookie'); ?> 12 | 13 | This widget have no parameters, creating alert for cookie usage. -------------------------------------------------------------------------------- /widgets/box_cookie/ajax/check_cookie.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /widgets/box_cookie/box_cookie.md: -------------------------------------------------------------------------------- 1 | #Cookie widget 2 | 3 | ##0.0.6 4 | 5 | Cookei widget to display cookei accept box -------------------------------------------------------------------------------- /widgets/box_distance/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #box_distance 6 | ##0.0.6 7 | 8 | Widget name: box_distance 9 | Usage code example: 10 | 11 | ## widget('box_distance'); ?> 12 | 13 | This widget have no parameters, creating list (table) of related articles not far from the current content. 14 | The distance is fixed on code, the radius is 1 km. -------------------------------------------------------------------------------- /widgets/box_distance/box_distance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/box_distance/box_distance.md -------------------------------------------------------------------------------- /widgets/box_events/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #box_events 6 | ##0.0.6 7 | 8 | Widget name: box_events 9 | Usage code example: 10 | 11 | ## widget('box_events'); ?> 12 | 13 | This widget have no parameters, creating list (table) of events not far from the current content. 14 | The distance is fixed on code, the radius is 1 km. -------------------------------------------------------------------------------- /widgets/box_events/box_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/box_events/box_events.md -------------------------------------------------------------------------------- /widgets/box_gpsbooking/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #box_gpsbooking 6 | ##0.0.6 7 | 8 | Widget name: box_gpsbooking 9 | Usage code example: 10 | 11 | ## widget('box_gpsbooking'); ?> 12 | 13 | This widget have no parameters, creating list (table) of events not far from the current content. 14 | The distance is fixed on code, the radius is 1 km. -------------------------------------------------------------------------------- /widgets/box_gpsbooking/box_gpsbooking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/box_gpsbooking/box_gpsbooking.md -------------------------------------------------------------------------------- /widgets/box_instagram/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #box_instagram 6 | ##0.0.6 7 | 8 | Widget name: box_instagram 9 | Usage code example: 10 | 11 | ## widget('box_instagram', NULL); ?> 12 | 13 | This widget have one parameter what is the hashtag for images. 14 | If this parameter missing or NULL, the default hashtag is 'tourism'. 15 | With meta name 'hashtag-instagram' can be overwite the deafult hashtag to anything else. -------------------------------------------------------------------------------- /widgets/box_instagram/box_instagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/box_instagram/box_instagram.md -------------------------------------------------------------------------------- /widgets/box_onemeta/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #box_onemeta 6 | ##0.0.6 7 | 8 | Widget name: box_onemeta 9 | Usage code example: 10 | 11 | ##widget('box_onemeta', '[meta_name]'); ?> 12 | 13 | This widget have one parameter what is the meta name to get the value of only oane meta data. 14 | This widget can be used on the column of main content. -------------------------------------------------------------------------------- /widgets/box_onemeta/box_onemeta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/box_onemeta/box_onemeta.md -------------------------------------------------------------------------------- /widgets/box_youtube/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #box_youtube 6 | ##0.0.6 7 | 8 | Widget name: box_youtube 9 | Usage code example: 10 | 11 | ## widget('box_youtube', array('[developer key]', '[channel id]', [maximum content])); ?> 12 | 13 | This widget have 3 parameters. Developer key, youtube channel id, and the maximum number of youtube content. 14 | This widget can be inserted to the left column, and creating scrollable carousel of selected channel content. -------------------------------------------------------------------------------- /widgets/box_youtube/box_youtube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/box_youtube/box_youtube.md -------------------------------------------------------------------------------- /widgets/breadcrumbs/breadcrumbs.md: -------------------------------------------------------------------------------- 1 | #Breadcrumbs 2 | 3 | ##0.0.6 4 | 5 | Display breadcrumbs -------------------------------------------------------------------------------- /widgets/category_list/category_list.md: -------------------------------------------------------------------------------- 1 | #Offers 2 | 3 | ##0.0.6 4 | 5 | Display special offers -------------------------------------------------------------------------------- /widgets/content/content.md: -------------------------------------------------------------------------------- 1 | #Content widget 2 | 3 | ##0.0.6 4 | 5 | Display content in a widget -------------------------------------------------------------------------------- /widgets/content_allmeta/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #content_allmeta 6 | ##0.0.6 7 | 8 | Widget name: content_allmeta 9 | Usage code example: 10 | 11 | ## widget('content_allmeta'); ?> 12 | 13 | This widget have no parameters, creating list (table) of meta data from the current content. 14 | This widget created for vretaing list or table of standard schemantic data if available. -------------------------------------------------------------------------------- /widgets/content_allmeta/content_allmeta.md: -------------------------------------------------------------------------------- 1 | #Content allmeta widget 2 | 3 | ##0.0.6 4 | 5 | Content Allmeta widget to display meta data on content column -------------------------------------------------------------------------------- /widgets/content_headline/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #content_headline 6 | ##0.0.6 7 | 8 | Widget name: content_headline 9 | Usage code example: 10 | 11 | ## widget('content_headline'); ?> 12 | 13 | This widget have no parameters, creating group of some data and metadata which are rewuired on content column between title and content text. -------------------------------------------------------------------------------- /widgets/content_headline/content_headline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/content_headline/content_headline.md -------------------------------------------------------------------------------- /widgets/content_image/content_image.md: -------------------------------------------------------------------------------- 1 | #Content Image widget 2 | 3 | ##0.0.6 4 | 5 | Display content image in a widget -------------------------------------------------------------------------------- /widgets/content_market/content_market.md: -------------------------------------------------------------------------------- 1 | #Content market widget 2 | 3 | ##0.0.6 4 | 5 | Display content short text in a widget -------------------------------------------------------------------------------- /widgets/content_slideshow/content_slideshow.md: -------------------------------------------------------------------------------- 1 | #Content slideshow widget 2 | 3 | ##0.0.6 4 | 5 | Display an image slideshow in a widget for the content -------------------------------------------------------------------------------- /widgets/disqus/disqus.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #disqus 6 | ##0.0.6 7 | 8 | Widget name: disqus 9 | Usage code example: 10 | 11 | ## $Types = array('post', 'event'); 12 | ## 13 | 14 | This widget have no parameter as array. Creating comment section on content page. 15 | Disqus account and disqus site name required for preferences. The parameter contains types where the disqus available. -------------------------------------------------------------------------------- /widgets/dividedmenu/dividedmenu.md: -------------------------------------------------------------------------------- 1 | #DividedMenu 2 | 3 | ##0.0.6 4 | 5 | Display divided menu items -------------------------------------------------------------------------------- /widgets/dividedmenu/lang/en.ini: -------------------------------------------------------------------------------- 1 | Associarsi=MEMBERS 2 | Chi siamo=ABOUT US 3 | Eventi=EVENTS 4 | Attivita'=ACTIVITY -------------------------------------------------------------------------------- /widgets/dividedmenu/lang/it.ini: -------------------------------------------------------------------------------- 1 | Associarsi=ASSOCIARSI 2 | Chi siamo=CHI SIAMO 3 | Eventi=EVENTI 4 | Attivita'=ATTIVITA' -------------------------------------------------------------------------------- /widgets/dropdownmenu/dropdownmenu.md: -------------------------------------------------------------------------------- 1 | #DropdownMenu 2 | 3 | ##0.0.6 4 | 5 | Display dropdown menu items 6 | -------------------------------------------------------------------------------- /widgets/dropdownmenu/lang/en.ini: -------------------------------------------------------------------------------- 1 | Quota sociale=Join us 2 | Convenzioni=Conventions 3 | Regolamento soci e club=Rules for club and members 4 | Chi siamo=About us 5 | Trofeo Moto Guzzi=Moto Guzzi Trophy 6 | Mondo Moto Guzzi=Mondo Moto Guzzi 7 | Eventi di Prodotto=Product events 8 | Eventi di Club=Club events 9 | Dona Guzzi=Donna Guzzi 10 | Attivita'=Soccorso Aquila -------------------------------------------------------------------------------- /widgets/dropdownmenu/lang/it.ini: -------------------------------------------------------------------------------- 1 | Quota sociale=Quota sociale 2 | Convenzioni=Convenzioni 3 | Regolamento soci e club=Regolamento soci e club 4 | Chi siamo=Chi siamo 5 | Trofeo Moto Guzzi=Trofeo Moto Guzzi 6 | Mondo Moto Guzzi=Mondo Moto Guzzi 7 | Eventi di Prodotto=Eventi di Prodotto 8 | Eventi di Club=Eventi di Club 9 | Donna Guzzi=Donna Guzzi 10 | Attivita'=Soccorso Aquila -------------------------------------------------------------------------------- /widgets/events/events.md: -------------------------------------------------------------------------------- 1 | #Events 2 | 3 | ##0.0.6 4 | 5 | Display upcoming events -------------------------------------------------------------------------------- /widgets/flickr/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #flickr 6 | ##0.0.6 7 | 8 | Widget name: flickr 9 | Usage code example: 10 | 11 | ## widget('flickr'); ?> 12 | 13 | This widget have no parameters, creating flickr image groups on the map by visible box of map. -------------------------------------------------------------------------------- /widgets/flickr/flickr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/flickr/flickr.md -------------------------------------------------------------------------------- /widgets/form_contact/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #form_contact 6 | ##0.0.6 7 | 8 | Widget name: form_contact 9 | Usage code example: 10 | 11 | ## widget('form_contact', array('[registered username]')); ?> 12 | 13 | This widget have one parameter, the parameter must be the username of registered Mappiamo user. 14 | This widget creating form with input fileds for sending simple message with server side validation. -------------------------------------------------------------------------------- /widgets/form_contact/form_contact.md: -------------------------------------------------------------------------------- 1 | #Form contact widget 2 | 3 | ##0.0.6 4 | 5 | Form contact widget send message to the owner -------------------------------------------------------------------------------- /widgets/gravatar/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #gravatar 6 | ##0.0.6 7 | 8 | Widget name: gravatar 9 | Usage code example: 10 | 11 | ## 12 | 13 | This widget included to the content module, cannot use on the template or view. 14 | The widget fetting gravatar icon by the user's e-mail address, if the user registered on this service. -------------------------------------------------------------------------------- /widgets/gravatar/gravatar.md: -------------------------------------------------------------------------------- 1 | #Gravatar widget 2 | 3 | ##0.0.6 4 | 5 | Gravatar widget -------------------------------------------------------------------------------- /widgets/gravatar/gravatar.php: -------------------------------------------------------------------------------- 1 | widget('jplayer'); ?> 12 | 13 | This widget have no parameters, creating javascript player for audio (or video) content. 14 | The required meta name is 'audio' and the meta value must be the full url of audio or video file. -------------------------------------------------------------------------------- /widgets/jplayer/dist/jplayer/jquery.jplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/jplayer/dist/jplayer/jquery.jplayer.swf -------------------------------------------------------------------------------- /widgets/jplayer/dist/skin/blue.monday/image/jplayer.blue.monday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/jplayer/dist/skin/blue.monday/image/jplayer.blue.monday.jpg -------------------------------------------------------------------------------- /widgets/jplayer/dist/skin/blue.monday/image/jplayer.blue.monday.seeking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/jplayer/dist/skin/blue.monday/image/jplayer.blue.monday.seeking.gif -------------------------------------------------------------------------------- /widgets/jplayer/dist/skin/blue.monday/image/jplayer.blue.monday.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/jplayer/dist/skin/blue.monday/image/jplayer.blue.monday.video.play.png -------------------------------------------------------------------------------- /widgets/jplayer/dist/skin/pink.flag/image/jplayer.pink.flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/jplayer/dist/skin/pink.flag/image/jplayer.pink.flag.jpg -------------------------------------------------------------------------------- /widgets/jplayer/dist/skin/pink.flag/image/jplayer.pink.flag.seeking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/jplayer/dist/skin/pink.flag/image/jplayer.pink.flag.seeking.gif -------------------------------------------------------------------------------- /widgets/jplayer/dist/skin/pink.flag/image/jplayer.pink.flag.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/jplayer/dist/skin/pink.flag/image/jplayer.pink.flag.video.play.png -------------------------------------------------------------------------------- /widgets/jplayer/jplayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/jplayer/jplayer.md -------------------------------------------------------------------------------- /widgets/language_switch/language_switch.md: -------------------------------------------------------------------------------- 1 | #Language switch widget 2 | 3 | ##0.0.6 4 | 5 | Display language switch box in widget -------------------------------------------------------------------------------- /widgets/lastcontent/lastcontent.md: -------------------------------------------------------------------------------- 1 | #Lastcontent widget 2 | 3 | ##0.0.6 4 | 5 | Lastcontent widget to display last modified content list -------------------------------------------------------------------------------- /widgets/leaflet_panel/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #leaflet_panel 6 | ##0.0.6 7 | 8 | Widget name: leaflet_panel 9 | Usage code example: 10 | 11 | ## widget('leaflet_panel'); ?> 12 | 13 | This widget have no parameters, creating four icons on the map for search box and menus. 14 | This custom project widget without setup or parameters. -------------------------------------------------------------------------------- /widgets/leaflet_panel/leaflet_panel.md: -------------------------------------------------------------------------------- 1 | #Leaflet Panel widget 2 | 3 | ##0.0.6 4 | 5 | Leaflet Panel widget to display custom menus on the map -------------------------------------------------------------------------------- /widgets/leaflet_panel/model/layermodels.php: -------------------------------------------------------------------------------- 1 | select('name')->where('manager', 0)->where('enabled', 1)->where('default_template', 1)->find_array(); 7 | return $TemplateName[0]['name']; 8 | } 9 | 10 | } -------------------------------------------------------------------------------- /widgets/licence/icons/cc-by-sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/licence/icons/cc-by-sa.png -------------------------------------------------------------------------------- /widgets/licence/icons/cc-by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/licence/icons/cc-by.png -------------------------------------------------------------------------------- /widgets/licence/icons/cc0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/licence/icons/cc0.png -------------------------------------------------------------------------------- /widgets/licence/icons/copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/licence/icons/copyright.png -------------------------------------------------------------------------------- /widgets/licence/icons/iodlv2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/licence/icons/iodlv2.0.png -------------------------------------------------------------------------------- /widgets/licence/icons/odbl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/licence/icons/odbl.png -------------------------------------------------------------------------------- /widgets/licence/licence.md: -------------------------------------------------------------------------------- 1 | #Licence widget 2 | 3 | ##0.0.6 4 | 5 | Licence widget -------------------------------------------------------------------------------- /widgets/map/map.md: -------------------------------------------------------------------------------- 1 | #Map Widget 2 | 3 | ##0.0.6 4 | 5 | Display a map widget -------------------------------------------------------------------------------- /widgets/mapGPSBooking/mapGPSBooking.md: -------------------------------------------------------------------------------- 1 | #mapGPSBooking widget 2 | 3 | ##0.0.6 4 | 5 | mapGPSBooking widget -------------------------------------------------------------------------------- /widgets/menu/menu.md: -------------------------------------------------------------------------------- 1 | #Menu 2 | 3 | ##0.0.6 4 | 5 | Display menu items -------------------------------------------------------------------------------- /widgets/menu_full/menu_full.md: -------------------------------------------------------------------------------- 1 | #Full menu 2 | 3 | ##0.0.6 4 | 5 | Menu full widget to display configurable menus -------------------------------------------------------------------------------- /widgets/owl_image/owl_image.md: -------------------------------------------------------------------------------- 1 | #OWL Image widget 2 | 3 | ##0.0.6 4 | 5 | OWL Image widget to display image carousel -------------------------------------------------------------------------------- /widgets/owl_video/owl_video.md: -------------------------------------------------------------------------------- 1 | #OWL Video widget 2 | 3 | ##0.0.6 4 | 5 | OWL Video widget to display video carousel -------------------------------------------------------------------------------- /widgets/panoramabox/panoramabox.md: -------------------------------------------------------------------------------- 1 | #Panorama box widget 2 | 3 | ##0.0.6 4 | 5 | Display a panorama file in iframe as a widget -------------------------------------------------------------------------------- /widgets/photos/photos.md: -------------------------------------------------------------------------------- 1 | #Photos 2 | 3 | ##0.0.6 4 | 5 | Display content photo thumbnails -------------------------------------------------------------------------------- /widgets/search/search.md: -------------------------------------------------------------------------------- 1 | #Search widget Core 2 | 3 | ##1.0.0 4 | 5 | Search widget Core -------------------------------------------------------------------------------- /widgets/search/search.php: -------------------------------------------------------------------------------- 1 | 6 | 13 | 14 | -------------------------------------------------------------------------------- /widgets/share/share.md: -------------------------------------------------------------------------------- 1 | #Share widget 2 | 3 | ##0.0.6 4 | 5 | Share the content on social networks -------------------------------------------------------------------------------- /widgets/slider/slider.md: -------------------------------------------------------------------------------- 1 | #Slider widget 2 | 3 | ##0.0.6 4 | 5 | HomePage Slider widget -------------------------------------------------------------------------------- /widgets/soccorso/soccorso.md: -------------------------------------------------------------------------------- 1 | #Soccorso widget 2 | 3 | ##0.0.6 4 | 5 | Widget to handle Soccorso Aquila 6 | -------------------------------------------------------------------------------- /widgets/togglemenu/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #togglemenu 6 | ##0.0.6 7 | 8 | Widget name: togglemenu 9 | Usage code example: 10 | 11 | ## widget('togglemenu'); ?> 12 | 13 | This widget created for custom project only. 14 | Display customized menu on the map. 15 | The menu code reads from the template by language setting. -------------------------------------------------------------------------------- /widgets/togglemenu/togglemenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/togglemenu/togglemenu.md -------------------------------------------------------------------------------- /widgets/togglemenu/togglemenu.php: -------------------------------------------------------------------------------- 1 | getLanguage(); 9 | 10 | ?> 11 | 12 |
13 |
14 | 15 | 19 | 20 | 21 |
22 | 23 | -------------------------------------------------------------------------------- /widgets/topmenu/en.ini: -------------------------------------------------------------------------------- 1 | Newsletter=Newsletter 2 | Entra=Sign up -------------------------------------------------------------------------------- /widgets/topmenu/lang/en.ini: -------------------------------------------------------------------------------- 1 | Newsletter=Newsletter 2 | Entra=Sign up -------------------------------------------------------------------------------- /widgets/topmenu/lang/it.ini: -------------------------------------------------------------------------------- 1 | Newsletter=Newsletter 2 | Entra=Entra -------------------------------------------------------------------------------- /widgets/topmenu/topmenu.md: -------------------------------------------------------------------------------- 1 | #TopMenu 2 | 3 | ##0.0.6 4 | 5 | Display top menu items -------------------------------------------------------------------------------- /widgets/videobox/videobox.md: -------------------------------------------------------------------------------- 1 | #Videobox widget 2 | 3 | ##0.0.6 4 | 5 | Display videos in a widget (right now it works with youtube, vimeo and and avi/mp4) -------------------------------------------------------------------------------- /widgets/weather/Readme.md: -------------------------------------------------------------------------------- 1 | © Berross (www.berross.com) 2 | license GPL v2.1 3 | Author Perjés László (perjeslaszlo@gmail.com) 4 | 5 | #weather 6 | ##0.0.6 7 | 8 | Widget name: weather 9 | Usage code example: 10 | 11 | ## widget('weather'); ?> 12 | 13 | This widget have no parameters, creating weather report on the map. -------------------------------------------------------------------------------- /widgets/weather/weather.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mappiamo/mapi-geoCMS/4b12c40465a9afd6ea02e7b4ad5f83406285c7c0/widgets/weather/weather.md -------------------------------------------------------------------------------- /widgets/website_title/website_title.md: -------------------------------------------------------------------------------- 1 | #Website title widget 2 | 3 | ##0.0.6 4 | 5 | Website title widget to display website title -------------------------------------------------------------------------------- /widgets/website_title/website_title.php: -------------------------------------------------------------------------------- 1 | select_many('value')->where('name', 'website_title')->find_one(); 7 | echo $TitleName['value']; 8 | } --------------------------------------------------------------------------------