home.social

#xpath — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #xpath, aggregated by home.social.

fetched live
  1. New mailing list to discuss making an international organisation for XML (IXO??), a new home. The future of declarative markup, perhaps.

    lists.psu.edu/cgi-bin/wa?SUBED

    An upcoming zoom call on 25th September is also open.

    #XML #XMLisNotDead #XSLT #XQuery #XPath #foundation #XML_Foundation #declarativeMarkup

    Discussions started around #Balisage2026 #Balisage this year.

  2. New mailing list to discuss making an international organisation for XML (IXO??), a new home. The future of declarative markup, perhaps.

    lists.psu.edu/cgi-bin/wa?SUBED

    An upcoming zoom call on 25th September is also open.

    #XML #XMLisNotDead #XSLT #XQuery #XPath #foundation #XML_Foundation #declarativeMarkup

    Discussions started around #Balisage2026 #Balisage this year.

  3. This past thursday we had our first XML user group meeting, an informal exchange of ideas with one formal guest presentation.

    Third thursday of each month, so let’s see if we can make it grow. Contact me for coordinates.

    #XMLisAlive #MarkupMonday #XML #XSLT #XQuery #XSL #XPath #Awesome #BetterThanYouThink

  4. This past thursday we had our first XML user group meeting, an informal exchange of ideas with one formal guest presentation.

    Third thursday of each month, so let’s see if we can make it grow. Contact me for coordinates.

    #XMLisAlive #MarkupMonday #XML #XSLT #XQuery #XSL #XPath #Awesome #BetterThanYouThink

  5. Bases de données semi-structurées (M2 HN) : Matériel pédagogique 2026-2027 en ligne #hnbdss #xml #dtd #xmlschema #xpath #xquery

    Le matériel pédagogique 2026-2027 (support de cours, références...) est en ligne.

    eric.univ-lyon2.fr/jdarmont/?p

  6. Version 5.6 of the speedata Publisher is out! About 100 days of work since the last stable, 25 patch releases in between, and a lot of new stuff.

    XPath now does arrays and maps, variable fonts work, tables got a few nice things (colspan="*", row colors that don't drift across pages), there is a progress bar, placeholder images, and a bunch more.

    Long writeup here: news.speedata.de/2026/06/03/ve

    Grab a coffee, it is a big one.

    #speedatapublisher #xpath #pdf

  7. Version 5.6 of the speedata Publisher is out! About 100 days of work since the last stable, 25 patch releases in between, and a lot of new stuff.

    XPath now does arrays and maps, variable fonts work, tables got a few nice things (colspan="*", row colors that don't drift across pages), there is a progress bar, placeholder images, and a bunch more.

    Long writeup here: news.speedata.de/2026/06/03/ve

    Grab a coffee, it is a big one.

    #speedatapublisher #xpath #pdf

  8. uBlock Origin's trusted-click-element now supports xpath.

    github.com/gorhill/uBlock/comm

    xpath is a method of searching XML and HTML documents.

    uBlock Origin also supports using xpath in cosmetic filters (that functionality isn't new, to be clear): github.com/gorhill/uBlock/wiki

    Based on the issue report linked in the commit, it seems one of the major advantages is this now allows trusted-click-element to select based on the text content of an element, something not possible with normal CSS selectors.

    github.com/uBlockOrigin/uAsset

    #uBlockOrigin #xpath

  9. uBlock Origin's trusted-click-element now supports xpath.

    github.com/gorhill/uBlock/comm

    xpath is a method of searching XML and HTML documents.

    uBlock Origin also supports using xpath in cosmetic filters (that functionality isn't new, to be clear): github.com/gorhill/uBlock/wiki

    Based on the issue report linked in the commit, it seems one of the major advantages is this now allows trusted-click-element to select based on the text content of an element, something not possible with normal CSS selectors.

    github.com/uBlockOrigin/uAsset

    #uBlockOrigin #xpath

  10. أصدرت Wine 11.10 تحديثًا جديدًا لطبقة التوافق متعددة المنصات، مما يسمح بتشغيل تطبيقات ويندوز على أنظمة لينكس وماك أو إس وبي إس دي. يشمل التحديث تحسينات في ترجمة Direct3D، وإعادة تنفيذ دعم XPath، وتعزيز توافق VBScript، بالإضافة إلى 17 إصلاحًا للأخطاء لمجموعة متنوعة من البرامج والألعاب.

    #Wine #Direct3D #XPath

  11. I have updated the Go-XML suite (a parser, XPath and XSLT) and started the documentation at

    doc.speedata.de/goxml/

    The XSLT processor is still work in progress, 21.8% of the official test suite pass. So all basic stuff will work!

    #xslt #xml #xpath #golang

  12. I have updated the Go-XML suite (a parser, XPath and XSLT) and started the documentation at

    doc.speedata.de/goxml/

    The XSLT processor is still work in progress, 21.8% of the official test suite pass. So all basic stuff will work!

    #xslt #xml #xpath #golang

  13. The #DNBLab Workshop at #DHd2026 hammers home the continued importance of #XML despite all the nay-sayers. Yes, one can read and parse catalogue data provided through SRU with #Python but one still has to be familiar with #XPath to do anything meaningful.

    The pain of MARC fields, tags, and codes remains … on to the MARC manual and the beauty of field 800 …

  14. The #DNBLab Workshop at #DHd2026 hammers home the continued importance of #XML despite all the nay-sayers. Yes, one can read and parse catalogue data provided through SRU with #Python but one still has to be familiar with #XPath to do anything meaningful.

    The pain of MARC fields, tags, and codes remains … on to the MARC manual and the beauty of field 800 …

  15. Just updated the Go based XML processing repositories:

    XML DOM loading and accessing:
    github.com/speedata/goxml

    XPATH 2.0 (and a bit of 3.1) accessing:
    github.com/speedata/goxpath

    The new kid on the block (experimental!) a new XSLT 2.0 processor:

    github.com/speedata/goxslt

    #xml #xpath #xslt

  16. Just updated the Go based XML processing repositories:

    XML DOM loading and accessing:
    github.com/speedata/goxml

    XPATH 2.0 (and a bit of 3.1) accessing:
    github.com/speedata/goxpath

    The new kid on the block (experimental!) a new XSLT 2.0 processor:

    github.com/speedata/goxslt

    #xml #xpath #xslt

  17. @brucelawson Not CSS, but JavaScript with some #XPath:

    ```js
    Node.prototype.querySelectorText = function (t) {
    return document.evaluate(`.//*[text()='${t}']`, this, null, 9, null)
    .singleNodeValue;
    };
    ```

    Sorry for the "reply guy" kinda answer, but I just had fun recalling how all this works, and maybe it's actually useful for someone. Likely not a good idea to spam the `Node` prototype in production, though.

  18. @brucelawson Not CSS, but JavaScript with some #XPath:

    ```js
    Node.prototype.querySelectorText = function (t) {
    return document.evaluate(`.//*[text()='${t}']`, this, null, 9, null)
    .singleNodeValue;
    };
    ```

    Sorry for the "reply guy" kinda answer, but I just had fun recalling how all this works, and maybe it's actually useful for someone. Likely not a good idea to spam the `Node` prototype in production, though.

  19. This isn't just about our course. It's about keeping XML/TEI processing education alive at DHSI. We need MORE of these courses, not fewer!
    Please boost, share with your networks, consider enrolling!
    #XSLT #XPath #XQuery #Schematron #DHSI2026 #XMLProcessing #ScholarlyCoding
    🧵3/3

  20. This isn't just about our course. It's about keeping XML/TEI processing education alive at DHSI. We need MORE of these courses, not fewer!
    Please boost, share with your networks, consider enrolling!
    #XSLT #XPath #XQuery #Schematron #DHSI2026 #XMLProcessing #ScholarlyCoding
    🧵3/3

  21. Instead of working something productive, I have been fighting with and its (scraping) feature to make a working blog feed.

    After some back and forth with documentation and , I finally have a working version.

    Still blown away that they have terminated the feeds (especially for the blog site), and glad that 1.20 version has introduced this possibility with no need to depend on other public or services.

    Powered via @rizzi 🤘🏻

  22. Instead of working something productive, I have been fighting with #FreshRSS and its #XPath (scraping) feature to make a working #unifi blog #RSS feed.

    After some back and forth with documentation and #AI, I finally have a working version.

    Still blown away that they have terminated the feeds (especially for the blog site), and glad that 1.20 version has introduced this possibility with no need to depend on other public or #selfhosted services.

    Powered via @rizzi #Reeder 🤘🏻

  23. XQuery & XPath users, watch out - i spent a day debugging!

    Turns out in BaseX & i think XPath 4 (upcoming), `else` clauses are optional.

    This is unexpected in an expression language -

    `let $name := if ($p) then get-name($p)
    return some-func($name)`

    is the same as

    `let $name := if ($p) then get-name($p) else ( )
    return some-func($name)`

    but in a multi-screen if/then/else it’s more likely you just forgot the else() or mismatched some parens.

    #xquery #MarkupMonday #basex #xpath #xslt4

  24. XQuery & XPath users, watch out - i spent a day debugging!

    Turns out in BaseX & i think XPath 4 (upcoming), `else` clauses are optional.

    This is unexpected in an expression language -

    `let $name := if ($p) then get-name($p)
    return some-func($name)`

    is the same as

    `let $name := if ($p) then get-name($p) else ( )
    return some-func($name)`

    but in a multi-screen if/then/else it’s more likely you just forgot the else() or mismatched some parens.

    #xquery #MarkupMonday #basex #xpath #xslt4

  25. Ah, #wxpath, because using #XPath was just too easy before 🙄. Now with extra layers of #complexity, just in case you weren't already confused enough by web crawling! 🕸️😵‍💫
    github.com/rodricios/wxpath #webcrawling #technews #developerhumor #HackerNews #ngated

  26. Ah, #wxpath, because using #XPath was just too easy before 🙄. Now with extra layers of #complexity, just in case you weren't already confused enough by web crawling! 🕸️😵‍💫
    github.com/rodricios/wxpath #webcrawling #technews #developerhumor #HackerNews #ngated

  27. Nouvelle mouture du moteur de recherche. Abandon du Dom pour xPath, plus rapide, et qui permet d'inclure les mots clefs associés des rubriques et des territoires, pratique pour par exemple lister tous les flux RSS d'un département (avec majuscule «Pyrénées-Orientales») ou ceux d'un thème qui ne possède pas sa page dédiée, comme le théâtre (sans accent «theatre»).

    #rss #opml #syndication #agrégateur #atlasdesflux #veille #xml #xpath

  28. Work continues on XPath 4, XQuery 4, XSLT 4 - see qt4cg.org/ - but the focus has shifted to “getting it finished”i think. Although i wasn’t able to be as active as i wanted (and had a meeting conflict) i did write some proposals, some accepted and some not.

    If you have concerns, now is teh time to voice them. Or sooner 🙂

    #markupMonday #XML #XSLT #XSLT4 #XQuery #XQuery4 #XPath #XPath4

  29. Work continues on XPath 4, XQuery 4, XSLT 4 - see qt4cg.org/ - but the focus has shifted to “getting it finished”i think. Although i wasn’t able to be as active as i wanted (and had a meeting conflict) i did write some proposals, some accepted and some not.

    If you have concerns, now is teh time to voice them. Or sooner 🙂

    #markupMonday #XML #XSLT #XSLT4 #XQuery #XQuery4 #XPath #XPath4

  30. 2nd update: I also figured out how to apply the new-ish JSON transformations of #XSLT 3 and #XPath 3.1 to parse the encapsulated #MarcXML

  31. 2nd update: I also figured out how to apply the new-ish JSON transformations of #XSLT 3 and #XPath 3.1 to parse the encapsulated #MarcXML

  32. »Older Tech In The Browser Stack«
    smashingmagazine.com/2025/11/o

    Man stelle sich vor, wie produktiv eine Browser-Implementierung von #XPath 3.1 sein könnte.

  33. »Older Tech In The Browser Stack«
    smashingmagazine.com/2025/11/o

    Man stelle sich vor, wie produktiv eine Browser-Implementierung von #XPath 3.1 sein könnte.

  34. Older Tech In The Browser Stack: smashingmagazine.com/2025/11/o. Essentially a decent "#XPath by examples" tutorial after a mostly unrelated introductory paragraph.

  35. Older Tech In The Browser Stack: smashingmagazine.com/2025/11/o. Essentially a decent "#XPath by examples" tutorial after a mostly unrelated introductory paragraph.

  36. Получить цены акций, фондов и ОФЗ в Google Sheets

    Привет, Хабр! Изучая информацию по работе с API в таблицах Google/Excel, понял лишь то, что я ничего не понимаю, разбираться в xpath, в парсинге XML внутри формулы это всё, как-то очень тяжело и громостко. У меня была простая задача, разработать что бы то ни было для получения текущей цены по конкретному активу с Мосбиржи. И как мне кажется, у меня это получилось в дотаточной степени чтобы можно было получить информацию и далее, как-то её агригировать, как вам удобно. Также сразу поясню, что функция GOOGLEFINANCE больше не работает, по этому остается искать другие пути решения.

    habr.com/ru/articles/964722/

    #api #GoogleТаблицы #excel #xpath #json #мосбиржа #appsscript

  37. When all hope seems lost, never forget: uBlockOrigin supports XPath.

    ```
    github.com##:xpath(//div[contains(text(), "Mention @copilot")]/..)
    ```

    #UBlockOrigin #XPath #Copilot

  38. When all hope seems lost, never forget: uBlockOrigin supports XPath.

    ```
    github.com##:xpath(//div[contains(text(), "Mention @copilot")]/..)
    ```

    #UBlockOrigin #XPath #Copilot

  39. @webstandards_dev There would be more usage when browsers support #XSLT 3.0 + #XPath 3.1.

  40. @webstandards_dev There would be more usage when browsers support #XSLT 3.0 + #XPath 3.1.

  41. Did you know #XPath 3 (2016) is a Turing-complete functional and declarative language? As are #XSLT 3 (which uses XPath and #XQuery which extends it). And #XProc 3 is a data flow language that also uses XPath.

    These are widely used, powerful, efficient, and super pointy.

    #XMLisUseful #markupMonday

  42. Did you know #XPath 3 (2016) is a Turing-complete functional and declarative language? As are #XSLT 3 (which uses XPath and #XQuery which extends it). And #XProc 3 is a data flow language that also uses XPath.

    These are widely used, powerful, efficient, and super pointy.

    #XMLisUseful #markupMonday

  43. @rauschma My favourite POI episode title is / (Root Path) S3E17. Use it with a picture of Root on my XSLT slides. 🙃

    <xsl:template match="/">
    <!-- … -->
    </xsl:template>

    #POI #XSLT #XPath

  44. CW: re: tech nonsense, re: XML

    @elilla en utilisant des technologies XML, cela devrait bien aller ! ;) #XPath #XSLT #XQuery