├── css ├── annotorious.css ├── delete.png ├── feather_icon.png ├── pencil.png └── theme-dark │ ├── DarkSprite.png │ ├── Dividor.png │ ├── Indicator.png │ ├── annotorious-dark.css │ └── feather_icon.png ├── externs ├── api.externs.js ├── jquery.externs.js ├── okfn_annotator.externs.js ├── openlayers.externs.js └── openseadragon.externs.js ├── mit-license.txt ├── okfn_plugin.json ├── plovr ├── plovr-license-apache2.txt └── plovr.jar ├── readme.md ├── src ├── annotation.js ├── annotorious.js ├── api.js ├── dom.js ├── editor.js ├── events.js ├── events.ui.js ├── hint.js ├── mediatypes │ ├── annotator.js │ ├── image │ │ ├── image.annotator.js │ │ ├── image.module.js │ │ └── image.viewer.js │ ├── module.js │ ├── openlayers │ │ ├── openlayers.annotator.js │ │ ├── openlayers.module.js │ │ └── openlayers.viewer.js │ └── openseadragon │ │ ├── openseadragon.annotator.js │ │ ├── openseadragon.module.js │ │ └── openseadragon.viewer.js ├── okfn │ ├── okfn_image_plugin.js │ └── okfn_popup.js ├── popup.js ├── selection │ └── rect_drag_selector.js └── shape │ ├── point.js │ ├── polygon.js │ ├── rectangle.js │ └── shape.js ├── standalone.json ├── templates ├── core_elements.soy ├── image_elements.soy └── openlayers_elements.soy └── test ├── image ├── 371px-Claudius-Ptolemaeus.jpg ├── 630px-Ptolemaic-Map.jpg ├── 640px-Hallstatt.jpg ├── index.html └── qunit │ ├── image-test-suite.css │ ├── image-test-suite.html │ └── image-test-suite.js ├── jquery-1.10.2.min.js ├── jquery.simulate.js ├── okfn └── image_okfn.html ├── openlayers ├── OpenLayers.js ├── OpenLayers_LICENSE.txt ├── map_muenster │ ├── 0 │ │ └── 0 │ │ │ └── 0.jpg │ ├── 1 │ │ ├── 0 │ │ │ ├── 0.jpg │ │ │ └── 1.jpg │ │ └── 1 │ │ │ ├── 0.jpg │ │ │ └── 1.jpg │ ├── 2 │ │ ├── 0 │ │ │ ├── 0.jpg │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ │ ├── 1 │ │ │ ├── 0.jpg │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ │ ├── 2 │ │ │ ├── 0.jpg │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ │ └── 3 │ │ │ ├── 0.jpg │ │ │ ├── 1.jpg │ │ │ └── 2.jpg │ └── tilemapresource.xml ├── openlayers_fullscreen.html ├── openlayers_standalone.html └── 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 ├── openseadragon ├── 2003rosen1799 │ ├── 0001q.jpg │ ├── 0001r.jpg │ └── 0001v.jpg ├── openseadragon │ ├── images │ │ ├── fullpage_grouphover.png │ │ ├── fullpage_hover.png │ │ ├── fullpage_pressed.png │ │ ├── fullpage_rest.png │ │ ├── home_grouphover.png │ │ ├── home_hover.png │ │ ├── home_pressed.png │ │ ├── home_rest.png │ │ ├── next_grouphover.png │ │ ├── next_hover.png │ │ ├── next_pressed.png │ │ ├── next_rest.png │ │ ├── previous_grouphover.png │ │ ├── previous_hover.png │ │ ├── previous_pressed.png │ │ ├── previous_rest.png │ │ ├── zoomin_grouphover.png │ │ ├── zoomin_hover.png │ │ ├── zoomin_pressed.png │ │ ├── zoomin_rest.png │ │ ├── zoomout_grouphover.png │ │ ├── zoomout_hover.png │ │ ├── zoomout_pressed.png │ │ └── zoomout_rest.png │ └── openseadragon.min.js └── test.html ├── plugins └── plugin-hello-world.html ├── qunit-1.12.0.css └── qunit-1.12.0.js /css/annotorious.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/css/annotorious.css -------------------------------------------------------------------------------- /css/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/css/delete.png -------------------------------------------------------------------------------- /css/feather_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/css/feather_icon.png -------------------------------------------------------------------------------- /css/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/css/pencil.png -------------------------------------------------------------------------------- /css/theme-dark/DarkSprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/css/theme-dark/DarkSprite.png -------------------------------------------------------------------------------- /css/theme-dark/Dividor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/css/theme-dark/Dividor.png -------------------------------------------------------------------------------- /css/theme-dark/Indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/css/theme-dark/Indicator.png -------------------------------------------------------------------------------- /css/theme-dark/annotorious-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/css/theme-dark/annotorious-dark.css -------------------------------------------------------------------------------- /css/theme-dark/feather_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/css/theme-dark/feather_icon.png -------------------------------------------------------------------------------- /externs/api.externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/externs/api.externs.js -------------------------------------------------------------------------------- /externs/jquery.externs.js: -------------------------------------------------------------------------------- 1 | function $() {} 2 | -------------------------------------------------------------------------------- /externs/okfn_annotator.externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/externs/okfn_annotator.externs.js -------------------------------------------------------------------------------- /externs/openlayers.externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/externs/openlayers.externs.js -------------------------------------------------------------------------------- /externs/openseadragon.externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/externs/openseadragon.externs.js -------------------------------------------------------------------------------- /mit-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/mit-license.txt -------------------------------------------------------------------------------- /okfn_plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/okfn_plugin.json -------------------------------------------------------------------------------- /plovr/plovr-license-apache2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/plovr/plovr-license-apache2.txt -------------------------------------------------------------------------------- /plovr/plovr.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/plovr/plovr.jar -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/readme.md -------------------------------------------------------------------------------- /src/annotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/annotation.js -------------------------------------------------------------------------------- /src/annotorious.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/annotorious.js -------------------------------------------------------------------------------- /src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/api.js -------------------------------------------------------------------------------- /src/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/dom.js -------------------------------------------------------------------------------- /src/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/editor.js -------------------------------------------------------------------------------- /src/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/events.js -------------------------------------------------------------------------------- /src/events.ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/events.ui.js -------------------------------------------------------------------------------- /src/hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/hint.js -------------------------------------------------------------------------------- /src/mediatypes/annotator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/mediatypes/annotator.js -------------------------------------------------------------------------------- /src/mediatypes/image/image.annotator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/mediatypes/image/image.annotator.js -------------------------------------------------------------------------------- /src/mediatypes/image/image.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/mediatypes/image/image.module.js -------------------------------------------------------------------------------- /src/mediatypes/image/image.viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/mediatypes/image/image.viewer.js -------------------------------------------------------------------------------- /src/mediatypes/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/mediatypes/module.js -------------------------------------------------------------------------------- /src/mediatypes/openlayers/openlayers.annotator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/mediatypes/openlayers/openlayers.annotator.js -------------------------------------------------------------------------------- /src/mediatypes/openlayers/openlayers.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/mediatypes/openlayers/openlayers.module.js -------------------------------------------------------------------------------- /src/mediatypes/openlayers/openlayers.viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/mediatypes/openlayers/openlayers.viewer.js -------------------------------------------------------------------------------- /src/mediatypes/openseadragon/openseadragon.annotator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/mediatypes/openseadragon/openseadragon.annotator.js -------------------------------------------------------------------------------- /src/mediatypes/openseadragon/openseadragon.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/mediatypes/openseadragon/openseadragon.module.js -------------------------------------------------------------------------------- /src/mediatypes/openseadragon/openseadragon.viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/mediatypes/openseadragon/openseadragon.viewer.js -------------------------------------------------------------------------------- /src/okfn/okfn_image_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/okfn/okfn_image_plugin.js -------------------------------------------------------------------------------- /src/okfn/okfn_popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/okfn/okfn_popup.js -------------------------------------------------------------------------------- /src/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/popup.js -------------------------------------------------------------------------------- /src/selection/rect_drag_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/selection/rect_drag_selector.js -------------------------------------------------------------------------------- /src/shape/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/shape/point.js -------------------------------------------------------------------------------- /src/shape/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/shape/polygon.js -------------------------------------------------------------------------------- /src/shape/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/shape/rectangle.js -------------------------------------------------------------------------------- /src/shape/shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/src/shape/shape.js -------------------------------------------------------------------------------- /standalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/standalone.json -------------------------------------------------------------------------------- /templates/core_elements.soy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/templates/core_elements.soy -------------------------------------------------------------------------------- /templates/image_elements.soy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/templates/image_elements.soy -------------------------------------------------------------------------------- /templates/openlayers_elements.soy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/templates/openlayers_elements.soy -------------------------------------------------------------------------------- /test/image/371px-Claudius-Ptolemaeus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/image/371px-Claudius-Ptolemaeus.jpg -------------------------------------------------------------------------------- /test/image/630px-Ptolemaic-Map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/image/630px-Ptolemaic-Map.jpg -------------------------------------------------------------------------------- /test/image/640px-Hallstatt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/image/640px-Hallstatt.jpg -------------------------------------------------------------------------------- /test/image/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/image/index.html -------------------------------------------------------------------------------- /test/image/qunit/image-test-suite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/image/qunit/image-test-suite.css -------------------------------------------------------------------------------- /test/image/qunit/image-test-suite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/image/qunit/image-test-suite.html -------------------------------------------------------------------------------- /test/image/qunit/image-test-suite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/image/qunit/image-test-suite.js -------------------------------------------------------------------------------- /test/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /test/jquery.simulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/jquery.simulate.js -------------------------------------------------------------------------------- /test/okfn/image_okfn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/okfn/image_okfn.html -------------------------------------------------------------------------------- /test/openlayers/OpenLayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/OpenLayers.js -------------------------------------------------------------------------------- /test/openlayers/OpenLayers_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/OpenLayers_LICENSE.txt -------------------------------------------------------------------------------- /test/openlayers/map_muenster/0/0/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/0/0/0.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/1/0/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/1/0/0.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/1/0/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/1/0/1.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/1/1/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/1/1/0.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/1/1/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/1/1/1.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/2/0/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/2/0/0.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/2/0/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/2/0/1.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/2/0/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/2/0/2.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/2/1/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/2/1/0.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/2/1/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/2/1/1.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/2/1/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/2/1/2.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/2/2/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/2/2/0.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/2/2/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/2/2/1.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/2/2/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/2/2/2.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/2/3/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/2/3/0.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/2/3/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/2/3/1.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/2/3/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/2/3/2.jpg -------------------------------------------------------------------------------- /test/openlayers/map_muenster/tilemapresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/map_muenster/tilemapresource.xml -------------------------------------------------------------------------------- /test/openlayers/openlayers_fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/openlayers_fullscreen.html -------------------------------------------------------------------------------- /test/openlayers/openlayers_standalone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/openlayers_standalone.html -------------------------------------------------------------------------------- /test/openlayers/theme/default/google.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/google.css -------------------------------------------------------------------------------- /test/openlayers/theme/default/google.tidy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/google.tidy.css -------------------------------------------------------------------------------- /test/openlayers/theme/default/ie6-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/ie6-style.css -------------------------------------------------------------------------------- /test/openlayers/theme/default/ie6-style.tidy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/ie6-style.tidy.css -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/add_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/add_point_off.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/add_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/add_point_on.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/blank.gif -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/close.gif -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/drag-rectangle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/drag-rectangle-off.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/drag-rectangle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/drag-rectangle-on.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/draw_line_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/draw_line_off.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/draw_line_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/draw_line_on.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/draw_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/draw_point_off.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/draw_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/draw_point_on.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/draw_polygon_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/draw_polygon_off.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/draw_polygon_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/draw_polygon_on.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/editing_tool_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/editing_tool_bar.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/move_feature_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/move_feature_off.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/move_feature_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/move_feature_on.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/navigation_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/navigation_history.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/overview_replacement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/overview_replacement.gif -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/pan-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/pan-panel-NOALPHA.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/pan-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/pan-panel.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/pan_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/pan_off.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/pan_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/pan_on.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/panning-hand-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/panning-hand-off.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/panning-hand-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/panning-hand-on.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/remove_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/remove_point_off.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/remove_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/remove_point_on.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/ruler.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/save_features_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/save_features_off.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/save_features_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/save_features_on.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/view_next_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/view_next_off.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/view_next_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/view_next_on.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/view_previous_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/view_previous_off.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/view_previous_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/view_previous_on.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/zoom-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/zoom-panel-NOALPHA.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/img/zoom-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/img/zoom-panel.png -------------------------------------------------------------------------------- /test/openlayers/theme/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/style.css -------------------------------------------------------------------------------- /test/openlayers/theme/default/style.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/style.mobile.css -------------------------------------------------------------------------------- /test/openlayers/theme/default/style.mobile.tidy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/style.mobile.tidy.css -------------------------------------------------------------------------------- /test/openlayers/theme/default/style.tidy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openlayers/theme/default/style.tidy.css -------------------------------------------------------------------------------- /test/openseadragon/2003rosen1799/0001q.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/2003rosen1799/0001q.jpg -------------------------------------------------------------------------------- /test/openseadragon/2003rosen1799/0001r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/2003rosen1799/0001r.jpg -------------------------------------------------------------------------------- /test/openseadragon/2003rosen1799/0001v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/2003rosen1799/0001v.jpg -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/fullpage_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/fullpage_grouphover.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/fullpage_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/fullpage_hover.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/fullpage_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/fullpage_pressed.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/fullpage_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/fullpage_rest.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/home_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/home_grouphover.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/home_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/home_hover.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/home_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/home_pressed.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/home_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/home_rest.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/next_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/next_grouphover.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/next_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/next_hover.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/next_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/next_pressed.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/next_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/next_rest.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/previous_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/previous_grouphover.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/previous_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/previous_hover.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/previous_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/previous_pressed.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/previous_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/previous_rest.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/zoomin_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/zoomin_grouphover.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/zoomin_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/zoomin_hover.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/zoomin_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/zoomin_pressed.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/zoomin_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/zoomin_rest.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/zoomout_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/zoomout_grouphover.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/zoomout_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/zoomout_hover.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/zoomout_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/zoomout_pressed.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/images/zoomout_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/images/zoomout_rest.png -------------------------------------------------------------------------------- /test/openseadragon/openseadragon/openseadragon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/openseadragon/openseadragon.min.js -------------------------------------------------------------------------------- /test/openseadragon/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/openseadragon/test.html -------------------------------------------------------------------------------- /test/plugins/plugin-hello-world.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/plugins/plugin-hello-world.html -------------------------------------------------------------------------------- /test/qunit-1.12.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/qunit-1.12.0.css -------------------------------------------------------------------------------- /test/qunit-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/annotorious/annotorious-v1/HEAD/test/qunit-1.12.0.js --------------------------------------------------------------------------------