Skip to content

Commit

Permalink
feat: remove duplicate in cat controller and migr dev guide
Browse files Browse the repository at this point in the history
  • Loading branch information
f-necas committed Jun 20, 2024
1 parent e7a16da commit 514d90f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 20 deletions.
15 changes: 3 additions & 12 deletions georchestra-migration/migration-dev-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ A more detailed guide is available in [upgrade_geonetwork.md](upgrade_geonetwork

### Georchestra 4.2.7 and Gn 4.2.7

All versions in `pom.xml` files must be updated. E.g. for this version `4.2.7-georchestra`.
All versions in `pom.xml` files must be updated. E.g. for this version `4.4.5-georchestra`.
All italic folder just have the `pom.xml` change.

- .github
Expand Down Expand Up @@ -58,12 +58,6 @@ All italic folder just have the `pom.xml` change.
- *oaipmh*
- *release*
- schemas
- `src/main/plugin/iso19115-3.2018`
- COG and 3Dtiles added. Differences in files:
- ...`config/associated-panel/default.json`
- ...`loc/eng/labels.xml`
- ...`loc/fre/labels.xml`
- `src/main/plugin/iso19139/loc` : COG and 3Dtiles added in labels.xml files.
- `iso19139/layout/config-editor.xml`: xlinks for contacts reenabled
- *schemas-test*
- *sde*
Expand Down Expand Up @@ -95,16 +89,13 @@ All italic folder just have the `pom.xml` change.
- `pom.xml`: Keep exclusion of groovy package to avoid two versions of it.
- web-ui
- `pom.xml`: version to update **and to add to gn-web-ui**
- `RelatedResourcesService.js`: Add 3DTiles
- `CatController.js`: Menu bar accessible and 3DTiles
- `menu-signin.html`: remove the `authenticated` from the `ng-if` in firstul tag.
- `CatController.js`: Menu bar accessible
- `menu-signin.html`: remove the `authenticated` from the `ng-if` in first ul tag.
- `src/main/resources/catalog/locales/`
- Add OGC API - Features to i18n files
- Get `en-georchestra.json` and `fr-georchestra.json` from georchestra
- `src/main/resources/catalog/style/gn-less`: remove position fixed from `.gn-top-bar` to get gn header after georchestra's header.
- `gn_admin_default.less`: Same (header position)
- `gn_navbar_default.less`: Same (header position)
- `src/main/resources/catalog/views/module.js`: Add 3DTiles
- `src/main/resources/catalog/views/georchestra/`: Get files from georchestra
- *workers*
- *wro4j*
Expand Down
8 changes: 0 additions & 8 deletions web-ui/src/main/resources/catalog/js/CatController.js
Original file line number Diff line number Diff line change
Expand Up @@ -1918,14 +1918,6 @@
: "";
return angular.isFunction(this[fnName]) ? this[fnName]() : false;
},
canBatchEditMetadata: function () {
var profile = gnConfig["metadata.batchediting.accesslevel"] || "Editor",
fnName =
profile !== ""
? "is" + profile[0].toUpperCase() + profile.substring(1) + "OrMore"
: "";
return angular.isFunction(this[fnName]) ? this[fnName]() : false;
},
canViewMetadataHistory: function () {
var profile = gnConfig["metadata.history.accesslevel"] || "Editor",
fnName =
Expand Down

0 comments on commit 514d90f

Please sign in to comment.