From 57fd1d859dad486b37b4b4c4ccda5c7f8fa1b356 Mon Sep 17 00:00:00 2001 From: Jeff Ching Date: Wed, 23 Oct 2019 09:53:35 -0700 Subject: [PATCH] docs: include HTTP Transport page in navigation, add support page (#854) * docs: include HTTP Transport page in navigation * docs: add support page * docs: fix casing, typo --- docs/_data/navigation.yml | 6 +++++- docs/http-transport.md | 2 +- docs/support.md | 45 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+), 2 deletions(-) create mode 100644 docs/support.md diff --git a/docs/_data/navigation.yml b/docs/_data/navigation.yml index f2d85a0d1..827f1ce91 100644 --- a/docs/_data/navigation.yml +++ b/docs/_data/navigation.yml @@ -9,9 +9,13 @@ toc: url: android.html - page: Google App Engine url: google-app-engine.html + - page: HTTP Transport + url: http-transport.html - page: JSON url: json.html - page: Exponential Backoff url: exponential-backoff.html - page: Unit Testing - url: unit-testing.html \ No newline at end of file + url: unit-testing.html + - page: Support + url: support.html \ No newline at end of file diff --git a/docs/http-transport.md b/docs/http-transport.md index c07e4eb97..0167db4ac 100644 --- a/docs/http-transport.md +++ b/docs/http-transport.md @@ -125,7 +125,7 @@ HttpRequestFactory requestFactory = transport.createRequestFactory(new MyInitial [http-url-connection]: http://docs.oracle.com/javase/7/docs/api/java/net/HttpURLConnection.html [apache-http-transport]: https://googleapis.dev/java/google-http-client/latest/index.html?com/google/api/client/http/apache/v2/ApacheHttpTransport.html [apache-http-client]: http://hc.apache.org/httpcomponents-client-ga/index.html -[url=fetch-transport]: https://googleapis.dev/java/google-http-client/latest/index.html?com/google/api/client/extensions/appengine/http/UrlFetchTransport.html +[url-fetch-transport]: https://googleapis.dev/java/google-http-client/latest/index.html?com/google/api/client/extensions/appengine/http/UrlFetchTransport.html [url-fetch]: https://cloud.google.com/appengine/docs/java/javadoc/com/google/appengine/api/urlfetch/package-summary [logger]: https://docs.oracle.com/javase/7/docs/api/java/util/logging/Logger.html [logging-properties]: https://github.com/google/google-http-java-client/blob/master/samples/googleplus-simple-cmdline-sample/logging.properties diff --git a/docs/support.md b/docs/support.md new file mode 100644 index 000000000..1f20a477c --- /dev/null +++ b/docs/support.md @@ -0,0 +1,45 @@ +--- +title: Support +--- + +# Support + +## The Google HTTP Client Library for Java Community + +### Ask development questions + +Ask questions on StackOverflow: + +* Use the [google-api][so-google-api] tag, and optionally [java][so-java] or [android][so-android] + or [java google-app-engine][so-java-gae]. +* You can also use the [google-http-java-client][so-http-client] tag. +* For tips on asking StackOverflow questions, see [How to Ask][so-how-to-ask]. + +**Note:** Please do not email the project contributors directly. + +### File feature requests and defects + +You can suggest features and report issues on our public [Issue Tracker][issues]. This is a great +place for the community to discuss and track implementations of features or resolution of bug fixes, +as well as share workarounds and patches. + +If you find a bug: + +* View [known bugs][issues], and if a known bug corresponds to the issue you are seeing, "star" it + or comment on it. +* If the issue you are seeing has not yet been reported, [file a bug report][new-issue]. + +### Contribute + +This is an [open-source][http-client] library, and [contributions][contributions] are welcome. + +[so-google-api]: http://stackoverflow.com/questions/tagged/google-api +[so-java]: http://stackoverflow.com/questions/tagged/google-api+java +[so-android]: http://stackoverflow.com/questions/tagged/google-api+android +[so-java-gae]: http://stackoverflow.com/questions/tagged/google-api+java+google-app-engine +[so-http-client]: http://stackoverflow.com/questions/tagged/google-http-java-client +[so-how-to-ask]: http://stackoverflow.com/questions/ask +[issues]: https://github.com/googleapis/google-http-java-client/issues +[new-issue]: https://github.com/google/google-http-java-client/issues/new +[http-client]: https://github.com/googleapis/google-http-java-client +[contributions]: https://github.com/googleapis/google-http-java-client/blob/master/CONTRIBUTING.md