You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pre_go18.go 988B

1234567891011121314151617181920212223242526272829
  1. // +build !go1.8
  2. // Copyright 2015 go-swagger maintainers
  3. //
  4. // Licensed under the Apache License, Version 2.0 (the "License");
  5. // you may not use this file except in compliance with the License.
  6. // You may obtain a copy of the License at
  7. //
  8. // http://www.apache.org/licenses/LICENSE-2.0
  9. //
  10. // Unless required by applicable law or agreed to in writing, software
  11. // distributed under the License is distributed on an "AS IS" BASIS,
  12. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. // See the License for the specific language governing permissions and
  14. // limitations under the License.
  15. package internal
  16. import "net/url"
  17. // PathUnescape provides url.PathUnescape(), with seamless
  18. // go version support for pre-go1.8
  19. //
  20. // TODO: this function is currently defined in go-openapi/swag,
  21. // but unexported. We might chose to export it, or simple phase
  22. // out pre-go1.8 support.
  23. func PathUnescape(path string) (string, error) {
  24. return url.QueryUnescape(path)
  25. }