| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove all `core:os` imports from JS targets | Jeroen van Rijn | 6 days | 1 | -14/+0 |
| | | | | | Fix `local_tz_name` on FreeBSD. | ||||
| * | `core:os` -> `core:os/os` for CSV, INI, and XML | Jeroen van Rijn | 7 days | 1 | -9/+9 |
| | | | | | | Also had to vendor `core:encoding/ini` into `core:os/os2` for the user directories on *nix, as it used that package to read `~/.config/user-dirs.dirs`, causing an import cycle. | ||||
| * | encoding/xml: pass allocator on destroy | Isabella Basso | 2026-01-25 | 1 | -1/+2 |
| | | |||||
| * | Comments before first emlement not being captured | StudebakerGuy | 2026-01-07 | 1 | -1/+1 |
| | | | | | | | The xml library was not correctly detect that a comment occured before the first element. This addresses the issue, but the comment incorrectly includes --. | ||||
| * | Address issue identifying of CDATA | StudebakerGuy | 2025-12-23 | 1 | -1/+2 |
| | | | | | | | The XML library wasn't identifying CDATA and skipping over it. This was found when CDATA contained a <. This patch addresses that issue. | ||||
| * | Change Odin's LICENSE to zlib from BSD 3-clause | gingerBill | 2025-10-28 | 1 | -1/+1 |
| | | | | | This change was made in order to allow things produced with Odin and using Odin's core library, to not require the LICENSE to also be distributed alongside the binary form. | ||||
| * | Render examples. | Jeroen van Rijn | 2025-10-10 | 1 | -3/+3 |
| | | |||||
| * | Fix #4705 | Jeroen van Rijn | 2025-06-09 | 1 | -1/+2 |
| | | | | | Allocate `doc.tokenizer`, and free it in `destroy`. | ||||
| * | Add comment | Jeroen van Rijn | 2025-04-19 | 1 | -0/+4 |
| | | |||||
| * | Fix parsing of CDATA tags (#5059) | Jeroen van Rijn | 2025-04-19 | 1 | -44/+55 |
| | | | | Fixes #5054 | ||||
| * | core: improve package doc comments for the documentation generator | Laytan Laats | 2024-09-03 | 1 | -23/+5 |
| | | |||||
| * | Update XML reader to normalize whitespace, part 1. | Jeroen van Rijn | 2024-06-12 | 1 | -10/+14 |
| | | |||||
| * | Update numerous package declaration names | gingerBill | 2024-04-18 | 1 | -1/+1 |
| | | |||||
| * | Replace `core:*` to `base:*` where appropriate | gingerBill | 2024-01-28 | 1 | -2/+2 |
| | | |||||
| * | Fix comments in xml_reader.odin for better rendering in documentation | Kostas Tsiligkiris | 2024-01-17 | 1 | -130/+53 |
| | | |||||
| * | Fix formatting of package documentation string | Kostas Tsiligkiris | 2024-01-17 | 1 | -18/+18 |
| | | |||||
| * | Fix #2684 | Jeroen van Rijn | 2023-07-28 | 1 | -27/+15 |
| | | |||||
| * | Add `runtime.DEFAULT_TEMP_ALLOCATOR_TEMP_GUARD` where appropriate | gingerBill | 2023-02-10 | 1 | -1/+3 |
| | | |||||
| * | Minor name changes within `core:encoding/xml` for consistency | gingerBill | 2022-05-12 | 1 | -26/+24 |
| | | |||||
| * | [xml] Add `parse_from_string` overload. | Jeroen van Rijn | 2022-04-30 | 1 | -3/+10 |
| | | | | | | `parse` now takes either a `[]u8` slice or a string. `load_from_file` takes a path string. | ||||
| * | [i18n] QT Linguist TS reader. | Jeroen van Rijn | 2022-04-29 | 1 | -1/+0 |
| | | |||||
| * | [xml] Speedup. | Jeroen van Rijn | 2022-04-28 | 1 | -128/+148 |
| | | |||||
| * | [xml] Initial optimization. | Jeroen van Rijn | 2021-12-06 | 1 | -22/+46 |
| | | |||||
| * | [xml] Add option. | Jeroen van Rijn | 2021-12-05 | 1 | -3/+23 |
| | | |||||
| * | [xml] Implement optional unboxing of CDATA and decoding of tag values. | Jeroen van Rijn | 2021-12-05 | 1 | -21/+20 |
| | | |||||
| * | [core:encoding/entity] Add new package to decode &<entity>; entities. | Jeroen van Rijn | 2021-12-05 | 1 | -2/+0 |
| | | | | | Includes generator to generate a lookup for named entitiess. | ||||
| * | [xml] Improvements. | Jeroen van Rijn | 2021-12-05 | 1 | -0/+2 |
| | | |||||
| * | [xml] Improve CDATA + comment handling in tag body. | Jeroen van Rijn | 2021-12-05 | 1 | -34/+2 |
| | | |||||
| * | [xml] Slight optimization. | Jeroen van Rijn | 2021-12-05 | 1 | -2/+2 |
| | | | | | | | About a 5% speed bump. More rigorous optimization later. | ||||
| * | [xml] Robustness improvement. | Jeroen van Rijn | 2021-12-05 | 1 | -24/+51 |
| | | | | | Can now parse https://www.w3.org/2003/entities/2007xml/unicode.xml no problem. | ||||
| * | [xml] Use `io.Writer` for `xml.print(doc)`. | Jeroen van Rijn | 2021-12-05 | 1 | -1/+1 |
| | | |||||
| * | [xml] Initial implementation of `core:encoding/xml`. | Jeroen van Rijn | 2021-12-05 | 1 | -0/+651 |
| 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? | |||||