-
pep.
xmpp.css is querying "https://xmpp.org/images/logos/xmpp-logo.svg", is there something it'd be ok to change this with so my local build doesn't query xmpp.org?
-
pep.
"/images" ? "../images" ?
-
Link Mauve
The former sounds good.
-
pep.
That means everybody hosting these now must have a /images/ folder as well :/
-
Link Mauve
Ah, right.
-
pep.
And "../images" as is won't work with inbox/
-
pep.
Even though I'm less worried for the xmpp.org setup, because worst can xslt can be used to help here. Maybe.
-
pep.
I guess I'm fine with not having the xmpp logo on my custom deployment
-
pep.
The funny thing in all that is that I get 404 anyway. But that slows down the loading of my page by a very large margin..
-
jonas’
why a 404?
-
pep.
no clue
-
jonas’
smells like CORS or so
-
pep.
(It's not the 404 that slows down the loading, just the combination of remote query + Tor, when everything else is local)
-
jonas’
oh, tor.
-
pep.
Why would Tor be of any interest here?
-
jonas’
the latency is irrelevant otherwise
-
pep.
Ok I thought it was about the 404
-
jonas’
no, I cannot reproduce that
-
pep.
"GET https://xmpp.org/theme/images/xmpp-logo.svg"✎ -
pep.
"GET https://xmpp.org/theme/images/xmpp-logo.svg" ✏
-
jonas’
that's a different URL than the one you were giving earlier
-
pep.
Indeed, weird
-
pep.
That's not me though
-
pep.
In In the css I only see /images/
-
pep.
And git grep doesn't yield anything.. weird.
-
pep.
Anyway, any idea about how to change that request?
-
pep.
Let's forget about the 404 for a sec
-
jonas’
if there's only /images/ in the CSS, I don't know where it's coming from
-
pep.
I meant /theme/ isn't in the css
-
pep.
It's "https://xmpp.org/images/logos/xmpp-logo.svg"
-
pep.
Which I'd like to change to something not querying xmpp.org
-
jonas’
if it's in the CSS, we don't have a way to template that
-
jonas’
you can probably keep a local patch or so
-
pep.
We could put that outside the css sheet worst case
-
jonas’
I'd rather not have complexity irrelevant to the main use case in the repositories, as long as I'm the only one doing work.
-
pep.
Am I really the only one who cares? :/
-
jonas’
it's the first time it has come up anyway
-
pep.
k
-
jonas’
(that I know of)
-
pep.
Local patches are always annoying..