aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/xml
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-10-28 14:38:25 +0000
committergingerBill <gingerBill@users.noreply.github.com>2025-10-28 14:38:25 +0000
commit842cfee0f3eacbef5fa5f0dbd392a500ebad93ae (patch)
tree8400e8366c4f4456a52ab4f5519922038695890a /core/encoding/xml
parentd390ae2f97fbfe7fd582574e6db923d6992e9c6a (diff)
Change Odin's LICENSE to zlib from BSD 3-clause
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.
Diffstat (limited to 'core/encoding/xml')
-rw-r--r--core/encoding/xml/debug_print.odin2
-rw-r--r--core/encoding/xml/helpers.odin2
-rw-r--r--core/encoding/xml/tokenizer.odin2
-rw-r--r--core/encoding/xml/xml_reader.odin2
4 files changed, 4 insertions, 4 deletions
diff --git a/core/encoding/xml/debug_print.odin b/core/encoding/xml/debug_print.odin
index acced262a..9c47e79e8 100644
--- a/core/encoding/xml/debug_print.odin
+++ b/core/encoding/xml/debug_print.odin
@@ -4,7 +4,7 @@ package encoding_xml
An XML 1.0 / 1.1 parser
Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>.
- Made available under Odin's BSD-3 license.
+ Made available under Odin's license.
A from-scratch XML implementation, loosely modeled on the [spec](https://www.w3.org/TR/2006/REC-xml11-20060816).
diff --git a/core/encoding/xml/helpers.odin b/core/encoding/xml/helpers.odin
index a9d4ad493..79f2d72c7 100644
--- a/core/encoding/xml/helpers.odin
+++ b/core/encoding/xml/helpers.odin
@@ -4,7 +4,7 @@ package encoding_xml
An XML 1.0 / 1.1 parser
Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>.
- Made available under Odin's BSD-3 license.
+ Made available under Odin's license.
This file contains helper functions.
*/
diff --git a/core/encoding/xml/tokenizer.odin b/core/encoding/xml/tokenizer.odin
index 3ef9a6388..71fa0bdf5 100644
--- a/core/encoding/xml/tokenizer.odin
+++ b/core/encoding/xml/tokenizer.odin
@@ -4,7 +4,7 @@ package encoding_xml
An XML 1.0 / 1.1 parser
Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>.
- Made available under Odin's BSD-3 license.
+ Made available under Odin's license.
A from-scratch XML implementation, loosely modeled on the [spec](https://www.w3.org/TR/2006/REC-xml11-20060816).
diff --git a/core/encoding/xml/xml_reader.odin b/core/encoding/xml/xml_reader.odin
index 621c9c2d0..0e773fd8a 100644
--- a/core/encoding/xml/xml_reader.odin
+++ b/core/encoding/xml/xml_reader.odin
@@ -3,7 +3,7 @@ package encoding_xml
An XML 1.0 / 1.1 parser
2021-2022 Jeroen van Rijn <nom@duclavier.com>.
- available under Odin's BSD-3 license.
+ available under Odin's license.
List of contributors:
- Jeroen van Rijn: Initial implementation.