libxmlb icon indicating copy to clipboard operation
libxmlb copied to clipboard

A library to help create and query binary XML blobs

Results 6 libxmlb issues
Sort by recently updated
recently updated
newest added

I'm partly upstreaming this from a gnome-software bug: https://gitlab.gnome.org/GNOME/gnome-software/-/issues/2443 This is on Fedora 39 with libxmlb 0.3.15-1. Downgrade to the 0.3.14-1 doesn't seem to change anything. where the user doesn't...

Currently, libxmlb queries will set the error `G_IO_ERROR_NOT_FOUND` if they find no matching elements. A lot of queries will often return no results (that’s just the way XML is), so...

It looks like LTO isn't doing such a great job of interning a number of things that I think are worth seeing inlined. Not because these functions themselves show up...

Fixes https://github.com/hughsie/libxmlb/issues/41

If I run the two queries: 1. ``` languages/lang[(text()='en_GB.UTF-8') and (@percentage>50)]|languages/lang[(text()='en_GB') and (@percentage>50)]|languages/lang[(text()='en.UTF-8') and (@percentage>50)]|languages/lang[(text()='en') and (@percentage>50)] ``` 2. ``` languages/lang[text()='en_GB.UTF-8'][@percentage>50]|languages/lang[text()='en_GB'][@percentage>50]|languages/lang[text()='en.UTF-8'][@percentage>50]|languages/lang[text()='en'][@percentage>50] ``` on the XML below, they should return the...

Currently one must call `xb_builder_add_locale()` on an XbBuilder object to add system locales before using `xb_builder_compile()`, at least if one is using `XB_BUILDER_COMPILE_FLAG_SINGLE_LANG`. @pwithnall proposed an alternative way for it...