All public logs

Jump to navigation Jump to search

Combined display of all available logs of Nottinghack Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 19:38, 4 April 2025 Asj talk contribs created page User:Asj/Doing stuff with mediawiki api (Created page with "notes mainly for myself == getting template property == using jq and xq <pre> curl -s "https://wiki.nottinghack.org.uk/api.php?action=parse&page=Rosey&contentmodel=json&prop=parsetree&format=json" | jq -r '.parse.parsetree."*"' | xq -x "//template/title[contains(text(), 'Tool')]/parent::template/part/name[contains(text(), 'image')]/parent::part/value" </pre> == getting an image url for image page == <pre> curl -s "https://wiki.nottinghack.org.uk/api.php?action=query...")