├── .gitignore ├── .npmignore ├── Gruntfile.js ├── KEYLINES.md ├── LICENSE.txt ├── README.md ├── apps ├── mldbwebtest │ ├── CHANGELOG.mdown │ ├── deploy │ │ ├── app_specific.rb │ │ ├── build.properties │ │ ├── default.properties │ │ ├── dev.properties │ │ ├── lib │ │ │ ├── Help.rb │ │ │ ├── MLClient.rb │ │ │ ├── RoxyHttp.rb │ │ │ ├── depx-0.1 │ │ │ │ ├── LICENSE │ │ │ │ ├── deps │ │ │ │ │ └── xmlcalabash │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── VERSION │ │ │ │ │ │ ├── calabash │ │ │ │ │ │ ├── calabash.bat │ │ │ │ │ │ ├── calabash.jar │ │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── CDDL+GPL.txt │ │ │ │ │ │ ├── GPL.txt │ │ │ │ │ │ ├── notices │ │ │ │ │ │ │ ├── APACHE-CODEC.txt │ │ │ │ │ │ │ ├── APACHE-HTTPCLIENT.txt │ │ │ │ │ │ │ ├── APACHE-IO.txt │ │ │ │ │ │ │ ├── APACHE-LOGGING.txt │ │ │ │ │ │ │ ├── CDDL+GPL.txt │ │ │ │ │ │ │ ├── GPL.txt │ │ │ │ │ │ │ ├── NOTICES │ │ │ │ │ │ │ └── SAXON9HE.txt │ │ │ │ │ │ └── reference │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── default.css │ │ │ │ │ │ │ ├── normalize.css │ │ │ │ │ │ │ ├── pygments.css │ │ │ │ │ │ │ └── xproc.css │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── cover.png │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ ├── depends.png │ │ │ │ │ │ │ ├── down.gif │ │ │ │ │ │ │ ├── home copy.png │ │ │ │ │ │ │ ├── home.png │ │ │ │ │ │ │ ├── next.png │ │ │ │ │ │ │ ├── prev.png │ │ │ │ │ │ │ ├── right.gif │ │ │ │ │ │ │ ├── up.png │ │ │ │ │ │ │ ├── xnext.png │ │ │ │ │ │ │ ├── xprev.png │ │ │ │ │ │ │ └── xup.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── dbmodnizr.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── commons-codec-1.3.jar │ │ │ │ │ │ ├── commons-codec-1.6.jar │ │ │ │ │ │ ├── commons-httpclient-3.1.jar │ │ │ │ │ │ ├── commons-io-1.3.1.jar │ │ │ │ │ │ ├── commons-logging-1.1.1.jar │ │ │ │ │ │ ├── htmlparser-1.3.1.jar │ │ │ │ │ │ ├── isorelax.jar │ │ │ │ │ │ ├── jing.jar │ │ │ │ │ │ ├── msv.jar │ │ │ │ │ │ ├── saxon9he.jar │ │ │ │ │ │ ├── tagsoup-1.2.jar │ │ │ │ │ │ └── xmlresolver.jar │ │ │ │ │ │ ├── library-1.0.xpl │ │ │ │ │ │ ├── recursive-directory-list.xpl │ │ │ │ │ │ ├── schemas │ │ │ │ │ │ └── configuration.rnc │ │ │ │ │ │ └── xpl │ │ │ │ │ │ ├── git-log-summary.xpl │ │ │ │ │ │ └── pipe.xpl │ │ │ │ ├── depx │ │ │ │ ├── depx.bat │ │ │ │ ├── lib │ │ │ │ │ └── depx.xml │ │ │ │ └── libs │ │ │ │ │ └── xproc │ │ │ │ │ ├── depx-prototype.xpl │ │ │ │ │ ├── depx.xpl │ │ │ │ │ └── extension-library.xml │ │ │ ├── framework.rb │ │ │ ├── java │ │ │ │ ├── corb.jar │ │ │ │ ├── marklogic-xcc-5.0.2.jar │ │ │ │ ├── recordloader.jar │ │ │ │ ├── xpp3-1.1.4c.jar │ │ │ │ ├── xqsync.jar │ │ │ │ └── xstream-1.4.2.jar │ │ │ ├── json.rb │ │ │ ├── json │ │ │ │ ├── Array.xpm │ │ │ │ ├── FalseClass.xpm │ │ │ │ ├── Hash.xpm │ │ │ │ ├── Key.xpm │ │ │ │ ├── NilClass.xpm │ │ │ │ ├── Numeric.xpm │ │ │ │ ├── String.xpm │ │ │ │ ├── TrueClass.xpm │ │ │ │ ├── add │ │ │ │ │ ├── core.rb │ │ │ │ │ └── rails.rb │ │ │ │ ├── common.rb │ │ │ │ ├── editor.rb │ │ │ │ ├── ext.rb │ │ │ │ ├── json.xpm │ │ │ │ ├── pure.rb │ │ │ │ ├── pure │ │ │ │ │ ├── generator.rb │ │ │ │ │ └── parser.rb │ │ │ │ └── version.rb │ │ │ ├── ml.rb │ │ │ ├── ml_rest.rb │ │ │ ├── scaffold.rb │ │ │ ├── server_config.rb │ │ │ ├── templates │ │ │ │ ├── controller-function.xqy │ │ │ │ ├── controller.xqy │ │ │ │ ├── layout.html.xqy │ │ │ │ ├── layout.xqy │ │ │ │ ├── model-function.xqy │ │ │ │ ├── model.xqy │ │ │ │ ├── test.xqy │ │ │ │ ├── view.html.xqy │ │ │ │ ├── view.json.xqy │ │ │ │ ├── view.xml.xqy │ │ │ │ └── view.xqy │ │ │ ├── upgrader.rb │ │ │ ├── util.rb │ │ │ ├── xcc.rb │ │ │ └── xquery │ │ │ │ ├── cpf.xqy │ │ │ │ └── setup.xqy │ │ ├── ml-config.xml │ │ ├── sample │ │ │ ├── all.sample.xml │ │ │ ├── build.sample.properties │ │ │ ├── ml-config.sample.xml │ │ │ ├── pipeline-config.sample.xml │ │ │ ├── properties.sample.xml │ │ │ ├── rest-ext.sample.xqy │ │ │ ├── rest-transform.sample.xqy │ │ │ └── rest-transform.sample.xslt │ │ └── test │ │ │ ├── data │ │ │ ├── ml4-config.xml │ │ │ ├── ml4-properties │ │ │ │ ├── build.properties │ │ │ │ └── default.properties │ │ │ ├── ml5-config.xml │ │ │ ├── ml5-properties │ │ │ │ ├── build.properties │ │ │ │ └── default.properties │ │ │ ├── ml6-config.xml │ │ │ └── ml6-properties │ │ │ │ ├── build.properties │ │ │ │ └── default.properties │ │ │ ├── test_main.rb │ │ │ └── test_server_config.rb │ ├── installextensions.sh │ ├── ml │ ├── ml.bat │ ├── rest-api │ │ ├── ext │ │ │ ├── dls.xqy │ │ │ ├── dlsrules.xqy │ │ │ ├── groupby.xqy │ │ │ ├── rdb2rdf.xqy │ │ │ ├── subscribe.xqy │ │ │ ├── triggers.xqy │ │ │ ├── version.xqy │ │ │ ├── whoami.xqy │ │ │ └── workplace.xqy │ │ └── transforms │ │ │ └── xmltohtml.xsl │ ├── src │ │ ├── app │ │ │ ├── config │ │ │ │ └── config.xqy │ │ │ ├── controllers │ │ │ │ ├── appbuilder.xqy │ │ │ │ └── mljstest.xqy │ │ │ ├── models │ │ │ │ ├── lib-thesaurus.xqy │ │ │ │ ├── rdb2rdf-lib.xqy │ │ │ │ ├── search-lib.xqy │ │ │ │ └── sql.xqy │ │ │ └── views │ │ │ │ ├── appbuilder │ │ │ │ └── main.html.xqy │ │ │ │ ├── helpers │ │ │ │ ├── facet-lib.xqy │ │ │ │ ├── form-lib.xqy │ │ │ │ ├── pager-lib.xqy │ │ │ │ └── user-lib.xqy │ │ │ │ ├── layouts │ │ │ │ ├── application.html.xqy │ │ │ │ ├── mljs-one-column-test.html.xqy │ │ │ │ ├── mljs-one-column.html.xqy │ │ │ │ ├── soap.xml.xqy │ │ │ │ ├── three-column.html.xqy │ │ │ │ └── two-column.html.xqy │ │ │ │ └── mljstest │ │ │ │ ├── address.html.xqy │ │ │ │ ├── angular.html.xqy │ │ │ │ ├── charts.html.xqy │ │ │ │ ├── chartsearch.html.xqy │ │ │ │ ├── collectionuris.html.xqy │ │ │ │ ├── dnd.html.xqy │ │ │ │ ├── docbuilder.html.xqy │ │ │ │ ├── docview.html.xqy │ │ │ │ ├── error.html.xqy │ │ │ │ ├── explorer.html.xqy │ │ │ │ ├── kratu.html.xqy │ │ │ │ ├── main.html.xqy │ │ │ │ ├── movies.html.xqy │ │ │ │ ├── openlayers.html.xqy │ │ │ │ ├── rdb2rdf.html.xqy │ │ │ │ ├── search.html.xqy │ │ │ │ ├── snippets.html.xqy │ │ │ │ ├── sparqlbar.html.xqy │ │ │ │ ├── tagcloud.html.xqy │ │ │ │ ├── upload.html.xqy │ │ │ │ ├── workplace.html.xqy │ │ │ │ └── workplaceadmin.html.xqy │ │ ├── public │ │ │ ├── css │ │ │ │ ├── 960 │ │ │ │ │ ├── 960.css │ │ │ │ │ ├── 960_12_col.css │ │ │ │ │ ├── 960_12_col_rtl.css │ │ │ │ │ ├── 960_16_col.css │ │ │ │ │ ├── 960_16_col_rtl.css │ │ │ │ │ ├── 960_24_col.css │ │ │ │ │ ├── 960_24_col_rtl.css │ │ │ │ │ ├── 960_rtl.css │ │ │ │ │ ├── demo.css │ │ │ │ │ ├── min │ │ │ │ │ │ ├── 960.css │ │ │ │ │ │ ├── 960_12_col.css │ │ │ │ │ │ ├── 960_12_col_rtl.css │ │ │ │ │ │ ├── 960_16_col.css │ │ │ │ │ │ ├── 960_16_col_rtl.css │ │ │ │ │ │ ├── 960_24_col.css │ │ │ │ │ │ ├── 960_24_col_rtl.css │ │ │ │ │ │ ├── 960_rtl.css │ │ │ │ │ │ ├── reset.css │ │ │ │ │ │ ├── reset_rtl.css │ │ │ │ │ │ ├── text.css │ │ │ │ │ │ └── text_rtl.css │ │ │ │ │ ├── reset.css │ │ │ │ │ ├── reset_rtl.css │ │ │ │ │ ├── text.css │ │ │ │ │ └── text_rtl.css │ │ │ │ ├── app.less │ │ │ │ ├── bootstrap-roxy.css │ │ │ │ ├── error.css │ │ │ │ ├── examples.css │ │ │ │ ├── kratu.css │ │ │ │ ├── mljs │ │ │ │ │ ├── modal.css │ │ │ │ │ ├── widget-search.css │ │ │ │ │ └── widgets.css │ │ │ │ ├── one-column.less │ │ │ │ ├── themes │ │ │ │ │ └── ui-lightness │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ │ │ ├── jquery.ui.all.css │ │ │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ │ │ ├── jquery.ui.base.css │ │ │ │ │ │ ├── jquery.ui.button.css │ │ │ │ │ │ ├── jquery.ui.core.css │ │ │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ │ │ └── jquery.ui.theme.css │ │ │ │ ├── three-column.less │ │ │ │ ├── two-column.less │ │ │ │ └── vars.less │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ ├── 3px_drop_shadow_right.png │ │ │ │ ├── facet_close.png │ │ │ │ ├── facet_green.png │ │ │ │ ├── ml-logo.gif │ │ │ │ ├── mljs │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── question-mark-small.png │ │ │ │ │ ├── question-mark.png │ │ │ │ │ ├── setting-large.png │ │ │ │ │ └── setting-small.png │ │ │ │ ├── mt_icon_search.gif │ │ │ │ └── toolbar_background_dark_gradient.png │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── OpenLayers-2.13.1 │ │ │ │ ├── .gitignore │ │ │ │ ├── OpenLayers.debug.js │ │ │ │ ├── OpenLayers.js │ │ │ │ ├── OpenLayers.light.debug.js │ │ │ │ ├── OpenLayers.light.js │ │ │ │ ├── OpenLayers.mobile.debug.js │ │ │ │ ├── OpenLayers.mobile.js │ │ │ │ ├── art │ │ │ │ │ ├── arrows.svg │ │ │ │ │ ├── layer-switcher-maximize.svg │ │ │ │ │ ├── layer-switcher-minimize.svg │ │ │ │ │ ├── marker.svg │ │ │ │ │ ├── measuring-stick-off.svg │ │ │ │ │ ├── measuring-stick-on.svg │ │ │ │ │ ├── panning-hand-off.svg │ │ │ │ │ ├── panning-hand-on.svg │ │ │ │ │ ├── slider.svg │ │ │ │ │ ├── zoom-world.svg │ │ │ │ │ └── zoombar.svg │ │ │ │ ├── authors.txt │ │ │ │ ├── img │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── cloud-popup-relative.png │ │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ │ ├── east-mini.png │ │ │ │ │ ├── layer-switcher-maximize.png │ │ │ │ │ ├── layer-switcher-minimize.png │ │ │ │ │ ├── marker-blue.png │ │ │ │ │ ├── marker-gold.png │ │ │ │ │ ├── marker-green.png │ │ │ │ │ ├── marker.png │ │ │ │ │ ├── measuring-stick-off.png │ │ │ │ │ ├── measuring-stick-on.png │ │ │ │ │ ├── north-mini.png │ │ │ │ │ ├── panning-hand-off.png │ │ │ │ │ ├── panning-hand-on.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── south-mini.png │ │ │ │ │ ├── west-mini.png │ │ │ │ │ ├── zoom-minus-mini.png │ │ │ │ │ ├── zoom-plus-mini.png │ │ │ │ │ ├── zoom-world-mini.png │ │ │ │ │ └── zoombar.png │ │ │ │ ├── lib │ │ │ │ │ ├── Firebug │ │ │ │ │ │ ├── errorIcon.png │ │ │ │ │ │ ├── firebug.css │ │ │ │ │ │ ├── firebug.html │ │ │ │ │ │ ├── firebug.js │ │ │ │ │ │ ├── firebugx.js │ │ │ │ │ │ ├── infoIcon.png │ │ │ │ │ │ ├── license.txt │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ └── warningIcon.png │ │ │ │ │ ├── OpenLayers.js │ │ │ │ │ ├── OpenLayers │ │ │ │ │ │ ├── Animation.js │ │ │ │ │ │ ├── BaseTypes.js │ │ │ │ │ │ ├── BaseTypes │ │ │ │ │ │ │ ├── Bounds.js │ │ │ │ │ │ │ ├── Class.js │ │ │ │ │ │ │ ├── Date.js │ │ │ │ │ │ │ ├── Element.js │ │ │ │ │ │ │ ├── LonLat.js │ │ │ │ │ │ │ ├── Pixel.js │ │ │ │ │ │ │ └── Size.js │ │ │ │ │ │ ├── Console.js │ │ │ │ │ │ ├── Control.js │ │ │ │ │ │ ├── Control │ │ │ │ │ │ │ ├── ArgParser.js │ │ │ │ │ │ │ ├── Attribution.js │ │ │ │ │ │ │ ├── Button.js │ │ │ │ │ │ │ ├── CacheRead.js │ │ │ │ │ │ │ ├── CacheWrite.js │ │ │ │ │ │ │ ├── DragFeature.js │ │ │ │ │ │ │ ├── DragPan.js │ │ │ │ │ │ │ ├── DrawFeature.js │ │ │ │ │ │ │ ├── EditingToolbar.js │ │ │ │ │ │ │ ├── Geolocate.js │ │ │ │ │ │ │ ├── GetFeature.js │ │ │ │ │ │ │ ├── Graticule.js │ │ │ │ │ │ │ ├── KeyboardDefaults.js │ │ │ │ │ │ │ ├── LayerSwitcher.js │ │ │ │ │ │ │ ├── Measure.js │ │ │ │ │ │ │ ├── ModifyFeature.js │ │ │ │ │ │ │ ├── MousePosition.js │ │ │ │ │ │ │ ├── NavToolbar.js │ │ │ │ │ │ │ ├── Navigation.js │ │ │ │ │ │ │ ├── NavigationHistory.js │ │ │ │ │ │ │ ├── OverviewMap.js │ │ │ │ │ │ │ ├── Pan.js │ │ │ │ │ │ │ ├── PanPanel.js │ │ │ │ │ │ │ ├── PanZoom.js │ │ │ │ │ │ │ ├── PanZoomBar.js │ │ │ │ │ │ │ ├── Panel.js │ │ │ │ │ │ │ ├── Permalink.js │ │ │ │ │ │ │ ├── PinchZoom.js │ │ │ │ │ │ │ ├── SLDSelect.js │ │ │ │ │ │ │ ├── Scale.js │ │ │ │ │ │ │ ├── ScaleLine.js │ │ │ │ │ │ │ ├── SelectFeature.js │ │ │ │ │ │ │ ├── Snapping.js │ │ │ │ │ │ │ ├── Split.js │ │ │ │ │ │ │ ├── TouchNavigation.js │ │ │ │ │ │ │ ├── TransformFeature.js │ │ │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ │ │ ├── WMTSGetFeatureInfo.js │ │ │ │ │ │ │ ├── Zoom.js │ │ │ │ │ │ │ ├── ZoomBox.js │ │ │ │ │ │ │ ├── ZoomIn.js │ │ │ │ │ │ │ ├── ZoomOut.js │ │ │ │ │ │ │ ├── ZoomPanel.js │ │ │ │ │ │ │ └── ZoomToMaxExtent.js │ │ │ │ │ │ ├── Events.js │ │ │ │ │ │ ├── Events │ │ │ │ │ │ │ ├── buttonclick.js │ │ │ │ │ │ │ └── featureclick.js │ │ │ │ │ │ ├── Feature.js │ │ │ │ │ │ ├── Feature │ │ │ │ │ │ │ └── Vector.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ ├── Comparison.js │ │ │ │ │ │ │ ├── FeatureId.js │ │ │ │ │ │ │ ├── Function.js │ │ │ │ │ │ │ ├── Logical.js │ │ │ │ │ │ │ └── Spatial.js │ │ │ │ │ │ ├── Format.js │ │ │ │ │ │ ├── Format │ │ │ │ │ │ │ ├── ArcXML.js │ │ │ │ │ │ │ ├── ArcXML │ │ │ │ │ │ │ │ └── Features.js │ │ │ │ │ │ │ ├── Atom.js │ │ │ │ │ │ │ ├── CQL.js │ │ │ │ │ │ │ ├── CSWGetDomain.js │ │ │ │ │ │ │ ├── CSWGetDomain │ │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ │ ├── CSWGetRecords.js │ │ │ │ │ │ │ ├── CSWGetRecords │ │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ │ ├── Context.js │ │ │ │ │ │ │ ├── EncodedPolyline.js │ │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── GML.js │ │ │ │ │ │ │ ├── GML │ │ │ │ │ │ │ │ ├── Base.js │ │ │ │ │ │ │ │ ├── v2.js │ │ │ │ │ │ │ │ └── v3.js │ │ │ │ │ │ │ ├── GPX.js │ │ │ │ │ │ │ ├── GeoJSON.js │ │ │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ │ │ ├── JSON.js │ │ │ │ │ │ │ ├── KML.js │ │ │ │ │ │ │ ├── OGCExceptionReport.js │ │ │ │ │ │ │ ├── OSM.js │ │ │ │ │ │ │ ├── OWSCommon.js │ │ │ │ │ │ │ ├── OWSCommon │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── OWSContext.js │ │ │ │ │ │ │ ├── OWSContext │ │ │ │ │ │ │ │ └── v0_3_1.js │ │ │ │ │ │ │ ├── QueryStringFilter.js │ │ │ │ │ │ │ ├── SLD.js │ │ │ │ │ │ │ ├── SLD │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_0_0_GeoServer.js │ │ │ │ │ │ │ ├── SOSCapabilities.js │ │ │ │ │ │ │ ├── SOSCapabilities │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── SOSGetFeatureOfInterest.js │ │ │ │ │ │ │ ├── SOSGetObservation.js │ │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ │ ├── WCSCapabilities.js │ │ │ │ │ │ │ ├── WCSCapabilities │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WCSGetCoverage.js │ │ │ │ │ │ │ ├── WFS.js │ │ │ │ │ │ │ ├── WFSCapabilities.js │ │ │ │ │ │ │ ├── WFSCapabilities │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WFSDescribeFeatureType.js │ │ │ │ │ │ │ ├── WFST.js │ │ │ │ │ │ │ ├── WFST │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WKT.js │ │ │ │ │ │ │ ├── WMC.js │ │ │ │ │ │ │ ├── WMC │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WMSCapabilities.js │ │ │ │ │ │ │ ├── WMSCapabilities │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_1.js │ │ │ │ │ │ │ │ ├── v1_1_0.js │ │ │ │ │ │ │ │ ├── v1_1_1.js │ │ │ │ │ │ │ │ ├── v1_1_1_WMSC.js │ │ │ │ │ │ │ │ ├── v1_3.js │ │ │ │ │ │ │ │ └── v1_3_0.js │ │ │ │ │ │ │ ├── WMSDescribeLayer.js │ │ │ │ │ │ │ ├── WMSDescribeLayer │ │ │ │ │ │ │ │ └── v1_1.js │ │ │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ │ │ ├── WMTSCapabilities.js │ │ │ │ │ │ │ ├── WMTSCapabilities │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── WPSCapabilities.js │ │ │ │ │ │ │ ├── WPSCapabilities │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── WPSDescribeProcess.js │ │ │ │ │ │ │ ├── WPSExecute.js │ │ │ │ │ │ │ ├── XLS.js │ │ │ │ │ │ │ ├── XLS │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── XML.js │ │ │ │ │ │ │ └── XML │ │ │ │ │ │ │ │ └── VersionedOGC.js │ │ │ │ │ │ ├── Geometry.js │ │ │ │ │ │ ├── Geometry │ │ │ │ │ │ │ ├── Collection.js │ │ │ │ │ │ │ ├── Curve.js │ │ │ │ │ │ │ ├── LineString.js │ │ │ │ │ │ │ ├── LinearRing.js │ │ │ │ │ │ │ ├── MultiLineString.js │ │ │ │ │ │ │ ├── MultiPoint.js │ │ │ │ │ │ │ ├── MultiPolygon.js │ │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ │ └── Polygon.js │ │ │ │ │ │ ├── Handler.js │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ │ ├── Box.js │ │ │ │ │ │ │ ├── Click.js │ │ │ │ │ │ │ ├── Drag.js │ │ │ │ │ │ │ ├── Feature.js │ │ │ │ │ │ │ ├── Hover.js │ │ │ │ │ │ │ ├── Keyboard.js │ │ │ │ │ │ │ ├── MouseWheel.js │ │ │ │ │ │ │ ├── Path.js │ │ │ │ │ │ │ ├── Pinch.js │ │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ │ ├── Polygon.js │ │ │ │ │ │ │ └── RegularPolygon.js │ │ │ │ │ │ ├── Icon.js │ │ │ │ │ │ ├── Kinetic.js │ │ │ │ │ │ ├── Lang.js │ │ │ │ │ │ ├── Lang │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── be-tarask.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── br.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs-CZ.js │ │ │ │ │ │ │ ├── da-DK.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en-CA.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── fur.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── gsw.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hsb.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── ia.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── io.js │ │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── ksh.js │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nds.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── nn.js │ │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sv-SE.js │ │ │ │ │ │ │ ├── te.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ │ ├── Layer.js │ │ │ │ │ │ ├── Layer │ │ │ │ │ │ │ ├── ArcGIS93Rest.js │ │ │ │ │ │ │ ├── ArcGISCache.js │ │ │ │ │ │ │ ├── ArcIMS.js │ │ │ │ │ │ │ ├── Bing.js │ │ │ │ │ │ │ ├── Boxes.js │ │ │ │ │ │ │ ├── EventPane.js │ │ │ │ │ │ │ ├── FixedZoomLevels.js │ │ │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ │ │ ├── Google.js │ │ │ │ │ │ │ ├── Google │ │ │ │ │ │ │ │ └── v3.js │ │ │ │ │ │ │ ├── Grid.js │ │ │ │ │ │ │ ├── HTTPRequest.js │ │ │ │ │ │ │ ├── Image.js │ │ │ │ │ │ │ ├── KaMap.js │ │ │ │ │ │ │ ├── KaMapCache.js │ │ │ │ │ │ │ ├── MapGuide.js │ │ │ │ │ │ │ ├── MapServer.js │ │ │ │ │ │ │ ├── Markers.js │ │ │ │ │ │ │ ├── OSM.js │ │ │ │ │ │ │ ├── PointGrid.js │ │ │ │ │ │ │ ├── PointTrack.js │ │ │ │ │ │ │ ├── SphericalMercator.js │ │ │ │ │ │ │ ├── TMS.js │ │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ │ ├── TileCache.js │ │ │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ │ │ ├── Vector.js │ │ │ │ │ │ │ ├── Vector │ │ │ │ │ │ │ │ └── RootContainer.js │ │ │ │ │ │ │ ├── WMS.js │ │ │ │ │ │ │ ├── WMTS.js │ │ │ │ │ │ │ ├── WorldWind.js │ │ │ │ │ │ │ ├── XYZ.js │ │ │ │ │ │ │ └── Zoomify.js │ │ │ │ │ │ ├── Map.js │ │ │ │ │ │ ├── Marker.js │ │ │ │ │ │ ├── Marker │ │ │ │ │ │ │ └── Box.js │ │ │ │ │ │ ├── Popup.js │ │ │ │ │ │ ├── Popup │ │ │ │ │ │ │ ├── Anchored.js │ │ │ │ │ │ │ ├── Framed.js │ │ │ │ │ │ │ └── FramedCloud.js │ │ │ │ │ │ ├── Projection.js │ │ │ │ │ │ ├── Protocol.js │ │ │ │ │ │ ├── Protocol │ │ │ │ │ │ │ ├── CSW.js │ │ │ │ │ │ │ ├── CSW │ │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ │ ├── HTTP.js │ │ │ │ │ │ │ ├── SOS.js │ │ │ │ │ │ │ ├── SOS │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── Script.js │ │ │ │ │ │ │ ├── WFS.js │ │ │ │ │ │ │ └── WFS │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── Renderer.js │ │ │ │ │ │ ├── Renderer │ │ │ │ │ │ │ ├── Canvas.js │ │ │ │ │ │ │ ├── Elements.js │ │ │ │ │ │ │ ├── SVG.js │ │ │ │ │ │ │ └── VML.js │ │ │ │ │ │ ├── Request.js │ │ │ │ │ │ ├── Request │ │ │ │ │ │ │ └── XMLHttpRequest.js │ │ │ │ │ │ ├── Rule.js │ │ │ │ │ │ ├── SingleFile.js │ │ │ │ │ │ ├── Spherical.js │ │ │ │ │ │ ├── Strategy.js │ │ │ │ │ │ ├── Strategy │ │ │ │ │ │ │ ├── BBOX.js │ │ │ │ │ │ │ ├── Cluster.js │ │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ │ ├── Fixed.js │ │ │ │ │ │ │ ├── Paging.js │ │ │ │ │ │ │ ├── Refresh.js │ │ │ │ │ │ │ └── Save.js │ │ │ │ │ │ ├── Style.js │ │ │ │ │ │ ├── Style2.js │ │ │ │ │ │ ├── StyleMap.js │ │ │ │ │ │ ├── Symbolizer.js │ │ │ │ │ │ ├── Symbolizer │ │ │ │ │ │ │ ├── Line.js │ │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ │ ├── Polygon.js │ │ │ │ │ │ │ ├── Raster.js │ │ │ │ │ │ │ └── Text.js │ │ │ │ │ │ ├── Tile.js │ │ │ │ │ │ ├── Tile │ │ │ │ │ │ │ ├── Image.js │ │ │ │ │ │ │ ├── Image │ │ │ │ │ │ │ │ └── IFrame.js │ │ │ │ │ │ │ └── UTFGrid.js │ │ │ │ │ │ ├── TileManager.js │ │ │ │ │ │ ├── Tween.js │ │ │ │ │ │ ├── Util.js │ │ │ │ │ │ ├── Util │ │ │ │ │ │ │ └── vendorPrefix.js │ │ │ │ │ │ ├── WPSClient.js │ │ │ │ │ │ └── WPSProcess.js │ │ │ │ │ ├── Rico │ │ │ │ │ │ ├── Color.js │ │ │ │ │ │ ├── Corner.js │ │ │ │ │ │ └── license.js │ │ │ │ │ └── deprecated.js │ │ │ │ ├── license.txt │ │ │ │ ├── licenses │ │ │ │ │ ├── APACHE-2.0.txt │ │ │ │ │ ├── BSD-LICENSE.txt │ │ │ │ │ └── MIT-LICENSE.txt │ │ │ │ ├── notes │ │ │ │ │ ├── 2.12.md │ │ │ │ │ └── 2.13.md │ │ │ │ ├── readme.md │ │ │ │ └── theme │ │ │ │ │ └── default │ │ │ │ │ ├── google.css │ │ │ │ │ ├── google.tidy.css │ │ │ │ │ ├── ie6-style.css │ │ │ │ │ ├── ie6-style.tidy.css │ │ │ │ │ ├── img │ │ │ │ │ ├── add_point_off.png │ │ │ │ │ ├── add_point_on.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ │ ├── draw_line_off.png │ │ │ │ │ ├── draw_line_on.png │ │ │ │ │ ├── draw_point_off.png │ │ │ │ │ ├── draw_point_on.png │ │ │ │ │ ├── draw_polygon_off.png │ │ │ │ │ ├── draw_polygon_on.png │ │ │ │ │ ├── editing_tool_bar.png │ │ │ │ │ ├── move_feature_off.png │ │ │ │ │ ├── move_feature_on.png │ │ │ │ │ ├── navigation_history.png │ │ │ │ │ ├── overview_replacement.gif │ │ │ │ │ ├── pan-panel-NOALPHA.png │ │ │ │ │ ├── pan-panel.png │ │ │ │ │ ├── pan_off.png │ │ │ │ │ ├── pan_on.png │ │ │ │ │ ├── panning-hand-off.png │ │ │ │ │ ├── panning-hand-on.png │ │ │ │ │ ├── remove_point_off.png │ │ │ │ │ ├── remove_point_on.png │ │ │ │ │ ├── ruler.png │ │ │ │ │ ├── save_features_off.png │ │ │ │ │ ├── save_features_on.png │ │ │ │ │ ├── view_next_off.png │ │ │ │ │ ├── view_next_on.png │ │ │ │ │ ├── view_previous_off.png │ │ │ │ │ ├── view_previous_on.png │ │ │ │ │ ├── zoom-panel-NOALPHA.png │ │ │ │ │ └── zoom-panel.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.mobile.css │ │ │ │ │ ├── style.mobile.tidy.css │ │ │ │ │ └── style.tidy.css │ │ │ │ ├── app.js │ │ │ │ ├── dataproviders │ │ │ │ ├── csv.js │ │ │ │ └── json.js │ │ │ │ ├── filedrop.js │ │ │ │ ├── heatmap │ │ │ │ ├── heatmap-openlayers.js │ │ │ │ └── heatmap.js │ │ │ │ ├── highcharts.js │ │ │ │ ├── kratu.js │ │ │ │ ├── kratuSignalAdjustments.js │ │ │ │ ├── lib │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ ├── jquery-ui-1.8.18.min.js │ │ │ │ ├── jquery.bootstrap.wizard.js │ │ │ │ └── less-1.3.0.min.js │ │ │ │ ├── mljs │ │ │ │ ├── mljs-angular.js │ │ │ │ ├── mljs-jquery.js │ │ │ │ ├── mljs-prototype.js │ │ │ │ ├── mljs-xhr.js │ │ │ │ ├── mljs-xhr2.js │ │ │ │ ├── mljs.js │ │ │ │ ├── widget-address.js │ │ │ │ ├── widget-alerts-defaults.js │ │ │ │ ├── widget-alerts.js │ │ │ │ ├── widget-collections.js │ │ │ │ ├── widget-cooccurence.js │ │ │ │ ├── widget-d3.js │ │ │ │ ├── widget-dls.js │ │ │ │ ├── widget-docbuilder.js │ │ │ │ ├── widget-documents.js │ │ │ │ ├── widget-explore.js │ │ │ │ ├── widget-highcharts.js │ │ │ │ ├── widget-ingest.js │ │ │ │ ├── widget-kratu.js │ │ │ │ ├── widget-markings.js │ │ │ │ ├── widget-openlayers.js │ │ │ │ ├── widget-pivottable.js │ │ │ │ ├── widget-profile.js │ │ │ │ ├── widget-rdb2rdf.js │ │ │ │ ├── widget-search-oldinit.js │ │ │ │ ├── widget-search.js │ │ │ │ ├── widget-searchoptions.js │ │ │ │ ├── widget-security.js │ │ │ │ ├── widget-tagcloud.js │ │ │ │ ├── widget-triples.js │ │ │ │ ├── widget-workplace.js │ │ │ │ └── widgets.js │ │ │ │ ├── mljsarchive │ │ │ │ └── ingest.js │ │ │ │ ├── mljstest │ │ │ │ ├── page-mljstest-address.js │ │ │ │ ├── page-mljstest-angular.js │ │ │ │ ├── page-mljstest-charts.js │ │ │ │ ├── page-mljstest-chartsearch.js │ │ │ │ ├── page-mljstest-collectionuris.js │ │ │ │ ├── page-mljstest-dnd.js │ │ │ │ ├── page-mljstest-docbuilder.js │ │ │ │ ├── page-mljstest-docedit.js │ │ │ │ ├── page-mljstest-docview.js │ │ │ │ ├── page-mljstest-error.js │ │ │ │ ├── page-mljstest-explorer.js │ │ │ │ ├── page-mljstest-infobox.js │ │ │ │ ├── page-mljstest-kratu.js │ │ │ │ ├── page-mljstest-main.js │ │ │ │ ├── page-mljstest-movies.js │ │ │ │ ├── page-mljstest-openlayers.js │ │ │ │ ├── page-mljstest-rdb2rdf.js │ │ │ │ ├── page-mljstest-search.js │ │ │ │ ├── page-mljstest-snippets.js │ │ │ │ ├── page-mljstest-sparqlbar.js │ │ │ │ ├── page-mljstest-stevensearch.js │ │ │ │ ├── page-mljstest-tagcloud.js │ │ │ │ ├── page-mljstest-upload.js │ │ │ │ ├── page-mljstest-workplace-custom.js │ │ │ │ ├── page-mljstest-workplace.js │ │ │ │ └── page-mljstest-workplaceadmin.js │ │ │ │ ├── three-column.js │ │ │ │ └── two-column.js │ │ ├── roxy │ │ │ ├── config │ │ │ │ └── defaults.xqy │ │ │ ├── error.xqy │ │ │ ├── lib │ │ │ │ ├── controller-helper.xqy │ │ │ │ ├── cpf-private.xqy │ │ │ │ ├── cpf.xqy │ │ │ │ ├── date-parser.xqy │ │ │ │ ├── json.xqy │ │ │ │ ├── reflection.xqy │ │ │ │ ├── request.xqy │ │ │ │ ├── routing-helper.xqy │ │ │ │ ├── soap-lib.xqy │ │ │ │ ├── util.xqy │ │ │ │ └── view-helper.xqy │ │ │ ├── no-op.xqy │ │ │ ├── query-router.xqy │ │ │ ├── rewrite.xqy │ │ │ ├── router.xqy │ │ │ └── update-router.xqy │ │ └── test │ │ │ ├── css │ │ │ ├── jquery.gritter.css │ │ │ └── tests.css │ │ │ ├── default.xqy │ │ │ ├── img │ │ │ ├── arrow-down.gif │ │ │ ├── arrow-right.gif │ │ │ ├── gritter.png │ │ │ ├── icon-minus.png │ │ │ ├── icon-plus.png │ │ │ ├── ie-spacer.gif │ │ │ ├── spinner.gif │ │ │ └── warning.png │ │ │ ├── js │ │ │ ├── jquery-1.6.2.min.js │ │ │ ├── jquery.gritter.min.js │ │ │ └── tests.js │ │ │ ├── suites │ │ │ ├── CPF │ │ │ │ ├── _test-pipeline1.xml │ │ │ │ ├── cpf.xqy │ │ │ │ ├── suite-setup.xqy │ │ │ │ └── suite-teardown.xqy │ │ │ ├── Framework Tests │ │ │ │ ├── routing.xqy │ │ │ │ ├── site-index.xqy │ │ │ │ ├── suite-setup.xqy │ │ │ │ ├── suite-teardown.xqy │ │ │ │ ├── test-data │ │ │ │ │ ├── different-layout-view.html.xqy │ │ │ │ │ ├── different-layout.html.xqy │ │ │ │ │ ├── different-view-xml-only.html.xqy │ │ │ │ │ ├── layout-with-bad-import.html.xqy │ │ │ │ │ ├── main.html.xqy │ │ │ │ │ ├── main.xml.xqy │ │ │ │ │ ├── missing-layout.html.xqy │ │ │ │ │ ├── missing-map.xqy │ │ │ │ │ ├── missing-variable.html.xqy │ │ │ │ │ ├── no-layout.html.xqy │ │ │ │ │ ├── search.html.xqy │ │ │ │ │ ├── test-layout.html.xqy │ │ │ │ │ ├── tester.xqy │ │ │ │ │ ├── view-that-returns-the-input.html.xqy │ │ │ │ │ └── view-with-bad-import.html.xqy │ │ │ │ └── util.xqy │ │ │ ├── Unit Test Tests │ │ │ │ ├── assert-all-exist.xqy │ │ │ │ ├── assert-at-least-one-equal.xqy │ │ │ │ ├── assert-equal.xqy │ │ │ │ ├── assert-exists.xqy │ │ │ │ ├── assert-false.xqy │ │ │ │ ├── assert-meets-maximum-threshold.xqy │ │ │ │ ├── assert-meets-minimum-threshold.xqy │ │ │ │ ├── assert-not-equal.xqy │ │ │ │ ├── assert-not-exists.xqy │ │ │ │ ├── assert-throws-error.xqy │ │ │ │ ├── assert-true.xqy │ │ │ │ ├── fail.xqy │ │ │ │ └── success.xqy │ │ │ ├── form-lib │ │ │ │ ├── checkbox.xqy │ │ │ │ ├── radio.xqy │ │ │ │ ├── text-area.xqy │ │ │ │ └── text-input.xqy │ │ │ ├── pager-lib │ │ │ │ ├── paginate.xqy │ │ │ │ └── pagination.xqy │ │ │ └── request-lib │ │ │ │ ├── lib-request-tests.xqy │ │ │ │ ├── suite-setup.xqy │ │ │ │ ├── suite-teardown.xqy │ │ │ │ └── test-data │ │ │ │ └── test-request.xqy │ │ │ ├── test-config.xqy │ │ │ └── test-helper.xqy │ └── version.txt ├── mljsadmin-workplace │ ├── app │ │ ├── application.html5 │ │ ├── css │ │ │ ├── bootstrap-roxy.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── kratu.css │ │ │ ├── mljs │ │ │ │ ├── modal.css │ │ │ │ ├── widget-search.css │ │ │ │ └── widgets.css │ │ │ └── navbar.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── images │ │ │ ├── icon-.png │ │ │ ├── icon-.xcf │ │ │ ├── icon-CNI.png │ │ │ ├── icon-Complaints.png │ │ │ ├── icon-Contracts.png │ │ │ ├── icon-Contracts.xcf │ │ │ ├── icon-InvestigatedPerson.png │ │ │ ├── icon-InvestigatedPhone.png │ │ │ ├── icon-MarkLogic%20Document.png │ │ │ ├── icon-Person.png │ │ │ ├── icon-Phone.png │ │ │ ├── icon-Schools.png │ │ │ ├── icon-Thing.png │ │ │ ├── icon-TwitterAccount.png │ │ │ ├── icon-event.png │ │ │ ├── icon-uploaddata.png │ │ │ ├── icon-xhtml.png │ │ │ └── mljs │ │ │ │ ├── loading.gif │ │ │ │ ├── question-mark-small.png │ │ │ │ ├── question-mark.png │ │ │ │ ├── setting-large.png │ │ │ │ └── setting-small.png │ │ ├── index.html5 │ │ ├── js │ │ │ ├── OpenLayers-2.13.1 │ │ │ │ ├── .gitignore │ │ │ │ ├── OpenLayers.debug.js │ │ │ │ ├── OpenLayers.js │ │ │ │ ├── OpenLayers.light.debug.js │ │ │ │ ├── OpenLayers.light.js │ │ │ │ ├── OpenLayers.mobile.debug.js │ │ │ │ ├── OpenLayers.mobile.js │ │ │ │ ├── art │ │ │ │ │ ├── arrows.svg │ │ │ │ │ ├── layer-switcher-maximize.svg │ │ │ │ │ ├── layer-switcher-minimize.svg │ │ │ │ │ ├── marker.svg │ │ │ │ │ ├── measuring-stick-off.svg │ │ │ │ │ ├── measuring-stick-on.svg │ │ │ │ │ ├── panning-hand-off.svg │ │ │ │ │ ├── panning-hand-on.svg │ │ │ │ │ ├── slider.svg │ │ │ │ │ ├── zoom-world.svg │ │ │ │ │ └── zoombar.svg │ │ │ │ ├── authors.txt │ │ │ │ ├── img │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── cloud-popup-relative.png │ │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ │ ├── east-mini.png │ │ │ │ │ ├── layer-switcher-maximize.png │ │ │ │ │ ├── layer-switcher-minimize.png │ │ │ │ │ ├── marker-blue.png │ │ │ │ │ ├── marker-gold.png │ │ │ │ │ ├── marker-green.png │ │ │ │ │ ├── marker.png │ │ │ │ │ ├── measuring-stick-off.png │ │ │ │ │ ├── measuring-stick-on.png │ │ │ │ │ ├── north-mini.png │ │ │ │ │ ├── panning-hand-off.png │ │ │ │ │ ├── panning-hand-on.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── south-mini.png │ │ │ │ │ ├── west-mini.png │ │ │ │ │ ├── zoom-minus-mini.png │ │ │ │ │ ├── zoom-plus-mini.png │ │ │ │ │ ├── zoom-world-mini.png │ │ │ │ │ └── zoombar.png │ │ │ │ ├── lib │ │ │ │ │ ├── Firebug │ │ │ │ │ │ ├── errorIcon.png │ │ │ │ │ │ ├── firebug.css │ │ │ │ │ │ ├── firebug.html │ │ │ │ │ │ ├── firebug.js │ │ │ │ │ │ ├── firebugx.js │ │ │ │ │ │ ├── infoIcon.png │ │ │ │ │ │ ├── license.txt │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ └── warningIcon.png │ │ │ │ │ ├── OpenLayers.js │ │ │ │ │ ├── OpenLayers │ │ │ │ │ │ ├── Animation.js │ │ │ │ │ │ ├── BaseTypes.js │ │ │ │ │ │ ├── BaseTypes │ │ │ │ │ │ │ ├── Bounds.js │ │ │ │ │ │ │ ├── Class.js │ │ │ │ │ │ │ ├── Date.js │ │ │ │ │ │ │ ├── Element.js │ │ │ │ │ │ │ ├── LonLat.js │ │ │ │ │ │ │ ├── Pixel.js │ │ │ │ │ │ │ └── Size.js │ │ │ │ │ │ ├── Console.js │ │ │ │ │ │ ├── Control.js │ │ │ │ │ │ ├── Control │ │ │ │ │ │ │ ├── ArgParser.js │ │ │ │ │ │ │ ├── Attribution.js │ │ │ │ │ │ │ ├── Button.js │ │ │ │ │ │ │ ├── CacheRead.js │ │ │ │ │ │ │ ├── CacheWrite.js │ │ │ │ │ │ │ ├── DragFeature.js │ │ │ │ │ │ │ ├── DragPan.js │ │ │ │ │ │ │ ├── DrawFeature.js │ │ │ │ │ │ │ ├── EditingToolbar.js │ │ │ │ │ │ │ ├── Geolocate.js │ │ │ │ │ │ │ ├── GetFeature.js │ │ │ │ │ │ │ ├── Graticule.js │ │ │ │ │ │ │ ├── KeyboardDefaults.js │ │ │ │ │ │ │ ├── LayerSwitcher.js │ │ │ │ │ │ │ ├── Measure.js │ │ │ │ │ │ │ ├── ModifyFeature.js │ │ │ │ │ │ │ ├── MousePosition.js │ │ │ │ │ │ │ ├── NavToolbar.js │ │ │ │ │ │ │ ├── Navigation.js │ │ │ │ │ │ │ ├── NavigationHistory.js │ │ │ │ │ │ │ ├── OverviewMap.js │ │ │ │ │ │ │ ├── Pan.js │ │ │ │ │ │ │ ├── PanPanel.js │ │ │ │ │ │ │ ├── PanZoom.js │ │ │ │ │ │ │ ├── PanZoomBar.js │ │ │ │ │ │ │ ├── Panel.js │ │ │ │ │ │ │ ├── Permalink.js │ │ │ │ │ │ │ ├── PinchZoom.js │ │ │ │ │ │ │ ├── SLDSelect.js │ │ │ │ │ │ │ ├── Scale.js │ │ │ │ │ │ │ ├── ScaleLine.js │ │ │ │ │ │ │ ├── SelectFeature.js │ │ │ │ │ │ │ ├── Snapping.js │ │ │ │ │ │ │ ├── Split.js │ │ │ │ │ │ │ ├── TouchNavigation.js │ │ │ │ │ │ │ ├── TransformFeature.js │ │ │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ │ │ ├── WMTSGetFeatureInfo.js │ │ │ │ │ │ │ ├── Zoom.js │ │ │ │ │ │ │ ├── ZoomBox.js │ │ │ │ │ │ │ ├── ZoomIn.js │ │ │ │ │ │ │ ├── ZoomOut.js │ │ │ │ │ │ │ ├── ZoomPanel.js │ │ │ │ │ │ │ └── ZoomToMaxExtent.js │ │ │ │ │ │ ├── Events.js │ │ │ │ │ │ ├── Events │ │ │ │ │ │ │ ├── buttonclick.js │ │ │ │ │ │ │ └── featureclick.js │ │ │ │ │ │ ├── Feature.js │ │ │ │ │ │ ├── Feature │ │ │ │ │ │ │ └── Vector.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ ├── Comparison.js │ │ │ │ │ │ │ ├── FeatureId.js │ │ │ │ │ │ │ ├── Function.js │ │ │ │ │ │ │ ├── Logical.js │ │ │ │ │ │ │ └── Spatial.js │ │ │ │ │ │ ├── Format.js │ │ │ │ │ │ ├── Format │ │ │ │ │ │ │ ├── ArcXML.js │ │ │ │ │ │ │ ├── ArcXML │ │ │ │ │ │ │ │ └── Features.js │ │ │ │ │ │ │ ├── Atom.js │ │ │ │ │ │ │ ├── CQL.js │ │ │ │ │ │ │ ├── CSWGetDomain.js │ │ │ │ │ │ │ ├── CSWGetDomain │ │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ │ ├── CSWGetRecords.js │ │ │ │ │ │ │ ├── CSWGetRecords │ │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ │ ├── Context.js │ │ │ │ │ │ │ ├── EncodedPolyline.js │ │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── GML.js │ │ │ │ │ │ │ ├── GML │ │ │ │ │ │ │ │ ├── Base.js │ │ │ │ │ │ │ │ ├── v2.js │ │ │ │ │ │ │ │ └── v3.js │ │ │ │ │ │ │ ├── GPX.js │ │ │ │ │ │ │ ├── GeoJSON.js │ │ │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ │ │ ├── JSON.js │ │ │ │ │ │ │ ├── KML.js │ │ │ │ │ │ │ ├── OGCExceptionReport.js │ │ │ │ │ │ │ ├── OSM.js │ │ │ │ │ │ │ ├── OWSCommon.js │ │ │ │ │ │ │ ├── OWSCommon │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── OWSContext.js │ │ │ │ │ │ │ ├── OWSContext │ │ │ │ │ │ │ │ └── v0_3_1.js │ │ │ │ │ │ │ ├── QueryStringFilter.js │ │ │ │ │ │ │ ├── SLD.js │ │ │ │ │ │ │ ├── SLD │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_0_0_GeoServer.js │ │ │ │ │ │ │ ├── SOSCapabilities.js │ │ │ │ │ │ │ ├── SOSCapabilities │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── SOSGetFeatureOfInterest.js │ │ │ │ │ │ │ ├── SOSGetObservation.js │ │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ │ ├── WCSCapabilities.js │ │ │ │ │ │ │ ├── WCSCapabilities │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WCSGetCoverage.js │ │ │ │ │ │ │ ├── WFS.js │ │ │ │ │ │ │ ├── WFSCapabilities.js │ │ │ │ │ │ │ ├── WFSCapabilities │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WFSDescribeFeatureType.js │ │ │ │ │ │ │ ├── WFST.js │ │ │ │ │ │ │ ├── WFST │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WKT.js │ │ │ │ │ │ │ ├── WMC.js │ │ │ │ │ │ │ ├── WMC │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WMSCapabilities.js │ │ │ │ │ │ │ ├── WMSCapabilities │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_1.js │ │ │ │ │ │ │ │ ├── v1_1_0.js │ │ │ │ │ │ │ │ ├── v1_1_1.js │ │ │ │ │ │ │ │ ├── v1_1_1_WMSC.js │ │ │ │ │ │ │ │ ├── v1_3.js │ │ │ │ │ │ │ │ └── v1_3_0.js │ │ │ │ │ │ │ ├── WMSDescribeLayer.js │ │ │ │ │ │ │ ├── WMSDescribeLayer │ │ │ │ │ │ │ │ └── v1_1.js │ │ │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ │ │ ├── WMTSCapabilities.js │ │ │ │ │ │ │ ├── WMTSCapabilities │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── WPSCapabilities.js │ │ │ │ │ │ │ ├── WPSCapabilities │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── WPSDescribeProcess.js │ │ │ │ │ │ │ ├── WPSExecute.js │ │ │ │ │ │ │ ├── XLS.js │ │ │ │ │ │ │ ├── XLS │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── XML.js │ │ │ │ │ │ │ └── XML │ │ │ │ │ │ │ │ └── VersionedOGC.js │ │ │ │ │ │ ├── Geometry.js │ │ │ │ │ │ ├── Geometry │ │ │ │ │ │ │ ├── Collection.js │ │ │ │ │ │ │ ├── Curve.js │ │ │ │ │ │ │ ├── LineString.js │ │ │ │ │ │ │ ├── LinearRing.js │ │ │ │ │ │ │ ├── MultiLineString.js │ │ │ │ │ │ │ ├── MultiPoint.js │ │ │ │ │ │ │ ├── MultiPolygon.js │ │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ │ └── Polygon.js │ │ │ │ │ │ ├── Handler.js │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ │ ├── Box.js │ │ │ │ │ │ │ ├── Click.js │ │ │ │ │ │ │ ├── Drag.js │ │ │ │ │ │ │ ├── Feature.js │ │ │ │ │ │ │ ├── Hover.js │ │ │ │ │ │ │ ├── Keyboard.js │ │ │ │ │ │ │ ├── MouseWheel.js │ │ │ │ │ │ │ ├── Path.js │ │ │ │ │ │ │ ├── Pinch.js │ │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ │ ├── Polygon.js │ │ │ │ │ │ │ └── RegularPolygon.js │ │ │ │ │ │ ├── Icon.js │ │ │ │ │ │ ├── Kinetic.js │ │ │ │ │ │ ├── Lang.js │ │ │ │ │ │ ├── Lang │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── be-tarask.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── br.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs-CZ.js │ │ │ │ │ │ │ ├── da-DK.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en-CA.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── fur.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── gsw.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hsb.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── ia.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── io.js │ │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── ksh.js │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nds.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── nn.js │ │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sv-SE.js │ │ │ │ │ │ │ ├── te.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ │ ├── Layer.js │ │ │ │ │ │ ├── Layer │ │ │ │ │ │ │ ├── ArcGIS93Rest.js │ │ │ │ │ │ │ ├── ArcGISCache.js │ │ │ │ │ │ │ ├── ArcIMS.js │ │ │ │ │ │ │ ├── Bing.js │ │ │ │ │ │ │ ├── Boxes.js │ │ │ │ │ │ │ ├── EventPane.js │ │ │ │ │ │ │ ├── FixedZoomLevels.js │ │ │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ │ │ ├── Google.js │ │ │ │ │ │ │ ├── Google │ │ │ │ │ │ │ │ └── v3.js │ │ │ │ │ │ │ ├── Grid.js │ │ │ │ │ │ │ ├── HTTPRequest.js │ │ │ │ │ │ │ ├── Image.js │ │ │ │ │ │ │ ├── KaMap.js │ │ │ │ │ │ │ ├── KaMapCache.js │ │ │ │ │ │ │ ├── MapGuide.js │ │ │ │ │ │ │ ├── MapServer.js │ │ │ │ │ │ │ ├── Markers.js │ │ │ │ │ │ │ ├── OSM.js │ │ │ │ │ │ │ ├── PointGrid.js │ │ │ │ │ │ │ ├── PointTrack.js │ │ │ │ │ │ │ ├── SphericalMercator.js │ │ │ │ │ │ │ ├── TMS.js │ │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ │ ├── TileCache.js │ │ │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ │ │ ├── Vector.js │ │ │ │ │ │ │ ├── Vector │ │ │ │ │ │ │ │ └── RootContainer.js │ │ │ │ │ │ │ ├── WMS.js │ │ │ │ │ │ │ ├── WMTS.js │ │ │ │ │ │ │ ├── WorldWind.js │ │ │ │ │ │ │ ├── XYZ.js │ │ │ │ │ │ │ └── Zoomify.js │ │ │ │ │ │ ├── Map.js │ │ │ │ │ │ ├── Marker.js │ │ │ │ │ │ ├── Marker │ │ │ │ │ │ │ └── Box.js │ │ │ │ │ │ ├── Popup.js │ │ │ │ │ │ ├── Popup │ │ │ │ │ │ │ ├── Anchored.js │ │ │ │ │ │ │ ├── Framed.js │ │ │ │ │ │ │ └── FramedCloud.js │ │ │ │ │ │ ├── Projection.js │ │ │ │ │ │ ├── Protocol.js │ │ │ │ │ │ ├── Protocol │ │ │ │ │ │ │ ├── CSW.js │ │ │ │ │ │ │ ├── CSW │ │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ │ ├── HTTP.js │ │ │ │ │ │ │ ├── SOS.js │ │ │ │ │ │ │ ├── SOS │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── Script.js │ │ │ │ │ │ │ ├── WFS.js │ │ │ │ │ │ │ └── WFS │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── Renderer.js │ │ │ │ │ │ ├── Renderer │ │ │ │ │ │ │ ├── Canvas.js │ │ │ │ │ │ │ ├── Elements.js │ │ │ │ │ │ │ ├── SVG.js │ │ │ │ │ │ │ └── VML.js │ │ │ │ │ │ ├── Request.js │ │ │ │ │ │ ├── Request │ │ │ │ │ │ │ └── XMLHttpRequest.js │ │ │ │ │ │ ├── Rule.js │ │ │ │ │ │ ├── SingleFile.js │ │ │ │ │ │ ├── Spherical.js │ │ │ │ │ │ ├── Strategy.js │ │ │ │ │ │ ├── Strategy │ │ │ │ │ │ │ ├── BBOX.js │ │ │ │ │ │ │ ├── Cluster.js │ │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ │ ├── Fixed.js │ │ │ │ │ │ │ ├── Paging.js │ │ │ │ │ │ │ ├── Refresh.js │ │ │ │ │ │ │ └── Save.js │ │ │ │ │ │ ├── Style.js │ │ │ │ │ │ ├── Style2.js │ │ │ │ │ │ ├── StyleMap.js │ │ │ │ │ │ ├── Symbolizer.js │ │ │ │ │ │ ├── Symbolizer │ │ │ │ │ │ │ ├── Line.js │ │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ │ ├── Polygon.js │ │ │ │ │ │ │ ├── Raster.js │ │ │ │ │ │ │ └── Text.js │ │ │ │ │ │ ├── Tile.js │ │ │ │ │ │ ├── Tile │ │ │ │ │ │ │ ├── Image.js │ │ │ │ │ │ │ ├── Image │ │ │ │ │ │ │ │ └── IFrame.js │ │ │ │ │ │ │ └── UTFGrid.js │ │ │ │ │ │ ├── TileManager.js │ │ │ │ │ │ ├── Tween.js │ │ │ │ │ │ ├── Util.js │ │ │ │ │ │ ├── Util │ │ │ │ │ │ │ └── vendorPrefix.js │ │ │ │ │ │ ├── WPSClient.js │ │ │ │ │ │ └── WPSProcess.js │ │ │ │ │ ├── Rico │ │ │ │ │ │ ├── Color.js │ │ │ │ │ │ ├── Corner.js │ │ │ │ │ │ └── license.js │ │ │ │ │ └── deprecated.js │ │ │ │ ├── license.txt │ │ │ │ ├── licenses │ │ │ │ │ ├── APACHE-2.0.txt │ │ │ │ │ ├── BSD-LICENSE.txt │ │ │ │ │ └── MIT-LICENSE.txt │ │ │ │ ├── notes │ │ │ │ │ ├── 2.12.md │ │ │ │ │ └── 2.13.md │ │ │ │ ├── readme.md │ │ │ │ └── theme │ │ │ │ │ └── default │ │ │ │ │ ├── google.css │ │ │ │ │ ├── google.tidy.css │ │ │ │ │ ├── ie6-style.css │ │ │ │ │ ├── ie6-style.tidy.css │ │ │ │ │ ├── img │ │ │ │ │ ├── add_point_off.png │ │ │ │ │ ├── add_point_on.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ │ ├── draw_line_off.png │ │ │ │ │ ├── draw_line_on.png │ │ │ │ │ ├── draw_point_off.png │ │ │ │ │ ├── draw_point_on.png │ │ │ │ │ ├── draw_polygon_off.png │ │ │ │ │ ├── draw_polygon_on.png │ │ │ │ │ ├── editing_tool_bar.png │ │ │ │ │ ├── move_feature_off.png │ │ │ │ │ ├── move_feature_on.png │ │ │ │ │ ├── navigation_history.png │ │ │ │ │ ├── overview_replacement.gif │ │ │ │ │ ├── pan-panel-NOALPHA.png │ │ │ │ │ ├── pan-panel.png │ │ │ │ │ ├── pan_off.png │ │ │ │ │ ├── pan_on.png │ │ │ │ │ ├── panning-hand-off.png │ │ │ │ │ ├── panning-hand-on.png │ │ │ │ │ ├── remove_point_off.png │ │ │ │ │ ├── remove_point_on.png │ │ │ │ │ ├── ruler.png │ │ │ │ │ ├── save_features_off.png │ │ │ │ │ ├── save_features_on.png │ │ │ │ │ ├── view_next_off.png │ │ │ │ │ ├── view_next_on.png │ │ │ │ │ ├── view_previous_off.png │ │ │ │ │ ├── view_previous_on.png │ │ │ │ │ ├── zoom-panel-NOALPHA.png │ │ │ │ │ └── zoom-panel.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.mobile.css │ │ │ │ │ ├── style.mobile.tidy.css │ │ │ │ │ └── style.tidy.css │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── d3-flare-imports.json │ │ │ ├── d3.js │ │ │ ├── d3.min.js │ │ │ ├── dataproviders │ │ │ │ ├── csv.js │ │ │ │ └── json.js │ │ │ ├── ext-workplace.js │ │ │ ├── heatmap │ │ │ │ ├── heatmap-openlayers.js │ │ │ │ └── heatmap.js │ │ │ ├── highcharts.js │ │ │ ├── kratu.js │ │ │ ├── kratuSignalAdjustments.js │ │ │ ├── lib │ │ │ │ └── jquery-1.7.1.min.js │ │ │ ├── mljs │ │ │ │ ├── mljs-angular.js │ │ │ │ ├── mljs-jquery.js │ │ │ │ ├── mljs-prototype.js │ │ │ │ ├── mljs-xhr.js │ │ │ │ ├── mljs-xhr2.js │ │ │ │ ├── mljs.js │ │ │ │ ├── widget-address.js │ │ │ │ ├── widget-alerts-defaults.js │ │ │ │ ├── widget-alerts.js │ │ │ │ ├── widget-collections.js │ │ │ │ ├── widget-cooccurence.js │ │ │ │ ├── widget-d3.js │ │ │ │ ├── widget-dls.js │ │ │ │ ├── widget-docbuilder.js │ │ │ │ ├── widget-documents.js │ │ │ │ ├── widget-explore.js │ │ │ │ ├── widget-highcharts.js │ │ │ │ ├── widget-ingest.js │ │ │ │ ├── widget-kratu.js │ │ │ │ ├── widget-markings.js │ │ │ │ ├── widget-openlayers.js │ │ │ │ ├── widget-profile.js │ │ │ │ ├── widget-rdb2rdf.js │ │ │ │ ├── widget-search-oldinit.js │ │ │ │ ├── widget-search.js │ │ │ │ ├── widget-searchoptions.js │ │ │ │ ├── widget-security.js │ │ │ │ ├── widget-tagcloud.js │ │ │ │ ├── widget-triples.js │ │ │ │ ├── widget-workplace.js │ │ │ │ └── widgets.js │ │ │ ├── page-application.js │ │ │ ├── page-index.js │ │ │ └── page-workplace.js │ │ └── workplace.html5 │ ├── bower.json │ ├── config │ │ ├── env.js │ │ └── webserver-settings.sh │ ├── data │ │ ├── .initial.json │ │ ├── initial │ │ │ ├── animals │ │ │ │ ├── .load.json │ │ │ │ ├── 1.json │ │ │ │ ├── 10.json │ │ │ │ ├── 11.json │ │ │ │ ├── 12.json │ │ │ │ ├── 13.json │ │ │ │ ├── 2.json │ │ │ │ ├── 3.json │ │ │ │ ├── 4.json │ │ │ │ ├── 5.json │ │ │ │ ├── 6.json │ │ │ │ ├── 7.json │ │ │ │ ├── 8.json │ │ │ │ └── 9.json │ │ │ ├── attractions │ │ │ │ ├── .load.json │ │ │ │ ├── 1.json │ │ │ │ ├── 2.json │ │ │ │ ├── 3.json │ │ │ │ ├── 4.json │ │ │ │ ├── 5.json │ │ │ │ ├── 6.json │ │ │ │ └── 7.json │ │ │ ├── mixed │ │ │ │ ├── .load.json │ │ │ │ ├── 1.xml │ │ │ │ ├── 2.xml │ │ │ │ ├── 3.xml │ │ │ │ ├── 4.html │ │ │ │ ├── 5.json │ │ │ │ └── 6.json │ │ │ ├── movies │ │ │ │ ├── .load.json │ │ │ │ ├── 1.json │ │ │ │ ├── 10.json │ │ │ │ ├── 11.json │ │ │ │ ├── 12.json │ │ │ │ ├── 13.json │ │ │ │ ├── 14.json │ │ │ │ ├── 15.json │ │ │ │ ├── 16.json │ │ │ │ ├── 17.json │ │ │ │ ├── 2.json │ │ │ │ ├── 3.json │ │ │ │ ├── 4.json │ │ │ │ ├── 5.json │ │ │ │ ├── 6.json │ │ │ │ ├── 7.json │ │ │ │ ├── 8.json │ │ │ │ └── 9.json │ │ │ ├── plaintext │ │ │ │ ├── .load.json │ │ │ │ ├── 1.txt │ │ │ │ ├── 2.txt │ │ │ │ ├── 3.txt │ │ │ │ ├── 4.txt │ │ │ │ └── 5.txt │ │ │ ├── temperatures │ │ │ │ ├── .load.json │ │ │ │ ├── 1.json │ │ │ │ ├── 10.json │ │ │ │ ├── 11.json │ │ │ │ ├── 12.json │ │ │ │ ├── 13.json │ │ │ │ ├── 14.json │ │ │ │ ├── 15.json │ │ │ │ ├── 16.json │ │ │ │ ├── 17.json │ │ │ │ ├── 18.json │ │ │ │ ├── 19.json │ │ │ │ ├── 2.json │ │ │ │ ├── 20.json │ │ │ │ ├── 21.json │ │ │ │ ├── 22.json │ │ │ │ ├── 23.json │ │ │ │ ├── 24.json │ │ │ │ ├── 25.json │ │ │ │ ├── 26.json │ │ │ │ ├── 27.json │ │ │ │ ├── 28.json │ │ │ │ ├── 29.json │ │ │ │ ├── 3.json │ │ │ │ ├── 30.json │ │ │ │ ├── 31.json │ │ │ │ ├── 32.json │ │ │ │ ├── 33.json │ │ │ │ ├── 4.json │ │ │ │ ├── 5.json │ │ │ │ ├── 6.json │ │ │ │ ├── 7.json │ │ │ │ ├── 8.json │ │ │ │ └── 9.json │ │ │ └── triples │ │ │ │ ├── .load.json │ │ │ │ ├── triples1.xml │ │ │ │ └── triples2.xml │ │ ├── mljs-workplace.xml │ │ ├── ontology.ttl │ │ └── restapi.json │ ├── deploy │ │ ├── app_specific.rb │ │ ├── build.properties │ │ ├── default.properties │ │ ├── dev.properties │ │ ├── lib │ │ │ ├── Help.rb │ │ │ ├── MLClient.rb │ │ │ ├── RoxyHttp.rb │ │ │ ├── framework.rb │ │ │ ├── java │ │ │ │ ├── corb.jar │ │ │ │ ├── marklogic-xcc-5.0.2.jar │ │ │ │ ├── recordloader.jar │ │ │ │ ├── xpp3-1.1.4c.jar │ │ │ │ ├── xqsync.jar │ │ │ │ └── xstream-1.4.2.jar │ │ │ ├── json.rb │ │ │ ├── json │ │ │ │ ├── Array.xpm │ │ │ │ ├── FalseClass.xpm │ │ │ │ ├── Hash.xpm │ │ │ │ ├── Key.xpm │ │ │ │ ├── NilClass.xpm │ │ │ │ ├── Numeric.xpm │ │ │ │ ├── String.xpm │ │ │ │ ├── TrueClass.xpm │ │ │ │ ├── add │ │ │ │ │ ├── core.rb │ │ │ │ │ └── rails.rb │ │ │ │ ├── common.rb │ │ │ │ ├── editor.rb │ │ │ │ ├── ext.rb │ │ │ │ ├── json.xpm │ │ │ │ ├── pure.rb │ │ │ │ ├── pure │ │ │ │ │ ├── generator.rb │ │ │ │ │ └── parser.rb │ │ │ │ └── version.rb │ │ │ ├── ml.rb │ │ │ ├── ml_rest.rb │ │ │ ├── scaffold.rb │ │ │ ├── server_config.rb │ │ │ ├── templates │ │ │ │ ├── controller-function.xqy │ │ │ │ ├── controller.xqy │ │ │ │ ├── layout.html.xqy │ │ │ │ ├── layout.xqy │ │ │ │ ├── model-function.xqy │ │ │ │ ├── model.xqy │ │ │ │ ├── test.xqy │ │ │ │ ├── view.html.xqy │ │ │ │ ├── view.json.xqy │ │ │ │ ├── view.xml.xqy │ │ │ │ └── view.xqy │ │ │ ├── upgrader.rb │ │ │ ├── util.rb │ │ │ ├── xcc.rb │ │ │ └── xquery │ │ │ │ ├── cpf.xqy │ │ │ │ └── setup.xqy │ │ ├── ml-config.xml │ │ ├── sample │ │ │ ├── all.sample.xml │ │ │ ├── build.sample.properties │ │ │ ├── ml-config.sample.xml │ │ │ ├── pipeline-config.sample.xml │ │ │ ├── properties.sample.xml │ │ │ ├── rest-ext.sample.xqy │ │ │ ├── rest-transform.sample.xqy │ │ │ └── rest-transform.sample.xslt │ │ └── test │ │ │ ├── data │ │ │ ├── ml4-config.xml │ │ │ ├── ml4-properties │ │ │ │ ├── build.properties │ │ │ │ └── default.properties │ │ │ ├── ml5-config.xml │ │ │ ├── ml5-properties │ │ │ │ ├── build.properties │ │ │ │ └── default.properties │ │ │ ├── ml6-config.xml │ │ │ ├── ml6-properties │ │ │ │ ├── build.properties │ │ │ │ └── default.properties │ │ │ ├── ml7-config.xml │ │ │ └── ml7-properties │ │ │ │ ├── build.properties │ │ │ │ └── default.properties │ │ │ ├── test_main.rb │ │ │ └── test_server_config.rb │ ├── example-workplaces │ │ └── jointdemo-workplace.xml │ ├── mljsadmin │ ├── mljsadmin.bat │ ├── mljsadmin.log │ ├── mljsserve │ ├── mljsserve.bat │ ├── modules │ │ ├── app │ │ │ ├── config │ │ │ │ └── config.xqy │ │ │ └── models │ │ │ │ ├── lib-search-subscribe.xqy │ │ │ │ ├── lib-thesaurus.xqy │ │ │ │ ├── rdb2rdf-lib.xqy │ │ │ │ └── sql.xqy │ │ └── roxy │ │ │ ├── config │ │ │ └── defaults.xqy │ │ │ └── lib │ │ │ ├── reflection.xqy │ │ │ ├── request.xqy │ │ │ └── rewriter.xqy │ ├── packages │ │ └── databases │ │ │ ├── contentdbconfig.xml │ │ │ └── modulesdbconfig.xml │ ├── rest-api │ │ ├── config │ │ │ ├── options │ │ │ │ ├── actor-genre-year.xml │ │ │ │ ├── all.xml │ │ │ │ ├── alltest.xml │ │ │ │ ├── animals.xml │ │ │ │ ├── author-topic.xml │ │ │ │ ├── backup-all.xml │ │ │ │ ├── jointdemo.xml │ │ │ │ ├── olddashboard.xml │ │ │ │ └── temperatures.xml │ │ │ └── properties.xml │ │ └── ext │ │ │ ├── dls.xqy │ │ │ ├── dlsrules.xqy │ │ │ ├── groupby.xqy │ │ │ ├── rdb2rdf.xqy │ │ │ ├── subscribe.xqy │ │ │ ├── triggers.xqy │ │ │ ├── version.xqy │ │ │ ├── whoami.xqy │ │ │ └── workplace.xqy │ ├── src │ │ ├── css │ │ │ ├── kratu.css │ │ │ └── mljs │ │ │ │ ├── modal.css │ │ │ │ ├── widget-search.css │ │ │ │ └── widgets.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── images │ │ │ └── mljs │ │ │ │ ├── loading.gif │ │ │ │ ├── question-mark-small.png │ │ │ │ ├── question-mark.png │ │ │ │ ├── setting-large.png │ │ │ │ └── setting-small.png │ │ └── js │ │ │ ├── OpenLayers-2.13.1 │ │ │ ├── .gitignore │ │ │ ├── OpenLayers.debug.js │ │ │ ├── OpenLayers.js │ │ │ ├── OpenLayers.light.debug.js │ │ │ ├── OpenLayers.light.js │ │ │ ├── OpenLayers.mobile.debug.js │ │ │ ├── OpenLayers.mobile.js │ │ │ ├── art │ │ │ │ ├── arrows.svg │ │ │ │ ├── layer-switcher-maximize.svg │ │ │ │ ├── layer-switcher-minimize.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── measuring-stick-off.svg │ │ │ │ ├── measuring-stick-on.svg │ │ │ │ ├── panning-hand-off.svg │ │ │ │ ├── panning-hand-on.svg │ │ │ │ ├── slider.svg │ │ │ │ ├── zoom-world.svg │ │ │ │ └── zoombar.svg │ │ │ ├── authors.txt │ │ │ ├── img │ │ │ │ ├── blank.gif │ │ │ │ ├── cloud-popup-relative.png │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ ├── east-mini.png │ │ │ │ ├── layer-switcher-maximize.png │ │ │ │ ├── layer-switcher-minimize.png │ │ │ │ ├── marker-blue.png │ │ │ │ ├── marker-gold.png │ │ │ │ ├── marker-green.png │ │ │ │ ├── marker.png │ │ │ │ ├── measuring-stick-off.png │ │ │ │ ├── measuring-stick-on.png │ │ │ │ ├── north-mini.png │ │ │ │ ├── panning-hand-off.png │ │ │ │ ├── panning-hand-on.png │ │ │ │ ├── slider.png │ │ │ │ ├── south-mini.png │ │ │ │ ├── west-mini.png │ │ │ │ ├── zoom-minus-mini.png │ │ │ │ ├── zoom-plus-mini.png │ │ │ │ ├── zoom-world-mini.png │ │ │ │ └── zoombar.png │ │ │ ├── lib │ │ │ │ ├── Firebug │ │ │ │ │ ├── errorIcon.png │ │ │ │ │ ├── firebug.css │ │ │ │ │ ├── firebug.html │ │ │ │ │ ├── firebug.js │ │ │ │ │ ├── firebugx.js │ │ │ │ │ ├── infoIcon.png │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── warningIcon.png │ │ │ │ ├── OpenLayers.js │ │ │ │ ├── OpenLayers │ │ │ │ │ ├── Animation.js │ │ │ │ │ ├── BaseTypes.js │ │ │ │ │ ├── BaseTypes │ │ │ │ │ │ ├── Bounds.js │ │ │ │ │ │ ├── Class.js │ │ │ │ │ │ ├── Date.js │ │ │ │ │ │ ├── Element.js │ │ │ │ │ │ ├── LonLat.js │ │ │ │ │ │ ├── Pixel.js │ │ │ │ │ │ └── Size.js │ │ │ │ │ ├── Console.js │ │ │ │ │ ├── Control.js │ │ │ │ │ ├── Control │ │ │ │ │ │ ├── ArgParser.js │ │ │ │ │ │ ├── Attribution.js │ │ │ │ │ │ ├── Button.js │ │ │ │ │ │ ├── CacheRead.js │ │ │ │ │ │ ├── CacheWrite.js │ │ │ │ │ │ ├── DragFeature.js │ │ │ │ │ │ ├── DragPan.js │ │ │ │ │ │ ├── DrawFeature.js │ │ │ │ │ │ ├── EditingToolbar.js │ │ │ │ │ │ ├── Geolocate.js │ │ │ │ │ │ ├── GetFeature.js │ │ │ │ │ │ ├── Graticule.js │ │ │ │ │ │ ├── KeyboardDefaults.js │ │ │ │ │ │ ├── LayerSwitcher.js │ │ │ │ │ │ ├── Measure.js │ │ │ │ │ │ ├── ModifyFeature.js │ │ │ │ │ │ ├── MousePosition.js │ │ │ │ │ │ ├── NavToolbar.js │ │ │ │ │ │ ├── Navigation.js │ │ │ │ │ │ ├── NavigationHistory.js │ │ │ │ │ │ ├── OverviewMap.js │ │ │ │ │ │ ├── Pan.js │ │ │ │ │ │ ├── PanPanel.js │ │ │ │ │ │ ├── PanZoom.js │ │ │ │ │ │ ├── PanZoomBar.js │ │ │ │ │ │ ├── Panel.js │ │ │ │ │ │ ├── Permalink.js │ │ │ │ │ │ ├── PinchZoom.js │ │ │ │ │ │ ├── SLDSelect.js │ │ │ │ │ │ ├── Scale.js │ │ │ │ │ │ ├── ScaleLine.js │ │ │ │ │ │ ├── SelectFeature.js │ │ │ │ │ │ ├── Snapping.js │ │ │ │ │ │ ├── Split.js │ │ │ │ │ │ ├── TouchNavigation.js │ │ │ │ │ │ ├── TransformFeature.js │ │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ │ ├── WMTSGetFeatureInfo.js │ │ │ │ │ │ ├── Zoom.js │ │ │ │ │ │ ├── ZoomBox.js │ │ │ │ │ │ ├── ZoomIn.js │ │ │ │ │ │ ├── ZoomOut.js │ │ │ │ │ │ ├── ZoomPanel.js │ │ │ │ │ │ └── ZoomToMaxExtent.js │ │ │ │ │ ├── Events.js │ │ │ │ │ ├── Events │ │ │ │ │ │ ├── buttonclick.js │ │ │ │ │ │ └── featureclick.js │ │ │ │ │ ├── Feature.js │ │ │ │ │ ├── Feature │ │ │ │ │ │ └── Vector.js │ │ │ │ │ ├── Filter.js │ │ │ │ │ ├── Filter │ │ │ │ │ │ ├── Comparison.js │ │ │ │ │ │ ├── FeatureId.js │ │ │ │ │ │ ├── Function.js │ │ │ │ │ │ ├── Logical.js │ │ │ │ │ │ └── Spatial.js │ │ │ │ │ ├── Format.js │ │ │ │ │ ├── Format │ │ │ │ │ │ ├── ArcXML.js │ │ │ │ │ │ ├── ArcXML │ │ │ │ │ │ │ └── Features.js │ │ │ │ │ │ ├── Atom.js │ │ │ │ │ │ ├── CQL.js │ │ │ │ │ │ ├── CSWGetDomain.js │ │ │ │ │ │ ├── CSWGetDomain │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ ├── CSWGetRecords.js │ │ │ │ │ │ ├── CSWGetRecords │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ ├── Context.js │ │ │ │ │ │ ├── EncodedPolyline.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── GML.js │ │ │ │ │ │ ├── GML │ │ │ │ │ │ │ ├── Base.js │ │ │ │ │ │ │ ├── v2.js │ │ │ │ │ │ │ └── v3.js │ │ │ │ │ │ ├── GPX.js │ │ │ │ │ │ ├── GeoJSON.js │ │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ │ ├── JSON.js │ │ │ │ │ │ ├── KML.js │ │ │ │ │ │ ├── OGCExceptionReport.js │ │ │ │ │ │ ├── OSM.js │ │ │ │ │ │ ├── OWSCommon.js │ │ │ │ │ │ ├── OWSCommon │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── OWSContext.js │ │ │ │ │ │ ├── OWSContext │ │ │ │ │ │ │ └── v0_3_1.js │ │ │ │ │ │ ├── QueryStringFilter.js │ │ │ │ │ │ ├── SLD.js │ │ │ │ │ │ ├── SLD │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_0_0_GeoServer.js │ │ │ │ │ │ ├── SOSCapabilities.js │ │ │ │ │ │ ├── SOSCapabilities │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ ├── SOSGetFeatureOfInterest.js │ │ │ │ │ │ ├── SOSGetObservation.js │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ ├── WCSCapabilities.js │ │ │ │ │ │ ├── WCSCapabilities │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── WCSGetCoverage.js │ │ │ │ │ │ ├── WFS.js │ │ │ │ │ │ ├── WFSCapabilities.js │ │ │ │ │ │ ├── WFSCapabilities │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── WFSDescribeFeatureType.js │ │ │ │ │ │ ├── WFST.js │ │ │ │ │ │ ├── WFST │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── WKT.js │ │ │ │ │ │ ├── WMC.js │ │ │ │ │ │ ├── WMC │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── WMSCapabilities.js │ │ │ │ │ │ ├── WMSCapabilities │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_1.js │ │ │ │ │ │ │ ├── v1_1_0.js │ │ │ │ │ │ │ ├── v1_1_1.js │ │ │ │ │ │ │ ├── v1_1_1_WMSC.js │ │ │ │ │ │ │ ├── v1_3.js │ │ │ │ │ │ │ └── v1_3_0.js │ │ │ │ │ │ ├── WMSDescribeLayer.js │ │ │ │ │ │ ├── WMSDescribeLayer │ │ │ │ │ │ │ └── v1_1.js │ │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ │ ├── WMTSCapabilities.js │ │ │ │ │ │ ├── WMTSCapabilities │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ ├── WPSCapabilities.js │ │ │ │ │ │ ├── WPSCapabilities │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ ├── WPSDescribeProcess.js │ │ │ │ │ │ ├── WPSExecute.js │ │ │ │ │ │ ├── XLS.js │ │ │ │ │ │ ├── XLS │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── XML.js │ │ │ │ │ │ └── XML │ │ │ │ │ │ │ └── VersionedOGC.js │ │ │ │ │ ├── Geometry.js │ │ │ │ │ ├── Geometry │ │ │ │ │ │ ├── Collection.js │ │ │ │ │ │ ├── Curve.js │ │ │ │ │ │ ├── LineString.js │ │ │ │ │ │ ├── LinearRing.js │ │ │ │ │ │ ├── MultiLineString.js │ │ │ │ │ │ ├── MultiPoint.js │ │ │ │ │ │ ├── MultiPolygon.js │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ └── Polygon.js │ │ │ │ │ ├── Handler.js │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── Box.js │ │ │ │ │ │ ├── Click.js │ │ │ │ │ │ ├── Drag.js │ │ │ │ │ │ ├── Feature.js │ │ │ │ │ │ ├── Hover.js │ │ │ │ │ │ ├── Keyboard.js │ │ │ │ │ │ ├── MouseWheel.js │ │ │ │ │ │ ├── Path.js │ │ │ │ │ │ ├── Pinch.js │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ ├── Polygon.js │ │ │ │ │ │ └── RegularPolygon.js │ │ │ │ │ ├── Icon.js │ │ │ │ │ ├── Kinetic.js │ │ │ │ │ ├── Lang.js │ │ │ │ │ ├── Lang │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── be-tarask.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── br.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs-CZ.js │ │ │ │ │ │ ├── da-DK.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-CA.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── fur.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gsw.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hsb.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── ia.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── io.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ksh.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nds.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── nn.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sv-SE.js │ │ │ │ │ │ ├── te.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── Layer.js │ │ │ │ │ ├── Layer │ │ │ │ │ │ ├── ArcGIS93Rest.js │ │ │ │ │ │ ├── ArcGISCache.js │ │ │ │ │ │ ├── ArcIMS.js │ │ │ │ │ │ ├── Bing.js │ │ │ │ │ │ ├── Boxes.js │ │ │ │ │ │ ├── EventPane.js │ │ │ │ │ │ ├── FixedZoomLevels.js │ │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ │ ├── Google.js │ │ │ │ │ │ ├── Google │ │ │ │ │ │ │ └── v3.js │ │ │ │ │ │ ├── Grid.js │ │ │ │ │ │ ├── HTTPRequest.js │ │ │ │ │ │ ├── Image.js │ │ │ │ │ │ ├── KaMap.js │ │ │ │ │ │ ├── KaMapCache.js │ │ │ │ │ │ ├── MapGuide.js │ │ │ │ │ │ ├── MapServer.js │ │ │ │ │ │ ├── Markers.js │ │ │ │ │ │ ├── OSM.js │ │ │ │ │ │ ├── PointGrid.js │ │ │ │ │ │ ├── PointTrack.js │ │ │ │ │ │ ├── SphericalMercator.js │ │ │ │ │ │ ├── TMS.js │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ ├── TileCache.js │ │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ │ ├── Vector.js │ │ │ │ │ │ ├── Vector │ │ │ │ │ │ │ └── RootContainer.js │ │ │ │ │ │ ├── WMS.js │ │ │ │ │ │ ├── WMTS.js │ │ │ │ │ │ ├── WorldWind.js │ │ │ │ │ │ ├── XYZ.js │ │ │ │ │ │ └── Zoomify.js │ │ │ │ │ ├── Map.js │ │ │ │ │ ├── Marker.js │ │ │ │ │ ├── Marker │ │ │ │ │ │ └── Box.js │ │ │ │ │ ├── Popup.js │ │ │ │ │ ├── Popup │ │ │ │ │ │ ├── Anchored.js │ │ │ │ │ │ ├── Framed.js │ │ │ │ │ │ └── FramedCloud.js │ │ │ │ │ ├── Projection.js │ │ │ │ │ ├── Protocol.js │ │ │ │ │ ├── Protocol │ │ │ │ │ │ ├── CSW.js │ │ │ │ │ │ ├── CSW │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ ├── HTTP.js │ │ │ │ │ │ ├── SOS.js │ │ │ │ │ │ ├── SOS │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ ├── Script.js │ │ │ │ │ │ ├── WFS.js │ │ │ │ │ │ └── WFS │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ ├── Renderer.js │ │ │ │ │ ├── Renderer │ │ │ │ │ │ ├── Canvas.js │ │ │ │ │ │ ├── Elements.js │ │ │ │ │ │ ├── SVG.js │ │ │ │ │ │ └── VML.js │ │ │ │ │ ├── Request.js │ │ │ │ │ ├── Request │ │ │ │ │ │ └── XMLHttpRequest.js │ │ │ │ │ ├── Rule.js │ │ │ │ │ ├── SingleFile.js │ │ │ │ │ ├── Spherical.js │ │ │ │ │ ├── Strategy.js │ │ │ │ │ ├── Strategy │ │ │ │ │ │ ├── BBOX.js │ │ │ │ │ │ ├── Cluster.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ ├── Fixed.js │ │ │ │ │ │ ├── Paging.js │ │ │ │ │ │ ├── Refresh.js │ │ │ │ │ │ └── Save.js │ │ │ │ │ ├── Style.js │ │ │ │ │ ├── Style2.js │ │ │ │ │ ├── StyleMap.js │ │ │ │ │ ├── Symbolizer.js │ │ │ │ │ ├── Symbolizer │ │ │ │ │ │ ├── Line.js │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ ├── Polygon.js │ │ │ │ │ │ ├── Raster.js │ │ │ │ │ │ └── Text.js │ │ │ │ │ ├── Tile.js │ │ │ │ │ ├── Tile │ │ │ │ │ │ ├── Image.js │ │ │ │ │ │ ├── Image │ │ │ │ │ │ │ └── IFrame.js │ │ │ │ │ │ └── UTFGrid.js │ │ │ │ │ ├── TileManager.js │ │ │ │ │ ├── Tween.js │ │ │ │ │ ├── Util.js │ │ │ │ │ ├── Util │ │ │ │ │ │ └── vendorPrefix.js │ │ │ │ │ ├── WPSClient.js │ │ │ │ │ └── WPSProcess.js │ │ │ │ ├── Rico │ │ │ │ │ ├── Color.js │ │ │ │ │ ├── Corner.js │ │ │ │ │ └── license.js │ │ │ │ └── deprecated.js │ │ │ ├── license.txt │ │ │ ├── licenses │ │ │ │ ├── APACHE-2.0.txt │ │ │ │ ├── BSD-LICENSE.txt │ │ │ │ └── MIT-LICENSE.txt │ │ │ ├── notes │ │ │ │ ├── 2.12.md │ │ │ │ └── 2.13.md │ │ │ ├── readme.md │ │ │ └── theme │ │ │ │ └── default │ │ │ │ ├── google.css │ │ │ │ ├── google.tidy.css │ │ │ │ ├── ie6-style.css │ │ │ │ ├── ie6-style.tidy.css │ │ │ │ ├── img │ │ │ │ ├── add_point_off.png │ │ │ │ ├── add_point_on.png │ │ │ │ ├── blank.gif │ │ │ │ ├── close.gif │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ ├── draw_line_off.png │ │ │ │ ├── draw_line_on.png │ │ │ │ ├── draw_point_off.png │ │ │ │ ├── draw_point_on.png │ │ │ │ ├── draw_polygon_off.png │ │ │ │ ├── draw_polygon_on.png │ │ │ │ ├── editing_tool_bar.png │ │ │ │ ├── move_feature_off.png │ │ │ │ ├── move_feature_on.png │ │ │ │ ├── navigation_history.png │ │ │ │ ├── overview_replacement.gif │ │ │ │ ├── pan-panel-NOALPHA.png │ │ │ │ ├── pan-panel.png │ │ │ │ ├── pan_off.png │ │ │ │ ├── pan_on.png │ │ │ │ ├── panning-hand-off.png │ │ │ │ ├── panning-hand-on.png │ │ │ │ ├── remove_point_off.png │ │ │ │ ├── remove_point_on.png │ │ │ │ ├── ruler.png │ │ │ │ ├── save_features_off.png │ │ │ │ ├── save_features_on.png │ │ │ │ ├── view_next_off.png │ │ │ │ ├── view_next_on.png │ │ │ │ ├── view_previous_off.png │ │ │ │ ├── view_previous_on.png │ │ │ │ ├── zoom-panel-NOALPHA.png │ │ │ │ └── zoom-panel.png │ │ │ │ ├── style.css │ │ │ │ ├── style.mobile.css │ │ │ │ ├── style.mobile.tidy.css │ │ │ │ └── style.tidy.css │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── dataproviders │ │ │ ├── csv.js │ │ │ └── json.js │ │ │ ├── heatmap │ │ │ ├── heatmap-openlayers.js │ │ │ └── heatmap.js │ │ │ ├── highcharts.js │ │ │ ├── kratu.js │ │ │ ├── kratuSignalAdjustments.js │ │ │ ├── lib │ │ │ └── jquery-1.7.1.min.js │ │ │ └── mljs │ │ │ ├── mljs-angular.js │ │ │ ├── mljs-jquery.js │ │ │ ├── mljs-prototype.js │ │ │ ├── mljs-xhr.js │ │ │ ├── mljs-xhr2.js │ │ │ ├── mljs.js │ │ │ ├── widget-address.js │ │ │ ├── widget-alerts-defaults.js │ │ │ ├── widget-alerts.js │ │ │ ├── widget-collections.js │ │ │ ├── widget-cooccurence.js │ │ │ ├── widget-d3.js │ │ │ ├── widget-dls.js │ │ │ ├── widget-docbuilder.js │ │ │ ├── widget-documents.js │ │ │ ├── widget-explore.js │ │ │ ├── widget-highcharts.js │ │ │ ├── widget-ingest.js │ │ │ ├── widget-kratu.js │ │ │ ├── widget-markings.js │ │ │ ├── widget-openlayers.js │ │ │ ├── widget-pivottable.js │ │ │ ├── widget-profile.js │ │ │ ├── widget-rdb2rdf.js │ │ │ ├── widget-search-oldinit.js │ │ │ ├── widget-search.js │ │ │ ├── widget-searchoptions.js │ │ │ ├── widget-security.js │ │ │ ├── widget-tagcloud.js │ │ │ ├── widget-triples.js │ │ │ ├── widget-workplace.js │ │ │ └── widgets.js │ ├── u.sh │ └── util │ │ ├── mljs-webserver.js │ │ ├── mljsadmin.js │ │ └── run-mljs-webserver.js ├── mljsrest │ ├── CHANGELOG.mdown │ ├── README.mdown │ ├── bower.json │ ├── deploy │ │ ├── app_specific.rb │ │ ├── build.properties │ │ ├── default.properties │ │ ├── dev.properties │ │ ├── lib │ │ │ ├── Help.rb │ │ │ ├── MLClient.rb │ │ │ ├── RoxyHttp.rb │ │ │ ├── framework.rb │ │ │ ├── java │ │ │ │ ├── corb.jar │ │ │ │ ├── marklogic-xcc-5.0.2.jar │ │ │ │ ├── recordloader.jar │ │ │ │ ├── xpp3-1.1.4c.jar │ │ │ │ ├── xqsync.jar │ │ │ │ └── xstream-1.4.2.jar │ │ │ ├── json.rb │ │ │ ├── json │ │ │ │ ├── Array.xpm │ │ │ │ ├── FalseClass.xpm │ │ │ │ ├── Hash.xpm │ │ │ │ ├── Key.xpm │ │ │ │ ├── NilClass.xpm │ │ │ │ ├── Numeric.xpm │ │ │ │ ├── String.xpm │ │ │ │ ├── TrueClass.xpm │ │ │ │ ├── add │ │ │ │ │ ├── core.rb │ │ │ │ │ └── rails.rb │ │ │ │ ├── common.rb │ │ │ │ ├── editor.rb │ │ │ │ ├── ext.rb │ │ │ │ ├── json.xpm │ │ │ │ ├── pure.rb │ │ │ │ ├── pure │ │ │ │ │ ├── generator.rb │ │ │ │ │ └── parser.rb │ │ │ │ └── version.rb │ │ │ ├── ml.rb │ │ │ ├── ml_rest.rb │ │ │ ├── scaffold.rb │ │ │ ├── server_config.rb │ │ │ ├── templates │ │ │ │ ├── controller-function.xqy │ │ │ │ ├── controller.xqy │ │ │ │ ├── layout.html.xqy │ │ │ │ ├── layout.xqy │ │ │ │ ├── model-function.xqy │ │ │ │ ├── model.xqy │ │ │ │ ├── test.xqy │ │ │ │ ├── view.html.xqy │ │ │ │ ├── view.json.xqy │ │ │ │ ├── view.xml.xqy │ │ │ │ └── view.xqy │ │ │ ├── upgrader.rb │ │ │ ├── util.rb │ │ │ ├── xcc.rb │ │ │ └── xquery │ │ │ │ ├── cpf.xqy │ │ │ │ └── setup.xqy │ │ ├── ml-config.xml │ │ ├── sample │ │ │ ├── all.sample.xml │ │ │ ├── build.sample.properties │ │ │ ├── ml-config.sample.xml │ │ │ ├── pipeline-config.sample.xml │ │ │ ├── properties.sample.xml │ │ │ ├── rest-ext.sample.xqy │ │ │ ├── rest-transform.sample.xqy │ │ │ └── rest-transform.sample.xslt │ │ └── test │ │ │ ├── data │ │ │ ├── ml4-config.xml │ │ │ ├── ml4-properties │ │ │ │ ├── build.properties │ │ │ │ └── default.properties │ │ │ ├── ml5-config.xml │ │ │ ├── ml5-properties │ │ │ │ ├── build.properties │ │ │ │ └── default.properties │ │ │ ├── ml6-config.xml │ │ │ └── ml6-properties │ │ │ │ ├── build.properties │ │ │ │ └── default.properties │ │ │ ├── test_main.rb │ │ │ └── test_server_config.rb │ ├── installextensions.sh │ ├── license.txt │ ├── ml │ ├── ml.bat │ ├── rest-api │ │ ├── config │ │ │ ├── options │ │ │ │ └── all.xml │ │ │ └── properties.xml │ │ └── ext │ │ │ ├── dls.xqy │ │ │ ├── dlsrules.xqy │ │ │ ├── groupby.xqy │ │ │ ├── rdb2rdf.xqy │ │ │ ├── subscribe.xqy │ │ │ ├── triggers.xqy │ │ │ ├── version.xqy │ │ │ ├── whoami.xqy │ │ │ └── workplace.xqy │ ├── src │ │ ├── address.html │ │ ├── angular.html │ │ ├── app │ │ │ ├── config │ │ │ │ └── config.xqy │ │ │ └── models │ │ │ │ ├── lib-thesaurus.xqy │ │ │ │ ├── rdb2rdf-lib.xqy │ │ │ │ └── sql.xqy │ │ ├── charts.html │ │ ├── chartsearch.html │ │ ├── collectionuris.html │ │ ├── css │ │ │ ├── 960 │ │ │ │ ├── 960.css │ │ │ │ ├── 960_12_col.css │ │ │ │ ├── 960_12_col_rtl.css │ │ │ │ ├── 960_16_col.css │ │ │ │ ├── 960_16_col_rtl.css │ │ │ │ ├── 960_24_col.css │ │ │ │ ├── 960_24_col_rtl.css │ │ │ │ ├── 960_rtl.css │ │ │ │ ├── demo.css │ │ │ │ ├── min │ │ │ │ │ ├── 960.css │ │ │ │ │ ├── 960_12_col.css │ │ │ │ │ ├── 960_12_col_rtl.css │ │ │ │ │ ├── 960_16_col.css │ │ │ │ │ ├── 960_16_col_rtl.css │ │ │ │ │ ├── 960_24_col.css │ │ │ │ │ ├── 960_24_col_rtl.css │ │ │ │ │ ├── 960_rtl.css │ │ │ │ │ ├── reset.css │ │ │ │ │ ├── reset_rtl.css │ │ │ │ │ ├── text.css │ │ │ │ │ └── text_rtl.css │ │ │ │ ├── reset.css │ │ │ │ ├── reset_rtl.css │ │ │ │ ├── text.css │ │ │ │ └── text_rtl.css │ │ │ ├── bootstrap-roxy.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── kratu.css │ │ │ ├── mljs │ │ │ │ ├── modal.css │ │ │ │ ├── widget-search.css │ │ │ │ └── widgets.css │ │ │ ├── one-column.css │ │ │ └── vars.css │ │ ├── dnd.html │ │ ├── docbuilder.html │ │ ├── docedit.html │ │ ├── docview.html │ │ ├── error.html │ │ ├── explorer.html │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── images │ │ │ └── mljs │ │ │ │ ├── loading.gif │ │ │ │ ├── question-mark-small.png │ │ │ │ ├── question-mark.png │ │ │ │ ├── setting-large.png │ │ │ │ └── setting-small.png │ │ ├── index.html │ │ ├── infobox.html │ │ ├── js │ │ │ ├── OpenLayers-2.13.1 │ │ │ │ ├── .gitignore │ │ │ │ ├── OpenLayers.debug.js │ │ │ │ ├── OpenLayers.js │ │ │ │ ├── OpenLayers.light.debug.js │ │ │ │ ├── OpenLayers.light.js │ │ │ │ ├── OpenLayers.mobile.debug.js │ │ │ │ ├── OpenLayers.mobile.js │ │ │ │ ├── art │ │ │ │ │ ├── arrows.svg │ │ │ │ │ ├── layer-switcher-maximize.svg │ │ │ │ │ ├── layer-switcher-minimize.svg │ │ │ │ │ ├── marker.svg │ │ │ │ │ ├── measuring-stick-off.svg │ │ │ │ │ ├── measuring-stick-on.svg │ │ │ │ │ ├── panning-hand-off.svg │ │ │ │ │ ├── panning-hand-on.svg │ │ │ │ │ ├── slider.svg │ │ │ │ │ ├── zoom-world.svg │ │ │ │ │ └── zoombar.svg │ │ │ │ ├── authors.txt │ │ │ │ ├── img │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── cloud-popup-relative.png │ │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ │ ├── east-mini.png │ │ │ │ │ ├── layer-switcher-maximize.png │ │ │ │ │ ├── layer-switcher-minimize.png │ │ │ │ │ ├── marker-blue.png │ │ │ │ │ ├── marker-gold.png │ │ │ │ │ ├── marker-green.png │ │ │ │ │ ├── marker.png │ │ │ │ │ ├── measuring-stick-off.png │ │ │ │ │ ├── measuring-stick-on.png │ │ │ │ │ ├── north-mini.png │ │ │ │ │ ├── panning-hand-off.png │ │ │ │ │ ├── panning-hand-on.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── south-mini.png │ │ │ │ │ ├── west-mini.png │ │ │ │ │ ├── zoom-minus-mini.png │ │ │ │ │ ├── zoom-plus-mini.png │ │ │ │ │ ├── zoom-world-mini.png │ │ │ │ │ └── zoombar.png │ │ │ │ ├── lib │ │ │ │ │ ├── Firebug │ │ │ │ │ │ ├── errorIcon.png │ │ │ │ │ │ ├── firebug.css │ │ │ │ │ │ ├── firebug.html │ │ │ │ │ │ ├── firebug.js │ │ │ │ │ │ ├── firebugx.js │ │ │ │ │ │ ├── infoIcon.png │ │ │ │ │ │ ├── license.txt │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ └── warningIcon.png │ │ │ │ │ ├── OpenLayers.js │ │ │ │ │ ├── OpenLayers │ │ │ │ │ │ ├── Animation.js │ │ │ │ │ │ ├── BaseTypes.js │ │ │ │ │ │ ├── BaseTypes │ │ │ │ │ │ │ ├── Bounds.js │ │ │ │ │ │ │ ├── Class.js │ │ │ │ │ │ │ ├── Date.js │ │ │ │ │ │ │ ├── Element.js │ │ │ │ │ │ │ ├── LonLat.js │ │ │ │ │ │ │ ├── Pixel.js │ │ │ │ │ │ │ └── Size.js │ │ │ │ │ │ ├── Console.js │ │ │ │ │ │ ├── Control.js │ │ │ │ │ │ ├── Control │ │ │ │ │ │ │ ├── ArgParser.js │ │ │ │ │ │ │ ├── Attribution.js │ │ │ │ │ │ │ ├── Button.js │ │ │ │ │ │ │ ├── CacheRead.js │ │ │ │ │ │ │ ├── CacheWrite.js │ │ │ │ │ │ │ ├── DragFeature.js │ │ │ │ │ │ │ ├── DragPan.js │ │ │ │ │ │ │ ├── DrawFeature.js │ │ │ │ │ │ │ ├── EditingToolbar.js │ │ │ │ │ │ │ ├── Geolocate.js │ │ │ │ │ │ │ ├── GetFeature.js │ │ │ │ │ │ │ ├── Graticule.js │ │ │ │ │ │ │ ├── KeyboardDefaults.js │ │ │ │ │ │ │ ├── LayerSwitcher.js │ │ │ │ │ │ │ ├── Measure.js │ │ │ │ │ │ │ ├── ModifyFeature.js │ │ │ │ │ │ │ ├── MousePosition.js │ │ │ │ │ │ │ ├── NavToolbar.js │ │ │ │ │ │ │ ├── Navigation.js │ │ │ │ │ │ │ ├── NavigationHistory.js │ │ │ │ │ │ │ ├── OverviewMap.js │ │ │ │ │ │ │ ├── Pan.js │ │ │ │ │ │ │ ├── PanPanel.js │ │ │ │ │ │ │ ├── PanZoom.js │ │ │ │ │ │ │ ├── PanZoomBar.js │ │ │ │ │ │ │ ├── Panel.js │ │ │ │ │ │ │ ├── Permalink.js │ │ │ │ │ │ │ ├── PinchZoom.js │ │ │ │ │ │ │ ├── SLDSelect.js │ │ │ │ │ │ │ ├── Scale.js │ │ │ │ │ │ │ ├── ScaleLine.js │ │ │ │ │ │ │ ├── SelectFeature.js │ │ │ │ │ │ │ ├── Snapping.js │ │ │ │ │ │ │ ├── Split.js │ │ │ │ │ │ │ ├── TouchNavigation.js │ │ │ │ │ │ │ ├── TransformFeature.js │ │ │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ │ │ ├── WMTSGetFeatureInfo.js │ │ │ │ │ │ │ ├── Zoom.js │ │ │ │ │ │ │ ├── ZoomBox.js │ │ │ │ │ │ │ ├── ZoomIn.js │ │ │ │ │ │ │ ├── ZoomOut.js │ │ │ │ │ │ │ ├── ZoomPanel.js │ │ │ │ │ │ │ └── ZoomToMaxExtent.js │ │ │ │ │ │ ├── Events.js │ │ │ │ │ │ ├── Events │ │ │ │ │ │ │ ├── buttonclick.js │ │ │ │ │ │ │ └── featureclick.js │ │ │ │ │ │ ├── Feature.js │ │ │ │ │ │ ├── Feature │ │ │ │ │ │ │ └── Vector.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ ├── Comparison.js │ │ │ │ │ │ │ ├── FeatureId.js │ │ │ │ │ │ │ ├── Function.js │ │ │ │ │ │ │ ├── Logical.js │ │ │ │ │ │ │ └── Spatial.js │ │ │ │ │ │ ├── Format.js │ │ │ │ │ │ ├── Format │ │ │ │ │ │ │ ├── ArcXML.js │ │ │ │ │ │ │ ├── ArcXML │ │ │ │ │ │ │ │ └── Features.js │ │ │ │ │ │ │ ├── Atom.js │ │ │ │ │ │ │ ├── CQL.js │ │ │ │ │ │ │ ├── CSWGetDomain.js │ │ │ │ │ │ │ ├── CSWGetDomain │ │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ │ ├── CSWGetRecords.js │ │ │ │ │ │ │ ├── CSWGetRecords │ │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ │ ├── Context.js │ │ │ │ │ │ │ ├── EncodedPolyline.js │ │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── GML.js │ │ │ │ │ │ │ ├── GML │ │ │ │ │ │ │ │ ├── Base.js │ │ │ │ │ │ │ │ ├── v2.js │ │ │ │ │ │ │ │ └── v3.js │ │ │ │ │ │ │ ├── GPX.js │ │ │ │ │ │ │ ├── GeoJSON.js │ │ │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ │ │ ├── JSON.js │ │ │ │ │ │ │ ├── KML.js │ │ │ │ │ │ │ ├── OGCExceptionReport.js │ │ │ │ │ │ │ ├── OSM.js │ │ │ │ │ │ │ ├── OWSCommon.js │ │ │ │ │ │ │ ├── OWSCommon │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── OWSContext.js │ │ │ │ │ │ │ ├── OWSContext │ │ │ │ │ │ │ │ └── v0_3_1.js │ │ │ │ │ │ │ ├── QueryStringFilter.js │ │ │ │ │ │ │ ├── SLD.js │ │ │ │ │ │ │ ├── SLD │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_0_0_GeoServer.js │ │ │ │ │ │ │ ├── SOSCapabilities.js │ │ │ │ │ │ │ ├── SOSCapabilities │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── SOSGetFeatureOfInterest.js │ │ │ │ │ │ │ ├── SOSGetObservation.js │ │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ │ ├── WCSCapabilities.js │ │ │ │ │ │ │ ├── WCSCapabilities │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WCSGetCoverage.js │ │ │ │ │ │ │ ├── WFS.js │ │ │ │ │ │ │ ├── WFSCapabilities.js │ │ │ │ │ │ │ ├── WFSCapabilities │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WFSDescribeFeatureType.js │ │ │ │ │ │ │ ├── WFST.js │ │ │ │ │ │ │ ├── WFST │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WKT.js │ │ │ │ │ │ │ ├── WMC.js │ │ │ │ │ │ │ ├── WMC │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── WMSCapabilities.js │ │ │ │ │ │ │ ├── WMSCapabilities │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_1.js │ │ │ │ │ │ │ │ ├── v1_1_0.js │ │ │ │ │ │ │ │ ├── v1_1_1.js │ │ │ │ │ │ │ │ ├── v1_1_1_WMSC.js │ │ │ │ │ │ │ │ ├── v1_3.js │ │ │ │ │ │ │ │ └── v1_3_0.js │ │ │ │ │ │ │ ├── WMSDescribeLayer.js │ │ │ │ │ │ │ ├── WMSDescribeLayer │ │ │ │ │ │ │ │ └── v1_1.js │ │ │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ │ │ ├── WMTSCapabilities.js │ │ │ │ │ │ │ ├── WMTSCapabilities │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── WPSCapabilities.js │ │ │ │ │ │ │ ├── WPSCapabilities │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── WPSDescribeProcess.js │ │ │ │ │ │ │ ├── WPSExecute.js │ │ │ │ │ │ │ ├── XLS.js │ │ │ │ │ │ │ ├── XLS │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ │ ├── XML.js │ │ │ │ │ │ │ └── XML │ │ │ │ │ │ │ │ └── VersionedOGC.js │ │ │ │ │ │ ├── Geometry.js │ │ │ │ │ │ ├── Geometry │ │ │ │ │ │ │ ├── Collection.js │ │ │ │ │ │ │ ├── Curve.js │ │ │ │ │ │ │ ├── LineString.js │ │ │ │ │ │ │ ├── LinearRing.js │ │ │ │ │ │ │ ├── MultiLineString.js │ │ │ │ │ │ │ ├── MultiPoint.js │ │ │ │ │ │ │ ├── MultiPolygon.js │ │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ │ └── Polygon.js │ │ │ │ │ │ ├── Handler.js │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ │ ├── Box.js │ │ │ │ │ │ │ ├── Click.js │ │ │ │ │ │ │ ├── Drag.js │ │ │ │ │ │ │ ├── Feature.js │ │ │ │ │ │ │ ├── Hover.js │ │ │ │ │ │ │ ├── Keyboard.js │ │ │ │ │ │ │ ├── MouseWheel.js │ │ │ │ │ │ │ ├── Path.js │ │ │ │ │ │ │ ├── Pinch.js │ │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ │ ├── Polygon.js │ │ │ │ │ │ │ └── RegularPolygon.js │ │ │ │ │ │ ├── Icon.js │ │ │ │ │ │ ├── Kinetic.js │ │ │ │ │ │ ├── Lang.js │ │ │ │ │ │ ├── Lang │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── be-tarask.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── br.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs-CZ.js │ │ │ │ │ │ │ ├── da-DK.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en-CA.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── fur.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── gsw.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hsb.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── ia.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── io.js │ │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── ksh.js │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nds.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── nn.js │ │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sv-SE.js │ │ │ │ │ │ │ ├── te.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ │ ├── Layer.js │ │ │ │ │ │ ├── Layer │ │ │ │ │ │ │ ├── ArcGIS93Rest.js │ │ │ │ │ │ │ ├── ArcGISCache.js │ │ │ │ │ │ │ ├── ArcIMS.js │ │ │ │ │ │ │ ├── Bing.js │ │ │ │ │ │ │ ├── Boxes.js │ │ │ │ │ │ │ ├── EventPane.js │ │ │ │ │ │ │ ├── FixedZoomLevels.js │ │ │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ │ │ ├── Google.js │ │ │ │ │ │ │ ├── Google │ │ │ │ │ │ │ │ └── v3.js │ │ │ │ │ │ │ ├── Grid.js │ │ │ │ │ │ │ ├── HTTPRequest.js │ │ │ │ │ │ │ ├── Image.js │ │ │ │ │ │ │ ├── KaMap.js │ │ │ │ │ │ │ ├── KaMapCache.js │ │ │ │ │ │ │ ├── MapGuide.js │ │ │ │ │ │ │ ├── MapServer.js │ │ │ │ │ │ │ ├── Markers.js │ │ │ │ │ │ │ ├── OSM.js │ │ │ │ │ │ │ ├── PointGrid.js │ │ │ │ │ │ │ ├── PointTrack.js │ │ │ │ │ │ │ ├── SphericalMercator.js │ │ │ │ │ │ │ ├── TMS.js │ │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ │ ├── TileCache.js │ │ │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ │ │ ├── Vector.js │ │ │ │ │ │ │ ├── Vector │ │ │ │ │ │ │ │ └── RootContainer.js │ │ │ │ │ │ │ ├── WMS.js │ │ │ │ │ │ │ ├── WMTS.js │ │ │ │ │ │ │ ├── WorldWind.js │ │ │ │ │ │ │ ├── XYZ.js │ │ │ │ │ │ │ └── Zoomify.js │ │ │ │ │ │ ├── Map.js │ │ │ │ │ │ ├── Marker.js │ │ │ │ │ │ ├── Marker │ │ │ │ │ │ │ └── Box.js │ │ │ │ │ │ ├── Popup.js │ │ │ │ │ │ ├── Popup │ │ │ │ │ │ │ ├── Anchored.js │ │ │ │ │ │ │ ├── Framed.js │ │ │ │ │ │ │ └── FramedCloud.js │ │ │ │ │ │ ├── Projection.js │ │ │ │ │ │ ├── Protocol.js │ │ │ │ │ │ ├── Protocol │ │ │ │ │ │ │ ├── CSW.js │ │ │ │ │ │ │ ├── CSW │ │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ │ ├── HTTP.js │ │ │ │ │ │ │ ├── SOS.js │ │ │ │ │ │ │ ├── SOS │ │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ │ ├── Script.js │ │ │ │ │ │ │ ├── WFS.js │ │ │ │ │ │ │ └── WFS │ │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── Renderer.js │ │ │ │ │ │ ├── Renderer │ │ │ │ │ │ │ ├── Canvas.js │ │ │ │ │ │ │ ├── Elements.js │ │ │ │ │ │ │ ├── SVG.js │ │ │ │ │ │ │ └── VML.js │ │ │ │ │ │ ├── Request.js │ │ │ │ │ │ ├── Request │ │ │ │ │ │ │ └── XMLHttpRequest.js │ │ │ │ │ │ ├── Rule.js │ │ │ │ │ │ ├── SingleFile.js │ │ │ │ │ │ ├── Spherical.js │ │ │ │ │ │ ├── Strategy.js │ │ │ │ │ │ ├── Strategy │ │ │ │ │ │ │ ├── BBOX.js │ │ │ │ │ │ │ ├── Cluster.js │ │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ │ ├── Fixed.js │ │ │ │ │ │ │ ├── Paging.js │ │ │ │ │ │ │ ├── Refresh.js │ │ │ │ │ │ │ └── Save.js │ │ │ │ │ │ ├── Style.js │ │ │ │ │ │ ├── Style2.js │ │ │ │ │ │ ├── StyleMap.js │ │ │ │ │ │ ├── Symbolizer.js │ │ │ │ │ │ ├── Symbolizer │ │ │ │ │ │ │ ├── Line.js │ │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ │ ├── Polygon.js │ │ │ │ │ │ │ ├── Raster.js │ │ │ │ │ │ │ └── Text.js │ │ │ │ │ │ ├── Tile.js │ │ │ │ │ │ ├── Tile │ │ │ │ │ │ │ ├── Image.js │ │ │ │ │ │ │ ├── Image │ │ │ │ │ │ │ │ └── IFrame.js │ │ │ │ │ │ │ └── UTFGrid.js │ │ │ │ │ │ ├── TileManager.js │ │ │ │ │ │ ├── Tween.js │ │ │ │ │ │ ├── Util.js │ │ │ │ │ │ ├── Util │ │ │ │ │ │ │ └── vendorPrefix.js │ │ │ │ │ │ ├── WPSClient.js │ │ │ │ │ │ └── WPSProcess.js │ │ │ │ │ ├── Rico │ │ │ │ │ │ ├── Color.js │ │ │ │ │ │ ├── Corner.js │ │ │ │ │ │ └── license.js │ │ │ │ │ └── deprecated.js │ │ │ │ ├── license.txt │ │ │ │ ├── licenses │ │ │ │ │ ├── APACHE-2.0.txt │ │ │ │ │ ├── BSD-LICENSE.txt │ │ │ │ │ └── MIT-LICENSE.txt │ │ │ │ ├── notes │ │ │ │ │ ├── 2.12.md │ │ │ │ │ └── 2.13.md │ │ │ │ ├── readme.md │ │ │ │ └── theme │ │ │ │ │ └── default │ │ │ │ │ ├── google.css │ │ │ │ │ ├── google.tidy.css │ │ │ │ │ ├── ie6-style.css │ │ │ │ │ ├── ie6-style.tidy.css │ │ │ │ │ ├── img │ │ │ │ │ ├── add_point_off.png │ │ │ │ │ ├── add_point_on.png │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ │ ├── draw_line_off.png │ │ │ │ │ ├── draw_line_on.png │ │ │ │ │ ├── draw_point_off.png │ │ │ │ │ ├── draw_point_on.png │ │ │ │ │ ├── draw_polygon_off.png │ │ │ │ │ ├── draw_polygon_on.png │ │ │ │ │ ├── editing_tool_bar.png │ │ │ │ │ ├── move_feature_off.png │ │ │ │ │ ├── move_feature_on.png │ │ │ │ │ ├── navigation_history.png │ │ │ │ │ ├── overview_replacement.gif │ │ │ │ │ ├── pan-panel-NOALPHA.png │ │ │ │ │ ├── pan-panel.png │ │ │ │ │ ├── pan_off.png │ │ │ │ │ ├── pan_on.png │ │ │ │ │ ├── panning-hand-off.png │ │ │ │ │ ├── panning-hand-on.png │ │ │ │ │ ├── remove_point_off.png │ │ │ │ │ ├── remove_point_on.png │ │ │ │ │ ├── ruler.png │ │ │ │ │ ├── save_features_off.png │ │ │ │ │ ├── save_features_on.png │ │ │ │ │ ├── view_next_off.png │ │ │ │ │ ├── view_next_on.png │ │ │ │ │ ├── view_previous_off.png │ │ │ │ │ ├── view_previous_on.png │ │ │ │ │ ├── zoom-panel-NOALPHA.png │ │ │ │ │ └── zoom-panel.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.mobile.css │ │ │ │ │ ├── style.mobile.tidy.css │ │ │ │ │ └── style.tidy.css │ │ │ ├── angular.min.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── canvas.js │ │ │ ├── ckeditor │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── adapters │ │ │ │ │ └── jquery.js │ │ │ │ ├── build-config.js │ │ │ │ ├── ckeditor.js │ │ │ │ ├── config.js │ │ │ │ ├── contents.css │ │ │ │ ├── lang │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ └── en.js │ │ │ │ ├── plugins │ │ │ │ │ ├── about │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ ├── clipboard │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── paste.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ └── dialogDefinition.js │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ └── link │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── skins │ │ │ │ │ └── bootstrapck │ │ │ │ │ │ ├── .temp │ │ │ │ │ │ └── css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ │ │ └── editor_iequirks.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ ├── readme.md │ │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── bootstrapck-sample.css │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── analytics.js │ │ │ │ │ │ │ └── jquery-1.11.0.min.js │ │ │ │ │ │ └── scss │ │ │ │ │ │ ├── browser-specific │ │ │ │ │ │ ├── gecko │ │ │ │ │ │ │ └── editor_gecko.scss │ │ │ │ │ │ ├── ie │ │ │ │ │ │ │ ├── dialog_ie.scss │ │ │ │ │ │ │ └── editor_ie.scss │ │ │ │ │ │ ├── ie7 │ │ │ │ │ │ │ ├── dialog_ie7.scss │ │ │ │ │ │ │ └── editor_ie7.scss │ │ │ │ │ │ ├── ie8 │ │ │ │ │ │ │ ├── dialog_ie8.scss │ │ │ │ │ │ │ └── editor_ie8.scss │ │ │ │ │ │ ├── iequirks │ │ │ │ │ │ │ ├── dialog_iequirks.scss │ │ │ │ │ │ │ └── editor_iequirks.scss │ │ │ │ │ │ └── opera │ │ │ │ │ │ │ └── dialog_opera.scss │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── _colorpanel.scss │ │ │ │ │ │ ├── _elementspath.scss │ │ │ │ │ │ ├── _mainui.scss │ │ │ │ │ │ ├── _menu.scss │ │ │ │ │ │ ├── _panel.scss │ │ │ │ │ │ ├── _presets.scss │ │ │ │ │ │ ├── _reset.scss │ │ │ │ │ │ ├── _richcombo.scss │ │ │ │ │ │ ├── _toolbar.scss │ │ │ │ │ │ └── editor.scss │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── _colors.scss │ │ │ │ │ │ ├── _config.scss │ │ │ │ │ │ └── _defaults.scss │ │ │ │ │ │ └── dialog │ │ │ │ │ │ └── dialog.scss │ │ │ │ └── styles.js │ │ │ ├── dataproviders │ │ │ │ ├── csv.js │ │ │ │ └── json.js │ │ │ ├── heatmap │ │ │ │ ├── heatmap-openlayers.js │ │ │ │ └── heatmap.js │ │ │ ├── highcharts.js │ │ │ ├── kratu.js │ │ │ ├── kratuSignalAdjustments.js │ │ │ ├── lib │ │ │ │ └── jquery-1.7.1.min.js │ │ │ ├── mljs │ │ │ │ ├── mljs-angular.js │ │ │ │ ├── mljs-jquery.js │ │ │ │ ├── mljs-prototype.js │ │ │ │ ├── mljs-xhr.js │ │ │ │ ├── mljs-xhr2.js │ │ │ │ ├── mljs.js │ │ │ │ ├── widget-address.js │ │ │ │ ├── widget-alerts-defaults.js │ │ │ │ ├── widget-alerts.js │ │ │ │ ├── widget-collections.js │ │ │ │ ├── widget-cooccurence.js │ │ │ │ ├── widget-d3.js │ │ │ │ ├── widget-dls.js │ │ │ │ ├── widget-docbuilder.js │ │ │ │ ├── widget-documents.js │ │ │ │ ├── widget-explore.js │ │ │ │ ├── widget-highcharts.js │ │ │ │ ├── widget-ingest.js │ │ │ │ ├── widget-kratu.js │ │ │ │ ├── widget-markings.js │ │ │ │ ├── widget-openlayers.js │ │ │ │ ├── widget-pivottable.js │ │ │ │ ├── widget-profile.js │ │ │ │ ├── widget-rdb2rdf.js │ │ │ │ ├── widget-search-oldinit.js │ │ │ │ ├── widget-search.js │ │ │ │ ├── widget-searchoptions.js │ │ │ │ ├── widget-security.js │ │ │ │ ├── widget-tagcloud.js │ │ │ │ ├── widget-triples.js │ │ │ │ ├── widget-workplace.js │ │ │ │ └── widgets.js │ │ │ └── mljstest │ │ │ │ ├── node-js-and-marklogic-getting-started-with-mljs.markdown │ │ │ │ ├── page-mljstest-address.js │ │ │ │ ├── page-mljstest-angular.js │ │ │ │ ├── page-mljstest-charts.js │ │ │ │ ├── page-mljstest-chartsearch.js │ │ │ │ ├── page-mljstest-collectionuris.js │ │ │ │ ├── page-mljstest-dnd.js │ │ │ │ ├── page-mljstest-docbuilder.js │ │ │ │ ├── page-mljstest-docedit.js │ │ │ │ ├── page-mljstest-docview.js │ │ │ │ ├── page-mljstest-error.js │ │ │ │ ├── page-mljstest-explorer.js │ │ │ │ ├── page-mljstest-infobox.js │ │ │ │ ├── page-mljstest-kratu.js │ │ │ │ ├── page-mljstest-main.js │ │ │ │ ├── page-mljstest-movies.js │ │ │ │ ├── page-mljstest-openlayers.js │ │ │ │ ├── page-mljstest-rdb2rdf.js │ │ │ │ ├── page-mljstest-search.js │ │ │ │ ├── page-mljstest-snippets.js │ │ │ │ ├── page-mljstest-sparqlbar.js │ │ │ │ ├── page-mljstest-stevensearch.js │ │ │ │ ├── page-mljstest-tagcloud.js │ │ │ │ ├── page-mljstest-upload.js │ │ │ │ ├── page-mljstest-workplace-custom.js │ │ │ │ ├── page-mljstest-workplace.js │ │ │ │ └── page-mljstest-workplaceadmin.js │ │ ├── kratu.html │ │ ├── movies.html │ │ ├── openlayers.html │ │ ├── rdb2rdf.html │ │ ├── roxy │ │ │ └── config │ │ │ │ └── defaults.xqy │ │ ├── search.html │ │ ├── snippets.html │ │ ├── sparqlbar.html │ │ ├── stevensearch.html │ │ ├── tagcloud.html │ │ ├── upload.html │ │ ├── workplace-custom.html │ │ ├── workplace.html │ │ └── workplaceadmin.html │ ├── u.sh │ └── version.txt └── workplace │ ├── CHANGELOG.mdown │ ├── README.mdown │ ├── bower.json │ ├── config │ ├── env.js │ └── webserver-settings.sh │ ├── data │ ├── .initial.json │ ├── initial │ │ ├── animals │ │ │ ├── .load.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ ├── attractions │ │ │ ├── .load.json │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ └── 7.json │ │ ├── mixed │ │ │ ├── .load.json │ │ │ ├── 1.xml │ │ │ ├── 2.xml │ │ │ ├── 3.xml │ │ │ ├── 4.html │ │ │ ├── 5.json │ │ │ └── 6.json │ │ ├── movies │ │ │ ├── .load.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ ├── plaintext │ │ │ ├── .load.json │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ └── 5.txt │ │ ├── temperatures │ │ │ ├── .load.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 25.json │ │ │ ├── 26.json │ │ │ ├── 27.json │ │ │ ├── 28.json │ │ │ ├── 29.json │ │ │ ├── 3.json │ │ │ ├── 30.json │ │ │ ├── 31.json │ │ │ ├── 32.json │ │ │ ├── 33.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ └── triples │ │ │ ├── .load.json │ │ │ ├── triples1.xml │ │ │ └── triples2.xml │ ├── mljs-workplace.xml │ ├── ontology.ttl │ └── restapi.json │ ├── deploy │ ├── app_specific.rb │ ├── build.properties │ ├── default.properties │ ├── dev.properties │ ├── lib │ │ ├── Help.rb │ │ ├── MLClient.rb │ │ ├── RoxyHttp.rb │ │ ├── framework.rb │ │ ├── java │ │ │ ├── corb.jar │ │ │ ├── marklogic-xcc-5.0.2.jar │ │ │ ├── recordloader.jar │ │ │ ├── xpp3-1.1.4c.jar │ │ │ ├── xqsync.jar │ │ │ └── xstream-1.4.2.jar │ │ ├── json.rb │ │ ├── json │ │ │ ├── Array.xpm │ │ │ ├── FalseClass.xpm │ │ │ ├── Hash.xpm │ │ │ ├── Key.xpm │ │ │ ├── NilClass.xpm │ │ │ ├── Numeric.xpm │ │ │ ├── String.xpm │ │ │ ├── TrueClass.xpm │ │ │ ├── add │ │ │ │ ├── core.rb │ │ │ │ └── rails.rb │ │ │ ├── common.rb │ │ │ ├── editor.rb │ │ │ ├── ext.rb │ │ │ ├── json.xpm │ │ │ ├── pure.rb │ │ │ ├── pure │ │ │ │ ├── generator.rb │ │ │ │ └── parser.rb │ │ │ └── version.rb │ │ ├── ml.rb │ │ ├── ml_rest.rb │ │ ├── scaffold.rb │ │ ├── server_config.rb │ │ ├── templates │ │ │ ├── controller-function.xqy │ │ │ ├── controller.xqy │ │ │ ├── layout.html.xqy │ │ │ ├── layout.xqy │ │ │ ├── model-function.xqy │ │ │ ├── model.xqy │ │ │ ├── test.xqy │ │ │ ├── view.html.xqy │ │ │ ├── view.json.xqy │ │ │ ├── view.xml.xqy │ │ │ └── view.xqy │ │ ├── upgrader.rb │ │ ├── util.rb │ │ ├── xcc.rb │ │ └── xquery │ │ │ ├── cpf.xqy │ │ │ └── setup.xqy │ ├── ml-config.xml │ ├── sample │ │ ├── all.sample.xml │ │ ├── build.sample.properties │ │ ├── ml-config.sample.xml │ │ ├── pipeline-config.sample.xml │ │ ├── properties.sample.xml │ │ ├── rest-ext.sample.xqy │ │ ├── rest-transform.sample.xqy │ │ └── rest-transform.sample.xslt │ └── test │ │ ├── data │ │ ├── ml4-config.xml │ │ ├── ml4-properties │ │ │ ├── build.properties │ │ │ └── default.properties │ │ ├── ml5-config.xml │ │ ├── ml5-properties │ │ │ ├── build.properties │ │ │ └── default.properties │ │ ├── ml6-config.xml │ │ ├── ml6-properties │ │ │ ├── build.properties │ │ │ └── default.properties │ │ ├── ml7-config.xml │ │ └── ml7-properties │ │ │ ├── build.properties │ │ │ └── default.properties │ │ ├── test_main.rb │ │ └── test_server_config.rb │ ├── example-workplaces │ └── jointdemo-workplace.xml │ ├── license.txt │ ├── ml │ ├── ml.bat │ ├── packages │ └── databases │ │ ├── contentdbconfig.xml │ │ └── modulesdbconfig.xml │ ├── rest-api │ ├── config │ │ ├── options │ │ │ ├── actor-genre-year.xml │ │ │ ├── all.xml │ │ │ ├── alltest.xml │ │ │ ├── animals.xml │ │ │ ├── author-topic.xml │ │ │ ├── backup-all.xml │ │ │ ├── jointdemo.xml │ │ │ ├── olddashboard.xml │ │ │ └── temperatures.xml │ │ └── properties.xml │ └── ext │ │ ├── dls.xqy │ │ ├── dlsrules.xqy │ │ ├── groupby.xqy │ │ ├── rdb2rdf.xqy │ │ ├── subscribe.xqy │ │ ├── triggers.xqy │ │ ├── version.xqy │ │ ├── whoami.xqy │ │ └── workplace.xqy │ ├── src │ ├── app │ │ ├── config │ │ │ └── config.xqy │ │ └── models │ │ │ ├── lib-search-subscribe.xqy │ │ │ ├── lib-thesaurus.xqy │ │ │ ├── rdb2rdf-lib.xqy │ │ │ └── sql.xqy │ ├── application.html5 │ ├── css │ │ ├── bootstrap-roxy.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── kratu.css │ │ ├── mljs │ │ │ ├── modal.css │ │ │ ├── widget-search.css │ │ │ └── widgets.css │ │ └── navbar.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── icon-.png │ │ ├── icon-.xcf │ │ ├── icon-CNI.png │ │ ├── icon-Complaints.png │ │ ├── icon-Contracts.png │ │ ├── icon-Contracts.xcf │ │ ├── icon-InvestigatedPerson.png │ │ ├── icon-InvestigatedPhone.png │ │ ├── icon-MarkLogic%20Document.png │ │ ├── icon-Person.png │ │ ├── icon-Phone.png │ │ ├── icon-Schools.png │ │ ├── icon-Thing.png │ │ ├── icon-TwitterAccount.png │ │ ├── icon-event.png │ │ ├── icon-uploaddata.png │ │ ├── icon-xhtml.png │ │ └── mljs │ │ │ ├── loading.gif │ │ │ ├── question-mark-small.png │ │ │ ├── question-mark.png │ │ │ ├── setting-large.png │ │ │ └── setting-small.png │ ├── index.html5 │ ├── js │ │ ├── OpenLayers-2.13.1 │ │ │ ├── .gitignore │ │ │ ├── OpenLayers.debug.js │ │ │ ├── OpenLayers.js │ │ │ ├── OpenLayers.light.debug.js │ │ │ ├── OpenLayers.light.js │ │ │ ├── OpenLayers.mobile.debug.js │ │ │ ├── OpenLayers.mobile.js │ │ │ ├── art │ │ │ │ ├── arrows.svg │ │ │ │ ├── layer-switcher-maximize.svg │ │ │ │ ├── layer-switcher-minimize.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── measuring-stick-off.svg │ │ │ │ ├── measuring-stick-on.svg │ │ │ │ ├── panning-hand-off.svg │ │ │ │ ├── panning-hand-on.svg │ │ │ │ ├── slider.svg │ │ │ │ ├── zoom-world.svg │ │ │ │ └── zoombar.svg │ │ │ ├── authors.txt │ │ │ ├── img │ │ │ │ ├── blank.gif │ │ │ │ ├── cloud-popup-relative.png │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ ├── east-mini.png │ │ │ │ ├── layer-switcher-maximize.png │ │ │ │ ├── layer-switcher-minimize.png │ │ │ │ ├── marker-blue.png │ │ │ │ ├── marker-gold.png │ │ │ │ ├── marker-green.png │ │ │ │ ├── marker.png │ │ │ │ ├── measuring-stick-off.png │ │ │ │ ├── measuring-stick-on.png │ │ │ │ ├── north-mini.png │ │ │ │ ├── panning-hand-off.png │ │ │ │ ├── panning-hand-on.png │ │ │ │ ├── slider.png │ │ │ │ ├── south-mini.png │ │ │ │ ├── west-mini.png │ │ │ │ ├── zoom-minus-mini.png │ │ │ │ ├── zoom-plus-mini.png │ │ │ │ ├── zoom-world-mini.png │ │ │ │ └── zoombar.png │ │ │ ├── lib │ │ │ │ ├── Firebug │ │ │ │ │ ├── errorIcon.png │ │ │ │ │ ├── firebug.css │ │ │ │ │ ├── firebug.html │ │ │ │ │ ├── firebug.js │ │ │ │ │ ├── firebugx.js │ │ │ │ │ ├── infoIcon.png │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── warningIcon.png │ │ │ │ ├── OpenLayers.js │ │ │ │ ├── OpenLayers │ │ │ │ │ ├── Animation.js │ │ │ │ │ ├── BaseTypes.js │ │ │ │ │ ├── BaseTypes │ │ │ │ │ │ ├── Bounds.js │ │ │ │ │ │ ├── Class.js │ │ │ │ │ │ ├── Date.js │ │ │ │ │ │ ├── Element.js │ │ │ │ │ │ ├── LonLat.js │ │ │ │ │ │ ├── Pixel.js │ │ │ │ │ │ └── Size.js │ │ │ │ │ ├── Console.js │ │ │ │ │ ├── Control.js │ │ │ │ │ ├── Control │ │ │ │ │ │ ├── ArgParser.js │ │ │ │ │ │ ├── Attribution.js │ │ │ │ │ │ ├── Button.js │ │ │ │ │ │ ├── CacheRead.js │ │ │ │ │ │ ├── CacheWrite.js │ │ │ │ │ │ ├── DragFeature.js │ │ │ │ │ │ ├── DragPan.js │ │ │ │ │ │ ├── DrawFeature.js │ │ │ │ │ │ ├── EditingToolbar.js │ │ │ │ │ │ ├── Geolocate.js │ │ │ │ │ │ ├── GetFeature.js │ │ │ │ │ │ ├── Graticule.js │ │ │ │ │ │ ├── KeyboardDefaults.js │ │ │ │ │ │ ├── LayerSwitcher.js │ │ │ │ │ │ ├── Measure.js │ │ │ │ │ │ ├── ModifyFeature.js │ │ │ │ │ │ ├── MousePosition.js │ │ │ │ │ │ ├── NavToolbar.js │ │ │ │ │ │ ├── Navigation.js │ │ │ │ │ │ ├── NavigationHistory.js │ │ │ │ │ │ ├── OverviewMap.js │ │ │ │ │ │ ├── Pan.js │ │ │ │ │ │ ├── PanPanel.js │ │ │ │ │ │ ├── PanZoom.js │ │ │ │ │ │ ├── PanZoomBar.js │ │ │ │ │ │ ├── Panel.js │ │ │ │ │ │ ├── Permalink.js │ │ │ │ │ │ ├── PinchZoom.js │ │ │ │ │ │ ├── SLDSelect.js │ │ │ │ │ │ ├── Scale.js │ │ │ │ │ │ ├── ScaleLine.js │ │ │ │ │ │ ├── SelectFeature.js │ │ │ │ │ │ ├── Snapping.js │ │ │ │ │ │ ├── Split.js │ │ │ │ │ │ ├── TouchNavigation.js │ │ │ │ │ │ ├── TransformFeature.js │ │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ │ ├── WMTSGetFeatureInfo.js │ │ │ │ │ │ ├── Zoom.js │ │ │ │ │ │ ├── ZoomBox.js │ │ │ │ │ │ ├── ZoomIn.js │ │ │ │ │ │ ├── ZoomOut.js │ │ │ │ │ │ ├── ZoomPanel.js │ │ │ │ │ │ └── ZoomToMaxExtent.js │ │ │ │ │ ├── Events.js │ │ │ │ │ ├── Events │ │ │ │ │ │ ├── buttonclick.js │ │ │ │ │ │ └── featureclick.js │ │ │ │ │ ├── Feature.js │ │ │ │ │ ├── Feature │ │ │ │ │ │ └── Vector.js │ │ │ │ │ ├── Filter.js │ │ │ │ │ ├── Filter │ │ │ │ │ │ ├── Comparison.js │ │ │ │ │ │ ├── FeatureId.js │ │ │ │ │ │ ├── Function.js │ │ │ │ │ │ ├── Logical.js │ │ │ │ │ │ └── Spatial.js │ │ │ │ │ ├── Format.js │ │ │ │ │ ├── Format │ │ │ │ │ │ ├── ArcXML.js │ │ │ │ │ │ ├── ArcXML │ │ │ │ │ │ │ └── Features.js │ │ │ │ │ │ ├── Atom.js │ │ │ │ │ │ ├── CQL.js │ │ │ │ │ │ ├── CSWGetDomain.js │ │ │ │ │ │ ├── CSWGetDomain │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ ├── CSWGetRecords.js │ │ │ │ │ │ ├── CSWGetRecords │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ ├── Context.js │ │ │ │ │ │ ├── EncodedPolyline.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── GML.js │ │ │ │ │ │ ├── GML │ │ │ │ │ │ │ ├── Base.js │ │ │ │ │ │ │ ├── v2.js │ │ │ │ │ │ │ └── v3.js │ │ │ │ │ │ ├── GPX.js │ │ │ │ │ │ ├── GeoJSON.js │ │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ │ ├── JSON.js │ │ │ │ │ │ ├── KML.js │ │ │ │ │ │ ├── OGCExceptionReport.js │ │ │ │ │ │ ├── OSM.js │ │ │ │ │ │ ├── OWSCommon.js │ │ │ │ │ │ ├── OWSCommon │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── OWSContext.js │ │ │ │ │ │ ├── OWSContext │ │ │ │ │ │ │ └── v0_3_1.js │ │ │ │ │ │ ├── QueryStringFilter.js │ │ │ │ │ │ ├── SLD.js │ │ │ │ │ │ ├── SLD │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_0_0_GeoServer.js │ │ │ │ │ │ ├── SOSCapabilities.js │ │ │ │ │ │ ├── SOSCapabilities │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ ├── SOSGetFeatureOfInterest.js │ │ │ │ │ │ ├── SOSGetObservation.js │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ ├── WCSCapabilities.js │ │ │ │ │ │ ├── WCSCapabilities │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── WCSGetCoverage.js │ │ │ │ │ │ ├── WFS.js │ │ │ │ │ │ ├── WFSCapabilities.js │ │ │ │ │ │ ├── WFSCapabilities │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── WFSDescribeFeatureType.js │ │ │ │ │ │ ├── WFST.js │ │ │ │ │ │ ├── WFST │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── WKT.js │ │ │ │ │ │ ├── WMC.js │ │ │ │ │ │ ├── WMC │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── WMSCapabilities.js │ │ │ │ │ │ ├── WMSCapabilities │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_1.js │ │ │ │ │ │ │ ├── v1_1_0.js │ │ │ │ │ │ │ ├── v1_1_1.js │ │ │ │ │ │ │ ├── v1_1_1_WMSC.js │ │ │ │ │ │ │ ├── v1_3.js │ │ │ │ │ │ │ └── v1_3_0.js │ │ │ │ │ │ ├── WMSDescribeLayer.js │ │ │ │ │ │ ├── WMSDescribeLayer │ │ │ │ │ │ │ └── v1_1.js │ │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ │ ├── WMTSCapabilities.js │ │ │ │ │ │ ├── WMTSCapabilities │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ ├── WPSCapabilities.js │ │ │ │ │ │ ├── WPSCapabilities │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ ├── WPSDescribeProcess.js │ │ │ │ │ │ ├── WPSExecute.js │ │ │ │ │ │ ├── XLS.js │ │ │ │ │ │ ├── XLS │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ │ ├── XML.js │ │ │ │ │ │ └── XML │ │ │ │ │ │ │ └── VersionedOGC.js │ │ │ │ │ ├── Geometry.js │ │ │ │ │ ├── Geometry │ │ │ │ │ │ ├── Collection.js │ │ │ │ │ │ ├── Curve.js │ │ │ │ │ │ ├── LineString.js │ │ │ │ │ │ ├── LinearRing.js │ │ │ │ │ │ ├── MultiLineString.js │ │ │ │ │ │ ├── MultiPoint.js │ │ │ │ │ │ ├── MultiPolygon.js │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ └── Polygon.js │ │ │ │ │ ├── Handler.js │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── Box.js │ │ │ │ │ │ ├── Click.js │ │ │ │ │ │ ├── Drag.js │ │ │ │ │ │ ├── Feature.js │ │ │ │ │ │ ├── Hover.js │ │ │ │ │ │ ├── Keyboard.js │ │ │ │ │ │ ├── MouseWheel.js │ │ │ │ │ │ ├── Path.js │ │ │ │ │ │ ├── Pinch.js │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ ├── Polygon.js │ │ │ │ │ │ └── RegularPolygon.js │ │ │ │ │ ├── Icon.js │ │ │ │ │ ├── Kinetic.js │ │ │ │ │ ├── Lang.js │ │ │ │ │ ├── Lang │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── be-tarask.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── br.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs-CZ.js │ │ │ │ │ │ ├── da-DK.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-CA.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── fur.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gsw.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hsb.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── ia.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── io.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ksh.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nds.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── nn.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sv-SE.js │ │ │ │ │ │ ├── te.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── Layer.js │ │ │ │ │ ├── Layer │ │ │ │ │ │ ├── ArcGIS93Rest.js │ │ │ │ │ │ ├── ArcGISCache.js │ │ │ │ │ │ ├── ArcIMS.js │ │ │ │ │ │ ├── Bing.js │ │ │ │ │ │ ├── Boxes.js │ │ │ │ │ │ ├── EventPane.js │ │ │ │ │ │ ├── FixedZoomLevels.js │ │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ │ ├── Google.js │ │ │ │ │ │ ├── Google │ │ │ │ │ │ │ └── v3.js │ │ │ │ │ │ ├── Grid.js │ │ │ │ │ │ ├── HTTPRequest.js │ │ │ │ │ │ ├── Image.js │ │ │ │ │ │ ├── KaMap.js │ │ │ │ │ │ ├── KaMapCache.js │ │ │ │ │ │ ├── MapGuide.js │ │ │ │ │ │ ├── MapServer.js │ │ │ │ │ │ ├── Markers.js │ │ │ │ │ │ ├── OSM.js │ │ │ │ │ │ ├── PointGrid.js │ │ │ │ │ │ ├── PointTrack.js │ │ │ │ │ │ ├── SphericalMercator.js │ │ │ │ │ │ ├── TMS.js │ │ │ │ │ │ ├── Text.js │ │ │ │ │ │ ├── TileCache.js │ │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ │ ├── Vector.js │ │ │ │ │ │ ├── Vector │ │ │ │ │ │ │ └── RootContainer.js │ │ │ │ │ │ ├── WMS.js │ │ │ │ │ │ ├── WMTS.js │ │ │ │ │ │ ├── WorldWind.js │ │ │ │ │ │ ├── XYZ.js │ │ │ │ │ │ └── Zoomify.js │ │ │ │ │ ├── Map.js │ │ │ │ │ ├── Marker.js │ │ │ │ │ ├── Marker │ │ │ │ │ │ └── Box.js │ │ │ │ │ ├── Popup.js │ │ │ │ │ ├── Popup │ │ │ │ │ │ ├── Anchored.js │ │ │ │ │ │ ├── Framed.js │ │ │ │ │ │ └── FramedCloud.js │ │ │ │ │ ├── Projection.js │ │ │ │ │ ├── Protocol.js │ │ │ │ │ ├── Protocol │ │ │ │ │ │ ├── CSW.js │ │ │ │ │ │ ├── CSW │ │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ │ ├── HTTP.js │ │ │ │ │ │ ├── SOS.js │ │ │ │ │ │ ├── SOS │ │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ │ ├── Script.js │ │ │ │ │ │ ├── WFS.js │ │ │ │ │ │ └── WFS │ │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ ├── Renderer.js │ │ │ │ │ ├── Renderer │ │ │ │ │ │ ├── Canvas.js │ │ │ │ │ │ ├── Elements.js │ │ │ │ │ │ ├── SVG.js │ │ │ │ │ │ └── VML.js │ │ │ │ │ ├── Request.js │ │ │ │ │ ├── Request │ │ │ │ │ │ └── XMLHttpRequest.js │ │ │ │ │ ├── Rule.js │ │ │ │ │ ├── SingleFile.js │ │ │ │ │ ├── Spherical.js │ │ │ │ │ ├── Strategy.js │ │ │ │ │ ├── Strategy │ │ │ │ │ │ ├── BBOX.js │ │ │ │ │ │ ├── Cluster.js │ │ │ │ │ │ ├── Filter.js │ │ │ │ │ │ ├── Fixed.js │ │ │ │ │ │ ├── Paging.js │ │ │ │ │ │ ├── Refresh.js │ │ │ │ │ │ └── Save.js │ │ │ │ │ ├── Style.js │ │ │ │ │ ├── Style2.js │ │ │ │ │ ├── StyleMap.js │ │ │ │ │ ├── Symbolizer.js │ │ │ │ │ ├── Symbolizer │ │ │ │ │ │ ├── Line.js │ │ │ │ │ │ ├── Point.js │ │ │ │ │ │ ├── Polygon.js │ │ │ │ │ │ ├── Raster.js │ │ │ │ │ │ └── Text.js │ │ │ │ │ ├── Tile.js │ │ │ │ │ ├── Tile │ │ │ │ │ │ ├── Image.js │ │ │ │ │ │ ├── Image │ │ │ │ │ │ │ └── IFrame.js │ │ │ │ │ │ └── UTFGrid.js │ │ │ │ │ ├── TileManager.js │ │ │ │ │ ├── Tween.js │ │ │ │ │ ├── Util.js │ │ │ │ │ ├── Util │ │ │ │ │ │ └── vendorPrefix.js │ │ │ │ │ ├── WPSClient.js │ │ │ │ │ └── WPSProcess.js │ │ │ │ ├── Rico │ │ │ │ │ ├── Color.js │ │ │ │ │ ├── Corner.js │ │ │ │ │ └── license.js │ │ │ │ └── deprecated.js │ │ │ ├── license.txt │ │ │ ├── licenses │ │ │ │ ├── APACHE-2.0.txt │ │ │ │ ├── BSD-LICENSE.txt │ │ │ │ └── MIT-LICENSE.txt │ │ │ ├── notes │ │ │ │ ├── 2.12.md │ │ │ │ └── 2.13.md │ │ │ ├── readme.md │ │ │ └── theme │ │ │ │ └── default │ │ │ │ ├── google.css │ │ │ │ ├── google.tidy.css │ │ │ │ ├── ie6-style.css │ │ │ │ ├── ie6-style.tidy.css │ │ │ │ ├── img │ │ │ │ ├── add_point_off.png │ │ │ │ ├── add_point_on.png │ │ │ │ ├── blank.gif │ │ │ │ ├── close.gif │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ ├── draw_line_off.png │ │ │ │ ├── draw_line_on.png │ │ │ │ ├── draw_point_off.png │ │ │ │ ├── draw_point_on.png │ │ │ │ ├── draw_polygon_off.png │ │ │ │ ├── draw_polygon_on.png │ │ │ │ ├── editing_tool_bar.png │ │ │ │ ├── move_feature_off.png │ │ │ │ ├── move_feature_on.png │ │ │ │ ├── navigation_history.png │ │ │ │ ├── overview_replacement.gif │ │ │ │ ├── pan-panel-NOALPHA.png │ │ │ │ ├── pan-panel.png │ │ │ │ ├── pan_off.png │ │ │ │ ├── pan_on.png │ │ │ │ ├── panning-hand-off.png │ │ │ │ ├── panning-hand-on.png │ │ │ │ ├── remove_point_off.png │ │ │ │ ├── remove_point_on.png │ │ │ │ ├── ruler.png │ │ │ │ ├── save_features_off.png │ │ │ │ ├── save_features_on.png │ │ │ │ ├── view_next_off.png │ │ │ │ ├── view_next_on.png │ │ │ │ ├── view_previous_off.png │ │ │ │ ├── view_previous_on.png │ │ │ │ ├── zoom-panel-NOALPHA.png │ │ │ │ └── zoom-panel.png │ │ │ │ ├── style.css │ │ │ │ ├── style.mobile.css │ │ │ │ ├── style.mobile.tidy.css │ │ │ │ └── style.tidy.css │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── d3-flare-imports.json │ │ ├── d3.js │ │ ├── d3.min.js │ │ ├── dataproviders │ │ │ ├── csv.js │ │ │ └── json.js │ │ ├── ext-workplace.js │ │ ├── heatmap │ │ │ ├── heatmap-openlayers.js │ │ │ └── heatmap.js │ │ ├── highcharts.js │ │ ├── kratu.js │ │ ├── kratuSignalAdjustments.js │ │ ├── lib │ │ │ ├── c3-0.4.10 │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── .jshintrc │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gruntfile.coffee │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── c3.css │ │ │ │ ├── c3.js │ │ │ │ ├── c3.min.css │ │ │ │ ├── c3.min.js │ │ │ │ ├── component.json │ │ │ │ ├── extensions │ │ │ │ │ ├── exporter │ │ │ │ │ │ ├── config.json │ │ │ │ │ │ ├── phantom-exporter.js │ │ │ │ │ │ └── test.png │ │ │ │ │ └── js │ │ │ │ │ │ └── c3ext.js │ │ │ │ ├── htdocs │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── c3.css │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── style.css │ │ │ │ │ ├── data │ │ │ │ │ │ ├── c3_test.csv │ │ │ │ │ │ ├── c3_test.json │ │ │ │ │ │ ├── c3_test.tsv │ │ │ │ │ │ ├── c3_test2.csv │ │ │ │ │ │ ├── c3_test2_ts.csv │ │ │ │ │ │ ├── c3_test3.csv │ │ │ │ │ │ ├── c3_test_2.json │ │ │ │ │ │ ├── c3_test_3.json │ │ │ │ │ │ └── c3_test_ts.csv │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ │ ├── c3.js │ │ │ │ │ │ ├── c3.min.js │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── require.js │ │ │ │ │ │ └── samples │ │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ │ ├── requirejs.js │ │ │ │ │ │ │ └── zoom_reduction.js │ │ │ │ │ └── samples │ │ │ │ │ │ ├── api_axis_label.html │ │ │ │ │ │ ├── api_axis_range.html │ │ │ │ │ │ ├── api_category.html │ │ │ │ │ │ ├── api_data_colors.html │ │ │ │ │ │ ├── api_flow.html │ │ │ │ │ │ ├── api_flow_timeseries.html │ │ │ │ │ │ ├── api_legend.html │ │ │ │ │ │ ├── api_tooltip_show.html │ │ │ │ │ │ ├── api_transform.html │ │ │ │ │ │ ├── api_xgrid_lines.html │ │ │ │ │ │ ├── api_ygrid_lines.html │ │ │ │ │ │ ├── area_zerobased.html │ │ │ │ │ │ ├── axes_padding.html │ │ │ │ │ │ ├── axes_range.html │ │ │ │ │ │ ├── axes_x_extent.html │ │ │ │ │ │ ├── axes_x_localtime.html │ │ │ │ │ │ ├── axes_x_range_timeseries.html │ │ │ │ │ │ ├── axes_x_tick_culling.html │ │ │ │ │ │ ├── axes_x_tick_fit.html │ │ │ │ │ │ ├── axes_x_tick_rotate.html │ │ │ │ │ │ ├── axes_x_tick_values.html │ │ │ │ │ │ ├── axes_y2.html │ │ │ │ │ │ ├── axes_y_default.html │ │ │ │ │ │ ├── bar_zerobased.html │ │ │ │ │ │ ├── bindto.html │ │ │ │ │ │ ├── categorized.html │ │ │ │ │ │ ├── chart_area.html │ │ │ │ │ │ ├── chart_area_spline.html │ │ │ │ │ │ ├── chart_area_spline_stacked.html │ │ │ │ │ │ ├── chart_area_stacked.html │ │ │ │ │ │ ├── chart_area_step.html │ │ │ │ │ │ ├── chart_area_step_stacked.html │ │ │ │ │ │ ├── chart_bar.html │ │ │ │ │ │ ├── chart_bar_stacked.html │ │ │ │ │ │ ├── chart_combination.html │ │ │ │ │ │ ├── chart_donut.html │ │ │ │ │ │ ├── chart_gauge.html │ │ │ │ │ │ ├── chart_pie.html │ │ │ │ │ │ ├── chart_pie_sort.html │ │ │ │ │ │ ├── chart_scatter.html │ │ │ │ │ │ ├── chart_spline.html │ │ │ │ │ │ ├── chart_step.html │ │ │ │ │ │ ├── chart_step_category.html │ │ │ │ │ │ ├── custom_x_categorized.html │ │ │ │ │ │ ├── custom_x_scale.html │ │ │ │ │ │ ├── custom_xs_scale.html │ │ │ │ │ │ ├── data_columned.html │ │ │ │ │ │ ├── data_hide.html │ │ │ │ │ │ ├── data_json.html │ │ │ │ │ │ ├── data_label.html │ │ │ │ │ │ ├── data_label_format.html │ │ │ │ │ │ ├── data_load.html │ │ │ │ │ │ ├── data_load_timeseries.html │ │ │ │ │ │ ├── data_region.html │ │ │ │ │ │ ├── data_region_timeseries.html │ │ │ │ │ │ ├── data_rowed.html │ │ │ │ │ │ ├── data_url.html │ │ │ │ │ │ ├── domain_y.html │ │ │ │ │ │ ├── element.html │ │ │ │ │ │ ├── emptydata.html │ │ │ │ │ │ ├── grid_focus.html │ │ │ │ │ │ ├── grid_x_lines.html │ │ │ │ │ │ ├── grid_x_lines_timeseries.html │ │ │ │ │ │ ├── grids.html │ │ │ │ │ │ ├── grids_timeseries.html │ │ │ │ │ │ ├── interaction_enabled.html │ │ │ │ │ │ ├── legend.html │ │ │ │ │ │ ├── padding.html │ │ │ │ │ │ ├── padding_update.html │ │ │ │ │ │ ├── plugin.html │ │ │ │ │ │ ├── point_r.html │ │ │ │ │ │ ├── regions.html │ │ │ │ │ │ ├── regions_timeseries.html │ │ │ │ │ │ ├── requirejs.html │ │ │ │ │ │ ├── selection.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ ├── subchart.html │ │ │ │ │ │ ├── subchart_onbrush.html │ │ │ │ │ │ ├── timeseries.html │ │ │ │ │ │ ├── timeseries_date.html │ │ │ │ │ │ ├── timeseries_descendent.html │ │ │ │ │ │ ├── timeseries_raw.html │ │ │ │ │ │ ├── tooltip_grouped.html │ │ │ │ │ │ ├── tooltip_show.html │ │ │ │ │ │ ├── zoom.html │ │ │ │ │ │ ├── zoom_category.html │ │ │ │ │ │ ├── zoom_onzoom.html │ │ │ │ │ │ └── zoom_reduction.html │ │ │ │ ├── package.json │ │ │ │ ├── spec │ │ │ │ │ ├── api.axis-spec.js │ │ │ │ │ ├── api.data-spec.js │ │ │ │ │ ├── api.focus-spec.js │ │ │ │ │ ├── api.grid-spec.js │ │ │ │ │ ├── api.load-spec.js │ │ │ │ │ ├── api.zoom-spec.js │ │ │ │ │ ├── arc-spec.js │ │ │ │ │ ├── axis-spec.js │ │ │ │ │ ├── c3-helper.js │ │ │ │ │ ├── c3-spec.js │ │ │ │ │ ├── class-spec.js │ │ │ │ │ ├── core-spec.js │ │ │ │ │ ├── data-spec.js │ │ │ │ │ ├── domain-spec.js │ │ │ │ │ ├── grid-spec.js │ │ │ │ │ ├── interaction-spec.js │ │ │ │ │ ├── legend-spec.js │ │ │ │ │ ├── shape.bar-spec.js │ │ │ │ │ ├── shape.line-spec.js │ │ │ │ │ ├── tooltip-spec.js │ │ │ │ │ ├── type-spec.js │ │ │ │ │ └── zoom-spec.js │ │ │ │ └── src │ │ │ │ │ ├── api.axis.js │ │ │ │ │ ├── api.category.js │ │ │ │ │ ├── api.chart.js │ │ │ │ │ ├── api.color.js │ │ │ │ │ ├── api.data.js │ │ │ │ │ ├── api.flow.js │ │ │ │ │ ├── api.focus.js │ │ │ │ │ ├── api.grid.js │ │ │ │ │ ├── api.group.js │ │ │ │ │ ├── api.legend.js │ │ │ │ │ ├── api.load.js │ │ │ │ │ ├── api.region.js │ │ │ │ │ ├── api.selection.js │ │ │ │ │ ├── api.show.js │ │ │ │ │ ├── api.tooltip.js │ │ │ │ │ ├── api.transform.js │ │ │ │ │ ├── api.x.js │ │ │ │ │ ├── api.zoom.js │ │ │ │ │ ├── arc.js │ │ │ │ │ ├── axis.js │ │ │ │ │ ├── c3.axis.js │ │ │ │ │ ├── cache.js │ │ │ │ │ ├── category.js │ │ │ │ │ ├── class.js │ │ │ │ │ ├── clip.js │ │ │ │ │ ├── color.js │ │ │ │ │ ├── config.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── data.convert.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.load.js │ │ │ │ │ ├── domain.js │ │ │ │ │ ├── drag.js │ │ │ │ │ ├── format.js │ │ │ │ │ ├── grid.js │ │ │ │ │ ├── head.js │ │ │ │ │ ├── interaction.js │ │ │ │ │ ├── legend.js │ │ │ │ │ ├── polyfill.js │ │ │ │ │ ├── region.js │ │ │ │ │ ├── scale.js │ │ │ │ │ ├── scss │ │ │ │ │ ├── arc.scss │ │ │ │ │ ├── area.scss │ │ │ │ │ ├── axis.scss │ │ │ │ │ ├── bar.scss │ │ │ │ │ ├── brush.scss │ │ │ │ │ ├── chart.scss │ │ │ │ │ ├── focus.scss │ │ │ │ │ ├── grid.scss │ │ │ │ │ ├── legend.scss │ │ │ │ │ ├── line.scss │ │ │ │ │ ├── main.scss │ │ │ │ │ ├── point.scss │ │ │ │ │ ├── region.scss │ │ │ │ │ ├── select_drag.scss │ │ │ │ │ ├── text.scss │ │ │ │ │ └── tooltip.scss │ │ │ │ │ ├── selection.js │ │ │ │ │ ├── shape.bar.js │ │ │ │ │ ├── shape.js │ │ │ │ │ ├── shape.line.js │ │ │ │ │ ├── size.js │ │ │ │ │ ├── subchart.js │ │ │ │ │ ├── tail.js │ │ │ │ │ ├── text.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ ├── type.js │ │ │ │ │ ├── ua.js │ │ │ │ │ ├── util.js │ │ │ │ │ └── zoom.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ └── jquery-ui-1.11.4 │ │ │ │ ├── external │ │ │ │ └── jquery │ │ │ │ │ └── jquery.js │ │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── index.html │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.js │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery-ui.min.js │ │ │ │ ├── jquery-ui.structure.css │ │ │ │ ├── jquery-ui.structure.min.css │ │ │ │ ├── jquery-ui.theme.css │ │ │ │ └── jquery-ui.theme.min.css │ │ ├── mljs │ │ │ ├── mljs-angular.js │ │ │ ├── mljs-jquery.js │ │ │ ├── mljs-prototype.js │ │ │ ├── mljs-xhr.js │ │ │ ├── mljs-xhr2.js │ │ │ ├── mljs.js │ │ │ ├── widget-address.js │ │ │ ├── widget-alerts-defaults.js │ │ │ ├── widget-alerts.js │ │ │ ├── widget-collections.js │ │ │ ├── widget-cooccurence.js │ │ │ ├── widget-d3.js │ │ │ ├── widget-dls.js │ │ │ ├── widget-docbuilder.js │ │ │ ├── widget-documents.js │ │ │ ├── widget-explore.js │ │ │ ├── widget-highcharts.js │ │ │ ├── widget-ingest.js │ │ │ ├── widget-kratu.js │ │ │ ├── widget-markings.js │ │ │ ├── widget-openlayers.js │ │ │ ├── widget-pivottable.js │ │ │ ├── widget-profile.js │ │ │ ├── widget-rdb2rdf.js │ │ │ ├── widget-search-oldinit.js │ │ │ ├── widget-search.js │ │ │ ├── widget-searchoptions.js │ │ │ ├── widget-security.js │ │ │ ├── widget-tagcloud.js │ │ │ ├── widget-triples.js │ │ │ ├── widget-workplace.js │ │ │ └── widgets.js │ │ ├── page-application.js │ │ ├── page-index.js │ │ ├── page-workplace.js │ │ └── pivottable │ │ │ ├── c3_renderers.js │ │ │ ├── c3_renderers.js.map │ │ │ ├── c3_renderers.min.js │ │ │ ├── c3_renderers.min.js.map │ │ │ ├── d3_renderers.js │ │ │ ├── d3_renderers.js.map │ │ │ ├── d3_renderers.min.js │ │ │ ├── d3_renderers.min.js.map │ │ │ ├── export_renderers.js │ │ │ ├── export_renderers.js.map │ │ │ ├── export_renderers.min.js │ │ │ ├── export_renderers.min.js.map │ │ │ ├── gchart_renderers.js │ │ │ ├── gchart_renderers.js.map │ │ │ ├── gchart_renderers.min.js │ │ │ ├── gchart_renderers.min.js.map │ │ │ ├── pivot.css │ │ │ ├── pivot.es.js │ │ │ ├── pivot.es.js.map │ │ │ ├── pivot.es.min.js │ │ │ ├── pivot.es.min.js.map │ │ │ ├── pivot.fr.js │ │ │ ├── pivot.fr.js.map │ │ │ ├── pivot.fr.min.js │ │ │ ├── pivot.fr.min.js.map │ │ │ ├── pivot.js │ │ │ ├── pivot.js.map │ │ │ ├── pivot.min.css │ │ │ ├── pivot.min.js │ │ │ ├── pivot.min.js.map │ │ │ ├── pivot.nl.js │ │ │ ├── pivot.nl.js.map │ │ │ ├── pivot.nl.min.js │ │ │ ├── pivot.nl.min.js.map │ │ │ ├── pivot.pt.js │ │ │ ├── pivot.pt.js.map │ │ │ ├── pivot.pt.min.js │ │ │ ├── pivot.pt.min.js.map │ │ │ ├── pivot.ru.js │ │ │ ├── pivot.ru.js.map │ │ │ ├── pivot.ru.min.js │ │ │ ├── pivot.ru.min.js.map │ │ │ ├── pivot.tr.js │ │ │ ├── pivot.tr.js.map │ │ │ ├── pivot.tr.min.js │ │ │ ├── pivot.tr.min.js.map │ │ │ └── tips_data.min.js │ ├── roxy │ │ ├── config │ │ │ └── defaults.xqy │ │ └── lib │ │ │ ├── reflection.xqy │ │ │ ├── request.xqy │ │ │ └── rewriter.xqy │ └── workplace.html5 │ ├── u.sh │ └── version.txt ├── browser-dist.sh ├── browser.md ├── core.md ├── cpjs.sh ├── create-mldbtest.sh ├── delete-configtest.js ├── delete-mldbtest.sh ├── dist ├── app-mljsrest.tar.gz ├── app-mljsrest.zip ├── app-workplace.tar.gz ├── app-workplace.zip ├── browser-dev │ ├── README.md │ ├── css │ │ ├── 960 │ │ │ ├── 960.css │ │ │ ├── 960_12_col.css │ │ │ ├── 960_12_col_rtl.css │ │ │ ├── 960_16_col.css │ │ │ ├── 960_16_col_rtl.css │ │ │ ├── 960_24_col.css │ │ │ ├── 960_24_col_rtl.css │ │ │ ├── 960_rtl.css │ │ │ ├── demo.css │ │ │ ├── min │ │ │ │ ├── 960.css │ │ │ │ ├── 960_12_col.css │ │ │ │ ├── 960_12_col_rtl.css │ │ │ │ ├── 960_16_col.css │ │ │ │ ├── 960_16_col_rtl.css │ │ │ │ ├── 960_24_col.css │ │ │ │ ├── 960_24_col_rtl.css │ │ │ │ ├── 960_rtl.css │ │ │ │ ├── reset.css │ │ │ │ ├── reset_rtl.css │ │ │ │ ├── text.css │ │ │ │ └── text_rtl.css │ │ │ ├── reset.css │ │ │ ├── reset_rtl.css │ │ │ ├── text.css │ │ │ └── text_rtl.css │ │ ├── bootstrap-roxy.css │ │ ├── modal.css │ │ ├── widget-search.css │ │ └── widgets.css │ ├── images │ │ ├── loading.gif │ │ ├── question-mark-small.png │ │ ├── question-mark.png │ │ ├── setting-large.png │ │ └── setting-small.png │ └── js │ │ ├── OpenLayers-2.13.1 │ │ ├── .gitignore │ │ ├── OpenLayers.debug.js │ │ ├── OpenLayers.js │ │ ├── OpenLayers.light.debug.js │ │ ├── OpenLayers.light.js │ │ ├── OpenLayers.mobile.debug.js │ │ ├── OpenLayers.mobile.js │ │ ├── art │ │ │ ├── arrows.svg │ │ │ ├── layer-switcher-maximize.svg │ │ │ ├── layer-switcher-minimize.svg │ │ │ ├── marker.svg │ │ │ ├── measuring-stick-off.svg │ │ │ ├── measuring-stick-on.svg │ │ │ ├── panning-hand-off.svg │ │ │ ├── panning-hand-on.svg │ │ │ ├── slider.svg │ │ │ ├── zoom-world.svg │ │ │ └── zoombar.svg │ │ ├── authors.txt │ │ ├── img │ │ │ ├── blank.gif │ │ │ ├── cloud-popup-relative.png │ │ │ ├── drag-rectangle-off.png │ │ │ ├── drag-rectangle-on.png │ │ │ ├── east-mini.png │ │ │ ├── layer-switcher-maximize.png │ │ │ ├── layer-switcher-minimize.png │ │ │ ├── marker-blue.png │ │ │ ├── marker-gold.png │ │ │ ├── marker-green.png │ │ │ ├── marker.png │ │ │ ├── measuring-stick-off.png │ │ │ ├── measuring-stick-on.png │ │ │ ├── north-mini.png │ │ │ ├── panning-hand-off.png │ │ │ ├── panning-hand-on.png │ │ │ ├── slider.png │ │ │ ├── south-mini.png │ │ │ ├── west-mini.png │ │ │ ├── zoom-minus-mini.png │ │ │ ├── zoom-plus-mini.png │ │ │ ├── zoom-world-mini.png │ │ │ └── zoombar.png │ │ ├── lib │ │ │ ├── Firebug │ │ │ │ ├── errorIcon.png │ │ │ │ ├── firebug.css │ │ │ │ ├── firebug.html │ │ │ │ ├── firebug.js │ │ │ │ ├── firebugx.js │ │ │ │ ├── infoIcon.png │ │ │ │ ├── license.txt │ │ │ │ ├── readme.txt │ │ │ │ └── warningIcon.png │ │ │ ├── OpenLayers.js │ │ │ ├── OpenLayers │ │ │ │ ├── Animation.js │ │ │ │ ├── BaseTypes.js │ │ │ │ ├── BaseTypes │ │ │ │ │ ├── Bounds.js │ │ │ │ │ ├── Class.js │ │ │ │ │ ├── Date.js │ │ │ │ │ ├── Element.js │ │ │ │ │ ├── LonLat.js │ │ │ │ │ ├── Pixel.js │ │ │ │ │ └── Size.js │ │ │ │ ├── Console.js │ │ │ │ ├── Control.js │ │ │ │ ├── Control │ │ │ │ │ ├── ArgParser.js │ │ │ │ │ ├── Attribution.js │ │ │ │ │ ├── Button.js │ │ │ │ │ ├── CacheRead.js │ │ │ │ │ ├── CacheWrite.js │ │ │ │ │ ├── DragFeature.js │ │ │ │ │ ├── DragPan.js │ │ │ │ │ ├── DrawFeature.js │ │ │ │ │ ├── EditingToolbar.js │ │ │ │ │ ├── Geolocate.js │ │ │ │ │ ├── GetFeature.js │ │ │ │ │ ├── Graticule.js │ │ │ │ │ ├── KeyboardDefaults.js │ │ │ │ │ ├── LayerSwitcher.js │ │ │ │ │ ├── Measure.js │ │ │ │ │ ├── ModifyFeature.js │ │ │ │ │ ├── MousePosition.js │ │ │ │ │ ├── NavToolbar.js │ │ │ │ │ ├── Navigation.js │ │ │ │ │ ├── NavigationHistory.js │ │ │ │ │ ├── OverviewMap.js │ │ │ │ │ ├── Pan.js │ │ │ │ │ ├── PanPanel.js │ │ │ │ │ ├── PanZoom.js │ │ │ │ │ ├── PanZoomBar.js │ │ │ │ │ ├── Panel.js │ │ │ │ │ ├── Permalink.js │ │ │ │ │ ├── PinchZoom.js │ │ │ │ │ ├── SLDSelect.js │ │ │ │ │ ├── Scale.js │ │ │ │ │ ├── ScaleLine.js │ │ │ │ │ ├── SelectFeature.js │ │ │ │ │ ├── Snapping.js │ │ │ │ │ ├── Split.js │ │ │ │ │ ├── TouchNavigation.js │ │ │ │ │ ├── TransformFeature.js │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ ├── WMTSGetFeatureInfo.js │ │ │ │ │ ├── Zoom.js │ │ │ │ │ ├── ZoomBox.js │ │ │ │ │ ├── ZoomIn.js │ │ │ │ │ ├── ZoomOut.js │ │ │ │ │ ├── ZoomPanel.js │ │ │ │ │ └── ZoomToMaxExtent.js │ │ │ │ ├── Events.js │ │ │ │ ├── Events │ │ │ │ │ ├── buttonclick.js │ │ │ │ │ └── featureclick.js │ │ │ │ ├── Feature.js │ │ │ │ ├── Feature │ │ │ │ │ └── Vector.js │ │ │ │ ├── Filter.js │ │ │ │ ├── Filter │ │ │ │ │ ├── Comparison.js │ │ │ │ │ ├── FeatureId.js │ │ │ │ │ ├── Function.js │ │ │ │ │ ├── Logical.js │ │ │ │ │ └── Spatial.js │ │ │ │ ├── Format.js │ │ │ │ ├── Format │ │ │ │ │ ├── ArcXML.js │ │ │ │ │ ├── ArcXML │ │ │ │ │ │ └── Features.js │ │ │ │ │ ├── Atom.js │ │ │ │ │ ├── CQL.js │ │ │ │ │ ├── CSWGetDomain.js │ │ │ │ │ ├── CSWGetDomain │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ ├── CSWGetRecords.js │ │ │ │ │ ├── CSWGetRecords │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ ├── Context.js │ │ │ │ │ ├── EncodedPolyline.js │ │ │ │ │ ├── Filter.js │ │ │ │ │ ├── Filter │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ ├── GML.js │ │ │ │ │ ├── GML │ │ │ │ │ │ ├── Base.js │ │ │ │ │ │ ├── v2.js │ │ │ │ │ │ └── v3.js │ │ │ │ │ ├── GPX.js │ │ │ │ │ ├── GeoJSON.js │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ ├── JSON.js │ │ │ │ │ ├── KML.js │ │ │ │ │ ├── OGCExceptionReport.js │ │ │ │ │ ├── OSM.js │ │ │ │ │ ├── OWSCommon.js │ │ │ │ │ ├── OWSCommon │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ ├── OWSContext.js │ │ │ │ │ ├── OWSContext │ │ │ │ │ │ └── v0_3_1.js │ │ │ │ │ ├── QueryStringFilter.js │ │ │ │ │ ├── SLD.js │ │ │ │ │ ├── SLD │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ └── v1_0_0_GeoServer.js │ │ │ │ │ ├── SOSCapabilities.js │ │ │ │ │ ├── SOSCapabilities │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ ├── SOSGetFeatureOfInterest.js │ │ │ │ │ ├── SOSGetObservation.js │ │ │ │ │ ├── Text.js │ │ │ │ │ ├── WCSCapabilities.js │ │ │ │ │ ├── WCSCapabilities │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ ├── WCSGetCoverage.js │ │ │ │ │ ├── WFS.js │ │ │ │ │ ├── WFSCapabilities.js │ │ │ │ │ ├── WFSCapabilities │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ ├── WFSDescribeFeatureType.js │ │ │ │ │ ├── WFST.js │ │ │ │ │ ├── WFST │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ ├── WKT.js │ │ │ │ │ ├── WMC.js │ │ │ │ │ ├── WMC │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ ├── WMSCapabilities.js │ │ │ │ │ ├── WMSCapabilities │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ ├── v1_1.js │ │ │ │ │ │ ├── v1_1_0.js │ │ │ │ │ │ ├── v1_1_1.js │ │ │ │ │ │ ├── v1_1_1_WMSC.js │ │ │ │ │ │ ├── v1_3.js │ │ │ │ │ │ └── v1_3_0.js │ │ │ │ │ ├── WMSDescribeLayer.js │ │ │ │ │ ├── WMSDescribeLayer │ │ │ │ │ │ └── v1_1.js │ │ │ │ │ ├── WMSGetFeatureInfo.js │ │ │ │ │ ├── WMTSCapabilities.js │ │ │ │ │ ├── WMTSCapabilities │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ ├── WPSCapabilities.js │ │ │ │ │ ├── WPSCapabilities │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ ├── WPSDescribeProcess.js │ │ │ │ │ ├── WPSExecute.js │ │ │ │ │ ├── XLS.js │ │ │ │ │ ├── XLS │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ │ ├── XML.js │ │ │ │ │ └── XML │ │ │ │ │ │ └── VersionedOGC.js │ │ │ │ ├── Geometry.js │ │ │ │ ├── Geometry │ │ │ │ │ ├── Collection.js │ │ │ │ │ ├── Curve.js │ │ │ │ │ ├── LineString.js │ │ │ │ │ ├── LinearRing.js │ │ │ │ │ ├── MultiLineString.js │ │ │ │ │ ├── MultiPoint.js │ │ │ │ │ ├── MultiPolygon.js │ │ │ │ │ ├── Point.js │ │ │ │ │ └── Polygon.js │ │ │ │ ├── Handler.js │ │ │ │ ├── Handler │ │ │ │ │ ├── Box.js │ │ │ │ │ ├── Click.js │ │ │ │ │ ├── Drag.js │ │ │ │ │ ├── Feature.js │ │ │ │ │ ├── Hover.js │ │ │ │ │ ├── Keyboard.js │ │ │ │ │ ├── MouseWheel.js │ │ │ │ │ ├── Path.js │ │ │ │ │ ├── Pinch.js │ │ │ │ │ ├── Point.js │ │ │ │ │ ├── Polygon.js │ │ │ │ │ └── RegularPolygon.js │ │ │ │ ├── Icon.js │ │ │ │ ├── Kinetic.js │ │ │ │ ├── Lang.js │ │ │ │ ├── Lang │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── be-tarask.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs-CZ.js │ │ │ │ │ ├── da-DK.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-CA.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fur.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gsw.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hsb.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── ia.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── io.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ksh.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nds.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sv-SE.js │ │ │ │ │ ├── te.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ ├── Layer.js │ │ │ │ ├── Layer │ │ │ │ │ ├── ArcGIS93Rest.js │ │ │ │ │ ├── ArcGISCache.js │ │ │ │ │ ├── ArcIMS.js │ │ │ │ │ ├── Bing.js │ │ │ │ │ ├── Boxes.js │ │ │ │ │ ├── EventPane.js │ │ │ │ │ ├── FixedZoomLevels.js │ │ │ │ │ ├── GeoRSS.js │ │ │ │ │ ├── Google.js │ │ │ │ │ ├── Google │ │ │ │ │ │ └── v3.js │ │ │ │ │ ├── Grid.js │ │ │ │ │ ├── HTTPRequest.js │ │ │ │ │ ├── Image.js │ │ │ │ │ ├── KaMap.js │ │ │ │ │ ├── KaMapCache.js │ │ │ │ │ ├── MapGuide.js │ │ │ │ │ ├── MapServer.js │ │ │ │ │ ├── Markers.js │ │ │ │ │ ├── OSM.js │ │ │ │ │ ├── PointGrid.js │ │ │ │ │ ├── PointTrack.js │ │ │ │ │ ├── SphericalMercator.js │ │ │ │ │ ├── TMS.js │ │ │ │ │ ├── Text.js │ │ │ │ │ ├── TileCache.js │ │ │ │ │ ├── UTFGrid.js │ │ │ │ │ ├── Vector.js │ │ │ │ │ ├── Vector │ │ │ │ │ │ └── RootContainer.js │ │ │ │ │ ├── WMS.js │ │ │ │ │ ├── WMTS.js │ │ │ │ │ ├── WorldWind.js │ │ │ │ │ ├── XYZ.js │ │ │ │ │ └── Zoomify.js │ │ │ │ ├── Map.js │ │ │ │ ├── Marker.js │ │ │ │ ├── Marker │ │ │ │ │ └── Box.js │ │ │ │ ├── Popup.js │ │ │ │ ├── Popup │ │ │ │ │ ├── Anchored.js │ │ │ │ │ ├── Framed.js │ │ │ │ │ └── FramedCloud.js │ │ │ │ ├── Projection.js │ │ │ │ ├── Protocol.js │ │ │ │ ├── Protocol │ │ │ │ │ ├── CSW.js │ │ │ │ │ ├── CSW │ │ │ │ │ │ └── v2_0_2.js │ │ │ │ │ ├── HTTP.js │ │ │ │ │ ├── SOS.js │ │ │ │ │ ├── SOS │ │ │ │ │ │ └── v1_0_0.js │ │ │ │ │ ├── Script.js │ │ │ │ │ ├── WFS.js │ │ │ │ │ └── WFS │ │ │ │ │ │ ├── v1.js │ │ │ │ │ │ ├── v1_0_0.js │ │ │ │ │ │ └── v1_1_0.js │ │ │ │ ├── Renderer.js │ │ │ │ ├── Renderer │ │ │ │ │ ├── Canvas.js │ │ │ │ │ ├── Elements.js │ │ │ │ │ ├── SVG.js │ │ │ │ │ └── VML.js │ │ │ │ ├── Request.js │ │ │ │ ├── Request │ │ │ │ │ └── XMLHttpRequest.js │ │ │ │ ├── Rule.js │ │ │ │ ├── SingleFile.js │ │ │ │ ├── Spherical.js │ │ │ │ ├── Strategy.js │ │ │ │ ├── Strategy │ │ │ │ │ ├── BBOX.js │ │ │ │ │ ├── Cluster.js │ │ │ │ │ ├── Filter.js │ │ │ │ │ ├── Fixed.js │ │ │ │ │ ├── Paging.js │ │ │ │ │ ├── Refresh.js │ │ │ │ │ └── Save.js │ │ │ │ ├── Style.js │ │ │ │ ├── Style2.js │ │ │ │ ├── StyleMap.js │ │ │ │ ├── Symbolizer.js │ │ │ │ ├── Symbolizer │ │ │ │ │ ├── Line.js │ │ │ │ │ ├── Point.js │ │ │ │ │ ├── Polygon.js │ │ │ │ │ ├── Raster.js │ │ │ │ │ └── Text.js │ │ │ │ ├── Tile.js │ │ │ │ ├── Tile │ │ │ │ │ ├── Image.js │ │ │ │ │ ├── Image │ │ │ │ │ │ └── IFrame.js │ │ │ │ │ └── UTFGrid.js │ │ │ │ ├── TileManager.js │ │ │ │ ├── Tween.js │ │ │ │ ├── Util.js │ │ │ │ ├── Util │ │ │ │ │ └── vendorPrefix.js │ │ │ │ ├── WPSClient.js │ │ │ │ └── WPSProcess.js │ │ │ ├── Rico │ │ │ │ ├── Color.js │ │ │ │ ├── Corner.js │ │ │ │ └── license.js │ │ │ └── deprecated.js │ │ ├── license.txt │ │ ├── licenses │ │ │ ├── APACHE-2.0.txt │ │ │ ├── BSD-LICENSE.txt │ │ │ └── MIT-LICENSE.txt │ │ ├── notes │ │ │ ├── 2.12.md │ │ │ └── 2.13.md │ │ ├── readme.md │ │ └── theme │ │ │ └── default │ │ │ ├── google.css │ │ │ ├── google.tidy.css │ │ │ ├── ie6-style.css │ │ │ ├── ie6-style.tidy.css │ │ │ ├── img │ │ │ ├── add_point_off.png │ │ │ ├── add_point_on.png │ │ │ ├── blank.gif │ │ │ ├── close.gif │ │ │ ├── drag-rectangle-off.png │ │ │ ├── drag-rectangle-on.png │ │ │ ├── draw_line_off.png │ │ │ ├── draw_line_on.png │ │ │ ├── draw_point_off.png │ │ │ ├── draw_point_on.png │ │ │ ├── draw_polygon_off.png │ │ │ ├── draw_polygon_on.png │ │ │ ├── editing_tool_bar.png │ │ │ ├── move_feature_off.png │ │ │ ├── move_feature_on.png │ │ │ ├── navigation_history.png │ │ │ ├── overview_replacement.gif │ │ │ ├── pan-panel-NOALPHA.png │ │ │ ├── pan-panel.png │ │ │ ├── pan_off.png │ │ │ ├── pan_on.png │ │ │ ├── panning-hand-off.png │ │ │ ├── panning-hand-on.png │ │ │ ├── remove_point_off.png │ │ │ ├── remove_point_on.png │ │ │ ├── ruler.png │ │ │ ├── save_features_off.png │ │ │ ├── save_features_on.png │ │ │ ├── view_next_off.png │ │ │ ├── view_next_on.png │ │ │ ├── view_previous_off.png │ │ │ ├── view_previous_on.png │ │ │ ├── zoom-panel-NOALPHA.png │ │ │ └── zoom-panel.png │ │ │ ├── style.css │ │ │ ├── style.mobile.css │ │ │ ├── style.mobile.tidy.css │ │ │ └── style.tidy.css │ │ ├── dataproviders │ │ ├── csv.js │ │ └── json.js │ │ ├── heatmap │ │ ├── heatmap-openlayers.js │ │ └── heatmap.js │ │ ├── highcharts.js │ │ ├── kratu.js │ │ ├── kratuSignalAdjustments.js │ │ ├── mljs-angular.js │ │ ├── mljs-jquery.js │ │ ├── mljs-prototype.js │ │ ├── mljs-xhr.js │ │ ├── mljs-xhr2.js │ │ ├── mljs.js │ │ ├── widget-address.js │ │ ├── widget-alerts-defaults.js │ │ ├── widget-alerts.js │ │ ├── widget-collections.js │ │ ├── widget-cooccurence.js │ │ ├── widget-d3.js │ │ ├── widget-dls.js │ │ ├── widget-docbuilder.js │ │ ├── widget-documents.js │ │ ├── widget-explore.js │ │ ├── widget-highcharts.js │ │ ├── widget-ingest.js │ │ ├── widget-kratu.js │ │ ├── widget-markings.js │ │ ├── widget-openlayers.js │ │ ├── widget-pivottable.js │ │ ├── widget-profile.js │ │ ├── widget-rdb2rdf.js │ │ ├── widget-search-oldinit.js │ │ ├── widget-search.js │ │ ├── widget-searchoptions.js │ │ ├── widget-security.js │ │ ├── widget-tagcloud.js │ │ ├── widget-triples.js │ │ ├── widget-workplace.js │ │ └── widgets.js ├── browser-prod │ ├── README.md │ ├── css │ │ ├── modal.css │ │ ├── widget-search.css │ │ └── widgets.css │ ├── images │ │ ├── loading.gif │ │ ├── question-mark-small.png │ │ ├── question-mark.png │ │ ├── setting-large.png │ │ └── setting-small.png │ └── js │ │ ├── highcharts.js │ │ ├── mljs-jquery.js │ │ ├── mljs-prototype.js │ │ ├── mljs-xhr.js │ │ ├── mljs-xhr2.js │ │ ├── mljs.js │ │ ├── widget-address.js │ │ ├── widget-collections.js │ │ ├── widget-cooccurence.js │ │ ├── widget-dls.js │ │ ├── widget-docbuilder.js │ │ ├── widget-documents.js │ │ ├── widget-explore.js │ │ ├── widget-highcharts.js │ │ ├── widget-kratu.js │ │ ├── widget-markings.js │ │ ├── widget-openlayers.js │ │ ├── widget-profile.js │ │ ├── widget-rdb2rdf.js │ │ ├── widget-search.js │ │ ├── widget-tagcloud.js │ │ ├── widget-triples.js │ │ ├── widget-workplace.js │ │ └── widgets.js ├── mljs-browser-dev.tar.gz ├── mljs-browser-dev.zip ├── mljs-browser-prod.tar.gz ├── mljs-browser-prod.zip ├── mljs-docs.tar.gz ├── mljs-docs.zip ├── mljs-node-dev.tar.gz ├── mljs-node-dev.zip ├── mljs-node-prod.tar.gz ├── mljs-nodejs-prod.zip ├── node-dev │ ├── README.md │ ├── lib │ │ ├── basic-wrapper.js │ │ ├── digest-wrapper.js │ │ ├── multipart.js │ │ ├── noop.js │ │ └── passthrough-wrapper.js │ └── mljs.js └── node-prod │ ├── README.md │ ├── lib │ ├── basic-wrapper.js │ ├── digest-wrapper.js │ ├── noop.js │ └── passthrough-wrapper.js │ └── mljs.js ├── documentation ├── gallery │ ├── addressbar.png │ ├── advancedsearch.png │ ├── app-mljsrest-chartsearch.png │ ├── app-mljsrest-cooccurence.png │ ├── app-mljsrest-docview.png │ ├── app-mljsrest-openlayers.png │ ├── app-mljsrest-snippets.png │ ├── app-mljsrest-triples.png │ ├── app-mljsrest-workplace.png │ ├── app-mljsrest.png │ ├── app-sitaware.png │ ├── app-workplace.png │ ├── cooccurence-2.png │ ├── cooccurence-3.png │ ├── cooccurence.png │ ├── create-2.png │ ├── create-3.png │ ├── create.png │ ├── docheadviewer-2.png │ ├── docheadviewer.png │ ├── docproperties.png │ ├── docviewer.png │ ├── entityfacts-2.png │ ├── entityfacts-3.png │ ├── entityfacts.png │ ├── error.png │ ├── explorer-2.png │ ├── explorer.png │ ├── highcharts-2.png │ ├── highcharts-3.png │ ├── highcharts-4.png │ ├── highcharts-5.png │ ├── highcharts.png │ ├── keylines.png │ ├── kratu-2.png │ ├── kratu-3.png │ ├── kratu.png │ ├── markings.png │ ├── openlayers-2.png │ ├── openlayers-3.png │ ├── openlayers-4.png │ ├── openlayers.png │ ├── searchbar-2.png │ ├── searchbar-3.png │ ├── searchbar-4.png │ ├── searchbar.png │ ├── searchfacets-2.png │ ├── searchfacets-3.png │ ├── searchfacets-4.png │ ├── searchfacets.png │ ├── searchmetrics.png │ ├── searchpager.png │ ├── searchresults-2.png │ ├── searchresults-3.png │ ├── searchresults-4.png │ ├── searchresults-5.png │ ├── searchresults.png │ ├── searchselection-2.png │ ├── searchselection.png │ ├── searchsorter-2.png │ ├── searchsorter-3.png │ ├── searchsorter.png │ ├── selection.png │ ├── sparqlbar-2.png │ ├── sparqlbar.png │ ├── sparqlresults-2.png │ ├── sparqlresults.png │ ├── tagcloud-2.png │ ├── tagcloud.png │ └── workplaceadmin.png ├── jsdoc.md ├── mljs-diagrams.key ├── mljs-diagrams.ppt ├── mljs-diagrams │ ├── Slide01.png │ ├── Slide02.png │ ├── Slide03.png │ ├── Slide04.png │ ├── Slide05.png │ ├── Slide06.png │ ├── Slide07.png │ ├── Slide08.png │ ├── Slide09.png │ ├── Slide10.png │ ├── Slide11-edited.png │ ├── mljs-diagrams.001.png │ ├── mljs-diagrams.002.png │ ├── mljs-diagrams.003.png │ ├── mljs-diagrams.004.png │ ├── mljs-diagrams.005.png │ ├── mljs-diagrams.006.png │ ├── mljs-diagrams.007.png │ ├── mljs-diagrams.008.png │ ├── mljs-diagrams.009.png │ └── mljs-diagrams.010.png ├── mljs-intro-oct-2013.key ├── mljs-intro-oct-2013.pdf ├── mljs-webinars.pptx ├── tagging.md ├── video-script-001-intro-mljs.md └── video-script-002-core-mljs.md ├── exists.sh ├── exists2.sh ├── gendocs.sh ├── jsdoc-conf.json ├── lc.sh ├── mljsme.sh ├── package.json ├── planning.md ├── progress.md ├── publish.sh ├── release-notes ├── 2013-09-0.9.md ├── 2013-10-1.0.md └── 2016-05-8.0.8.md ├── restclient └── savePropertiesBlank.rcq ├── runtests.sh ├── samples ├── 001-code-style.js ├── 002-node-ingest.js ├── 003-renderer-json.js ├── 004-renderer-xml.js ├── 005-renderer-lazy.js ├── 006-widget-page.js ├── 007-blank-page.js ├── 008-load-data.js ├── 009-blank-widget.js ├── 010-load-facts.js └── test-ingest │ ├── 0001.js │ ├── 0002.js │ ├── 0003.js │ ├── 0004.js │ ├── 0005.js │ ├── 0006.js │ └── 0007.js ├── src ├── css │ ├── modal.css │ ├── widget-search.css │ └── widgets.css ├── images │ ├── loading.gif │ ├── question-mark-small.png │ ├── question-mark.png │ ├── setting-large.png │ └── setting-small.png ├── js │ ├── lib │ │ ├── basic-wrapper.js │ │ ├── digest-wrapper.js │ │ ├── multipart.js │ │ ├── noop.js │ │ └── passthrough-wrapper.js │ ├── mljs-angular.js │ ├── mljs-jquery.js │ ├── mljs-prototype.js │ ├── mljs-xhr.js │ ├── mljs-xhr2.js │ ├── mljs.js │ ├── widget-address.js │ ├── widget-alerts-defaults.js │ ├── widget-alerts.js │ ├── widget-collections.js │ ├── widget-cooccurence.js │ ├── widget-d3.js │ ├── widget-dls.js │ ├── widget-docbuilder.js │ ├── widget-documents.js │ ├── widget-explore.js │ ├── widget-highcharts.js │ ├── widget-ingest.js │ ├── widget-kratu.js │ ├── widget-markings.js │ ├── widget-openlayers.js │ ├── widget-pivottable.js │ ├── widget-profile.js │ ├── widget-rdb2rdf.js │ ├── widget-search-oldinit.js │ ├── widget-search.js │ ├── widget-searchoptions.js │ ├── widget-security.js │ ├── widget-tagcloud.js │ ├── widget-triples.js │ ├── widget-workplace.js │ └── widgets.js └── rest-api │ └── ext │ ├── dls.xqy │ ├── dlsrules.xqy │ ├── groupby.xqy │ ├── rdb2rdf.xqy │ ├── subscribe.xqy │ ├── triggers.xqy │ ├── version.xqy │ ├── whoami.xqy │ └── workplace.xqy ├── test-settings.sh ├── test ├── admin │ ├── 004-create-destroy.js │ └── 008-exists.js ├── alerts │ └── 001-create-alert.js ├── basics │ ├── 001-save-get-delete.js │ ├── 002-get-not-found.js │ ├── 003-save-load-equal.js │ ├── 004-metadata.js │ ├── 005-merge.js │ ├── 006-save-get-delete-in-loop.js │ ├── 009-configure.js │ ├── 010-save-auto-uri.js │ └── 011-save-formats.js ├── config │ └── 001-indexes.js ├── events │ └── 001-events.js ├── extensions │ └── 001-do.js ├── global.js ├── optionsbuilder │ ├── 001-returns.js │ ├── 002-defaults.js │ ├── 003-quality.js │ ├── 004-path-constraint.js │ ├── 005-element-constraint.js │ ├── 006-attribute-constraint.js │ ├── 007-collection-constraint.js │ ├── 008-geo-constraints.js │ ├── 009-page-length.js │ ├── 010-transform.js │ ├── 011-raw.js │ ├── 012-snippet.js │ ├── 013-empty.js │ ├── 014-metadata.js │ ├── 015-sorting.js │ ├── 016-tuples.js │ ├── 017-values.js │ └── 018-to-json.js ├── performance │ ├── 001-saveall.js │ └── 002-saveall2.js ├── querybuilder │ ├── 001-and.js │ ├── 002-or.js │ ├── 003-collection.js │ ├── 004-georadius.js │ └── 005-uris.js ├── run ├── search │ ├── 001-keyvalue.js │ ├── 002-structured-search.js │ ├── 003-search-query.js │ ├── 005-collections.js │ ├── 006-directory.js │ ├── 007-search-collections.js │ ├── 009-tuples.js │ └── 010-subcollections.js ├── searchcontext │ ├── 001-setters.js │ ├── 002-facet-listener.js │ ├── 003-sort-listener.js │ ├── 004-error-listener.js │ ├── 005-options-listener.js │ └── 006-reset.js ├── semantic │ ├── 001-save-get-merge-delete-graph.js │ └── 002-sparql.js ├── transactions │ ├── 001-basic-trans.js │ ├── 002-multi-trans.js │ └── 003-rollback.js └── transforms │ └── 001-create-transform.js ├── testconfig.js ├── testdeployexts.sh ├── testup.js ├── tutorials ├── 001-intro.md ├── 001-widgets-list.md ├── 002-intro-firstpage.md ├── 002-widgets-search.md ├── 003-widgets-search-render.md ├── 004-widgets-highcharts.md ├── 011-browser-create-app.md ├── 012-browser-install-app.md ├── 013-browser-samples-app.md ├── 014-browser-workplace.md ├── 020-angular.md ├── 050-core-contexts.md ├── 051-core-custom-searchcontext-endpoint.md ├── 052-core-data-series-context.md ├── 060-rest-ext.md ├── 901-ontology.md ├── 999-samples.md ├── all.md ├── dev1-001-overview.md ├── dev1-002-intro.md ├── dev1-003-first-page.md ├── dev1-004-first-widget.md ├── dev1-005-search-options.md ├── dev1-006-structured-query.md ├── dev1-007-semantics.md ├── dev1-008-lunch.md ├── dev1-009-blending-mljs.md ├── dev1-010-building-demo.md ├── dev1-011-demo-jam.md └── dev1-012-home-time.md ├── updaterest.sh ├── upgraderoxy.sh ├── webserver-testdata ├── .initial.json ├── .load.json ├── mljs-workplace.xml ├── restapi.json └── somefolder │ ├── .load.json │ ├── first.xml │ ├── sub1 │ ├── .load.json │ ├── some.json │ └── subsub2 │ │ └── readme.txt │ └── sub3 │ ├── .load.json │ ├── collected.json │ └── subsub4 │ └── ignored.json └── webserver ├── README.md ├── config ├── env.js └── webserver-settings.sh └── rest-api └── config └── options └── all.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/.npmignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /KEYLINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/KEYLINES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/README.md -------------------------------------------------------------------------------- /apps/mldbwebtest/CHANGELOG.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/CHANGELOG.mdown -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/app_specific.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/app_specific.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/build.properties -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/default.properties -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/dev.properties: -------------------------------------------------------------------------------- 1 | dev-server=192.168.123.174 2 | app-port=8080 -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/Help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/Help.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/MLClient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/MLClient.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/RoxyHttp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/RoxyHttp.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/depx-0.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/depx-0.1/LICENSE -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.2-93 -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/depx-0.1/depx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/depx-0.1/depx -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/depx-0.1/depx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/depx-0.1/depx.bat -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/framework.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/java/corb.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/java/corb.jar -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/java/xqsync.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/java/xqsync.jar -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/Array.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/Array.xpm -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/Hash.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/Hash.xpm -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/Key.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/Key.xpm -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/NilClass.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/NilClass.xpm -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/Numeric.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/Numeric.xpm -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/String.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/String.xpm -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/add/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/add/core.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/add/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/add/rails.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/common.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/editor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/editor.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/ext.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/json.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/json.xpm -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/pure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/pure.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/json/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/json/version.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/ml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/ml.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/ml_rest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/ml_rest.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/scaffold.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/scaffold.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/server_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/server_config.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/upgrader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/upgrader.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/util.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/xcc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/xcc.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/xquery/cpf.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/xquery/cpf.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/lib/xquery/setup.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/lib/xquery/setup.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/ml-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/ml-config.xml -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/sample/all.sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/sample/all.sample.xml -------------------------------------------------------------------------------- /apps/mldbwebtest/deploy/test/test_main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/deploy/test/test_main.rb -------------------------------------------------------------------------------- /apps/mldbwebtest/installextensions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/installextensions.sh -------------------------------------------------------------------------------- /apps/mldbwebtest/ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/ml -------------------------------------------------------------------------------- /apps/mldbwebtest/ml.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/ml.bat -------------------------------------------------------------------------------- /apps/mldbwebtest/rest-api/ext/dls.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/rest-api/ext/dls.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/rest-api/ext/dlsrules.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/rest-api/ext/dlsrules.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/rest-api/ext/groupby.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/rest-api/ext/groupby.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/rest-api/ext/rdb2rdf.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/rest-api/ext/rdb2rdf.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/rest-api/ext/subscribe.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/rest-api/ext/subscribe.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/rest-api/ext/triggers.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/rest-api/ext/triggers.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/rest-api/ext/version.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/rest-api/ext/version.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/rest-api/ext/whoami.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/rest-api/ext/whoami.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/rest-api/ext/workplace.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/rest-api/ext/workplace.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/app/config/config.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/app/config/config.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/app/models/sql.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/app/models/sql.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/css/960/960.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/css/960/960.css -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/css/960/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/css/960/demo.css -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/css/960/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/css/960/reset.css -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/css/960/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/css/960/text.css -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/css/app.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/css/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/css/error.css -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/css/examples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/css/examples.css -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/css/kratu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/css/kratu.css -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/css/vars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/css/vars.less -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/favicon.ico -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/index.html -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/js/app.js: -------------------------------------------------------------------------------- 1 | /* Your application javascript goes here */ -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/js/filedrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/js/filedrop.js -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/js/highcharts.js -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/js/kratu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/js/kratu.js -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/js/mljs/mljs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/js/mljs/mljs.js -------------------------------------------------------------------------------- /apps/mldbwebtest/src/public/js/two-column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/public/js/two-column.js -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/config/defaults.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/config/defaults.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/error.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/error.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/lib/cpf-private.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/lib/cpf-private.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/lib/cpf.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/lib/cpf.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/lib/date-parser.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/lib/date-parser.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/lib/json.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/lib/json.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/lib/reflection.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/lib/reflection.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/lib/request.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/lib/request.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/lib/soap-lib.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/lib/soap-lib.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/lib/util.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/lib/util.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/lib/view-helper.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/lib/view-helper.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/no-op.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/no-op.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/query-router.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/query-router.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/rewrite.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/rewrite.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/router.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/router.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/roxy/update-router.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/roxy/update-router.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/css/tests.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/css/tests.css -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/default.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/default.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/img/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/img/arrow-down.gif -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/img/arrow-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/img/arrow-right.gif -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/img/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/img/gritter.png -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/img/icon-minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/img/icon-minus.png -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/img/icon-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/img/icon-plus.png -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/img/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/img/ie-spacer.gif -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/img/spinner.gif -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/img/warning.png -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/js/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/js/tests.js -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/suites/CPF/cpf.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/suites/CPF/cpf.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/test-config.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/test-config.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/src/test/test-helper.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mldbwebtest/src/test/test-helper.xqy -------------------------------------------------------------------------------- /apps/mldbwebtest/version.txt: -------------------------------------------------------------------------------- 1 | 1.4 2 | -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/app/css/kratu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/app/css/kratu.css -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/app/css/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/app/css/navbar.css -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/app/images/icon-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/app/images/icon-.png -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/app/images/icon-.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/app/images/icon-.xcf -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/app/index.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/app/index.html5 -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/app/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/app/js/bootstrap.js -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/app/js/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/app/js/d3.js -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/app/js/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/app/js/d3.min.js -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/app/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/app/js/highcharts.js -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/app/js/kratu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/app/js/kratu.js -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/app/js/mljs/mljs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/app/js/mljs/mljs.js -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/app/js/page-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/app/js/page-index.js -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/app/workplace.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/app/workplace.html5 -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/bower.json -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/config/env.js -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/data/.initial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/data/.initial.json -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/data/initial/plaintext/1.txt: -------------------------------------------------------------------------------- 1 | There once was a poet named Fred. 2 | -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/data/initial/plaintext/2.txt: -------------------------------------------------------------------------------- 1 | Who wrote poems until he was dead. 2 | -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/data/initial/plaintext/3.txt: -------------------------------------------------------------------------------- 1 | They picked up his pencil. 2 | -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/data/initial/plaintext/4.txt: -------------------------------------------------------------------------------- 1 | And found his poem stencil. 2 | -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/data/initial/plaintext/5.txt: -------------------------------------------------------------------------------- 1 | And realised he had ran out of lead. 2 | -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/data/ontology.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/data/ontology.ttl -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/data/restapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/data/restapi.json -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/deploy/dev.properties: -------------------------------------------------------------------------------- 1 | dev-server=192.168.123.225 2 | -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/deploy/lib/Help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/deploy/lib/Help.rb -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/deploy/lib/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/deploy/lib/json.rb -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/deploy/lib/ml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/deploy/lib/ml.rb -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/deploy/lib/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/deploy/lib/util.rb -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/deploy/lib/xcc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/deploy/lib/xcc.rb -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/deploy/ml-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/deploy/ml-config.xml -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/mljsadmin: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | node util/mljsadmin.js $@ 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/mljsadmin.bat: -------------------------------------------------------------------------------- 1 | 2 | node util/mljsadmin.js %* 3 | -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/mljsadmin.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/mljsadmin.log -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/mljsserve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/mljsserve -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/mljsserve.bat: -------------------------------------------------------------------------------- 1 | 2 | node ./util/run-mljs-webserver.js 3 | -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/rest-api/ext/dls.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/rest-api/ext/dls.xqy -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/src/css/kratu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/src/css/kratu.css -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/src/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/src/js/bootstrap.js -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/src/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/src/js/highcharts.js -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/src/js/kratu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/src/js/kratu.js -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/src/js/mljs/mljs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/src/js/mljs/mljs.js -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/u.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/u.sh -------------------------------------------------------------------------------- /apps/mljsadmin-workplace/util/mljsadmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsadmin-workplace/util/mljsadmin.js -------------------------------------------------------------------------------- /apps/mljsrest/CHANGELOG.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/CHANGELOG.mdown -------------------------------------------------------------------------------- /apps/mljsrest/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/README.mdown -------------------------------------------------------------------------------- /apps/mljsrest/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/bower.json -------------------------------------------------------------------------------- /apps/mljsrest/deploy/app_specific.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/app_specific.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/build.properties -------------------------------------------------------------------------------- /apps/mljsrest/deploy/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/default.properties -------------------------------------------------------------------------------- /apps/mljsrest/deploy/dev.properties: -------------------------------------------------------------------------------- 1 | dev-server=192.168.123.225 2 | app-port=8080 3 | -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/Help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/Help.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/MLClient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/MLClient.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/RoxyHttp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/RoxyHttp.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/framework.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/java/corb.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/java/corb.jar -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/java/xpp3-1.1.4c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/java/xpp3-1.1.4c.jar -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/java/xqsync.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/java/xqsync.jar -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/Array.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/Array.xpm -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/FalseClass.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/FalseClass.xpm -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/Hash.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/Hash.xpm -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/Key.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/Key.xpm -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/NilClass.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/NilClass.xpm -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/Numeric.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/Numeric.xpm -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/String.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/String.xpm -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/TrueClass.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/TrueClass.xpm -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/add/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/add/core.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/add/rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/add/rails.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/common.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/editor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/editor.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/ext.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/json.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/json.xpm -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/pure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/pure.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/pure/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/pure/parser.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/json/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/json/version.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/ml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/ml.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/ml_rest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/ml_rest.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/scaffold.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/scaffold.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/server_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/server_config.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/templates/layout.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/templates/layout.xqy -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/templates/model.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/templates/model.xqy -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/templates/test.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/templates/test.xqy -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/templates/view.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/templates/view.xqy -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/upgrader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/upgrader.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/util.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/xcc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/xcc.rb -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/xquery/cpf.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/xquery/cpf.xqy -------------------------------------------------------------------------------- /apps/mljsrest/deploy/lib/xquery/setup.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/lib/xquery/setup.xqy -------------------------------------------------------------------------------- /apps/mljsrest/deploy/ml-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/ml-config.xml -------------------------------------------------------------------------------- /apps/mljsrest/deploy/sample/all.sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/sample/all.sample.xml -------------------------------------------------------------------------------- /apps/mljsrest/deploy/test/data/ml4-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/test/data/ml4-config.xml -------------------------------------------------------------------------------- /apps/mljsrest/deploy/test/data/ml5-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/test/data/ml5-config.xml -------------------------------------------------------------------------------- /apps/mljsrest/deploy/test/data/ml6-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/test/data/ml6-config.xml -------------------------------------------------------------------------------- /apps/mljsrest/deploy/test/test_main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/deploy/test/test_main.rb -------------------------------------------------------------------------------- /apps/mljsrest/installextensions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/installextensions.sh -------------------------------------------------------------------------------- /apps/mljsrest/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/license.txt -------------------------------------------------------------------------------- /apps/mljsrest/ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/ml -------------------------------------------------------------------------------- /apps/mljsrest/ml.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/ml.bat -------------------------------------------------------------------------------- /apps/mljsrest/rest-api/config/options/all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/rest-api/config/options/all.xml -------------------------------------------------------------------------------- /apps/mljsrest/rest-api/config/properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/rest-api/config/properties.xml -------------------------------------------------------------------------------- /apps/mljsrest/rest-api/ext/dls.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/rest-api/ext/dls.xqy -------------------------------------------------------------------------------- /apps/mljsrest/rest-api/ext/dlsrules.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/rest-api/ext/dlsrules.xqy -------------------------------------------------------------------------------- /apps/mljsrest/rest-api/ext/groupby.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/rest-api/ext/groupby.xqy -------------------------------------------------------------------------------- /apps/mljsrest/rest-api/ext/rdb2rdf.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/rest-api/ext/rdb2rdf.xqy -------------------------------------------------------------------------------- /apps/mljsrest/rest-api/ext/subscribe.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/rest-api/ext/subscribe.xqy -------------------------------------------------------------------------------- /apps/mljsrest/rest-api/ext/triggers.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/rest-api/ext/triggers.xqy -------------------------------------------------------------------------------- /apps/mljsrest/rest-api/ext/version.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/rest-api/ext/version.xqy -------------------------------------------------------------------------------- /apps/mljsrest/rest-api/ext/whoami.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/rest-api/ext/whoami.xqy -------------------------------------------------------------------------------- /apps/mljsrest/rest-api/ext/workplace.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/rest-api/ext/workplace.xqy -------------------------------------------------------------------------------- /apps/mljsrest/src/address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/address.html -------------------------------------------------------------------------------- /apps/mljsrest/src/angular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/angular.html -------------------------------------------------------------------------------- /apps/mljsrest/src/app/config/config.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/app/config/config.xqy -------------------------------------------------------------------------------- /apps/mljsrest/src/app/models/sql.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/app/models/sql.xqy -------------------------------------------------------------------------------- /apps/mljsrest/src/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/charts.html -------------------------------------------------------------------------------- /apps/mljsrest/src/chartsearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/chartsearch.html -------------------------------------------------------------------------------- /apps/mljsrest/src/collectionuris.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/collectionuris.html -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/960.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/960.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/960_12_col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/960_12_col.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/960_16_col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/960_16_col.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/960_24_col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/960_24_col.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/960_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/960_rtl.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/demo.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/min/960.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/min/960.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/min/960_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/min/960_rtl.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/min/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/min/reset.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/min/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/min/text.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/min/text_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/min/text_rtl.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/reset.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/reset_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/reset_rtl.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/text.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/960/text_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/960/text_rtl.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/bootstrap-roxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/bootstrap-roxy.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/bootstrap-theme.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/bootstrap.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/bootstrap.css.map -------------------------------------------------------------------------------- /apps/mljsrest/src/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/bootstrap.min.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/kratu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/kratu.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/mljs/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/mljs/modal.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/mljs/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/mljs/widgets.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/one-column.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/one-column.css -------------------------------------------------------------------------------- /apps/mljsrest/src/css/vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/css/vars.css -------------------------------------------------------------------------------- /apps/mljsrest/src/dnd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/dnd.html -------------------------------------------------------------------------------- /apps/mljsrest/src/docbuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/docbuilder.html -------------------------------------------------------------------------------- /apps/mljsrest/src/docedit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/docedit.html -------------------------------------------------------------------------------- /apps/mljsrest/src/docview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/docview.html -------------------------------------------------------------------------------- /apps/mljsrest/src/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/error.html -------------------------------------------------------------------------------- /apps/mljsrest/src/explorer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/explorer.html -------------------------------------------------------------------------------- /apps/mljsrest/src/images/mljs/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/images/mljs/loading.gif -------------------------------------------------------------------------------- /apps/mljsrest/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/index.html -------------------------------------------------------------------------------- /apps/mljsrest/src/infobox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/infobox.html -------------------------------------------------------------------------------- /apps/mljsrest/src/js/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/angular.min.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/bootstrap.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/bootstrap.min.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/canvas.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /apps/mljsrest/src/js/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /apps/mljsrest/src/js/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/ckeditor/README.md -------------------------------------------------------------------------------- /apps/mljsrest/src/js/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/ckeditor/config.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/ckeditor/contents.css -------------------------------------------------------------------------------- /apps/mljsrest/src/js/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/ckeditor/lang/en.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/ckeditor/styles.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/dataproviders/csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/dataproviders/csv.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/dataproviders/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/dataproviders/json.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/heatmap/heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/heatmap/heatmap.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/highcharts.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/kratu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/kratu.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/mljs/mljs-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/mljs/mljs-angular.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/mljs/mljs-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/mljs/mljs-jquery.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/mljs/mljs-xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/mljs/mljs-xhr.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/mljs/mljs-xhr2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/mljs/mljs-xhr2.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/mljs/mljs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/mljs/mljs.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/mljs/widget-alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/mljs/widget-alerts.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/mljs/widget-d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/mljs/widget-d3.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/mljs/widget-dls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/mljs/widget-dls.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/mljs/widget-ingest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/mljs/widget-ingest.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/mljs/widget-kratu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/mljs/widget-kratu.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/mljs/widget-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/mljs/widget-search.js -------------------------------------------------------------------------------- /apps/mljsrest/src/js/mljs/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/js/mljs/widgets.js -------------------------------------------------------------------------------- /apps/mljsrest/src/kratu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/kratu.html -------------------------------------------------------------------------------- /apps/mljsrest/src/movies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/movies.html -------------------------------------------------------------------------------- /apps/mljsrest/src/openlayers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/openlayers.html -------------------------------------------------------------------------------- /apps/mljsrest/src/rdb2rdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/rdb2rdf.html -------------------------------------------------------------------------------- /apps/mljsrest/src/roxy/config/defaults.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/roxy/config/defaults.xqy -------------------------------------------------------------------------------- /apps/mljsrest/src/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/search.html -------------------------------------------------------------------------------- /apps/mljsrest/src/snippets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/snippets.html -------------------------------------------------------------------------------- /apps/mljsrest/src/sparqlbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/sparqlbar.html -------------------------------------------------------------------------------- /apps/mljsrest/src/stevensearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/stevensearch.html -------------------------------------------------------------------------------- /apps/mljsrest/src/tagcloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/tagcloud.html -------------------------------------------------------------------------------- /apps/mljsrest/src/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/upload.html -------------------------------------------------------------------------------- /apps/mljsrest/src/workplace-custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/workplace-custom.html -------------------------------------------------------------------------------- /apps/mljsrest/src/workplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/workplace.html -------------------------------------------------------------------------------- /apps/mljsrest/src/workplaceadmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/src/workplaceadmin.html -------------------------------------------------------------------------------- /apps/mljsrest/u.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/mljsrest/u.sh -------------------------------------------------------------------------------- /apps/mljsrest/version.txt: -------------------------------------------------------------------------------- 1 | 1.4 2 | -------------------------------------------------------------------------------- /apps/workplace/CHANGELOG.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/CHANGELOG.mdown -------------------------------------------------------------------------------- /apps/workplace/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/README.mdown -------------------------------------------------------------------------------- /apps/workplace/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/bower.json -------------------------------------------------------------------------------- /apps/workplace/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/config/env.js -------------------------------------------------------------------------------- /apps/workplace/data/.initial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/.initial.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/animals/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/animals/1.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/animals/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/animals/2.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/animals/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/animals/3.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/animals/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/animals/4.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/animals/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/animals/5.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/animals/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/animals/6.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/animals/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/animals/7.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/animals/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/animals/8.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/animals/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/animals/9.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/mixed/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/mixed/1.xml -------------------------------------------------------------------------------- /apps/workplace/data/initial/mixed/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/mixed/2.xml -------------------------------------------------------------------------------- /apps/workplace/data/initial/mixed/3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/mixed/3.xml -------------------------------------------------------------------------------- /apps/workplace/data/initial/mixed/4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/mixed/4.html -------------------------------------------------------------------------------- /apps/workplace/data/initial/mixed/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/mixed/5.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/mixed/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/mixed/6.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/1.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/10.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/11.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/12.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/13.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/14.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/15.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/16.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/17.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/2.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/3.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/4.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/5.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/6.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/7.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/8.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/movies/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/initial/movies/9.json -------------------------------------------------------------------------------- /apps/workplace/data/initial/plaintext/1.txt: -------------------------------------------------------------------------------- 1 | There once was a poet named Fred. 2 | -------------------------------------------------------------------------------- /apps/workplace/data/initial/plaintext/2.txt: -------------------------------------------------------------------------------- 1 | Who wrote poems until he was dead. 2 | -------------------------------------------------------------------------------- /apps/workplace/data/initial/plaintext/3.txt: -------------------------------------------------------------------------------- 1 | They picked up his pencil. 2 | -------------------------------------------------------------------------------- /apps/workplace/data/initial/plaintext/4.txt: -------------------------------------------------------------------------------- 1 | And found his poem stencil. 2 | -------------------------------------------------------------------------------- /apps/workplace/data/initial/plaintext/5.txt: -------------------------------------------------------------------------------- 1 | And realised he had ran out of lead. 2 | -------------------------------------------------------------------------------- /apps/workplace/data/mljs-workplace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/mljs-workplace.xml -------------------------------------------------------------------------------- /apps/workplace/data/ontology.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/ontology.ttl -------------------------------------------------------------------------------- /apps/workplace/data/restapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/data/restapi.json -------------------------------------------------------------------------------- /apps/workplace/deploy/app_specific.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/app_specific.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/build.properties -------------------------------------------------------------------------------- /apps/workplace/deploy/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/default.properties -------------------------------------------------------------------------------- /apps/workplace/deploy/dev.properties: -------------------------------------------------------------------------------- 1 | dev-server=192.168.123.225 2 | -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/Help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/Help.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/MLClient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/MLClient.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/RoxyHttp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/RoxyHttp.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/framework.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/framework.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/java/corb.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/java/corb.jar -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/java/xqsync.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/java/xqsync.jar -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/json.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/json/Array.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/json/Array.xpm -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/json/Hash.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/json/Hash.xpm -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/json/Key.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/json/Key.xpm -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/json/Numeric.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/json/Numeric.xpm -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/json/String.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/json/String.xpm -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/json/add/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/json/add/core.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/json/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/json/common.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/json/editor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/json/editor.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/json/ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/json/ext.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/json/json.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/json/json.xpm -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/json/pure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/json/pure.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/json/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/json/version.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/ml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/ml.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/ml_rest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/ml_rest.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/scaffold.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/scaffold.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/server_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/server_config.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/upgrader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/upgrader.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/util.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/xcc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/xcc.rb -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/xquery/cpf.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/xquery/cpf.xqy -------------------------------------------------------------------------------- /apps/workplace/deploy/lib/xquery/setup.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/lib/xquery/setup.xqy -------------------------------------------------------------------------------- /apps/workplace/deploy/ml-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/ml-config.xml -------------------------------------------------------------------------------- /apps/workplace/deploy/test/test_main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/deploy/test/test_main.rb -------------------------------------------------------------------------------- /apps/workplace/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/license.txt -------------------------------------------------------------------------------- /apps/workplace/ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/ml -------------------------------------------------------------------------------- /apps/workplace/ml.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/ml.bat -------------------------------------------------------------------------------- /apps/workplace/rest-api/ext/dls.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/rest-api/ext/dls.xqy -------------------------------------------------------------------------------- /apps/workplace/rest-api/ext/dlsrules.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/rest-api/ext/dlsrules.xqy -------------------------------------------------------------------------------- /apps/workplace/rest-api/ext/groupby.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/rest-api/ext/groupby.xqy -------------------------------------------------------------------------------- /apps/workplace/rest-api/ext/rdb2rdf.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/rest-api/ext/rdb2rdf.xqy -------------------------------------------------------------------------------- /apps/workplace/rest-api/ext/subscribe.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/rest-api/ext/subscribe.xqy -------------------------------------------------------------------------------- /apps/workplace/rest-api/ext/triggers.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/rest-api/ext/triggers.xqy -------------------------------------------------------------------------------- /apps/workplace/rest-api/ext/version.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/rest-api/ext/version.xqy -------------------------------------------------------------------------------- /apps/workplace/rest-api/ext/whoami.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/rest-api/ext/whoami.xqy -------------------------------------------------------------------------------- /apps/workplace/rest-api/ext/workplace.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/rest-api/ext/workplace.xqy -------------------------------------------------------------------------------- /apps/workplace/src/app/config/config.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/app/config/config.xqy -------------------------------------------------------------------------------- /apps/workplace/src/app/models/sql.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/app/models/sql.xqy -------------------------------------------------------------------------------- /apps/workplace/src/application.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/application.html5 -------------------------------------------------------------------------------- /apps/workplace/src/css/bootstrap-roxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/css/bootstrap-roxy.css -------------------------------------------------------------------------------- /apps/workplace/src/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/css/bootstrap-theme.css -------------------------------------------------------------------------------- /apps/workplace/src/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/css/bootstrap.css -------------------------------------------------------------------------------- /apps/workplace/src/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/css/bootstrap.css.map -------------------------------------------------------------------------------- /apps/workplace/src/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/css/bootstrap.min.css -------------------------------------------------------------------------------- /apps/workplace/src/css/kratu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/css/kratu.css -------------------------------------------------------------------------------- /apps/workplace/src/css/mljs/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/css/mljs/modal.css -------------------------------------------------------------------------------- /apps/workplace/src/css/mljs/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/css/mljs/widgets.css -------------------------------------------------------------------------------- /apps/workplace/src/css/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/css/navbar.css -------------------------------------------------------------------------------- /apps/workplace/src/images/icon-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/images/icon-.png -------------------------------------------------------------------------------- /apps/workplace/src/images/icon-.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/images/icon-.xcf -------------------------------------------------------------------------------- /apps/workplace/src/images/icon-CNI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/images/icon-CNI.png -------------------------------------------------------------------------------- /apps/workplace/src/images/icon-Person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/images/icon-Person.png -------------------------------------------------------------------------------- /apps/workplace/src/images/icon-Phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/images/icon-Phone.png -------------------------------------------------------------------------------- /apps/workplace/src/images/icon-Schools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/images/icon-Schools.png -------------------------------------------------------------------------------- /apps/workplace/src/images/icon-Thing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/images/icon-Thing.png -------------------------------------------------------------------------------- /apps/workplace/src/images/icon-event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/images/icon-event.png -------------------------------------------------------------------------------- /apps/workplace/src/images/icon-xhtml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/images/icon-xhtml.png -------------------------------------------------------------------------------- /apps/workplace/src/images/mljs/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/images/mljs/loading.gif -------------------------------------------------------------------------------- /apps/workplace/src/index.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/index.html5 -------------------------------------------------------------------------------- /apps/workplace/src/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/bootstrap.js -------------------------------------------------------------------------------- /apps/workplace/src/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/bootstrap.min.js -------------------------------------------------------------------------------- /apps/workplace/src/js/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/d3.js -------------------------------------------------------------------------------- /apps/workplace/src/js/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/d3.min.js -------------------------------------------------------------------------------- /apps/workplace/src/js/dataproviders/csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/dataproviders/csv.js -------------------------------------------------------------------------------- /apps/workplace/src/js/ext-workplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/ext-workplace.js -------------------------------------------------------------------------------- /apps/workplace/src/js/heatmap/heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/heatmap/heatmap.js -------------------------------------------------------------------------------- /apps/workplace/src/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/highcharts.js -------------------------------------------------------------------------------- /apps/workplace/src/js/kratu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/kratu.js -------------------------------------------------------------------------------- /apps/workplace/src/js/lib/c3-0.4.10/c3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/lib/c3-0.4.10/c3.css -------------------------------------------------------------------------------- /apps/workplace/src/js/lib/c3-0.4.10/c3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/lib/c3-0.4.10/c3.js -------------------------------------------------------------------------------- /apps/workplace/src/js/lib/c3-0.4.10/htdocs/css/c3.css: -------------------------------------------------------------------------------- 1 | ../../c3.css -------------------------------------------------------------------------------- /apps/workplace/src/js/lib/c3-0.4.10/htdocs/js/c3.js: -------------------------------------------------------------------------------- 1 | ../../c3.js -------------------------------------------------------------------------------- /apps/workplace/src/js/lib/c3-0.4.10/htdocs/js/c3.min.js: -------------------------------------------------------------------------------- 1 | ../../c3.min.js -------------------------------------------------------------------------------- /apps/workplace/src/js/lib/c3-0.4.10/htdocs/js/extensions: -------------------------------------------------------------------------------- 1 | ../../extensions/js -------------------------------------------------------------------------------- /apps/workplace/src/js/lib/c3-0.4.10/src/scss/brush.scss: -------------------------------------------------------------------------------- 1 | .c3-brush .extent { 2 | fill-opacity: .1; 3 | } 4 | -------------------------------------------------------------------------------- /apps/workplace/src/js/lib/c3-0.4.10/src/scss/line.scss: -------------------------------------------------------------------------------- 1 | .c3-line { 2 | stroke-width: 1px; 3 | } 4 | -------------------------------------------------------------------------------- /apps/workplace/src/js/lib/c3-0.4.10/src/scss/select_drag.scss: -------------------------------------------------------------------------------- 1 | .c3-dragarea { 2 | } 3 | -------------------------------------------------------------------------------- /apps/workplace/src/js/mljs/mljs-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/mljs/mljs-angular.js -------------------------------------------------------------------------------- /apps/workplace/src/js/mljs/mljs-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/mljs/mljs-jquery.js -------------------------------------------------------------------------------- /apps/workplace/src/js/mljs/mljs-xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/mljs/mljs-xhr.js -------------------------------------------------------------------------------- /apps/workplace/src/js/mljs/mljs-xhr2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/mljs/mljs-xhr2.js -------------------------------------------------------------------------------- /apps/workplace/src/js/mljs/mljs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/mljs/mljs.js -------------------------------------------------------------------------------- /apps/workplace/src/js/mljs/widget-d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/mljs/widget-d3.js -------------------------------------------------------------------------------- /apps/workplace/src/js/mljs/widget-dls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/mljs/widget-dls.js -------------------------------------------------------------------------------- /apps/workplace/src/js/mljs/widget-kratu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/mljs/widget-kratu.js -------------------------------------------------------------------------------- /apps/workplace/src/js/mljs/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/mljs/widgets.js -------------------------------------------------------------------------------- /apps/workplace/src/js/page-application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/page-application.js -------------------------------------------------------------------------------- /apps/workplace/src/js/page-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/page-index.js -------------------------------------------------------------------------------- /apps/workplace/src/js/page-workplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/page-workplace.js -------------------------------------------------------------------------------- /apps/workplace/src/js/pivottable/pivot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/pivottable/pivot.css -------------------------------------------------------------------------------- /apps/workplace/src/js/pivottable/pivot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/js/pivottable/pivot.js -------------------------------------------------------------------------------- /apps/workplace/src/roxy/lib/reflection.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/roxy/lib/reflection.xqy -------------------------------------------------------------------------------- /apps/workplace/src/roxy/lib/request.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/roxy/lib/request.xqy -------------------------------------------------------------------------------- /apps/workplace/src/roxy/lib/rewriter.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/roxy/lib/rewriter.xqy -------------------------------------------------------------------------------- /apps/workplace/src/workplace.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/src/workplace.html5 -------------------------------------------------------------------------------- /apps/workplace/u.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/apps/workplace/u.sh -------------------------------------------------------------------------------- /apps/workplace/version.txt: -------------------------------------------------------------------------------- 1 | 1.6 2 | -------------------------------------------------------------------------------- /browser-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/browser-dist.sh -------------------------------------------------------------------------------- /browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/browser.md -------------------------------------------------------------------------------- /core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/core.md -------------------------------------------------------------------------------- /cpjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/cpjs.sh -------------------------------------------------------------------------------- /create-mldbtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/create-mldbtest.sh -------------------------------------------------------------------------------- /delete-configtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/delete-configtest.js -------------------------------------------------------------------------------- /delete-mldbtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/delete-mldbtest.sh -------------------------------------------------------------------------------- /dist/app-mljsrest.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/app-mljsrest.tar.gz -------------------------------------------------------------------------------- /dist/app-mljsrest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/app-mljsrest.zip -------------------------------------------------------------------------------- /dist/app-workplace.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/app-workplace.tar.gz -------------------------------------------------------------------------------- /dist/app-workplace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/app-workplace.zip -------------------------------------------------------------------------------- /dist/browser-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/README.md -------------------------------------------------------------------------------- /dist/browser-dev/css/960/960.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/960.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/960_12_col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/960_12_col.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/960_16_col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/960_16_col.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/960_24_col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/960_24_col.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/960_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/960_rtl.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/demo.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/min/960.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/min/960.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/min/960_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/min/960_rtl.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/min/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/min/reset.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/min/reset_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/min/reset_rtl.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/min/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/min/text.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/min/text_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/min/text_rtl.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/reset.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/reset_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/reset_rtl.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/text.css -------------------------------------------------------------------------------- /dist/browser-dev/css/960/text_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/960/text_rtl.css -------------------------------------------------------------------------------- /dist/browser-dev/css/bootstrap-roxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/bootstrap-roxy.css -------------------------------------------------------------------------------- /dist/browser-dev/css/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/modal.css -------------------------------------------------------------------------------- /dist/browser-dev/css/widget-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/widget-search.css -------------------------------------------------------------------------------- /dist/browser-dev/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/css/widgets.css -------------------------------------------------------------------------------- /dist/browser-dev/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/images/loading.gif -------------------------------------------------------------------------------- /dist/browser-dev/images/question-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/images/question-mark.png -------------------------------------------------------------------------------- /dist/browser-dev/images/setting-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/images/setting-large.png -------------------------------------------------------------------------------- /dist/browser-dev/images/setting-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/images/setting-small.png -------------------------------------------------------------------------------- /dist/browser-dev/js/dataproviders/csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/dataproviders/csv.js -------------------------------------------------------------------------------- /dist/browser-dev/js/dataproviders/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/dataproviders/json.js -------------------------------------------------------------------------------- /dist/browser-dev/js/heatmap/heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/heatmap/heatmap.js -------------------------------------------------------------------------------- /dist/browser-dev/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/highcharts.js -------------------------------------------------------------------------------- /dist/browser-dev/js/kratu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/kratu.js -------------------------------------------------------------------------------- /dist/browser-dev/js/mljs-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/mljs-angular.js -------------------------------------------------------------------------------- /dist/browser-dev/js/mljs-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/mljs-jquery.js -------------------------------------------------------------------------------- /dist/browser-dev/js/mljs-prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/mljs-prototype.js -------------------------------------------------------------------------------- /dist/browser-dev/js/mljs-xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/mljs-xhr.js -------------------------------------------------------------------------------- /dist/browser-dev/js/mljs-xhr2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/mljs-xhr2.js -------------------------------------------------------------------------------- /dist/browser-dev/js/mljs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/mljs.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-address.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-alerts.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-collections.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-cooccurence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-cooccurence.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-d3.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-dls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-dls.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-docbuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-docbuilder.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-documents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-documents.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-explore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-explore.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-highcharts.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-ingest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-ingest.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-kratu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-kratu.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-markings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-markings.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-openlayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-openlayers.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-pivottable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-pivottable.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-profile.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-rdb2rdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-rdb2rdf.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-search.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-security.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-tagcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-tagcloud.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-triples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-triples.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widget-workplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widget-workplace.js -------------------------------------------------------------------------------- /dist/browser-dev/js/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-dev/js/widgets.js -------------------------------------------------------------------------------- /dist/browser-prod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/README.md -------------------------------------------------------------------------------- /dist/browser-prod/css/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/css/modal.css -------------------------------------------------------------------------------- /dist/browser-prod/css/widget-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/css/widget-search.css -------------------------------------------------------------------------------- /dist/browser-prod/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/css/widgets.css -------------------------------------------------------------------------------- /dist/browser-prod/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/images/loading.gif -------------------------------------------------------------------------------- /dist/browser-prod/images/question-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/images/question-mark.png -------------------------------------------------------------------------------- /dist/browser-prod/images/setting-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/images/setting-large.png -------------------------------------------------------------------------------- /dist/browser-prod/images/setting-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/images/setting-small.png -------------------------------------------------------------------------------- /dist/browser-prod/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/highcharts.js -------------------------------------------------------------------------------- /dist/browser-prod/js/mljs-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/mljs-jquery.js -------------------------------------------------------------------------------- /dist/browser-prod/js/mljs-prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/mljs-prototype.js -------------------------------------------------------------------------------- /dist/browser-prod/js/mljs-xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/mljs-xhr.js -------------------------------------------------------------------------------- /dist/browser-prod/js/mljs-xhr2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/mljs-xhr2.js -------------------------------------------------------------------------------- /dist/browser-prod/js/mljs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/mljs.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-address.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-collections.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-cooccurence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-cooccurence.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-dls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-dls.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-docbuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-docbuilder.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-documents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-documents.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-explore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-explore.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-highcharts.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-kratu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-kratu.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-markings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-markings.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-openlayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-openlayers.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-profile.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-rdb2rdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-rdb2rdf.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-search.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-tagcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-tagcloud.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-triples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-triples.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widget-workplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widget-workplace.js -------------------------------------------------------------------------------- /dist/browser-prod/js/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/browser-prod/js/widgets.js -------------------------------------------------------------------------------- /dist/mljs-browser-dev.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/mljs-browser-dev.tar.gz -------------------------------------------------------------------------------- /dist/mljs-browser-dev.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/mljs-browser-dev.zip -------------------------------------------------------------------------------- /dist/mljs-browser-prod.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/mljs-browser-prod.tar.gz -------------------------------------------------------------------------------- /dist/mljs-browser-prod.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/mljs-browser-prod.zip -------------------------------------------------------------------------------- /dist/mljs-docs.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/mljs-docs.tar.gz -------------------------------------------------------------------------------- /dist/mljs-docs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/mljs-docs.zip -------------------------------------------------------------------------------- /dist/mljs-node-dev.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/mljs-node-dev.tar.gz -------------------------------------------------------------------------------- /dist/mljs-node-dev.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/mljs-node-dev.zip -------------------------------------------------------------------------------- /dist/mljs-node-prod.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/mljs-node-prod.tar.gz -------------------------------------------------------------------------------- /dist/mljs-nodejs-prod.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/mljs-nodejs-prod.zip -------------------------------------------------------------------------------- /dist/node-dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/node-dev/README.md -------------------------------------------------------------------------------- /dist/node-dev/lib/basic-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/node-dev/lib/basic-wrapper.js -------------------------------------------------------------------------------- /dist/node-dev/lib/digest-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/node-dev/lib/digest-wrapper.js -------------------------------------------------------------------------------- /dist/node-dev/lib/multipart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/node-dev/lib/multipart.js -------------------------------------------------------------------------------- /dist/node-dev/lib/noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/node-dev/lib/noop.js -------------------------------------------------------------------------------- /dist/node-dev/lib/passthrough-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/node-dev/lib/passthrough-wrapper.js -------------------------------------------------------------------------------- /dist/node-dev/mljs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/node-dev/mljs.js -------------------------------------------------------------------------------- /dist/node-prod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/node-prod/README.md -------------------------------------------------------------------------------- /dist/node-prod/lib/basic-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/node-prod/lib/basic-wrapper.js -------------------------------------------------------------------------------- /dist/node-prod/lib/digest-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/node-prod/lib/digest-wrapper.js -------------------------------------------------------------------------------- /dist/node-prod/lib/noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/node-prod/lib/noop.js -------------------------------------------------------------------------------- /dist/node-prod/lib/passthrough-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/node-prod/lib/passthrough-wrapper.js -------------------------------------------------------------------------------- /dist/node-prod/mljs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/dist/node-prod/mljs.js -------------------------------------------------------------------------------- /documentation/gallery/addressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/addressbar.png -------------------------------------------------------------------------------- /documentation/gallery/advancedsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/advancedsearch.png -------------------------------------------------------------------------------- /documentation/gallery/app-mljsrest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/app-mljsrest.png -------------------------------------------------------------------------------- /documentation/gallery/app-sitaware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/app-sitaware.png -------------------------------------------------------------------------------- /documentation/gallery/app-workplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/app-workplace.png -------------------------------------------------------------------------------- /documentation/gallery/cooccurence-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/cooccurence-2.png -------------------------------------------------------------------------------- /documentation/gallery/cooccurence-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/cooccurence-3.png -------------------------------------------------------------------------------- /documentation/gallery/cooccurence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/cooccurence.png -------------------------------------------------------------------------------- /documentation/gallery/create-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/create-2.png -------------------------------------------------------------------------------- /documentation/gallery/create-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/create-3.png -------------------------------------------------------------------------------- /documentation/gallery/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/create.png -------------------------------------------------------------------------------- /documentation/gallery/docheadviewer-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/docheadviewer-2.png -------------------------------------------------------------------------------- /documentation/gallery/docheadviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/docheadviewer.png -------------------------------------------------------------------------------- /documentation/gallery/docproperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/docproperties.png -------------------------------------------------------------------------------- /documentation/gallery/docviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/docviewer.png -------------------------------------------------------------------------------- /documentation/gallery/entityfacts-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/entityfacts-2.png -------------------------------------------------------------------------------- /documentation/gallery/entityfacts-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/entityfacts-3.png -------------------------------------------------------------------------------- /documentation/gallery/entityfacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/entityfacts.png -------------------------------------------------------------------------------- /documentation/gallery/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/error.png -------------------------------------------------------------------------------- /documentation/gallery/explorer-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/explorer-2.png -------------------------------------------------------------------------------- /documentation/gallery/explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/explorer.png -------------------------------------------------------------------------------- /documentation/gallery/highcharts-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/highcharts-2.png -------------------------------------------------------------------------------- /documentation/gallery/highcharts-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/highcharts-3.png -------------------------------------------------------------------------------- /documentation/gallery/highcharts-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/highcharts-4.png -------------------------------------------------------------------------------- /documentation/gallery/highcharts-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/highcharts-5.png -------------------------------------------------------------------------------- /documentation/gallery/highcharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/highcharts.png -------------------------------------------------------------------------------- /documentation/gallery/keylines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/keylines.png -------------------------------------------------------------------------------- /documentation/gallery/kratu-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/kratu-2.png -------------------------------------------------------------------------------- /documentation/gallery/kratu-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/kratu-3.png -------------------------------------------------------------------------------- /documentation/gallery/kratu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/kratu.png -------------------------------------------------------------------------------- /documentation/gallery/markings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/markings.png -------------------------------------------------------------------------------- /documentation/gallery/openlayers-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/openlayers-2.png -------------------------------------------------------------------------------- /documentation/gallery/openlayers-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/openlayers-3.png -------------------------------------------------------------------------------- /documentation/gallery/openlayers-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/openlayers-4.png -------------------------------------------------------------------------------- /documentation/gallery/openlayers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/openlayers.png -------------------------------------------------------------------------------- /documentation/gallery/searchbar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchbar-2.png -------------------------------------------------------------------------------- /documentation/gallery/searchbar-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchbar-3.png -------------------------------------------------------------------------------- /documentation/gallery/searchbar-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchbar-4.png -------------------------------------------------------------------------------- /documentation/gallery/searchbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchbar.png -------------------------------------------------------------------------------- /documentation/gallery/searchfacets-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchfacets-2.png -------------------------------------------------------------------------------- /documentation/gallery/searchfacets-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchfacets-3.png -------------------------------------------------------------------------------- /documentation/gallery/searchfacets-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchfacets-4.png -------------------------------------------------------------------------------- /documentation/gallery/searchfacets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchfacets.png -------------------------------------------------------------------------------- /documentation/gallery/searchmetrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchmetrics.png -------------------------------------------------------------------------------- /documentation/gallery/searchpager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchpager.png -------------------------------------------------------------------------------- /documentation/gallery/searchresults-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchresults-2.png -------------------------------------------------------------------------------- /documentation/gallery/searchresults-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchresults-3.png -------------------------------------------------------------------------------- /documentation/gallery/searchresults-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchresults-4.png -------------------------------------------------------------------------------- /documentation/gallery/searchresults-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchresults-5.png -------------------------------------------------------------------------------- /documentation/gallery/searchresults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchresults.png -------------------------------------------------------------------------------- /documentation/gallery/searchselection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchselection.png -------------------------------------------------------------------------------- /documentation/gallery/searchsorter-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchsorter-2.png -------------------------------------------------------------------------------- /documentation/gallery/searchsorter-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchsorter-3.png -------------------------------------------------------------------------------- /documentation/gallery/searchsorter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/searchsorter.png -------------------------------------------------------------------------------- /documentation/gallery/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/selection.png -------------------------------------------------------------------------------- /documentation/gallery/sparqlbar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/sparqlbar-2.png -------------------------------------------------------------------------------- /documentation/gallery/sparqlbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/sparqlbar.png -------------------------------------------------------------------------------- /documentation/gallery/sparqlresults-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/sparqlresults-2.png -------------------------------------------------------------------------------- /documentation/gallery/sparqlresults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/sparqlresults.png -------------------------------------------------------------------------------- /documentation/gallery/tagcloud-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/tagcloud-2.png -------------------------------------------------------------------------------- /documentation/gallery/tagcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/tagcloud.png -------------------------------------------------------------------------------- /documentation/gallery/workplaceadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/gallery/workplaceadmin.png -------------------------------------------------------------------------------- /documentation/jsdoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/jsdoc.md -------------------------------------------------------------------------------- /documentation/mljs-diagrams.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-diagrams.key -------------------------------------------------------------------------------- /documentation/mljs-diagrams.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-diagrams.ppt -------------------------------------------------------------------------------- /documentation/mljs-diagrams/Slide01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-diagrams/Slide01.png -------------------------------------------------------------------------------- /documentation/mljs-diagrams/Slide02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-diagrams/Slide02.png -------------------------------------------------------------------------------- /documentation/mljs-diagrams/Slide03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-diagrams/Slide03.png -------------------------------------------------------------------------------- /documentation/mljs-diagrams/Slide04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-diagrams/Slide04.png -------------------------------------------------------------------------------- /documentation/mljs-diagrams/Slide05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-diagrams/Slide05.png -------------------------------------------------------------------------------- /documentation/mljs-diagrams/Slide06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-diagrams/Slide06.png -------------------------------------------------------------------------------- /documentation/mljs-diagrams/Slide07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-diagrams/Slide07.png -------------------------------------------------------------------------------- /documentation/mljs-diagrams/Slide08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-diagrams/Slide08.png -------------------------------------------------------------------------------- /documentation/mljs-diagrams/Slide09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-diagrams/Slide09.png -------------------------------------------------------------------------------- /documentation/mljs-diagrams/Slide10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-diagrams/Slide10.png -------------------------------------------------------------------------------- /documentation/mljs-intro-oct-2013.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-intro-oct-2013.key -------------------------------------------------------------------------------- /documentation/mljs-intro-oct-2013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-intro-oct-2013.pdf -------------------------------------------------------------------------------- /documentation/mljs-webinars.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/mljs-webinars.pptx -------------------------------------------------------------------------------- /documentation/tagging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/documentation/tagging.md -------------------------------------------------------------------------------- /exists.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/exists.sh -------------------------------------------------------------------------------- /exists2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/exists2.sh -------------------------------------------------------------------------------- /gendocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/gendocs.sh -------------------------------------------------------------------------------- /jsdoc-conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/jsdoc-conf.json -------------------------------------------------------------------------------- /lc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/lc.sh -------------------------------------------------------------------------------- /mljsme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/mljsme.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/package.json -------------------------------------------------------------------------------- /planning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/planning.md -------------------------------------------------------------------------------- /progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/progress.md -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/publish.sh -------------------------------------------------------------------------------- /release-notes/2013-09-0.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/release-notes/2013-09-0.9.md -------------------------------------------------------------------------------- /release-notes/2013-10-1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/release-notes/2013-10-1.0.md -------------------------------------------------------------------------------- /release-notes/2016-05-8.0.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/release-notes/2016-05-8.0.8.md -------------------------------------------------------------------------------- /restclient/savePropertiesBlank.rcq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/restclient/savePropertiesBlank.rcq -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/runtests.sh -------------------------------------------------------------------------------- /samples/001-code-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/001-code-style.js -------------------------------------------------------------------------------- /samples/002-node-ingest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/002-node-ingest.js -------------------------------------------------------------------------------- /samples/003-renderer-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/003-renderer-json.js -------------------------------------------------------------------------------- /samples/004-renderer-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/004-renderer-xml.js -------------------------------------------------------------------------------- /samples/005-renderer-lazy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/005-renderer-lazy.js -------------------------------------------------------------------------------- /samples/006-widget-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/006-widget-page.js -------------------------------------------------------------------------------- /samples/007-blank-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/007-blank-page.js -------------------------------------------------------------------------------- /samples/008-load-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/008-load-data.js -------------------------------------------------------------------------------- /samples/009-blank-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/009-blank-widget.js -------------------------------------------------------------------------------- /samples/010-load-facts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/010-load-facts.js -------------------------------------------------------------------------------- /samples/test-ingest/0001.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/test-ingest/0001.js -------------------------------------------------------------------------------- /samples/test-ingest/0002.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/test-ingest/0002.js -------------------------------------------------------------------------------- /samples/test-ingest/0003.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/test-ingest/0003.js -------------------------------------------------------------------------------- /samples/test-ingest/0004.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/test-ingest/0004.js -------------------------------------------------------------------------------- /samples/test-ingest/0005.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/test-ingest/0005.js -------------------------------------------------------------------------------- /samples/test-ingest/0006.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/test-ingest/0006.js -------------------------------------------------------------------------------- /samples/test-ingest/0007.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/samples/test-ingest/0007.js -------------------------------------------------------------------------------- /src/css/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/css/modal.css -------------------------------------------------------------------------------- /src/css/widget-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/css/widget-search.css -------------------------------------------------------------------------------- /src/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/css/widgets.css -------------------------------------------------------------------------------- /src/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/images/loading.gif -------------------------------------------------------------------------------- /src/images/question-mark-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/images/question-mark-small.png -------------------------------------------------------------------------------- /src/images/question-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/images/question-mark.png -------------------------------------------------------------------------------- /src/images/setting-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/images/setting-large.png -------------------------------------------------------------------------------- /src/images/setting-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/images/setting-small.png -------------------------------------------------------------------------------- /src/js/lib/basic-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/lib/basic-wrapper.js -------------------------------------------------------------------------------- /src/js/lib/digest-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/lib/digest-wrapper.js -------------------------------------------------------------------------------- /src/js/lib/multipart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/lib/multipart.js -------------------------------------------------------------------------------- /src/js/lib/noop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/lib/noop.js -------------------------------------------------------------------------------- /src/js/lib/passthrough-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/lib/passthrough-wrapper.js -------------------------------------------------------------------------------- /src/js/mljs-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/mljs-angular.js -------------------------------------------------------------------------------- /src/js/mljs-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/mljs-jquery.js -------------------------------------------------------------------------------- /src/js/mljs-prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/mljs-prototype.js -------------------------------------------------------------------------------- /src/js/mljs-xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/mljs-xhr.js -------------------------------------------------------------------------------- /src/js/mljs-xhr2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/mljs-xhr2.js -------------------------------------------------------------------------------- /src/js/mljs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/mljs.js -------------------------------------------------------------------------------- /src/js/widget-address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-address.js -------------------------------------------------------------------------------- /src/js/widget-alerts-defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-alerts-defaults.js -------------------------------------------------------------------------------- /src/js/widget-alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-alerts.js -------------------------------------------------------------------------------- /src/js/widget-collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-collections.js -------------------------------------------------------------------------------- /src/js/widget-cooccurence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-cooccurence.js -------------------------------------------------------------------------------- /src/js/widget-d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-d3.js -------------------------------------------------------------------------------- /src/js/widget-dls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-dls.js -------------------------------------------------------------------------------- /src/js/widget-docbuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-docbuilder.js -------------------------------------------------------------------------------- /src/js/widget-documents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-documents.js -------------------------------------------------------------------------------- /src/js/widget-explore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-explore.js -------------------------------------------------------------------------------- /src/js/widget-highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-highcharts.js -------------------------------------------------------------------------------- /src/js/widget-ingest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-ingest.js -------------------------------------------------------------------------------- /src/js/widget-kratu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-kratu.js -------------------------------------------------------------------------------- /src/js/widget-markings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-markings.js -------------------------------------------------------------------------------- /src/js/widget-openlayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-openlayers.js -------------------------------------------------------------------------------- /src/js/widget-pivottable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-pivottable.js -------------------------------------------------------------------------------- /src/js/widget-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-profile.js -------------------------------------------------------------------------------- /src/js/widget-rdb2rdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-rdb2rdf.js -------------------------------------------------------------------------------- /src/js/widget-search-oldinit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-search-oldinit.js -------------------------------------------------------------------------------- /src/js/widget-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-search.js -------------------------------------------------------------------------------- /src/js/widget-searchoptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-searchoptions.js -------------------------------------------------------------------------------- /src/js/widget-security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-security.js -------------------------------------------------------------------------------- /src/js/widget-tagcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-tagcloud.js -------------------------------------------------------------------------------- /src/js/widget-triples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-triples.js -------------------------------------------------------------------------------- /src/js/widget-workplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widget-workplace.js -------------------------------------------------------------------------------- /src/js/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/js/widgets.js -------------------------------------------------------------------------------- /src/rest-api/ext/dls.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/rest-api/ext/dls.xqy -------------------------------------------------------------------------------- /src/rest-api/ext/dlsrules.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/rest-api/ext/dlsrules.xqy -------------------------------------------------------------------------------- /src/rest-api/ext/groupby.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/rest-api/ext/groupby.xqy -------------------------------------------------------------------------------- /src/rest-api/ext/rdb2rdf.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/rest-api/ext/rdb2rdf.xqy -------------------------------------------------------------------------------- /src/rest-api/ext/subscribe.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/rest-api/ext/subscribe.xqy -------------------------------------------------------------------------------- /src/rest-api/ext/triggers.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/rest-api/ext/triggers.xqy -------------------------------------------------------------------------------- /src/rest-api/ext/version.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/rest-api/ext/version.xqy -------------------------------------------------------------------------------- /src/rest-api/ext/whoami.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/rest-api/ext/whoami.xqy -------------------------------------------------------------------------------- /src/rest-api/ext/workplace.xqy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/src/rest-api/ext/workplace.xqy -------------------------------------------------------------------------------- /test-settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test-settings.sh -------------------------------------------------------------------------------- /test/admin/004-create-destroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/admin/004-create-destroy.js -------------------------------------------------------------------------------- /test/admin/008-exists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/admin/008-exists.js -------------------------------------------------------------------------------- /test/alerts/001-create-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/alerts/001-create-alert.js -------------------------------------------------------------------------------- /test/basics/001-save-get-delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/basics/001-save-get-delete.js -------------------------------------------------------------------------------- /test/basics/002-get-not-found.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/basics/002-get-not-found.js -------------------------------------------------------------------------------- /test/basics/003-save-load-equal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/basics/003-save-load-equal.js -------------------------------------------------------------------------------- /test/basics/004-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/basics/004-metadata.js -------------------------------------------------------------------------------- /test/basics/005-merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/basics/005-merge.js -------------------------------------------------------------------------------- /test/basics/006-save-get-delete-in-loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/basics/006-save-get-delete-in-loop.js -------------------------------------------------------------------------------- /test/basics/009-configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/basics/009-configure.js -------------------------------------------------------------------------------- /test/basics/010-save-auto-uri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/basics/010-save-auto-uri.js -------------------------------------------------------------------------------- /test/basics/011-save-formats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/basics/011-save-formats.js -------------------------------------------------------------------------------- /test/config/001-indexes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/config/001-indexes.js -------------------------------------------------------------------------------- /test/events/001-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/events/001-events.js -------------------------------------------------------------------------------- /test/extensions/001-do.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/extensions/001-do.js -------------------------------------------------------------------------------- /test/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/global.js -------------------------------------------------------------------------------- /test/optionsbuilder/001-returns.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/002-defaults.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/003-quality.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/004-path-constraint.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/005-element-constraint.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/006-attribute-constraint.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/007-collection-constraint.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/008-geo-constraints.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/009-page-length.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/010-transform.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/011-raw.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/012-snippet.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/013-empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/014-metadata.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/015-sorting.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/016-tuples.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/017-values.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/optionsbuilder/018-to-json.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/performance/001-saveall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/performance/001-saveall.js -------------------------------------------------------------------------------- /test/performance/002-saveall2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/performance/002-saveall2.js -------------------------------------------------------------------------------- /test/querybuilder/001-and.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/querybuilder/002-or.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/querybuilder/003-collection.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/querybuilder/004-georadius.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/querybuilder/005-uris.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/run -------------------------------------------------------------------------------- /test/search/001-keyvalue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/search/001-keyvalue.js -------------------------------------------------------------------------------- /test/search/002-structured-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/search/002-structured-search.js -------------------------------------------------------------------------------- /test/search/003-search-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/search/003-search-query.js -------------------------------------------------------------------------------- /test/search/005-collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/search/005-collections.js -------------------------------------------------------------------------------- /test/search/006-directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/search/006-directory.js -------------------------------------------------------------------------------- /test/search/007-search-collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/search/007-search-collections.js -------------------------------------------------------------------------------- /test/search/009-tuples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/search/009-tuples.js -------------------------------------------------------------------------------- /test/search/010-subcollections.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/searchcontext/001-setters.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/searchcontext/002-facet-listener.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/searchcontext/003-sort-listener.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/searchcontext/004-error-listener.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/searchcontext/005-options-listener.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/searchcontext/006-reset.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/semantic/002-sparql.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/transactions/001-basic-trans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/transactions/001-basic-trans.js -------------------------------------------------------------------------------- /test/transactions/002-multi-trans.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/transactions/003-rollback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/transactions/003-rollback.js -------------------------------------------------------------------------------- /test/transforms/001-create-transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/test/transforms/001-create-transform.js -------------------------------------------------------------------------------- /testconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/testconfig.js -------------------------------------------------------------------------------- /testdeployexts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/testdeployexts.sh -------------------------------------------------------------------------------- /testup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/testup.js -------------------------------------------------------------------------------- /tutorials/001-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/001-intro.md -------------------------------------------------------------------------------- /tutorials/001-widgets-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/001-widgets-list.md -------------------------------------------------------------------------------- /tutorials/002-intro-firstpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/002-intro-firstpage.md -------------------------------------------------------------------------------- /tutorials/002-widgets-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/002-widgets-search.md -------------------------------------------------------------------------------- /tutorials/003-widgets-search-render.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/003-widgets-search-render.md -------------------------------------------------------------------------------- /tutorials/004-widgets-highcharts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/004-widgets-highcharts.md -------------------------------------------------------------------------------- /tutorials/011-browser-create-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/011-browser-create-app.md -------------------------------------------------------------------------------- /tutorials/012-browser-install-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/012-browser-install-app.md -------------------------------------------------------------------------------- /tutorials/013-browser-samples-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/013-browser-samples-app.md -------------------------------------------------------------------------------- /tutorials/014-browser-workplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/014-browser-workplace.md -------------------------------------------------------------------------------- /tutorials/020-angular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/020-angular.md -------------------------------------------------------------------------------- /tutorials/050-core-contexts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/050-core-contexts.md -------------------------------------------------------------------------------- /tutorials/052-core-data-series-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/052-core-data-series-context.md -------------------------------------------------------------------------------- /tutorials/060-rest-ext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/060-rest-ext.md -------------------------------------------------------------------------------- /tutorials/901-ontology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/901-ontology.md -------------------------------------------------------------------------------- /tutorials/999-samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/999-samples.md -------------------------------------------------------------------------------- /tutorials/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/all.md -------------------------------------------------------------------------------- /tutorials/dev1-001-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/dev1-001-overview.md -------------------------------------------------------------------------------- /tutorials/dev1-002-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/dev1-002-intro.md -------------------------------------------------------------------------------- /tutorials/dev1-003-first-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/dev1-003-first-page.md -------------------------------------------------------------------------------- /tutorials/dev1-004-first-widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/dev1-004-first-widget.md -------------------------------------------------------------------------------- /tutorials/dev1-005-search-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/dev1-005-search-options.md -------------------------------------------------------------------------------- /tutorials/dev1-006-structured-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/dev1-006-structured-query.md -------------------------------------------------------------------------------- /tutorials/dev1-007-semantics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/dev1-007-semantics.md -------------------------------------------------------------------------------- /tutorials/dev1-008-lunch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/dev1-008-lunch.md -------------------------------------------------------------------------------- /tutorials/dev1-009-blending-mljs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/dev1-009-blending-mljs.md -------------------------------------------------------------------------------- /tutorials/dev1-010-building-demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/dev1-010-building-demo.md -------------------------------------------------------------------------------- /tutorials/dev1-011-demo-jam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/dev1-011-demo-jam.md -------------------------------------------------------------------------------- /tutorials/dev1-012-home-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/tutorials/dev1-012-home-time.md -------------------------------------------------------------------------------- /updaterest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/updaterest.sh -------------------------------------------------------------------------------- /upgraderoxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/upgraderoxy.sh -------------------------------------------------------------------------------- /webserver-testdata/.initial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/webserver-testdata/.initial.json -------------------------------------------------------------------------------- /webserver-testdata/.load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/webserver-testdata/.load.json -------------------------------------------------------------------------------- /webserver-testdata/mljs-workplace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/webserver-testdata/mljs-workplace.xml -------------------------------------------------------------------------------- /webserver-testdata/restapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/webserver-testdata/restapi.json -------------------------------------------------------------------------------- /webserver-testdata/somefolder/.load.json: -------------------------------------------------------------------------------- 1 | { 2 | "prefix": "/wibble", "collections": ["testcontent"] 3 | } 4 | -------------------------------------------------------------------------------- /webserver-testdata/somefolder/first.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /webserver-testdata/somefolder/sub1/.load.json: -------------------------------------------------------------------------------- 1 | { 2 | "collections": ["moretestcontent"] 3 | } 4 | -------------------------------------------------------------------------------- /webserver-testdata/somefolder/sub1/some.json: -------------------------------------------------------------------------------- 1 | { 2 | "some":"json" 3 | } 4 | -------------------------------------------------------------------------------- /webserver-testdata/somefolder/sub3/collected.json: -------------------------------------------------------------------------------- 1 | { 2 | "some": "collectedjson" 3 | } 4 | -------------------------------------------------------------------------------- /webserver-testdata/somefolder/sub3/subsub4/ignored.json: -------------------------------------------------------------------------------- 1 | { 2 | "some": "ignoredjson" 3 | } 4 | -------------------------------------------------------------------------------- /webserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/webserver/README.md -------------------------------------------------------------------------------- /webserver/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/webserver/config/env.js -------------------------------------------------------------------------------- /webserver/config/webserver-settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/webserver/config/webserver-settings.sh -------------------------------------------------------------------------------- /webserver/rest-api/config/options/all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamfowleruk/mljs/HEAD/webserver/rest-api/config/options/all.xml --------------------------------------------------------------------------------