[openstreetmap/openstreetmap-website] Make preferences page editable without clicking 'Edit Preferences' (PR #5449)

2024-12-29 Thread Anton Khorev via rails-dev
When you select *My Preferences* from the user dropdown, you get to `/preferences`, which is a page that shows you your preferences but doesn't let you edit them. If you want to edit, you'll have to make one extra click on the *Edit Preferences* button. See https://github.com/openstreetmap/open

Re: [openstreetmap/openstreetmap-website] Replace resent confirmation link with button (PR #5447)

2024-12-29 Thread Tom Hughes via rails-dev
This depends on #5446 being merged first. -- Reply to this email directly or view it on GitHub: https://github.com/openstreetmap/openstreetmap-website/pull/5447#issuecomment-2564811318 You are receiving this because you are subscribed to this thread. Message ID:

Re: [openstreetmap/openstreetmap-website] Replace resent confirmation link with button (PR #5447)

2024-12-29 Thread Tom Hughes via rails-dev
Looks good to me, thanks. -- Reply to this email directly or view it on GitHub: https://github.com/openstreetmap/openstreetmap-website/pull/5447#issuecomment-2564813578 You are receiving this because you are subscribed to this thread. Message ID: ___

Re: [openstreetmap/openstreetmap-website] Replace resent confirmation link with button (PR #5447)

2024-12-29 Thread Tom Hughes via rails-dev
Merged #5447 into master. -- Reply to this email directly or view it on GitHub: https://github.com/openstreetmap/openstreetmap-website/pull/5447#event-15780514529 You are receiving this because you are subscribed to this thread. Message ID: ___ rails-

Re: [openstreetmap/openstreetmap-website] Wrap diary entry location coordinates (PR #5442)

2024-12-29 Thread Tom Hughes via rails-dev
Merged #5442 into master. -- Reply to this email directly or view it on GitHub: https://github.com/openstreetmap/openstreetmap-website/pull/5442#event-15780514527 You are receiving this because you are subscribed to this thread. Message ID: ___ rails-

Re: [openstreetmap/openstreetmap-website] Accessibility issue: links "click here" (Issue #5431)

2024-12-29 Thread Tom Hughes via rails-dev
Closed #5431 as completed via #5447. -- Reply to this email directly or view it on GitHub: https://github.com/openstreetmap/openstreetmap-website/issues/5431#event-15780514566 You are receiving this because you are subscribed to this thread. Message ID: _

Re: [openstreetmap/openstreetmap-website] Move code that runs after user save from save_new_user to create method (PR #5446)

2024-12-29 Thread Tom Hughes via rails-dev
Merged #5446 into master. -- Reply to this email directly or view it on GitHub: https://github.com/openstreetmap/openstreetmap-website/pull/5446#event-15780514534 You are receiving this because you are subscribed to this thread. Message ID: ___ rails-

Re: [openstreetmap/openstreetmap-website] endless diary location longitude (#1191)

2024-12-29 Thread Tom Hughes via rails-dev
Closed #1191 as completed via #5442. -- Reply to this email directly or view it on GitHub: https://github.com/openstreetmap/openstreetmap-website/issues/1191#event-15780514565 You are receiving this because you are subscribed to this thread. Message ID: _

Re: [openstreetmap/openstreetmap-website] Remove check_api_readable from api messages controller (PR #5435)

2024-12-29 Thread Tom Hughes via rails-dev
Merged #5435 into master. -- Reply to this email directly or view it on GitHub: https://github.com/openstreetmap/openstreetmap-website/pull/5435#event-15780514536 You are receiving this because you are subscribed to this thread. Message ID: ___ rails-

Re: [openstreetmap/openstreetmap-website] Use resourceful routes for web mailboxes (PR #5448)

2024-12-29 Thread Tom Hughes via rails-dev
Looks good to me, thanks. -- Reply to this email directly or view it on GitHub: https://github.com/openstreetmap/openstreetmap-website/pull/5448#issuecomment-2564816357 You are receiving this because you are subscribed to this thread. Message ID: ___

Re: [openstreetmap/openstreetmap-website] Use resourceful routes for web mailboxes (PR #5448)

2024-12-29 Thread Tom Hughes via rails-dev
Merged #5448 into master. -- Reply to this email directly or view it on GitHub: https://github.com/openstreetmap/openstreetmap-website/pull/5448#event-15780527522 You are receiving this because you are subscribed to this thread. Message ID: ___ rails-

Re: [openstreetmap/openstreetmap-website] Translations of "doesn't" (Issue #5432)

2024-12-29 Thread maro-21 via rails-dev
> You can remove `%{doesnt}` form `off_the_map_html` It's impossible not to use it, becasue Translatewiki software requires its use. > or replace it with empty string If the string is empty, the full English translation will show up. -- Reply to this email directly or view it on GitHub: https:

Re: [openstreetmap/openstreetmap-website] Accessibility issue fixed #5431 (PR #5445)

2024-12-29 Thread Marwin Hochfelsner via rails-dev
The page you changed the translations of has been redesigned in #5447, which has already been merged. What would you like a review for? -- Reply to this email directly or view it on GitHub: https://github.com/openstreetmap/openstreetmap-website/pull/5445#issuecomment-2565078388 You are receiving

Re: [openstreetmap/openstreetmap-website] Add user profile heatmap visualization for contributions (PR #5402)

2024-12-29 Thread Anton Khorev via rails-dev
> I've updated the code to account for the "Preferred Website Color Scheme." > Theme settings should now be working correctly. It's not going to work correctly because our *Auto* option follows `prefers-color-scheme` which can change any time. If it does, you'll get for example this: ![image](

Re: [openstreetmap/openstreetmap-website] Add user profile heatmap visualization for contributions (PR #5402)

2024-12-29 Thread Anton Khorev via rails-dev
CSP violations, days of week won't be visible if not resolved: > Content-Security-Policy: (Report-Only policy) The page’s settings would block > an inline style (style-src-attr) from being applied ![image](https://github.com/user-attachments/assets/63e176b4-22d8-4238-9d3c-101a1cd06332) -- Rep

Re: [openstreetmap/openstreetmap-website] Add user profile heatmap visualization for contributions (PR #5402)

2024-12-29 Thread Anton Khorev via rails-dev
> Separate JS Files: There's already a heatmap.js file containing > heatmap-related functionality, included in application.js for precompilation. How is it included in `application.js` if you're including `heatmap.js` [here](https://github.com/openstreetmap/openstreetmap-website/pull/5402/files#

Re: [openstreetmap/openstreetmap-website] Move code that runs after user save from save_new_user to create method (PR #5446)

2024-12-29 Thread Tom Hughes via rails-dev
I mean it's not really clear why `save_new_user` exists when it's only called once but I guess this fine. -- Reply to this email directly or view it on GitHub: https://github.com/openstreetmap/openstreetmap-website/pull/5446#issuecomment-2564812572 You are receiving this because you are subscrib

Re: [openstreetmap/openstreetmap-website] Wrap diary entry location coordinates (PR #5442)

2024-12-29 Thread Tom Hughes via rails-dev
Looks good to me, thanks. -- Reply to this email directly or view it on GitHub: https://github.com/openstreetmap/openstreetmap-website/pull/5442#issuecomment-2564810049 You are receiving this because you are subscribed to this thread. Message ID: ___

Re: [openstreetmap/openstreetmap-website] Make preferences page editable without clicking 'Edit Preferences' (PR #5449)

2024-12-29 Thread Tom Hughes via rails-dev
@tomhughes commented on this pull request. The idea is fine but I think we should probably keep the `edit` action and get rid of the `show` action instead of moving edit to show? That's how the settings page works... -- Reply to this email directly or view it on GitHub: https://github.com/op

Re: [openstreetmap/openstreetmap-website] Make preferences page editable without clicking 'Edit Preferences' (PR #5449)

2024-12-29 Thread Star ⭐ Mobile Repair - Al Khobar via rails-dev
> When you select *My Preferences* from the user dropdown, you get to > `/preferences`, which is a page that shows you your preferences but doesn't > let you edit them. If you want to edit, you'll have to make one extra click > on the *Edit Preferences* button. See > https://github.com/openstre

Re: [openstreetmap/openstreetmap-website] Add user profile heatmap visualization for contributions (PR #5402)

2024-12-29 Thread Marwin Hochfelsner via rails-dev
> You'd have to then setup a listener like > [this](https://github.com/openstreetmap/openstreetmap-website/pull/4777/commits/e35141b2d1c1733d9a15a01c08b796e4edda6b4e#diff-4fe14e869cf17b068e1bea009a55b094fed13f0cad85337cf4769f32b40a01b5R11-R13) > but without using Leaflet of course and redraw the