Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes the Object Editing viewer #4871

Merged
merged 1 commit into from
May 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ GMF_TEST_JS_FILES := $(shell find contribs/gmf/test/ -type f -name '*.js')
GMF_EXAMPLES_HTML_FILES := $(shell ls -1 contribs/gmf/examples/*.html)
GMF_EXAMPLES_JS_FILES := $(GMF_EXAMPLES_HTML_FILES:.html=.js)

GMF_APPS += mobile desktop desktop_alt iframe_api mobile_alt oeedit oeview
GMF_APPS += mobile desktop desktop_alt iframe_api mobile_alt oeedit
GMF_APPS_JS_FILES = $(shell find contribs/gmf/apps/ -type f -name '*.js')
GMF_APPS_PARTIALS_FILES = $(shell find contribs/gmf/apps/ -type f -name '*.html' -or -name '*.html.ejs')
GMF_APPS_ALL_FILES = $(shell find contribs/gmf/apps/ -type f) $(GMF_ALL_SRC_FILES)
Expand Down Expand Up @@ -242,7 +242,6 @@ gh-pages: .build/python-venv.timestamp
--app 'Alternate mobile application' apps/mobile_alt.html 'An alternate mobile example application for GeoMapFish.' \
--app 'Alternate desktop application' apps/desktop_alt.html 'An alternate desktop example application for GeoMapFish.' \
--app 'Iframe api application' apps/iframe_api.html 'A desktop application for GeoMapFish without any tools that can be used within an iframe.' \
--app 'Object editing viewer' apps/oeview.html 'An example application for viewing an object.' \
--app 'Object editing editor' apps/oeedit.html 'An example application for editing an object.' \
$< $(GMF_EXAMPLES_HTML_FILES) > $@

Expand Down
1 change: 0 additions & 1 deletion buildtools/webpack.commons.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ const config = function(hardSourceConfig, babelLoaderCacheDirectory) {
'/apps/mobile/sass/vars_mobile.scss',
'/apps/mobile_alt/sass/vars_mobile_alt.scss',
'/apps/oeedit/sass/vars_oeedit.scss',
'/apps/oeview/sass/vars_oeview.scss',
'/apps/sass/var',
'/controllers/',
'/vars.scss',
Expand Down
128 changes: 0 additions & 128 deletions contribs/gmf/apps/oeview/Controller.js

This file was deleted.

43 changes: 0 additions & 43 deletions contribs/gmf/apps/oeview/contextualdata.html

This file was deleted.

Binary file not shown.
Binary file removed contribs/gmf/apps/oeview/image/favicon.ico
Binary file not shown.
Binary file removed contribs/gmf/apps/oeview/image/logo.png
Binary file not shown.
137 changes: 0 additions & 137 deletions contribs/gmf/apps/oeview/index.html.ejs

This file was deleted.

Empty file.
Empty file.
25 changes: 0 additions & 25 deletions contribs/gmf/examples/objecteditinghub.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,31 +52,6 @@
</span> Launch Editor
</button>
</div>

<div class="form-group">
<button
ng-disabled="ctrl.selectedFeature === null || ctrl.selectedGmfLayerNode === null || ctrl.selectedGeomType === undefined"
ng-click="ctrl.runViewerHosted()"
type="button"
class="form-control btn btn-info"
title="Load all features of selected layer in OE viewer"
aria-label="Left Align">
</span> Launch Viewer (hosted)
</button>
</div>

<div class="form-group">
<button
ng-disabled="ctrl.selectedFeature === null || ctrl.selectedGmfLayerNode === null || ctrl.selectedGeomType === undefined"
ng-click="ctrl.runViewerDev()"
type="button"
class="form-control btn btn-info"
title="Load all features of selected layer in OE viewer"
aria-label="Left Align">
</span> Launch Viewer (dev)
</button>
</div>

</div>
</body>
</html>