aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMURLBuilder.m
Commit message (Collapse)AuthorAge
* Project modernization.Gravatar Thomas Van Lenten2018-11-15
| | | | | | | | | - Create shared scheme to use. - Let Xcode (9.4.1) update the project files and add some warnings. - Remove -finalize (GC days are gone) - Add some more pragmas to compile cleanly. - The iOS targets had a mix of 7.0 and 8.0 min versions, so make them all 8.
* First cut at pruning things/updating things.Gravatar dmaclach2016-10-07
| | | | | | | | | | | | | | | Remove a bunch of code that Google stopped using/maintaining rather than trying to update it it. Some would be hard to update, some actually has system provided replacements; others are patterns that just don't seem as common now. Prune out the code related to macOS <= 10.5, start pruning some of the really old iOS support also. Get the projects mostly limping again with modern Xcodes so tests can be run. If someone ends up on this commit via history for something they still find as useful, feel free to do a pull request to bring the snippet of code back to life and update it for current SDKs.
* Add pointers to newer classes provided by the OSGravatar Thomas Van Lenten2015-09-08
|
* Fix integer formatting compiler warning when building for 64 bit architecture.Gravatar gtm.daemon2014-01-29
| | | | | The reason is NSInteger is defined as long for 64bit. DELTA=1 (0 added, 0 deleted, 1 changed)
* Adding integerValueForParameter to GTMURLBuilder.Gravatar gtm.daemon2014-01-17
| | | | | Makes it symmetric with setIntegerValue. DELTA=8 (8 added, 0 deleted, 0 changed)
* Implement hash function for GTMURLBuilderGravatar gtm.daemon2013-10-03
| | | DELTA=4 (4 added, 0 deleted, 0 changed)
* Fix bug in GTMURLBuilder that doesn't handle url path with escaped ↵Gravatar gtm.daemon2013-05-06
| | | | | characters. E.g. http://www.google.com/path%3AA/path%3AB would become http://www.google.com/path%3AA/path%3AB/path:A/path:B DELTA=20 (14 added, 3 deleted, 3 changed)
* [Author: horia]Gravatar gtm.daemon2012-07-25
| | | | | | | removing inconsistent and confusing URLWithString method R=dmaclach APPROVED=dmaclach DELTA=26 (0 added, 21 deleted, 5 changed)
* [Author: msenesi]Gravatar gtm.daemon2012-03-01
Flexible builder for URLs. R=altse,dmaclach,thomasvl APPROVED=dmaclach