-
Guus
jonas’ any particular reason why you didn't hit the big green button on https://github.com/xsf/xmpp.org/pull/573, instead of 'only' approving it?
-
jonas’
four eyes?
-
Guus
meh. It's easily reverted in case of something going awfully wrong. 🙂
-
jonas’
:)
-
edhelas
what would be the best way to share/link a pubsub item in a chat message ?
-
edhelas
https://xmpp.org/extensions/xep-0297.html could do it
-
dwd
edhelas, XEP-0372 perhaps?
-
pep.
One requires the target users to have permissions enough, the other doesn't
-
edhelas
indeed, looks fine !
-
edhelas
dwd danke :3
-
Guus
could someone remove the sprint banner on the home page please? Sprints have happened.
-
wurstsalat
will submit a PR
-
Guus
💝
-
wurstsalat
there it is :)
-
dwd
jonas’, Hello, Editor!
-
jonas’
Hello, dwd!
-
dwd
jonas’, Can I formally request a Last Call for XEP-0280, please? I'm willing to collect and resolve any Last Call comments (if Ge0rG doesn't beat me to it).
-
jonas’
\o/
-
dwd
jonas’, I think XEP-0300, XEP-0313, and probably XEP-0357 are also all ready. ANd if not, I don't know what would make them ready. But I can only shepherd one at a time, I think.
-
dwd
jonas’, Oh, so '357 is pending Kev incorporating Kev's feedback. Ho hum.
-
dwd
jonas’, You want me to add '280's last call to the Council agenda I'm sorting? :-)
-
Guus
as someone who spent the weekend implementing 357 - what's Kev's feedback?
-
jonas’
dwd, can we talk about this at 16:15Z?
-
jonas’
I’m a bit busy right now
-
Guus
(I had trouble figuring out when a server should trigger a notification, which could be a valuable addition to 357 - hoping that that's part of Kev's feedback to be incorporated by Kev)
-
dwd
jonas’, No worries.
-
dwd
Guus, I don't know. It's on the list somewhere.
-
Ge0rG
dwd: you are very evil, aren't you? > Can I formally request a Last Call for XEP-0280, please?
-
Ge0rG
I'm still not sure it's ready, mainly because of the error bounce rules.
-
Ge0rG
Also I'm sure that nobody outside of Council had a chance to appreciate the new namespace split.
-
Zash
JUST DO IT
-
Ge0rG
Also I'm on holiday and can't provide useful feedback.
-
Ge0rG
0313 is even worse.
-
Ge0rG
And I'm going to -1 0357 as it is now.
-
Ge0rG
Until Anu and Thilo and Daniel have written down all their special rules into it. And Holger. I'm pretty sure that Holger actually volunteered to do that.
-
Zash
So many XEPs with special rules that may or may not be implementation details :|
-
Ge0rG
Zash: there are many implementation details which, if written into an XEP, will actually improve developers' lifes
-
dwd
Ge0rG, I'm hoping that a Last Call on '280 might actually generate a finite amount of feedback which can be incorporated, this time.
-
dwd
.
-
Ge0rG
Also the rule I've added about "chat related" should be fully specified.
-
edhelas
here we go, Movim now handle Pubsub item URIs as references in Chat
-
edhelas
https://movim.eu:5280/upload/9d94237298995552fa13436420195fbca436dce7/SYveuOhUOR6S1od3YunMfhH3thJRF8YFR41lJgu2/Screenshot_20190611_180716.png
-
edhelas
I'll try to handle Pubsub nodes and simple contacts and rooms uris as well
-
dwd
Very nice.
-
rion
meanwhile I've added another chapter to https://wiki.xmpp.org/web/XEP-Remarks/XEP-0260:_Jingle_SOCKS5_Bytestreams_Transport_Method
-
pep.
edhelas: what happens if I don't have perms for these pubsub nodes?
-
pep.
Otherwise it does look cool
-
edhelas
The card only show a preview of the post. But indeed it can leak a few info.
-
edhelas
The issue is that I can't get the Pubsub node config as metadata from now
-
edhelas
Well not since the last 0060 change
-
j.r
Hey, is it know that https://wiki.xmpp.org runs a Version that was released around 2015?
-
Zash
Forwarded to the iteam room, thanks.
-
j.r
Zash, ok thank you
-
lovetox
jonas’, you are not in @dev✎ -
lovetox
jonas’, you are not in @jdev ✏
-
lovetox
do you know can i satisfy the test vectors from 0392 with your current impl in jclib?
-
lovetox
it seems im getting total different values
-
Zash
> string.unpack("<I2", sha1("juliet@capulet.lit"))/65536*360 209.41040039062
-
lovetox
yeah i get the hue almost right
-
lovetox
but if i pass it to the hsluv_to_rgb function it does not return the same values as in the test vectors
-
lovetox
hm
-
Zash
What are you passing as the other values (s and l?)
-
Zash
I did `hsluv(hue, 100, 50)` whatever that means
-
lovetox
yes i do this too
-
lovetox
and this returns the correct numbers for you?
-
Zash
Not sure
-
Zash
`color_from_jid("juliet@capulet.lit")` → #008392
-
Zash
I guess that seems about right
-
lovetox
ah i have it
-
lovetox
he afterwards multiplys every color with 0.8
-
lovetox
thats why it does not match for me
-
Zash
in jclib?
-
lovetox
yes
-
lovetox
r *= 0.8 g *= 0.8 b *= 0.8
-
lovetox
not sure why, i dont see this in the XEP
-
Zash
Tweaking the brightness I guess?
-
Link Mauve
That is most likely wrong, if you want to darken a colour you should convert to linear RGB, do the operation, then go back to gamma.✎ -
Link Mauve
That is most likely wrong, if you want to darken a colour you should convert to linear RGB, do the operation, then go back to sRGB. ✏
-
lovetox
ah no i think he adjusts for white background
-
lovetox
rc = 0.2*rb_inv + 0.8*ri; gc = 0.2*gb_inv + 0.8*gi; bc = 0.2*bb_inv + 0.8*bi;
-
lovetox
as white is 0,0,0
-
lovetox
he left it out
-
lovetox
which leaves just *0.8
-
lovetox
hm but the xep says first to invert the background color
-
lovetox
so he misses this