Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

# Ignore sensitive information
/web/sites/*/settings.local.php

# Ignore Drupal's file directory
/web/sites/*/files/

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

* [PR-660](https://github.com/itk-dev/deltag.aarhus.dk/pull/660)
* Updated Septima to use latest cdn and adress tool instead of dawa
* Removed final traces of dawa from project

* [PR-659](https://github.com/itk-dev/deltag.aarhus.dk/pull/659)
Updated docker templates and updated yaml linting

Expand Down
65 changes: 3 additions & 62 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ map:
features_style:
namedstyle: "#011"
driver:
- type: dawa
- type: address
options:
kommunekode: 751 # Aarhus
- type: local
Expand Down
51 changes: 0 additions & 51 deletions web/modules/custom/hoeringsportal_data/assets/css/hearing-edit.css
Original file line number Diff line number Diff line change
@@ -1,54 +1,3 @@
.dawa-autocomplete-container {
position: relative;
width: 100%;
}

.dawa-autocomplete-container input {
width: 100%;
box-sizing: border-box;
}

.dawa-autocomplete-suggestions {
margin: .3em 0 0 0;
padding: 0;
text-align: left;
border-radius: .3125em;
background: #fcfcfc;
box-shadow: 0 .0625em .15625em rgba(0,0,0,.15);
position: absolute;
left: 0;
right: 0;
z-index: 9999;
overflow-y: auto;
box-sizing: border-box;
}

.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion {
margin: 0;
list-style: none;
cursor: pointer;
padding: .4em .6em;
color: #333;
border: .0625em solid #ddd;
border-bottom-width: 0;
}

.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion:first-child {
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}

.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion:last-child {
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
border-bottom-width: .0625em;
}

.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion.dawa-selected,
.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion:hover {
background: #f0f0f0;
}

.field--type-hoeringsportal-data-map {
/* Don't show "Aktiver kort" above menubar (which has z-index: 502). */
.widget-container.widget-inactivemap > .widget-map-overlay {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function applyMap () {
},
'driver': [
{
'type': 'dawa',
'type': 'address',
'options': {
'kommunekode': '0751' // Aarhus.
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ hearing-edit:
theme:
build/hearing-edit.css: {}
js:
https://widgetconfig.septima.dk/widgetapi.js: { type: external }
https://widget.cdn.septima.dk/latest/widgetconfig.js: { type: external }
build/hearing-edit.js: { preprocess: false }

septima-widget-config:
version: VERSION
js:
https://widgetconfig.septima.dk/widgetconfig.js: { type: external }
https://widget.cdn.septima.dk/latest/widgetconfig.js: { type: external }

septima-widget-api:
version: VERSION
js:
https://widgetconfig.septima.dk/widgetapi.js: { type: external }
https://widget.cdn.septima.dk/latest/widgetconfig.js: { type: external }
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ services:
class: Drupal\hoeringsportal_data\Service\Plandata
arguments: ["@settings"]

hoeringsportal_data.dawa:
class: Drupal\hoeringsportal_data\Service\DAWA

hoeringsportal_data.hearing_helper:
class: Drupal\hoeringsportal_data\Helper\HearingHelper
arguments:
Expand All @@ -21,7 +18,7 @@ services:

hoeringsportal_data.map_item_helper:
class: Drupal\hoeringsportal_data\Helper\MapItemHelper
arguments: ["@hoeringsportal_data.plandata", "@hoeringsportal_data.dawa"]
arguments: ["@hoeringsportal_data.plandata"]

hoeringsportal_data.localplan_item_helper:
class: Drupal\hoeringsportal_data\Helper\LocalplanItemHelper
Expand Down
Loading
Loading