Commit graph

12311 commits

Author SHA1 Message Date
Tom Hughes
c3cc8eb687 Update rubocop todo 2023-01-03 19:13:14 +00:00
Tom Hughes
cd06a449b3 Update bundle 2023-01-03 19:08:51 +00:00
Tom Hughes
1b33553b86 Merge remote-tracking branch 'upstream/pull/3871' 2023-01-03 19:07:34 +00:00
dependabot[bot]
ebf9e1f06d
Bump eslint from 8.30.0 to 8.31.0
Bumps [eslint](https://github.com/eslint/eslint) from 8.30.0 to 8.31.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.30.0...v8.31.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-02 23:00:37 +00:00
translatewiki.net
2be5332689 Localisation updates from https://translatewiki.net. 2023-01-02 13:14:32 +01:00
Andy Allan
b72e2ef5d7
Merge pull request #3870 from Dimitar5555/patch-1
Added missing `</p>` tag
2023-01-01 15:35:38 +00:00
Dimitar
3247ffd57c
Added missing </p> tag 2023-01-01 16:06:41 +02:00
Tom Hughes
18b642bfa9 Merge remote-tracking branch 'upstream/pull/3863' 2022-12-30 11:48:49 +00:00
Tom Hughes
6b2a5db1fa Add an entry for translation issues to the issue template 2022-12-30 10:56:15 +00:00
mmd-osm
f40e1911fe update-wiki-pages: process KeyPrefixDescription template 2022-12-30 08:48:57 +01:00
mmd-osm
b6869e2a43 Update wiki_pages.yml 2022-12-30 08:35:44 +01:00
Tom Hughes
6033359bd0 Preserve rel=me on links in rich text
Fixes #3859
2022-12-29 18:02:23 +00:00
Tom Hughes
600ed78b04 Use CGI.escape for ruby 2.7 compatibility 2022-12-29 17:45:29 +00:00
Tom Hughes
27e9965dd2 Require integer IDs for diary_entries#show
Fixes #3865
2022-12-29 17:14:05 +00:00
Tom Hughes
df4f0b93d7 Update bundle 2022-12-29 16:53:25 +00:00
Tom Hughes
e5406c6836 Make test names clearer 2022-12-29 16:52:19 +00:00
Tom Hughes
07fe77b4fc Merge remote-tracking branch 'upstream/pull/3862' 2022-12-29 16:51:53 +00:00
Andy Allan
f99e028e42
Merge pull request #3864 from ZhengLin-Li/patch-1
Change Save to Comment
2022-12-29 10:35:07 +00:00
ZhengLin Li
381b83e08c
Change Save to Comment
For comment submit buttons we currently have:

"Comment" (Changeset Comments)
"Add Comment" (Issue Comments)
"Comment" (Note Comments)
"Save" (Diary Comments)

So, to make them consistent, I'd propose to change "Save" to "Comment"
2022-12-29 02:03:02 -08:00
Andy Allan
0925035a3e Add tests to ensure tokens are revoked
This ensures that tokens are revoked or invalidated when a user
is soft destroyed.
2022-12-28 15:25:57 +00:00
mmd-osm
0b76b22a2b update-wiki-pages: adding retry and timeout 2022-12-28 16:16:49 +01:00
Andy Allan
e69716ca05
Merge pull request #3860 from gravitystorm/yaml_quoting
Quote ruby versions in yaml
2022-12-28 14:05:11 +00:00
Andy Allan
61e0fa5f63 Quote ruby versions in yaml
Without quotes these are parsed as numbers, which can cause subtle
problems. For example, "ruby: 3.0" is interpreted by the
ruby/setup-rubyaction as "ruby: 3", meaning 3.x instead of the
intended 3.0.x
2022-12-28 10:04:32 +00:00
translatewiki.net
88b4555472 Localisation updates from https://translatewiki.net. 2022-12-26 13:16:29 +01:00
Tom Hughes
9cb7a7b36b Don't allow any abilities for inactive users 2022-12-23 16:37:33 +00:00
Tom Hughes
445e8162e9 Revoke authentication tokens when a user is deleted 2022-12-23 16:24:10 +00:00
Tom Hughes
18c2bf62ae Fix eslint warnings 2022-12-22 17:01:59 +00:00
Tom Hughes
26fedd0031 Fix eslint warnings 2022-12-22 16:59:42 +00:00
Tom Hughes
3ff8ef52b7 Merge remote-tracking branch 'upstream/pull/3848' 2022-12-22 16:43:41 +00:00
Christian Beiwinkel
1e33272153 consistent naming of FOSSGIS routers 2022-12-22 17:39:50 +01:00
Christian Beiwinkel
613c1ba234 added manoeuvre numbering 2022-12-22 17:33:20 +01:00
Tom Hughes
605703cdac Merge remote-tracking branch 'upstream/pull/3857' 2022-12-22 15:52:05 +00:00
Tom Hughes
5be5155e03 Merge remote-tracking branch 'upstream/pull/3856' 2022-12-22 15:49:28 +00:00
translatewiki.net
336571f12e Localisation updates from https://translatewiki.net. 2022-12-22 13:14:21 +01:00
Andy Allan
f78c032b07 Use buttons for dropdown toggles
These elements don't link to another page, and so there's no need
to use a link that leads to nowhere.
2022-12-22 09:56:56 +00:00
Tom Hughes
72c7d202a8 Precompile assets before running tests in actions workflows 2022-12-21 19:13:57 +00:00
Tom Hughes
17911cd2ee Make tmp persistent in docker 2022-12-21 19:13:50 +00:00
Tom Hughes
c46d1a0cad Update storage volume configuration for docker 2022-12-21 18:53:31 +00:00
Tom Hughes
fb9219a52f Use rails instead of rake 2022-12-21 17:09:21 +00:00
Andy Allan
6f471c72c9 Wait for the button to be disabled, before checking the tooltip behaviour
Rather than sleeping for a fixed period, we can use Capybara's built-in
ability to wait for elements to be present. Since we're only changing
the state of existing elements though, we need to wait for their
"disabled" property to be set.

Fixes some timing-related problems with the test suite.
2022-12-21 17:08:51 +00:00
Tom Hughes
7d80c7747f Merge remote-tracking branch 'upstream/pull/3852' 2022-12-21 15:56:22 +00:00
Andy Allan
ace8e9a9c3 Fix redirection to wiki when terms are declined
Adds missing test to pick this up.

Fixes #3826.
2022-12-21 15:39:23 +00:00
Andy Allan
415ac577f3 Remove some old debugging comments 2022-12-21 12:05:15 +00:00
Tom Hughes
fd283efa51 Fix new rubocop warnings 2022-12-20 18:57:12 +00:00
Tom Hughes
eb9435f756 Update bundle 2022-12-20 18:55:04 +00:00
Tom Hughes
ab5f369b50 Merge remote-tracking branch 'upstream/pull/3851' 2022-12-20 18:51:14 +00:00
dependabot[bot]
4a44f34c0e
Bump eslint from 8.29.0 to 8.30.0
Bumps [eslint](https://github.com/eslint/eslint) from 8.29.0 to 8.30.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.29.0...v8.30.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-19 23:00:39 +00:00
Tom Hughes
3218e40f52 Fix resource names for Oauth 2 bottons
Fixes #3850
2022-12-18 19:42:48 +00:00
Christian Beiwinkel
85f627c5c2 added valhalla routing engine 2022-12-16 17:05:36 +01:00
Christian Beiwinkel
9389a7698a renamed fossgis engine 2022-12-16 16:57:14 +01:00