Skip to content

Commit

Permalink
fix: minimal datadir & gn header position
Browse files Browse the repository at this point in the history
  • Loading branch information
f-necas committed Dec 1, 2023
1 parent 611f47e commit 9d809d2
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 17 deletions.
1 change: 0 additions & 1 deletion harvesters/src/main/resources/config-spring-geonetwork.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@
<bean id="wfsfeatures"
class="org.fao.geonet.kernel.harvest.harvester.wfsfeatures.WfsFeaturesHarvester"
scope="prototype"/>

<!-- ArcSDE also requires a ArcSDEConnectionFactory beans -->
<bean id="arcSDEConnectionFactory"
class="org.fao.geonet.kernel.harvest.harvester.arcsde.ArcSDEConnectionFactory" />
Expand Down
4 changes: 0 additions & 4 deletions web-ui/src/main/resources/catalog/style/gn.less
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,9 @@ div[gn-transfer-ownership] * .list-group {
}
[ng-app="gn_editor"] {
.gn-top-bar {
position: fixed;
@media (max-width: @screen-xs-max) {
position: relative;
}
top: 0;
left: 0;
right: 0;
z-index: 100;
height: 52px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ ul.gn-resultview li.list-group-item {

[ng-app="gn_admin"] {
body {
padding-top: calc(~"@{gn-menubar-height} + 1px");
background-color: #f7f7f7;
}
.container-fluid {
Expand All @@ -33,10 +32,9 @@ ul.gn-resultview li.list-group-item {
max-height: 20px;
}
.gn-top-bar {
position: fixed;
width: 100%;
height: calc(~"@{gn-menubar-height} + 1px");
border-width: 0 0 1px 0;
height: calc(~"@{gn-menubar-height} + 2px");
border-width: 1px 0 1px 0;
background-color: #fff;
top: 0;
z-index: 1001;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
[ng-app^="gn_search_"] body, [ng-app="gn_login"] body {
&.gn-header-fixed {
.gn-top-bar {
position: fixed;
right: 0;
left: 0;
top: 0;
z-index: 1030;
}
&.gn-logo-in-header {
Expand Down
3 changes: 1 addition & 2 deletions web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1495,8 +1495,7 @@
<dockerDatadirScmUrl>scm:git:https://github.com/georchestra/datadir.git</dockerDatadirScmUrl>
<dockerDatadirScmVersion>docker-master</dockerDatadirScmVersion>
<dockerGnDatadirScmUrl>scm:git:https://github.com/georchestra/geonetwork_minimal_datadir.git</dockerGnDatadirScmUrl>
<dockerGnDatadirScmVersion>gn4.2.2</dockerGnDatadirScmVersion>

<dockerGnDatadirScmVersion>gn4.2.7</dockerGnDatadirScmVersion>
</properties>
<build>
<finalName>geonetwork</finalName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ public void destroy(Long id) throws Exception {

private String buildFrom(Long id) {
return String.format("quartz2://%s-%s",
settingManager.getSiteId(), id);

settingManager.getSiteId(),
id);
}

public void shutdown() {
Expand Down

0 comments on commit 9d809d2

Please sign in to comment.