README.chromium 812 B

12345678910111213141516171819202122
  1. Name: URI Template Parser
  2. Short Name: uri_template
  3. URL: https://github.com/google/google-api-cpp-client/
  4. Revision: d0bbe169d81a50936ec5fcea4e6dbcfb97303f13
  5. Date: August 6, 2018
  6. License: Apache 2.0
  7. License File: LICENSE
  8. Description:
  9. This code is derived from the URI template parsing code in the Google API C++
  10. Client.
  11. Local Modifications:
  12. There are significant adaptations:
  13. - Improved conformance to RFC6570 for Level 3 templates (most notably, multiple
  14. variables per expression are now supported).
  15. - Removed Level 4 template parsing capabilities.
  16. - Replaced callback mechanism for populating variables with a map.
  17. - Altered meaning and type of return value for Expand method.
  18. - Added detection of malformed URI templates.
  19. - Removed some minor dependencies through refactoring.
  20. - Significant changes to tests.