fix/ascii-and-http #14

Merged
Burer merged 5 commits from fix/ascii-and-http into main 2026-04-04 17:01:40 +00:00
Owner
  • Restored broken download tooltips that showed raw template placeholders instead of rendered values
  • Simplified autobuild.py by removing unnecessary fallback/parsing complexity and reducing helper overhead
  • Audited non-ASCII characters and get rid of Unicode “gremlins” that are not supported by WebView
  • Converted hardcoded external template links to protocol-relative //... URLs so they follow the current site scheme
- Restored broken download tooltips that showed raw template placeholders instead of rendered values - Simplified `autobuild.py` by removing unnecessary fallback/parsing complexity and reducing helper overhead - Audited non-ASCII characters and get rid of Unicode “gremlins” that are not supported by WebView - Converted hardcoded external template links to protocol-relative `//...` URLs so they follow the current site scheme
Burer added 4 commits 2026-03-23 07:44:48 +00:00
Burer requested review from Sweetbread 2026-03-23 07:44:48 +00:00
Sweetbread reviewed 2026-03-29 12:19:03 +00:00
@@ -13,2 +12,3 @@
<iframe src="//www.youtube.com/embed/IEi25wYyj20" allowfullscreen="true"></iframe>
{% else %}
<iframe src="https://www.youtube.com/embed/SATYQyIcimM" allowfullscreen="true"></iframe>
<iframe src="//www.youtube.com/embed/SATYQyIcimM" allowfullscreen="true"></iframe>
Owner

Youtube does not support HTTP

❯ http youtube.com                                                                                                                                               via py
HTTP/1.1 301 Moved Permanently
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Content-Length: 0
Content-Type: application/binary
Date: Sun, 29 Mar 2026 12:15:33 GMT
Expires: Mon, 01 Jan 1990 00:00:00 GMT
Location: https://youtube.com/
Pragma: no-cache
Server: ESF
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 0
Youtube does not support HTTP ``` ❯ http youtube.com via py HTTP/1.1 301 Moved Permanently Cache-Control: no-cache, no-store, max-age=0, must-revalidate Content-Length: 0 Content-Type: application/binary Date: Sun, 29 Mar 2026 12:15:33 GMT Expires: Mon, 01 Jan 1990 00:00:00 GMT Location: https://youtube.com/ Pragma: no-cache Server: ESF X-Content-Type-Options: nosniff X-Frame-Options: SAMEORIGIN X-XSS-Protection: 0 ```
Burer marked this conversation as resolved
Sweetbread reviewed 2026-03-29 12:19:10 +00:00
Sweetbread requested changes 2026-03-29 12:22:29 +00:00
Dismissed
@@ -20,3 +20,3 @@
kolibrios="<b>{0}</b>"
.format(_('menu:kolibrios')),
fasm="<a href='http://www.flatassembler.net' target='_blank'>FASM</a>"
fasm="<a href='//www.flatassembler.net' target='_blank'>FASM</a>"
Owner

Remove www

Remove `www`
Burer marked this conversation as resolved
@@ -4,3 +4,3 @@
</a>
<br />
<a href="https://discord.com/invite/FeB2NvE6bF" target="_blank">
<a href="//discord.com/invite/FeB2NvE6bF" target="_blank">
Owner

same

same
Burer marked this conversation as resolved
@@ -8,3 +8,3 @@
</a>
<br />
<a href="https://www.facebook.com/groups/kolibrios/" target="_blank">
<a href="//www.facebook.com/groups/kolibrios/" target="_blank">
Owner

same, and delete www

same, and delete `www`
Burer marked this conversation as resolved
@@ -12,3 +12,3 @@
</a>
<br />
<a href="https://www.reddit.com/r/KolibriOS/" target="_blank">
<a href="//www.reddit.com/r/KolibriOS/" target="_blank">
Owner

same, and delete www

same, and delete `www`
Burer marked this conversation as resolved
@@ -18,3 +18,3 @@
<p class="p-socials">
<a href="https://matrix.to/#/#kolibrios:lair.moe" target="_blank">
<a href="//matrix.to/#/#kolibrios:lair.moe" target="_blank">
Owner

same

same
Burer marked this conversation as resolved
Burer added 1 commit 2026-04-02 09:57:01 +00:00
Sweetbread approved these changes 2026-04-04 11:21:08 +00:00
Burer merged commit e161237894 into main 2026-04-04 17:01:40 +00:00
Burer referenced this issue from a commit 2026-04-04 17:01:41 +00:00
Burer deleted branch fix/ascii-and-http 2026-04-04 17:01:45 +00:00
Sign in to join this conversation.
No Reviewers
No Label
2 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: KolibriOS/kolibrios.org#14