summaryrefslogtreecommitdiffstats
path: root/src/corelib/serialization/make-xml-parser.sh
Commit message (Collapse)AuthorAgeFilesLines
* Mark remaining files in src/corelib/serialization as security-insignificantMarc Mutz2025-10-151-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | The .gitignore file is obviously insignificant. The file format allows comments, so mark it. Invent a new reason string for that. The shell script is also insignificant. While it runs qlalr for the security-critical QtXmlStream classes, as a build-tool, it's not security-critical itself, and, unlike e.g. util/normalize/main.cpp, it doesn't itself contain code that ends up being compiled. Invent a new reason string for that. This completes the review of src/corelib/serialization: $ for i in $(find src/corelib/serialization -type f); do if ! grep -qE '^ *(//|#) *Qt[ -]Security +score:' "$i"; then echo "$i" fi done <nothing> QUIP: 23 Fixes: QTBUG-135194 Pick-to: 6.10 6.8 Change-Id: Id5d18244fe0e9d18b8891500a3a946ac530671a4 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
* Correct license for tools filesLucie Gérard2024-03-051-1/+1
| | | | | | | | | | | | According to QUIP-18 [1], all tools file should be LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 [1]: https://contribute.qt-project.org/quips/18 Pick-to: 6.7 Task-number: QTBUG-121787 Change-Id: Icd5d5be2e04819617e68ff142924de1773bebbad Reviewed-by: Kai Köhne <kai.koehne@qt.io>
* Use SPDX license identifiersLucie Gérard2022-05-161-38/+2
| | | | | | | | | | | | | Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Task-number: QTBUG-67283 Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
* Create corelib/serialization and move existing file formats into itThiago Macieira2018-01-261-0/+51
This is in preparation to adding CBOR support. We don't need yet another dir for CBOR and placing it in src/corelib/json is just wrong. Change-Id: I9741f017961b410c910dfffd14ffb9d870340fa6 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by: Lars Knoll <lars.knoll@qt.io>