aboutsummaryrefslogtreecommitdiff
path: root/tests/core/assets
Commit message (Collapse)AuthorAgeFilesLines
* Fix parsing of CDATA tags (#5059)Jeroen van Rijn2025-04-191-0/+5
| | | Fixes #5054
* Fold XML attribute whitespace.Jeroen van Rijn2024-06-121-0/+8
|
* Fix .mo contextsJeroen van Rijn2024-05-173-0/+35
| | | | | | | Fixes #3590 - `get("key")` - `get("context", "key")`
* Fix .mo parser: Number of pluralsJeroen van Rijn2024-05-171-0/+0
| | | | | | Fixes #3591 Added plur.mo to tests
* [i18n] Fix segfault on destroy on LinuxJeroen van Rijn2022-04-291-9/+9
| | | | Forgot to intern the section string in QT TS loader.
* [i18n] Add tests.Jeroen van Rijn2022-04-291-0/+22
|
* [i18n/xml] Move I18N XML files to their own assets directory.Jeroen van Rijn2022-04-296-0/+63
|
* [i18n] QT Linguist TS reader.Jeroen van Rijn2022-04-291-26/+26
|
* Merge branch 'master' into xmlJeroen van Rijn2022-04-275-0/+121
|\
| * [compress/shoco] Add short string compressor.Jeroen van Rijn2022-04-224-0/+121
| |
| * Fix some core:encoding/hxa stuff (error handling, header, max -> min)gitlost2022-03-161-0/+0
| | | | | Also add missing f16 case to core:reflect as_u64 & as_f64 Add tests for above & add previous tests missing from test/core/build.bat
* [xml] Improve XML tests, test `core:encoding/entity`.Jeroen van Rijn2021-12-053-1/+30
|
* [xml] Improvements.Jeroen van Rijn2021-12-055-0/+2
|
* [xml] Initial implementation of `core:encoding/xml`.Jeroen van Rijn2021-12-054-0/+133
A from-scratch XML implementation, loosely modeled on the [spec](https://www.w3.org/TR/2006/REC-xml11-20060816). Features: - Supports enough of the XML 1.0/1.1 spec to handle the 99.9% of XML documents in common current usage. - Simple to understand and use. Small. Caveats: - We do NOT support HTML in this package, as that may or may not be valid XML. If it works, great. If it doesn't, that's not considered a bug. - We do NOT support UTF-16. If you have a UTF-16 XML file, please convert it to UTF-8 first. Also, our condolences. - <[!ELEMENT and <[!ATTLIST are not supported, and will be either ignored or return an error depending on the parser options. TODO: - Optional CDATA unboxing. - Optional `&gt;`, `&#32;`, `&#x20;` and other escape substitution in tag bodies. - Test suite MAYBE: - XML writer? - Serialize/deserialize Odin types?