{"id":24349219,"url":"https://github.com/abappm/abap-url","last_synced_at":"2025-07-14T09:40:59.948Z","repository":{"id":271570967,"uuid":"905584544","full_name":"abapPM/ABAP-URL","owner":"abapPM","description":"URL Object for ABAP","archived":false,"fork":false,"pushed_at":"2025-06-21T12:55:35.000Z","size":96,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-08T17:08:38.005Z","etag":null,"topics":["abap","apm","sap","url"],"latest_commit_sha":null,"homepage":"https://abappm.com","language":"ABAP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abapPM.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","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},"funding":{"github":"mbtools"}},"created_at":"2024-12-19T06:02:02.000Z","updated_at":"2025-06-21T12:55:39.000Z","dependencies_parsed_at":"2025-01-08T15:55:56.008Z","dependency_job_id":"4a299645-8abe-4b49-b4af-311ae00c8f5e","html_url":"https://github.com/abapPM/ABAP-URL","commit_stats":null,"previous_names":["abappm/abap-url"],"tags_count":0,"template":false,"template_full_name":"abapPM/Template-for-ABAP","purl":"pkg:github/abapPM/ABAP-URL","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abapPM%2FABAP-URL","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abapPM%2FABAP-URL/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abapPM%2FABAP-URL/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abapPM%2FABAP-URL/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abapPM","download_url":"https://codeload.github.com/abapPM/ABAP-URL/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abapPM%2FABAP-URL/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265271540,"owners_count":23738267,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["abap","apm","sap","url"],"created_at":"2025-01-18T12:35:36.888Z","updated_at":"2025-07-14T09:40:59.708Z","avatar_url":"https://github.com/abapPM.png","language":"ABAP","funding_links":["https://github.com/sponsors/mbtools"],"categories":[],"sub_categories":[],"readme":"![Version](https://img.shields.io/endpoint?url=https://shield.abappm.com/github/abapPM/ABAP-URL/src/zcl_url.clas.abap/c_version\u0026label=Version\u0026color=blue)\n\n[![License](https://img.shields.io/github/license/abapPM/ABAP-URL?label=License\u0026color=success)](https://github.com/abapPM/ABAP-URL/blob/main/LICENSE)\n[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg?color=success)](https://github.com/abapPM/.github/blob/main/CODE_OF_CONDUCT.md)\n[![REUSE Status](https://api.reuse.software/badge/github.com/abapPM/ABAP-URL)](https://api.reuse.software/info/github.com/abapPM/ABAP-URL)\n\n# URL Object\n\nFull implementation of WHATWG [URL Standard](https://url.spec.whatwg.org/).\n\nNO WARRANTIES, [MIT License](https://github.com/abapPM/ABAP-URL/blob/main/LICENSE)\n\n```\n┌────────┬──┬──────────┬──────────┬─────────────────┬──────┬──────────┬─┬──────────────┬──────────┐\n\" https:  //    user   :   pass   @ sub.example.com : 8080   /p/a/t/h  ?  query=string     #hash  \"\n│ scheme │  │ username │ password │    host         │ port │   path   │ |    query     │ fragment │\n├────────┴──┴──────────┴──────────┴─────────────────┴──────┴──────────┴─┴──────────────┴──────────┤\n│                                            url                                                  │\n└─────────────────────────────────────────────────────────────────────────────────────────────────┘\n(All spaces in the \"\" line should be ignored. They are purely for formatting.)\n```\n\n## Usage\n\nParse a URL into it's component:\n\n```abap\nDATA(url) = zcl_url=\u003eparse( 'https://example.com/path?query#fragment' ).\n\n\" url-\u003ecomponents-scheme   = 'https'\n\" url-\u003ecomponents-host     = 'example.com'\n\" url-\u003ecomponents-path     = '/path'\n\" url-\u003ecomponents-query    = 'query'\n\" url-\u003ecomponents-fragment = 'fragment'\n```\n\nSerialize a URL from components:\n\n```abap\nDATA(components) = VALUE zcl_url=\u003ety_url_components(\n  scheme   = 'https'\n  username = 'user'\n  password = 'pass'\n  host     = 'example.com'\n  port     = '8080'\n  path     = '/path/to/resource'\n  query    = 'key=value'\n  fragment = 'section' ).\n\nDATA(url_string) = zcl_url=\u003eserialize( components ).\n\n\" url_string = 'https://user:pass@example.com:8080/path/to/resource?key=value#section'\n```\n\n## Prerequisites\n\nSAP Basis 7.50 or higher\n\n## Limitations\n\nThere's no support for punycode (should be a separate package).\n\n## Installation\n\nInstall `url` as a global module in your system using [apm](https://abappm.com).\n\nor\n\nSpecify the `url` module as a dependency in your project and import it to your namespace using [apm](https://abappm.com).\n\n## Contributions\n\nAll contributions are welcome! Read our [Contribution Guidelines](https://github.com/abapPM/ABAP-URL/blob/main/CONTRIBUTING.md), fork this repo, and create a pull request.\n\nYou can install the developer version of ABAP URL using [abapGit](https://github.com/abapGit/abapGit) by creating a new online repository for `https://github.com/abapPM/ABAP-URL`.\n\nRecommended SAP package: `$URL`\n\n## About\n\nMade with ❤ in Canada\n\nCopyright 2025 apm.to Inc. \u003chttps://apm.to\u003e\n\nFollow [@marcf.be](https://bsky.app/profile/marcf.be) on Blueksy and [@marcfbe](https://linkedin.com/in/marcfbe) or LinkedIn\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabappm%2Fabap-url","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabappm%2Fabap-url","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabappm%2Fabap-url/lists"}