mirror of
https://github.com/kevinveenbirkenbach/homepage.veen.world.git
synced 2026-09-11 21:46:47 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| be04b24eb0 | |||
| 3c899d971b | |||
| a7a6d205e1 | |||
| 2c12c1c327 | |||
| 2400cc2ea1 |
@@ -1,5 +1,14 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [2.1.3] - 2026-09-11
|
||||||
|
|
||||||
|
* CSP: UI strings ship as a JSON data block, not a CSP-blocked inline script
|
||||||
|
* Cards: broken icon images fall back to the icon font (*onerror* fixed)
|
||||||
|
* Iframe: a cross-origin iframe no longer throws a *SecurityError* on load
|
||||||
|
* Fullscreen: scroll recalculation stops when the header animation ends
|
||||||
|
* Fullscreen: a resize that keeps the fullscreen state triggers no recalc
|
||||||
|
* Test coverage: no executable inline scripts; recalc must stop (Cypress)
|
||||||
|
|
||||||
## [2.1.2] - 2026-09-10
|
## [2.1.2] - 2026-09-10
|
||||||
|
|
||||||
* CI: lint tests install the project first, so the image publishes again
|
* CI: lint tests install the project first, so the image publishes again
|
||||||
|
|||||||
@@ -71,6 +71,18 @@ describe('Fullscreen Toggle', () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('stops recalculating once the header has nothing left to animate', () => {
|
||||||
|
cy.window().then(win => {
|
||||||
|
cy.spy(win, 'adjustScrollContainerHeight').as('recalc');
|
||||||
|
win.exitFullscreen();
|
||||||
|
});
|
||||||
|
cy.wait(500);
|
||||||
|
cy.get('@recalc').then(spy => {
|
||||||
|
const settled = spy.callCount;
|
||||||
|
cy.wait(500).then(() => expect(spy.callCount).to.eq(settled));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
it('toggleFullscreen() toggles into and out of fullscreen', () => {
|
it('toggleFullscreen() toggles into and out of fullscreen', () => {
|
||||||
// Toggle into fullscreen
|
// Toggle into fullscreen
|
||||||
cy.window().invoke('toggleFullscreen');
|
cy.window().invoke('toggleFullscreen');
|
||||||
|
|||||||
@@ -9,31 +9,16 @@ function updateUrlFullscreen(enabled) {
|
|||||||
window.history.replaceState({}, '', url);
|
window.history.replaceState({}, '', url);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Starts a requestAnimationFrame loop that calls your recalc methods,
|
|
||||||
* and stops automatically when the header’s max-height transition ends.
|
|
||||||
*/
|
|
||||||
function recalcWhileCollapsing() {
|
function recalcWhileCollapsing() {
|
||||||
const header = document.querySelector('header');
|
const header = document.querySelector('header');
|
||||||
if (!header) return;
|
if (!header) return;
|
||||||
|
|
||||||
// 1) Start the RAF loop
|
|
||||||
let rafId;
|
|
||||||
const step = () => {
|
const step = () => {
|
||||||
adjustScrollContainerHeight();
|
adjustScrollContainerHeight();
|
||||||
updateCustomScrollbar();
|
updateCustomScrollbar();
|
||||||
rafId = requestAnimationFrame(step);
|
if (header.getAnimations().length > 0) requestAnimationFrame(step);
|
||||||
};
|
};
|
||||||
step();
|
step();
|
||||||
|
|
||||||
// 2) Listen for the end of the max-height transition
|
|
||||||
function onEnd(e) {
|
|
||||||
if (e.propertyName === 'max-height') {
|
|
||||||
cancelAnimationFrame(rafId);
|
|
||||||
header.removeEventListener('transitionend', onEnd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
header.addEventListener('transitionend', onEnd);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function enterFullscreen() {
|
function enterFullscreen() {
|
||||||
@@ -100,6 +85,7 @@ document.addEventListener('fullscreenchange', function() {
|
|||||||
});
|
});
|
||||||
window.addEventListener('resize', function() {
|
window.addEventListener('resize', function() {
|
||||||
var isUiFs = Math.abs(window.innerHeight - screen.height) < 2;
|
var isUiFs = Math.abs(window.innerHeight - screen.height) < 2;
|
||||||
|
if (isUiFs === document.body.classList.contains('fullscreen')) return;
|
||||||
if (isUiFs) enterFullscreen();
|
if (isUiFs) enterFullscreen();
|
||||||
else exitFullscreen();
|
else exitFullscreen();
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -168,7 +168,12 @@ function observeIframeNavigation() {
|
|||||||
const iframe = mainElement.querySelector("iframe");
|
const iframe = mainElement.querySelector("iframe");
|
||||||
if (!iframe || !iframe.contentWindow) return;
|
if (!iframe || !iframe.contentWindow) return;
|
||||||
|
|
||||||
let lastUrl = iframe.contentWindow.location.href;
|
let lastUrl;
|
||||||
|
try {
|
||||||
|
lastUrl = iframe.contentWindow.location.href;
|
||||||
|
} catch (e) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
const i18nBlock = document.getElementById('i18n');
|
||||||
|
window.I18N = i18nBlock ? JSON.parse(i18nBlock.textContent) : {};
|
||||||
|
|
||||||
function t(source) {
|
function t(source) {
|
||||||
return (window.I18N || {})[source] || source;
|
return (window.I18N || {})[source] || source;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -71,7 +71,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- Include modal -->
|
<!-- Include modal -->
|
||||||
{% include "moduls/modal.html.j2" %}
|
{% include "moduls/modal.html.j2" %}
|
||||||
<script>window.I18N = {{ ui_strings | tojson }};</script>
|
<script id="i18n" type="application/json">{{ ui_strings | tojson }}</script>
|
||||||
{% for name in [
|
{% for name in [
|
||||||
'modal',
|
'modal',
|
||||||
'navigation',
|
'navigation',
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
src="{{ asset_src(card.icon) }}"
|
src="{{ asset_src(card.icon) }}"
|
||||||
alt="{{ card.title }}"
|
alt="{{ card.title }}"
|
||||||
style="width:100px; height:auto;"
|
style="width:100px; height:auto;"
|
||||||
onerror="this.style.display='none'; this.nextElementSibling?.style.display='inline-block';">
|
onerror="this.style.display='none'; if (this.nextElementSibling) this.nextElementSibling.style.display='inline-block';">
|
||||||
{% if card.icon.class %}
|
{% if card.icon.class %}
|
||||||
<i class="{{ card.icon.class }}" style="display:none;"></i>
|
<i class="{{ card.icon.class }}" style="display:none;"></i>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "portfolio-ui"
|
name = "portfolio-ui"
|
||||||
version = "2.1.2"
|
version = "2.1.3"
|
||||||
description = "A lightweight YAML-driven portfolio and landing-page generator."
|
description = "A lightweight YAML-driven portfolio and landing-page generator."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
import re
|
||||||
import shutil
|
import shutil
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
@@ -111,6 +112,37 @@ class TestEscaping(AppRouteMixin, unittest.TestCase):
|
|||||||
self.assertIn("<script>alert('config')", body)
|
self.assertIn("<script>alert('config')", body)
|
||||||
|
|
||||||
|
|
||||||
|
class TestContentSecurityPolicy(AppRouteMixin, unittest.TestCase):
|
||||||
|
def test_page_ships_no_executable_inline_script(self):
|
||||||
|
body = self.client.get("/de/").get_data(as_text=True)
|
||||||
|
|
||||||
|
inline = [
|
||||||
|
tag
|
||||||
|
for tag in re.findall(r"<script\b[^>]*>", body)
|
||||||
|
if "src=" not in tag and 'type="application/json"' not in tag
|
||||||
|
]
|
||||||
|
|
||||||
|
self.assertEqual(
|
||||||
|
inline,
|
||||||
|
[],
|
||||||
|
"a host CSP can only hash an inline script whose content it knows, "
|
||||||
|
"and this one changes with every language",
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_interface_strings_ship_as_a_json_data_block(self):
|
||||||
|
i18n._catalogs["de"] = {"Open": "</script><script>alert(1)</script>"}
|
||||||
|
|
||||||
|
body = self.client.get("/de/").get_data(as_text=True)
|
||||||
|
block = re.search(
|
||||||
|
r'<script id="i18n" type="application/json">(.*?)</script>', body, re.S
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertIsNotNone(block)
|
||||||
|
self.assertEqual(
|
||||||
|
json.loads(block.group(1))["Open"], "</script><script>alert(1)</script>"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class TestApodBackground(AppRouteMixin, unittest.TestCase):
|
class TestApodBackground(AppRouteMixin, unittest.TestCase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
super().setUp()
|
super().setUp()
|
||||||
|
|||||||
Reference in New Issue
Block a user