Data update

This commit is contained in:
Ingy döt Net 2026-04-30 12:34:36 -04:00
parent 4bb20c9b71
commit cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions

View file

@ -0,0 +1,22 @@
Rebol [
title: "Rosetta code: URL decoding"
file: %URL_decoding.r3
url: https://rosettacode.org/wiki/URL_decoding
]
foreach [src expected] [
"http%3A%2F%2Ffoo%20bar%2F"
"http://foo bar/"
"google.com/search?q=%60Abdu%27l-Bah%C3%A1"
"google.com/search?q=`Abdu'l-Bahá"
"%25%32%35"
"%25"
][
probe src
probe url: dehex src
print either expected = url ["OK"]["FAILED!"]
print ""
]