├── .github └── workflows │ ├── qa.yaml │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── packagedef ├── sonar-project.properties ├── src └── Классы │ └── СериализацияДанныхXML.os ├── tasks ├── coverage.os ├── oscript.cfg └── test.os └── tests ├── fixtures ├── test-file.xml ├── test-full-names.xml └── test-rewrite.xml └── СериализацияДанныхXML_test.os /.github/workflows/qa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/.github/workflows/qa.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/README.md -------------------------------------------------------------------------------- /packagedef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/packagedef -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/Классы/СериализацияДанныхXML.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/src/Классы/СериализацияДанныхXML.os -------------------------------------------------------------------------------- /tasks/coverage.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/tasks/coverage.os -------------------------------------------------------------------------------- /tasks/oscript.cfg: -------------------------------------------------------------------------------- 1 | lib.additional=../oscript_modules 2 | -------------------------------------------------------------------------------- /tasks/test.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/tasks/test.os -------------------------------------------------------------------------------- /tests/fixtures/test-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/tests/fixtures/test-file.xml -------------------------------------------------------------------------------- /tests/fixtures/test-full-names.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/tests/fixtures/test-full-names.xml -------------------------------------------------------------------------------- /tests/fixtures/test-rewrite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/tests/fixtures/test-rewrite.xml -------------------------------------------------------------------------------- /tests/СериализацияДанныхXML_test.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/xml-parser/HEAD/tests/СериализацияДанныхXML_test.os --------------------------------------------------------------------------------