{"id":20079612,"url":"https://github.com/transpect/svn-extension","last_synced_at":"2026-06-04T22:31:37.917Z","repository":{"id":93859602,"uuid":"116021619","full_name":"transpect/svn-extension","owner":"transpect","description":"XML Calabash extensions to implement Subversion with SVNKit as XProc steps","archived":false,"fork":false,"pushed_at":"2022-02-01T14:57:54.000Z","size":14973,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-02T13:17:20.357Z","etag":null,"topics":["subversion","svn","svnkit","xproc"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/transpect.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-01-02T14:06:53.000Z","updated_at":"2022-02-01T13:59:10.000Z","dependencies_parsed_at":"2023-03-09T20:30:28.699Z","dependency_job_id":null,"html_url":"https://github.com/transpect/svn-extension","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/transpect/svn-extension","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transpect%2Fsvn-extension","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transpect%2Fsvn-extension/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transpect%2Fsvn-extension/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transpect%2Fsvn-extension/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/transpect","download_url":"https://codeload.github.com/transpect/svn-extension/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transpect%2Fsvn-extension/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33923173,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-04T02:00:06.755Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["subversion","svn","svnkit","xproc"],"created_at":"2024-11-13T15:23:44.221Z","updated_at":"2026-06-04T22:31:37.848Z","avatar_url":"https://github.com/transpect.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# svn-extension\nXML Calabash extensions to implement Subversion with [SVNKit](https://svnkit.com) as XProc steps.\n\n## svn:info\n\nProvides general information about a repository as `c:param-set`.\n\n```xml\n\u003csvn:info xmlns:svn=\"http://transpect.io/svn\"\u003e\n  \u003cp:with-option name=\"username\" select=\"'user'\"/\u003e\n  \u003cp:with-option name=\"password\" select=\"'pass'\"/\u003e\n  \u003cp:with-option name=\"repo\"     select=\"'https://subversion.le-tex.de/common/'\"/\u003e\n\u003c/svn:info\u003e\n```\n\nThis is the expected output:\n\n```xml\n\u003cc:param-set xmlns:c=\"http://www.w3.org/ns/xproc-step\"\u003e\n  \u003cc:param name=\"date\" value=\"Thu Mar 08 21:14:24 CET 2018\"/\u003e\n  \u003cc:param name=\"path\" value=\"\"/\u003e\n  \u003cc:param name=\"rev\" value=\"6610\"/\u003e\n  \u003cc:param name=\"author\" value=\"mkraetke\"/\u003e\n  \u003cc:param name=\"root-url\" value=\"https://subversion.le-tex.de/common\"/\u003e\n  \u003cc:param name=\"uuid\" value=\"d851d441-0421-4803-b127-45cb279a3ef2\"/\u003e\n  \u003cc:param name=\"nodekind\" value=\"dir\"/\u003e\n  \u003cc:param name=\"url\" value=\"https://subversion.le-tex.de/common\"/\u003e\n\u003c/c:param-set\u003e\n```\n\n## svn:mkdir\n\nCreates a directory in a remote repository or working copy like `svn mkdir`.\nThe `dir` option expects a single path or a whitespace-separated list of paths.\n\n```xml\n\u003csvn:mkdir xmlns:svn=\"http://transpect.io/svn\"\u003e\n  \u003cp:with-option name=\"username\" select=\"'user'\"/\u003e\n  \u003cp:with-option name=\"password\" select=\"'pass'\"/\u003e\n  \u003cp:with-option name=\"repo\"     select=\"'https://subversion.le-tex.de/common'\"/\u003e\n  \u003cp:with-option name=\"dir\"      select=\"'my-new-dir'\"/\u003e\n  \u003cp:with-option name=\"parents\"  select=\"'yes'\"/\u003e\n  \u003cp:with-option name=\"message\"  select=\"'my commit message'\"/\u003e\n\u003c/svn:mkdir\u003e\n```\nThis results in this output:\n\n```xml\n\u003cc:param-set xmlns:c=\"http://www.w3.org/ns/xproc-step\"\n             xml:base=\"https://subversion.le-tex.de/common\"\u003e\n  \u003cc:param name=\"mkdir\" value=\"my-new-dir\"/\u003e\n\u003c/c:param-set\u003e\n```\n\n## svn:copy\n\nCopies a whitespace-separated list of files\nto another location in a working copy or a remote repository.\n\n```xml\n\u003csvn:copy xmlns:svn=\"http://transpect.io/svn\"\u003e\n  \u003cp:with-option name=\"username\" select=\"'user'\"/\u003e\n  \u003cp:with-option name=\"password\" select=\"'pass'\"/\u003e\n  \u003cp:with-option name=\"repo\"     select=\"'https://subversion.le-tex.de/common'\"/\u003e\n  \u003cp:with-option name=\"path\"     select=\"'path-to/source.xml'\"/\u003e\n  \u003cp:with-option name=\"target\"   select=\"'path-to/target.xml'\"/\u003e\n  \u003cp:with-option name=\"message\"  select=\"'my commit message'\"/\u003e\n\u003c/svn:copy\u003e\n```\n\nOutput:\n\n```xml\n\u003cc:param-set xmlns:c=\"http://www.w3.org/ns/xproc-step\"\u003e\n  \u003cc:param name=\"date\" value=\"Mon Mar 16 21:39:26 CET 2020\"/\u003e\n  \u003cc:param name=\"all\" value=\"r2353 by 'mkraetke' at Mon Mar 16 21:39:26 CET 2020\"/\u003e\n  \u003cc:param name=\"author\" value=\"mkraetke\"/\u003e\n  \u003cc:param name=\"revision\" value=\"2353\"/\u003e\n\u003c/c:param-set\u003e\n```\n\n## svn:move\n\nMoves a whitespace-separatedlist of filesv to another\nlocation in a working copy or a remote repository.\n\n```xml\n\u003csvn:move xmlns:svn=\"http://transpect.io/svn\"\u003e\n  \u003cp:with-option name=\"username\" select=\"'user'\"/\u003e\n  \u003cp:with-option name=\"password\" select=\"'pass'\"/\u003e\n  \u003cp:with-option name=\"repo\"     select=\"'https://subversion.le-tex.de/common'\"/\u003e\n  \u003cp:with-option name=\"path\"     select=\"'path-to/source.xml'\"/\u003e\n  \u003cp:with-option name=\"target\"   select=\"'path-to/target.xml'\"/\u003e\n  \u003cp:with-option name=\"message\"  select=\"'my commit message'\"/\u003e\n\u003c/svn:move\u003e\n```\n\nOutput:\n\n```xml\n\u003cc:param-set xmlns:c=\"http://www.w3.org/ns/xproc-step\"\u003e\n  \u003cc:param name=\"date\" value=\"Mon Mar 16 21:39:26 CET 2020\"/\u003e\n  \u003cc:param name=\"all\" value=\"r2353 by 'mkraetke' at Mon Mar 16 21:39:26 CET 2020\"/\u003e\n  \u003cc:param name=\"author\" value=\"mkraetke\"/\u003e\n  \u003cc:param name=\"revision\" value=\"2353\"/\u003e\n\u003c/c:param-set\u003e\n```\n\n## svn:delete\n\nDeletes one or multiple paths in a working directory or remote repository. The `path`\noption expects a whitespace-separated list of arguments.\n\n```xml\n\u003csvn:delete xmlns:svn=\"http://transpect.io/svn\"\u003e\n  \u003cp:with-option name=\"username\" select=\"'user'\"/\u003e\n  \u003cp:with-option name=\"password\" select=\"'pass'\"/\u003e\n  \u003cp:with-option name=\"repo\"     select=\"'https://subversion.le-tex.de/common'\"/\u003e\n  \u003cp:with-option name=\"path\"     select=\"'path-to/file-to-be-deleted.xml'\"/\u003e\n  \u003cp:with-option name=\"force\"    select=\"'no'\"/\u003e\n  \u003cp:with-option name=\"message\"  select=\"'my commit message'\"/\u003e\n\u003c/svn:delete\u003e\n```\n\nThis report is generated on success:\n\n```xml\n\u003cc:param-set xmlns:c=\"http://www.w3.org/ns/xproc-step\"\n             xml:base=\"https://subversion.le-tex.de/common\"\u003e\n  \u003cc:param name=\"delete\" value=\"path-to/file-to-be-deleted.xml\"/\u003e\n\u003c/c:param-set\u003e\n```\n\n## svn:add\n\nAdd files to a working copy just like `svn add`.\n\n```xml\n\u003csvn:add xmlns:svn=\"http://transpect.io/svn\"\u003e\n  \u003cp:with-option name=\"username\" select=\"'user'\"/\u003e\n  \u003cp:with-option name=\"password\" select=\"'pass'\"/\u003e\n  \u003cp:with-option name=\"repo\"     select=\"'path-to-local-working-copy'\"/\u003e\n  \u003cp:with-option name=\"path\"     select=\"'MyFile.xml'\"/\u003e\n  \u003cp:with-option name=\"parents\"  select=\"'no'\"/\u003e\n\u003c/svn:add\u003e\n```\n\nA sample output of `svn:add` is shown below:\n\n```xml\n\u003cc:param-set xmlns:c=\"http://www.w3.org/ns/xproc-step\"\n             xml:base=\"file:/home/Martin/path-to-local-working-copy\"\u003e\n  \u003cc:param name=\"add\" value=\"MyFile.txt\"/\u003e\n\u003c/c:param-set\u003e\n```\n\n## svn:commit\n\nCommits one or more (whitespace-separated) paths and their children\nin a SVN working copy. Please note that modified SVN properties are\nnot committed (I'm currently not sure if it would be needed to expose\nthe SVN depth as option).\n\n```xml\n\u003csvn:commit xmlns:svn=\"http://transpect.io/svn\"\u003e\n  \u003cp:with-option name=\"username\" select=\"'user'\"/\u003e\n  \u003cp:with-option name=\"password\" select=\"'pass'\"/\u003e\n  \u003cp:with-option name=\"path\"     select=\"'path-to-be-commited'\"/\u003e\n  \u003cp:with-option name=\"message\"  select=\"'my commit message'\"/\u003e\n\u003c/svn:commit\u003e\n```\n\nThis is the expected output.\n\n```xml\n\u003cc:param-set xmlns:c=\"http://www.w3.org/ns/xproc-step\"\n             xml:base=\"file:/home/path-to-be-commited\"\u003e\n   \u003cc:param name=\"commit\" value=\"path-to-be-commited\"/\u003e\n\u003c/c:param-set\u003e\n```\n\n## svn:list\n\nList contents of a remote SVN repository or local working copy.\nWhen the `recursive` option is set to yes, subdirectories are recursively listed.\n\n```xml\n\u003csvn:list xmlns:svn=\"http://transpect.io/svn\"\u003e\n  \u003cp:with-option name=\"username\"  select=\"'user'\"/\u003e\n  \u003cp:with-option name=\"password\"  select=\"'pass'\"/\u003e\n  \u003cp:with-option name=\"repo\"      select=\"'https://subversion.le-tex.de/repo'\"/\u003e\n  \u003cp:with-option name=\"recursive\" select=\"'yes'\"/\u003e\n\u003c/svn:list\u003e\n```\n\nOutput:\n```xml\n\u003cc:files xmlns:c=\"http://www.w3.org/ns/xproc-step\"\n         xml:base=\"https://subversion.le-tex.de/repo\"\u003e\n  \u003cc:file name=\"myfile.xml\" author=\"mkraetke\" date=\"Sat Feb 14 12:11:22 CET 2015\"\n          revision=\"3181\" size=\"846\"/\u003e\n  \u003cc:directory name=\"mydir\" author=\"mkraetke\" date=\"Wed Feb 25 18:58:31 CET 2015\" \n               revision=\"3219\" size=\"0\"/\u003e\n\u003c/c:files\u003e\n```\n\n## svn:update\n\nPerforms a `svn update` on a whitespace-separated list of paths.\n\n```xml\n\u003csvn:update xmlns:svn=\"http://transpect.io/svn\"\u003e\n  \u003cp:with-option name=\"username\" select=\"'user'\"/\u003e\n  \u003cp:with-option name=\"password\" select=\"'pass'\"/\u003e\n  \u003cp:with-option name=\"path\"     select=\"'path1 path2'\"/\u003e\n  \u003cp:with-option name=\"revision\" select=\"'HEAD'\"/\u003e\n\u003c/svn:update\u003e\n```\n\nInformation about the updated revisions are exposed as `c:param-set`.\n\n```xml\n\u003cc:param-set xmlns:c=\"http://www.w3.org/ns/xproc-step\"\u003e\n  \u003cc:param name=\"path1\" value=\"27\"/\u003e\n  \u003cc:param name=\"path2\" value=\"152\"/\u003e\n\u003c/c:param-set\u003e\n```\n\n## svn:checkout\n\nCheckout a working copy of a SVN repository.\n\n```xml\n\u003csvn:checkout xmlns:svn=\"http://transpect.io/svn\"\u003e\n  \u003cp:with-option name=\"username\" select=\"'user'\"/\u003e\n  \u003cp:with-option name=\"password\" select=\"'pass'\"/\u003e\n  \u003cp:with-option name=\"path\"     select=\"'checkout-path'\"/\u003e\n  \u003cp:with-option name=\"repo\"     select=\"'https://subversion.le-tex.de/myrepo'\"/\u003e\n  \u003cp:with-option name=\"revision\" select=\"'HEAD'\"/\u003e\n\u003c/svn:checkout\u003e\n```\n\nOutput\n\n```xml\n\u003cc:param-set xmlns:c=\"http://www.w3.org/ns/xproc-step\"\u003e\n  \u003cc:param name=\"path\" value=\"checkout-path\"/\u003e\n  \u003cc:param name=\"repo\"\n           value=\"https://subversion.le-tex.de/myrepo\"/\u003e\n  \u003cc:param name=\"revision\" value=\"6634\"/\u003e\n\u003c/c:param-set\u003e\n```\n\n## svn:propset\n\nSet a property in the current working copy.\n```xml\n\u003csvn:propset xmlns:svn=\"http://transpect.io/svn\"\u003e\n  \u003cp:input port=\"source\"\u003e\n    \u003cp:inline\u003e\n      \u003csvn:property name=\"letex:test\"\u003e\n        addedViaSvnKit\n      \u003c/svn:property\u003e\n    \u003c/p:inline\u003e\n  \u003c/p:input\u003e\n  \u003cp:with-option name=\"username\" select=\"'user'\"/\u003e\n  \u003cp:with-option name=\"password\" select=\"'pass'\"/\u003e\n  \u003cp:with-option name=\"path\"     select=\"'../transpect'\"/\u003e\n\u003c/svn:checkout\u003e\n```\n\nOutput\n\n```xml\n\u003cc:param-set xmlns:c=\"http://www.w3.org/ns/xproc-step\"\u003e\n  \u003cc:param name=\"letex:test\" value=\"addedViaSvnKit\"/\u003e\n\u003c/c:param-set\u003e\n\n```\n\n## svn:propget\n\nGet the value of a property in the working copy or the remote repository\n```xml\n\u003csvn:propget xmlns:svn=\"http://transpect.io/svn\"\u003e\n  \u003cp:with-option name=\"username\" select=\"'user'\"/\u003e\n  \u003cp:with-option name=\"password\" select=\"'pass'\"/\u003e\n  \u003cp:with-option name=\"repo\"     select=\"'../transpect'\"/\u003e\n  \u003cp:with-option name=\"property\" select=\"'svn:externals'\"/\u003e\n  \u003cp:with-option name=\"revision\" select=\"'HEAD'\"/\u003e\n\u003c/svn:propget\u003e\n```\n\nOutput\n\n```xml\n\u003cc:param-set xmlns:c=\"http://www.w3.org/ns/xproc-step\"\u003e\n  \u003cc:param name=\"repo\" value=\"C:/cygwin64/home/Martin/transpect/trunk\"/\u003e\n  \u003cc:param name=\"property\" value=\"svn:externals\"/\u003e\n  \u003cc:param name=\"value\"    value=\"cascade -r 82 https://github.com/transpect/cascade/trunk\u0026#xD;\u0026#xA;fontmaps -r 21 https://github.com/transpect/fontmaps/trunk\u0026#xD;\u0026#xA;cascade\"/\u003e\n  \u003cc:param name=\"revision\" value=\"HEAD\"/\u003e\n\u003c/c:param-set\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftranspect%2Fsvn-extension","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftranspect%2Fsvn-extension","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftranspect%2Fsvn-extension/lists"}