├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── LICENSE ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── scripts └── tag.main.kts ├── settings.gradle.kts ├── src ├── main │ └── kotlin │ │ └── xoxo │ │ └── xoxo.kt └── test │ └── kotlin │ └── xoxo │ ├── SessionizeTest.kt │ ├── XmlElementTest.kt │ ├── XmlNodeTest.kt │ └── XmlTextTest.kt └── test-fixtures ├── comments.xml └── sessionize.xml /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .gradle 3 | build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /scripts/tag.main.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/scripts/tag.main.kts -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/kotlin/xoxo/xoxo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/src/main/kotlin/xoxo/xoxo.kt -------------------------------------------------------------------------------- /src/test/kotlin/xoxo/SessionizeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/src/test/kotlin/xoxo/SessionizeTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/xoxo/XmlElementTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/src/test/kotlin/xoxo/XmlElementTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/xoxo/XmlNodeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/src/test/kotlin/xoxo/XmlNodeTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/xoxo/XmlTextTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/src/test/kotlin/xoxo/XmlTextTest.kt -------------------------------------------------------------------------------- /test-fixtures/comments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/test-fixtures/comments.xml -------------------------------------------------------------------------------- /test-fixtures/sessionize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/xoxo/HEAD/test-fixtures/sessionize.xml --------------------------------------------------------------------------------