mirror of
https://github.com/moparisthebest/xeps
synced 2024-11-21 16:55:07 -05:00
Add a tool to find open last calls
This commit is contained in:
parent
26518bd35f
commit
d97c1af508
3
tools/find-lcs.sh
Executable file
3
tools/find-lcs.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
( echo -ne '<root>'; xpath -e '/xep-infos/xep[string(status)="Proposed"]' build/xeplist.xml 2>/dev/null | tr -d '\n'; echo -ne '</root>' ) | python3 -c 'import lxml.etree, sys; tree = lxml.etree.fromstring(sys.stdin.read())
|
||||
for xep in tree: print("XEP-{number:04d} ({title}), LC ends: {enddate}; https://xmpp.org/extensions/xep-{number:04d}".format(number=int(xep.find("number").text), enddate=xep.find("lastcall").text, title=xep.find("title").text))'
|
Loading…
Reference in New Issue
Block a user