Skip to content

Commit 0514155

Browse files
authored
Fix urls from GoogleCloudPlatform org to googleapis org (#3793)
* Fix urls from GoogleCloudPlatform org to googleapis org * Fix typo
1 parent 0ca18d2 commit 0514155

7 files changed

Lines changed: 24 additions & 24 deletions

File tree

google-cloud-contrib/google-cloud-logging-logback/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Logback appender `com.google.cloud.logging.logback.LoggingAppender` for
66

77
This library allows you to use [Logback](https://logback.qos.ch/) configuration and the [Slf4j](https://www.slf4j.org/) interface to log via Google Cloud logging.
88

9-
- [Homepage](https://googlecloudplatform.github.io/google-cloud-java/)
10-
- [API Documentation](https://googlecloudplatform.github.io/google-cloud-java/google-cloud-clients/apidocs/index.html?com/google/cloud/logging/logback/LoggingAppender.html)
9+
- [Homepage](https://googleapis.github.io/google-cloud-java/)
10+
- [API Documentation](https://googleapis.github.io/google-cloud-java/google-cloud-clients/apidocs/index.html?com/google/cloud/logging/logback/LoggingAppender.html)
1111

1212
> Note: This client is a work-in-progress, and may occasionally
1313
> make backwards-incompatible changes.
@@ -85,15 +85,15 @@ public class TestLogger {
8585
Authentication
8686
--------------
8787

88-
See the [Authentication](https://github.com/GoogleCloudPlatform/google-cloud-java#authentication)
88+
See the [Authentication](https://github.com/googleapis/google-cloud-java#authentication)
8989
section in the base directory's README.
9090

9191

9292
Limitations
9393
-----------
9494

9595
This library is usable, but not yet complete.
96-
Open issues [here](https://github.com/GoogleCloudPlatform/google-cloud-java/issues?q=is%3Aissue+is%3Aopen+label%3A%22logging-logback%22).
96+
Open issues [here](https://github.com/googleapis/google-cloud-java/issues?q=is%3Aissue+is%3Aopen+label%3A%22logging-logback%22).
9797

9898

9999
Java Versions
@@ -116,7 +116,7 @@ Contributing
116116
Contributions to this library are always welcome and highly encouraged.
117117

118118
See `google-cloud`'s [CONTRIBUTING] documentation and the
119-
[shared documentation](https://github.com/GoogleCloudPlatform/gcloud-common/blob/master/contributing/readme.md#how-to-contribute-to-gcloud)
119+
[shared documentation](https://github.com/googleapis/google-cloud-common/blob/master/contributing/readme.md#how-to-contribute-to-gcloud)
120120
for more information on how to get started.
121121

122122
Please note that this project is released with a Contributor Code of Conduct.
@@ -128,10 +128,10 @@ License
128128
Apache 2.0 - See [LICENSE] for more information.
129129

130130

131-
[CONTRIBUTING]:https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/CONTRIBUTING.md
132-
[code-of-conduct]:https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/CODE_OF_CONDUCT.md#contributor-code-of-conduct
133-
[LICENSE]: https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/LICENSE
134-
[TESTING]: https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-storage
131+
[CONTRIBUTING]:https://github.com/googleapis/google-cloud-java/blob/master/CONTRIBUTING.md
132+
[code-of-conduct]:https://github.com/googleapis/google-cloud-java/blob/master/CODE_OF_CONDUCT.md#contributor-code-of-conduct
133+
[LICENSE]: https://github.com/googleapis/google-cloud-java/blob/master/LICENSE
134+
[TESTING]: https://github.com/googleapis/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-storage
135135
[cloud-platform]: https://cloud.google.com/
136136

137137
[cloud-logging]: https://cloud.google.com/logging/

google-cloud-contrib/google-cloud-logging-logback/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<version>0.66.1-alpha-SNAPSHOT</version><!-- {x-version-update:google-cloud-logging-logback:current} -->
99
<packaging>jar</packaging>
1010
<name>Google Cloud Logging Logback Appender</name>
11-
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback</url>
11+
<url>https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-contrib/google-cloud-logging-logback</url>
1212
<description>
1313
Logback support for Google Cloud Logging
1414
</description>

google-cloud-logging/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ Example Application
3737
[`LoggingExample`](../../google-cloud-examples/src/main/java/com/google/cloud/examples/logging/LoggingExample.java)
3838
is a simple command line interface that provides some of Stackdriver Logging's functionality. Read
3939
more about using the application on the
40-
[`LoggingExample` docs page](https://googlecloudplatform.github.io/google-cloud-java/apidocs/?com/google/cloud/examples/logging/LoggingExample.html).
40+
[`LoggingExample` docs page](https://googleapis.github.io/google-cloud-java/apidocs/?com/google/cloud/examples/logging/LoggingExample.html).
4141

4242
Authentication
4343
--------------
4444

45-
See the [Authentication](https://github.com/GoogleCloudPlatform/google-cloud-java#authentication) section in the base directory's README.
45+
See the [Authentication](https://github.com/googleapis/google-cloud-java#authentication) section in the base directory's README.
4646

4747
About Stackdriver Logging
4848
--------------------------
@@ -93,7 +93,7 @@ try(Logging logging = options.getService()) {
9393
```
9494

9595
For other authentication options, see the
96-
[Authentication](https://github.com/GoogleCloudPlatform/google-cloud-java#authentication) page.
96+
[Authentication](https://github.com/googleapis/google-cloud-java#authentication) page.
9797

9898
#### Creating a metric
9999
With Logging you can create logs-based metrics. Logs-based metrics allow to keep track of the number
@@ -208,7 +208,7 @@ Contributing
208208

209209
Contributions to this library are always welcome and highly encouraged.
210210

211-
See `google-cloud`'s [CONTRIBUTING] documentation and the [shared documentation](https://github.com/GoogleCloudPlatform/gcloud-common/blob/master/contributing/readme.md#how-to-contribute-to-gcloud) for more information on how to get started.
211+
See `google-cloud`'s [CONTRIBUTING] documentation and the [shared documentation](https://github.com/googleapis/google-cloud-common/blob/master/contributing/readme.md#how-to-contribute-to-gcloud) for more information on how to get started.
212212

213213
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. See [Code of Conduct][code-of-conduct] for more information.
214214

@@ -218,13 +218,13 @@ License
218218
Apache 2.0 - See [LICENSE] for more information.
219219

220220

221-
[CONTRIBUTING]:https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/CONTRIBUTING.md
222-
[code-of-conduct]:https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/CODE_OF_CONDUCT.md#contributor-code-of-conduct
223-
[LICENSE]: https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/LICENSE
224-
[TESTING]: https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-logging
221+
[CONTRIBUTING]:https://github.com/googleapis/google-cloud-java/blob/master/CONTRIBUTING.md
222+
[code-of-conduct]:https://github.com/googleapis/google-cloud-java/blob/master/CODE_OF_CONDUCT.md#contributor-code-of-conduct
223+
[LICENSE]: https://github.com/googleapis/google-cloud-java/blob/master/LICENSE
224+
[TESTING]: https://github.com/googleapis/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-logging
225225

226226

227227
[stackdriver-logging]: https://cloud.google.com/logging/
228228
[stackdriver-logging-quickstart]: https://cloud.google.com/logging/docs/quickstart-sdk
229229
[logging-product-docs]: https://cloud.google.com/logging/docs/
230-
[logging-client-lib-docs]: https://googlecloudplatform.github.io/google-cloud-java/google-cloud-clients/apidocs/index.html?com/google/cloud/logging/package-summary.html
230+
[logging-client-lib-docs]: https://googleapis.github.io/google-cloud-java/google-cloud-clients/apidocs/index.html?com/google/cloud/logging/package-summary.html

google-cloud-logging/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<version>1.48.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-logging:current} -->
66
<packaging>jar</packaging>
77
<name>Google Cloud Logging</name>
8-
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-clients/google-cloud-logging</url>
8+
<url>https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-logging</url>
99
<description>
1010
Java idiomatic client for Stackdriver Logging.
1111
</description>

google-cloud-logging/src/main/java/com/google/cloud/logging/LoggingHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public class LoggingHandler extends Handler {
108108
// Logs with the same severity with the base could be more efficiently sent to Stackdriver.
109109
// Defaults to level of the handler or Level.FINEST if the handler is set to Level.ALL.
110110
// Currently there is no way to modify the base level, see
111-
// https://github.com/GoogleCloudPlatform/google-cloud-java/issues/1740 .
111+
// https://github.com/googleapis/google-cloud-java/issues/1740 .
112112
private final Level baseLevel;
113113

114114
private volatile Level flushLevel;

google-cloud-logging/src/main/java/com/google/cloud/logging/package-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*
2020
* <p>Here's a simple usage example for using google-cloud from Compute Engine/App Engine Flexible.
2121
* This example shows how to write and list log entries. For the complete source code see
22-
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/logging/snippets/WriteAndListLogEntries.java">
22+
* <a href="https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/logging/snippets/WriteAndListLogEntries.java">
2323
* WriteAndListLogEntries.java</a>.
2424
* <pre> {@code
2525
* LoggingOptions options = LoggingOptions.getDefaultInstance();
@@ -49,7 +49,7 @@
4949
* {@code com.google.cloud.examples.logging.snippets.AddLoggingHandler.handlers=com.google.cloud.logging.LoggingHandler}
5050
* </pre>
5151
* For the complete source code see
52-
* <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/logging/snippets/AddLoggingHandler.java">
52+
* <a href="https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-examples/src/main/java/com/google/cloud/examples/logging/snippets/AddLoggingHandler.java">
5353
* AddLoggingHandler.java</a>.
5454
* <pre> {@code
5555
* Logger logger = Logger.getLogger(AddLoggingHandler.class.getName());

google-cloud-logging/src/main/java/com/google/cloud/logging/testing/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* String metricName = RemoteLoggingHelper.formatForTest("test-metric");
3131
* } </pre>
3232
*
33-
* @see <a href="https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-logging">
33+
* @see <a href="https://github.com/googleapis/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-logging">
3434
* Google Cloud Java tools for testing</a>
3535
*/
3636
package com.google.cloud.logging.testing;

0 commit comments

Comments
 (0)