Background: I'm creating a hierarchical geographic directory. The geo databases I'm using has fields such that I can create a URL like this: /ISO_country/1st_admin_division/2nd_admin_division/place_name/zipcode/
ISO_country, place_name, and zipcode are guaranteed to have data. But 1st and 2nd admin division may or may not have data.
In US I have a /US/New-York/Nassau-County/Hicksville/51212/ But in South Africa I have /ZA/[blank]/[blank]/Pretoria/0030/
If I go with the (ugly) /ZA///Pretoria/0030/ is it a valid URL? What about the also ugly /ZA/-/-/Pretoria/0030/?
Do any major browsers get "smart" and try to eliminate things like this?