| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix parsing of CDATA tags (#5059) | Jeroen van Rijn | 2025-04-19 | 1 | -0/+5 |
| | | | | Fixes #5054 | ||||
| * | Fold XML attribute whitespace. | Jeroen van Rijn | 2024-06-12 | 1 | -0/+8 |
| | | |||||
| * | Fix .mo contexts | Jeroen van Rijn | 2024-05-17 | 3 | -0/+35 |
| | | | | | | | | Fixes #3590 - `get("key")` - `get("context", "key")` | ||||
| * | Fix .mo parser: Number of plurals | Jeroen van Rijn | 2024-05-17 | 1 | -0/+0 |
| | | | | | | | Fixes #3591 Added plur.mo to tests | ||||
| * | [i18n] Fix segfault on destroy on Linux | Jeroen van Rijn | 2022-04-29 | 1 | -9/+9 |
| | | | | | Forgot to intern the section string in QT TS loader. | ||||
| * | [i18n] Add tests. | Jeroen van Rijn | 2022-04-29 | 1 | -0/+22 |
| | | |||||
| * | [i18n/xml] Move I18N XML files to their own assets directory. | Jeroen van Rijn | 2022-04-29 | 6 | -0/+63 |
| | | |||||
| * | [i18n] QT Linguist TS reader. | Jeroen van Rijn | 2022-04-29 | 1 | -26/+26 |
| | | |||||
| * | Merge branch 'master' into xml | Jeroen van Rijn | 2022-04-27 | 5 | -0/+121 |
| |\ | |||||
| | * | [compress/shoco] Add short string compressor. | Jeroen van Rijn | 2022-04-22 | 4 | -0/+121 |
| | | | |||||
| | * | Fix some core:encoding/hxa stuff (error handling, header, max -> min) | gitlost | 2022-03-16 | 1 | -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 Rijn | 2021-12-05 | 3 | -1/+30 |
| | | |||||
| * | [xml] Improvements. | Jeroen van Rijn | 2021-12-05 | 5 | -0/+2 |
| | | |||||
| * | [xml] Initial implementation of `core:encoding/xml`. | Jeroen van Rijn | 2021-12-05 | 4 | -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 `>`, ` `, ` ` and other escape substitution in tag bodies. - Test suite MAYBE: - XML writer? - Serialize/deserialize Odin types? | |||||