{"id":13522386,"url":"https://github.com/josheby/yourls-additional-charsets","last_synced_at":"2025-03-31T22:31:15.678Z","repository":{"id":217023553,"uuid":"69918156","full_name":"josheby/yourls-additional-charsets","owner":"josheby","description":"Additional Charsets for YOURLS","archived":false,"fork":false,"pushed_at":"2016-10-04T00:53:11.000Z","size":15,"stargazers_count":2,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-11-02T06:32:26.980Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/josheby.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":"2016-10-03T23:03:48.000Z","updated_at":"2022-02-27T08:54:40.000Z","dependencies_parsed_at":"2024-02-02T04:00:30.203Z","dependency_job_id":null,"html_url":"https://github.com/josheby/yourls-additional-charsets","commit_stats":null,"previous_names":["josheby/yourls-additional-charsets"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josheby%2Fyourls-additional-charsets","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josheby%2Fyourls-additional-charsets/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josheby%2Fyourls-additional-charsets/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/josheby%2Fyourls-additional-charsets/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/josheby","download_url":"https://codeload.github.com/josheby/yourls-additional-charsets/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246552420,"owners_count":20795816,"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":[],"created_at":"2024-08-01T06:00:46.502Z","updated_at":"2025-03-31T22:31:15.673Z","avatar_url":"https://github.com/josheby.png","language":"PHP","funding_links":[],"categories":["Plugins"],"sub_categories":["A"],"readme":"Additional Charsets for YOURLS\n====================\n\nPlugin for [YOURLS](http://yourls.org) `1.7`. \n\nDescription\n-----------\nThis plugin adds additional charset options that can be selected from config.php by setting the\nYOURLS_URL_CONVERT constant to different values.  It allow allow you to provide a string as the\nconstant value that will be used as the charset.\n\nInstallation\n------------\n1. In `/user/plugins`, create a new folder named `advanced-reserved-urls`.\n2. Drop these files in that directory.\n3. Go to the Plugins administration page ( *eg* `http://sho.rt/admin/plugins.php` ) and activate the plugin.\n4. Change YOURLS_URL_CONVERT value in config.php to select the charset you want.\n\nAdditional Charset Options\n--------------------------\n    case 10:\n        // Numbers Only\n        $charset = '0123456789';\n        \n    case 26:\n        // Letters Only\n        $charset = 'abcdefghijklmnopqrstuvwxyz';\n        \n    case 27:\n        // No Vowels and No Leetspeak Vowels\n        $charset = '256789bcdfghjklmnpqrstvwxyz';\n        \n    case 31:\n        // No Vowels\n        $charset = '0123456789bcdfghjklmnpqrstvwxyz';\n\n    case 38:\n        // Add \"_\" and \"-\"\n        $charset = '0123456789abcdefghijklmnopqrstuvwxyz-_';\n        \n    case 48:\n        // No Vowels and No Leetspeak Vowels (Mixed Case)\n        $charset = '256789bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ';\n        \n    case 52:\n        // No Vowels (Mixed Case)\n        $charset = '0123456789bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ';\n        \n    case 64:\n        // Add \"_\" and \"-\" (Mixed Case)\n        $charset = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_';\n\nCustom Charset\n--------------\nDo you want yo use your own custom charset? Simply supply a string value to the YOURLS_URL_CONVERT constant.\nKeep in mind that some characters are considerd reserved for URL use so this should be done with caution.\n\nTo quote section 2.3 of RFC 3986:  (http://www.ietf.org/rfc/rfc3986.txt)\n\"Characters that are allowed in a URI but do not have a reserved purpose are called unreserved.\nThese include uppercase and lowercase letters, decimal digits, hyphen, period, underscore, and tilde.\"\n\nLicense\n-------\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see \u003chttp://www.gnu.org/licenses/\u003e.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjosheby%2Fyourls-additional-charsets","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjosheby%2Fyourls-additional-charsets","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjosheby%2Fyourls-additional-charsets/lists"}