Posted to tcl by gwlester at Fri Jun 16 20:27:00 GMT 2017view raw
- ##
 - ## What would be a value of srvurl that would give the "Illegal encoding character usage..."
 - ##  error?
 - ##
 - 	# Check for validity according to RFC 3986, Appendix A
 - 	set validityRE {(?xi)
 - 	    ^
 - 	    # Path part (already must start with / character)
 - 	    (?:	      [-\w.~!$&'()*+,;=:@/]  | %[0-9a-f][0-9a-f] )*
 - 	    # Query part (optional, permits ? characters)
 - 	    (?: \? (?: [-\w.~!$&'()*+,;=:@/?] | %[0-9a-f][0-9a-f] )* )?
 - 	    $
 - 	}
 - 	if {$state(-strict) && ![regexp -- $validityRE $srvurl]} {
 - 	    unset $token
 - 	    # Provide a better error message in this error case
 - 	    if {[regexp {(?i)%(?![0-9a-f][0-9a-f])..} $srvurl bad]} {
 - 		return -code error \
 - 		    "Illegal encoding character usage \"$bad\" in URL path"
 - 	    }
 - 	    return -code error "Illegal characters in URL path"
 - 	}
 -