From c4cd5e0321f8de661b20c89564df03cd63b76b83 Mon Sep 17 00:00:00 2001 From: penmetsaa Date: Thu, 18 Jul 2019 00:11:30 +0000 Subject: [PATCH] Update URL for libphonenumber on GitHub. (#2362) --- CONTRIBUTING.md | 4 +- FAQ.md | 46 +++++++++---------- README.md | 18 ++++---- codereview.settings | 2 +- cpp/README | 2 +- .../phonenumbers/asyoutypeformatter_test.cc | 4 +- debian/control | 2 +- debian/copyright | 2 +- debian/watch | 2 +- java/carrier/pom.xml | 2 +- java/demo/pom.xml | 2 +- .../PhoneNumberParserServlet.java | 2 +- java/demo/war/phonenumberparser.jsp | 2 +- java/geocoder/pom.xml | 2 +- java/internal/prefixmapper/pom.xml | 2 +- java/libphonenumber/pom.xml | 2 +- .../phonenumbers/AsYouTypeFormatterTest.java | 4 +- java/pom.xml | 6 +-- javascript/README.md | 2 +- .../phonenumbers/asyoutypeformatter_test.js | 4 +- making-metadata-changes.md | 2 +- release_notes.txt | 2 +- resources/timezones/README.md | 2 +- run-java-demo.md | 2 +- .../i18n/phonenumbers/MetadataFilter.java | 2 +- tools/java/data/webapp/index.html | 2 +- 26 files changed, 62 insertions(+), 62 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0ecf8a601..68cfcc234 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -15,7 +15,7 @@ Please check the following: * Your issue may be resolved by upgrading to the latest version of the library. (Reach out to the product/app team if you're not the developer!) * If you are using a - [port](http://github.com/googlei18n/libphonenumber#third-party-ports), + [port](http://github.com/google/libphonenumber#third-party-ports), issues should be reported against that project. * If you are using the library through a front-end or wrapper, issues should be reported against that project. @@ -68,7 +68,7 @@ sign a Corporate or Individual CLA. **By signing the CLA, you confirm that you have the rights to share the information with us, and that we may use, modify, reproduce, publicly display, and distribute the information in accordance with the library's [open source -license](http://github.com/googlei18n/libphonenumber/blob/master/LICENSE).** +license](http://github.com/google/libphonenumber/blob/master/LICENSE).** * [Corporate CLA](http://developers.google.com/open-source/cla/corporate?csw=1): * See https://cla.developers.google.com/about and follow the instructions. diff --git a/FAQ.md b/FAQ.md index 120ab9afa..659059764 100644 --- a/FAQ.md +++ b/FAQ.md @@ -26,7 +26,7 @@ doesn't aim to verify whether the string is *only* a phone number. If the input looks like a vanity number to the library, `parse()` assumes this is intentional and converts alpha characters to digits. Please read the documentation for `PhoneNumber parse(String, String)` in -[PhoneNumberUtil](http://github.com/googlei18n/libphonenumber/blob/master/java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java) +[PhoneNumberUtil](http://github.com/google/libphonenumber/blob/master/java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java) for details. Also see `Iterable findNumbers(CharSequence, String)`. @@ -46,10 +46,10 @@ Some examples: Other examples, in reports: -* [#328](http://github.com/googlei18n/libphonenumber/issues/328) -* [#1001](http://github.com/googlei18n/libphonenumber/issues/1001) -* [#1199](http://github.com/googlei18n/libphonenumber/issues/1199) -* [#1813](http://github.com/googlei18n/libphonenumber/issues/1813) +* [#328](http://github.com/google/libphonenumber/issues/328) +* [#1001](http://github.com/google/libphonenumber/issues/1001) +* [#1199](http://github.com/google/libphonenumber/issues/1199) +* [#1813](http://github.com/google/libphonenumber/issues/1813) ### Why wasn't the national prefix removed when parsing? @@ -88,7 +88,7 @@ gives `5417540000` for the national number. You can try [the demo](http://libphonenumber.appspot.com/) for more regions. Also see `internationalPrefix` in -[`resources/PhoneNumberMetadata.xml`](http://github.com/googlei18n/libphonenumber/blob/master/resources/PhoneNumberMetadata.xml). +[`resources/PhoneNumberMetadata.xml`](http://github.com/google/libphonenumber/blob/master/resources/PhoneNumberMetadata.xml). ## Validation and types of numbers @@ -96,14 +96,14 @@ Also see `internationalPrefix` in To understand the behavior of functions, please refer to the documentation in the Javadoc/C++ header files. For example, see `isPossibleNumberWithReason` in -[`PhoneNumberUtil`](https://github.com/googlei18n/libphonenumber/blob/master/java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java). +[`PhoneNumberUtil`](https://github.com/google/libphonenumber/blob/master/java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java). ### Why does PhoneNumberUtil return false for valid short numbers? Short numbers are out of scope of -[`PhoneNumberUtil`](https://github.com/googlei18n/libphonenumber/blob/master/java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java). +[`PhoneNumberUtil`](https://github.com/google/libphonenumber/blob/master/java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java). For short numbers, use -[`ShortNumberInfo`](https://github.com/googlei18n/libphonenumber/blob/master/java/libphonenumber/src/com/google/i18n/phonenumbers/ShortNumberInfo.java). +[`ShortNumberInfo`](https://github.com/google/libphonenumber/blob/master/java/libphonenumber/src/com/google/i18n/phonenumbers/ShortNumberInfo.java). ### What does it mean for a phone number to be valid? @@ -180,7 +180,7 @@ way. ### What is mobile number portability? -The ability to keep your mobile phone number when changing carriers. To see whether a region supports mobile number portability use [isMobileNumberPortableRegion](https://github.com/googlei18n/libphonenumber/blob/58247207903f917839001bc62525a5b48a475b7e/java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java#L3524). +The ability to keep your mobile phone number when changing carriers. To see whether a region supports mobile number portability use [isMobileNumberPortableRegion](https://github.com/google/libphonenumber/blob/58247207903f917839001bc62525a5b48a475b7e/java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java#L3524). ### Since it's possible to change the carrier for a phone number, how is the data kept up-to-date? @@ -281,7 +281,7 @@ optional in local circumstances, but this is shifting to become mandatory in areas that have had more area code splits. However, the usage of parentheses persists and both methods are acceptable. -See [issue #1996](https://github.com/googlei18n/libphonenumber/issues/1996) +See [issue #1996](https://github.com/google/libphonenumber/issues/1996) for some additional discussion. ### Why does formatNumberForMobileDialing return an empty string for my number? @@ -458,20 +458,20 @@ Set the compiler flag `USE_METADATA_LITE` to `ON` using ccmake or similar. The metadata binary files can be generated using the ant build rules `build-phone-metadata` and `build-short-metadata` with `lite-build` set to `true`. This can be set in the [build -file](https://github.com/googlei18n/libphonenumber/blob/master/java/build.xml) +file](https://github.com/google/libphonenumber/blob/master/java/build.xml) itself. ### Which versions of the Maven jars should I use? When possible, use the [latest -version](https://github.com/googlei18n/libphonenumber/releases) of +version](https://github.com/google/libphonenumber/releases) of libphonenumber. For the other Maven artifacts, to find the version corresponding to a given version of libphonenumber, follow these steps: * Go to the versioned GitHub tag, e.g. - https://github.com/googlei18n/libphonenumber/find/v8.3.3 + https://github.com/google/libphonenumber/find/v8.3.3 * Type `pom.xml`. This will surface all the `pom.xml` files as they were released at the chosen tag. * Find the version you care about in the corresponding `pom.xml` file. Look @@ -496,14 +496,14 @@ loading resources in the main thread is the suggested best practice at the [Android developer guide](http://developer.android.com/guide/components/processes-and-threads.html), and will prevent the issue reported in -[#265](https://github.com/googlei18n/libphonenumber/issues/265), -[#528](https://github.com/googlei18n/libphonenumber/issues/528), and -[#819](https://github.com/googlei18n/libphonenumber/issues/819). +[#265](https://github.com/google/libphonenumber/issues/265), +[#528](https://github.com/google/libphonenumber/issues/528), and +[#819](https://github.com/google/libphonenumber/issues/819). #### Optimize loads You can manage your own resources by supplying your own -[`MetadataLoader`](http://github.com/googlei18n/libphonenumber/blob/master/java/libphonenumber/src/com/google/i18n/phonenumbers/MetadataLoader.java) +[`MetadataLoader`](http://github.com/google/libphonenumber/blob/master/java/libphonenumber/src/com/google/i18n/phonenumbers/MetadataLoader.java) implementation to the `PhoneNumberUtil` instance. It is thus possible for your app to load the resources as Android assets, while libphonenumber loads Java resources by default. The result is that the files are read as native Android assets @@ -534,14 +534,14 @@ or review and test out someone else's PR, please chime in on these links, or email the [discussion group](https://groups.google.com/group/libphonenumber-discuss): -* [#1000](https://github.com/googlei18n/libphonenumber/issues/1000) to provide +* [#1000](https://github.com/google/libphonenumber/issues/1000) to provide a Windows DLL. -* [#1010](https://github.com/googlei18n/libphonenumber/issues/1010) to require +* [#1010](https://github.com/google/libphonenumber/issues/1010) to require Visual Studio 2015 update 2 or later on Windows -* PR [#1090](https://github.com/googlei18n/libphonenumber/pull/1090) / - [#824](https://github.com/googlei18n/libphonenumber/issues/824) to "Replace +* PR [#1090](https://github.com/google/libphonenumber/pull/1090) / + [#824](https://github.com/google/libphonenumber/issues/824) to "Replace POSIX directory operations by Boost Filesystem" -* [#1555](https://github.com/googlei18n/libphonenumber/issues/1555) to allow +* [#1555](https://github.com/google/libphonenumber/issues/1555) to allow Windows to build cpp library with pthreads for multi-threading ### How to remove a specific example number? diff --git a/README.md b/README.md index 40b111f84..29ad18658 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- +

# What is it? @@ -16,7 +16,7 @@ Cream Sandwich). * Check the [frequently asked questions](FAQ.md) * Fun! [Falsehoods Programmers Believe About Phone Numbers](FALSEHOODS.md) * Look for - [`README`s](https://github.com/googlei18n/libphonenumber/find/master) in + [`README`s](https://github.com/google/libphonenumber/find/master) in directories relevant to the code you're interested in. * For contributors and porters: [How to run the Java demo](run-java-demo.md) * For porters: [How to make metadata changes](making-metadata-changes.md) @@ -58,19 +58,19 @@ delay after the GitHub release. Last demo update: v8.10.15. If this number is lower than the [latest release's version -number](https://github.com/googlei18n/libphonenumber/releases), we are between +number](https://github.com/google/libphonenumber/releases), we are between releases and the demo may be at either version. ## JavaScript The [JavaScript -demo](https://rawgit.com/googlei18n/libphonenumber/master/javascript/i18n/phonenumbers/demo-compiled.html) +demo](https://rawgit.com/google/libphonenumber/master/javascript/i18n/phonenumbers/demo-compiled.html) may be run at various tags; this link will take you to `master`. # Java code To include the Java code in your application, either integrate with Maven (see -[wiki](https://github.com/googlei18n/libphonenumber/wiki)) or download the latest +[wiki](https://github.com/google/libphonenumber/wiki)) or download the latest jars from the [Maven repository](https://repo1.maven.org/maven2/com/googlecode/libphonenumber/libphonenumber/). @@ -108,9 +108,9 @@ release if there were no other changes. Want to get notified of new releases? During most of the year, excepting holidays and extenuating circumstances, we release fortnightly. We update -[release tags](https://github.com/googlei18n/libphonenumber/releases) and +[release tags](https://github.com/google/libphonenumber/releases) and document detailed [release notes]( -https://github.com/googlei18n/libphonenumber/blob/master/release_notes.txt). +https://github.com/google/libphonenumber/blob/master/release_notes.txt). We also send an announcement to [libphonenumber-discuss]( https://groups.google.com/forum/#!forum/libphonenumber-discuss) for every release. @@ -206,7 +206,7 @@ System.out.println(carrierMapper.getNameForNumber(swissMobileNumber, Locale.ENGL ``` More examples on how to use the library can be found in the [unit -tests](https://github.com/googlei18n/libphonenumber/tree/master/java/libphonenumber/test/com/google/i18n/phonenumbers). +tests](https://github.com/google/libphonenumber/tree/master/java/libphonenumber/test/com/google/i18n/phonenumbers). # Third-party Ports @@ -233,7 +233,7 @@ Alternatives to our own versions: `Class#getResourcesAsStream` and asks that Android apps follow the Android loading best practices of repackaging the metadata and loading from `AssetManager#open()` themselves - ([FAQ](https://github.com/googlei18n/libphonenumber/blob/master/FAQ.md#optimize-loads)). + ([FAQ](https://github.com/google/libphonenumber/blob/master/FAQ.md#optimize-loads)). If you don't want to do this, check out the port at https://github.com/MichaelRocks/libphonenumber-android, which does repackage the metadata and use `AssetManager#open()`, and may be depended on without diff --git a/codereview.settings b/codereview.settings index d4e57aec0..72016b703 100644 --- a/codereview.settings +++ b/codereview.settings @@ -1,4 +1,4 @@ # This file is used by gcl to get repository specific information. CODE_REVIEW_SERVER: codereview.appspot.com TRY_ON_UPLOAD: False -VIEW_VC: https://github.com/googlei18n/libphonenumber/commit/ +VIEW_VC: https://github.com/google/libphonenumber/commit/ diff --git a/cpp/README b/cpp/README index a19ec7816..8ff6db8cb 100644 --- a/cpp/README +++ b/cpp/README @@ -160,7 +160,7 @@ gtest. We don't need to install gtest, we only copy sources. For example: Get the libphonenumber source. For example: $ mkdir ~/libphonenumber_clone $ cd ~/libphonenumber_clone - $ git clone https://github.com/googlei18n/libphonenumber.git + $ git clone https://github.com/google/libphonenumber.git Build and test the library: $ cd libphonenumber/cpp diff --git a/cpp/test/phonenumbers/asyoutypeformatter_test.cc b/cpp/test/phonenumbers/asyoutypeformatter_test.cc index 4b3886c9d..bdd7f4e4e 100644 --- a/cpp/test/phonenumbers/asyoutypeformatter_test.cc +++ b/cpp/test/phonenumbers/asyoutypeformatter_test.cc @@ -94,7 +94,7 @@ TEST_F(AsYouTypeFormatterTest, InvalidPlusSign) { } TEST_F(AsYouTypeFormatterTest, TooLongNumberMatchingMultipleLeadingDigits) { - // See https://github.com/googlei18n/libphonenumber/issues/36 + // See https://github.com/google/libphonenumber/issues/36 // The bug occurred last time for countries which have two formatting rules // with exactly the same leading digits pattern but differ in length. formatter_.reset(phone_util_.GetAsYouTypeFormatter(RegionCode::GetUnknown())); @@ -1226,7 +1226,7 @@ TEST_F(AsYouTypeFormatterTest, // leading digit patterns; when we try again to extract a country code we // should ensure we use the last leading digit pattern, rather than the first // one such that it *thinks* it's found a valid formatting rule again. - // https://github.com/googlei18n/libphonenumber/issues/437 + // https://github.com/google/libphonenumber/issues/437 EXPECT_EQ("+8698812", formatter_->InputDigit('2', &result_)); EXPECT_EQ("+86988123", formatter_->InputDigit('3', &result_)); EXPECT_EQ("+869881234", formatter_->InputDigit('4', &result_)); diff --git a/debian/control b/debian/control index fedf98c38..a8fadbb1c 100644 --- a/debian/control +++ b/debian/control @@ -30,7 +30,7 @@ Build-Depends: cdbs, libservlet2.5-java-doc Standards-Version: 3.9.6 Section: libs -Homepage: https://github.com/googlei18n/libphonenumber/ +Homepage: https://github.com/google/libphonenumber/ Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/libphonenumber.git/ Vcs-Git: git://anonscm.debian.org/collab-maint/libphonenumber.git diff --git a/debian/copyright b/debian/copyright index 1995879ce..d95c23874 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: libphonenumber Upstream-Contact: Fredrik Roubert -Source: https://github.com/googlei18n/libphonenumber/ +Source: https://github.com/google/libphonenumber/ Files: * cpp/src/phonenumbers/base/logging.h cpp/src/phonenumbers/base/thread_checker.h diff --git a/debian/watch b/debian/watch index 9302262a9..0e9fac95b 100644 --- a/debian/watch +++ b/debian/watch @@ -1,3 +1,3 @@ version=3 -https://github.com/googlei18n/libphonenumber/tags \ +https://github.com/google/libphonenumber/tags \ .*/archive/libphonenumber-(\d[\d\.]+)\.tar\.gz diff --git a/java/carrier/pom.xml b/java/carrier/pom.xml index c8c8c49c7..df527de25 100644 --- a/java/carrier/pom.xml +++ b/java/carrier/pom.xml @@ -5,7 +5,7 @@ carrier 1.112-SNAPSHOT jar - https://github.com/googlei18n/libphonenumber/ + https://github.com/google/libphonenumber/ com.googlecode.libphonenumber diff --git a/java/demo/pom.xml b/java/demo/pom.xml index 5143a7861..4ee1f6b40 100644 --- a/java/demo/pom.xml +++ b/java/demo/pom.xml @@ -5,7 +5,7 @@ demo 8.10.16-SNAPSHOT jar - https://github.com/googlei18n/libphonenumber/ + https://github.com/google/libphonenumber/ com.googlecode.libphonenumber libphonenumber-parent diff --git a/java/demo/src/com/google/phonenumbers/PhoneNumberParserServlet.java b/java/demo/src/com/google/phonenumbers/PhoneNumberParserServlet.java index de4606a28..9dd9105bc 100644 --- a/java/demo/src/com/google/phonenumbers/PhoneNumberParserServlet.java +++ b/java/demo/src/com/google/phonenumbers/PhoneNumberParserServlet.java @@ -402,7 +402,7 @@ public class PhoneNumberParserServlet extends HttpServlet { String newIssueLink = getNewIssueLink(phoneNumber, defaultCountry, geocodingLocale); String guidelinesLink = - "https://github.com/googlei18n/libphonenumber/blob/master/CONTRIBUTING.md"; + "https://github.com/google/libphonenumber/blob/master/CONTRIBUTING.md"; output.append("File an issue: by clicking on " + "this link, I confirm that I " + "have read the

-
Back to libphonenumber + Back to libphonenumber diff --git a/java/geocoder/pom.xml b/java/geocoder/pom.xml index a1ddf733a..7a697d8df 100644 --- a/java/geocoder/pom.xml +++ b/java/geocoder/pom.xml @@ -5,7 +5,7 @@ geocoder 2.122-SNAPSHOT jar - https://github.com/googlei18n/libphonenumber/ + https://github.com/google/libphonenumber/ com.googlecode.libphonenumber diff --git a/java/internal/prefixmapper/pom.xml b/java/internal/prefixmapper/pom.xml index fbb17e5c7..29dee05e0 100644 --- a/java/internal/prefixmapper/pom.xml +++ b/java/internal/prefixmapper/pom.xml @@ -5,7 +5,7 @@ prefixmapper 2.122-SNAPSHOT jar - https://github.com/googlei18n/libphonenumber/ + https://github.com/google/libphonenumber/ com.googlecode.libphonenumber diff --git a/java/libphonenumber/pom.xml b/java/libphonenumber/pom.xml index b0e5ca7d5..4203c6ec6 100644 --- a/java/libphonenumber/pom.xml +++ b/java/libphonenumber/pom.xml @@ -5,7 +5,7 @@ libphonenumber 8.10.16-SNAPSHOT jar - https://github.com/googlei18n/libphonenumber/ + https://github.com/google/libphonenumber/ com.googlecode.libphonenumber diff --git a/java/libphonenumber/test/com/google/i18n/phonenumbers/AsYouTypeFormatterTest.java b/java/libphonenumber/test/com/google/i18n/phonenumbers/AsYouTypeFormatterTest.java index 75977a0db..09a8a40b0 100644 --- a/java/libphonenumber/test/com/google/i18n/phonenumbers/AsYouTypeFormatterTest.java +++ b/java/libphonenumber/test/com/google/i18n/phonenumbers/AsYouTypeFormatterTest.java @@ -66,7 +66,7 @@ public class AsYouTypeFormatterTest extends TestMetadataTestCase { } public void testTooLongNumberMatchingMultipleLeadingDigits() { - // See https://github.com/googlei18n/libphonenumber/issues/36 + // See https://github.com/google/libphonenumber/issues/36 // The bug occurred last time for countries which have two formatting rules with exactly the // same leading digits pattern but differ in length. AsYouTypeFormatter formatter = phoneUtil.getAsYouTypeFormatter(RegionCode.ZZ); @@ -1164,7 +1164,7 @@ public class AsYouTypeFormatterTest extends TestMetadataTestCase { // when we try again to extract a country code we should ensure we use the last leading digit // pattern, rather than the first one such that it *thinks* it's found a valid formatting rule // again. - // https://github.com/googlei18n/libphonenumber/issues/437 + // https://github.com/google/libphonenumber/issues/437 assertEquals("+8698812", formatter.inputDigit('2')); assertEquals("+86988123", formatter.inputDigit('3')); assertEquals("+869881234", formatter.inputDigit('4')); diff --git a/java/pom.xml b/java/pom.xml index f56e059ce..a93b587dd 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -5,7 +5,7 @@ libphonenumber-parent 8.10.16-SNAPSHOT pom - https://github.com/googlei18n/libphonenumber/ + https://github.com/google/libphonenumber/ org.sonatype.oss @@ -31,9 +31,9 @@ - scm:git:https://github.com/googlei18n/libphonenumber.git + scm:git:https://github.com/google/libphonenumber.git scm:git:git@github.com:googlei18n/libphonenumber.git - https://github.com/googlei18n/libphonenumber/ + https://github.com/google/libphonenumber/ HEAD diff --git a/javascript/README.md b/javascript/README.md index 9724d8fb2..c1f7efe9a 100644 --- a/javascript/README.md +++ b/javascript/README.md @@ -8,7 +8,7 @@ How to setup: ============= 1. Checkout closure-library, closure-compiler, closure-linter and python-gflags next to libphonenumber: -* `git clone https://github.com/googlei18n/libphonenumber/` +* `git clone https://github.com/google/libphonenumber/` * `git clone https://github.com/google/closure-library/` diff --git a/javascript/i18n/phonenumbers/asyoutypeformatter_test.js b/javascript/i18n/phonenumbers/asyoutypeformatter_test.js index 1b70b28ff..14531b5d9 100644 --- a/javascript/i18n/phonenumbers/asyoutypeformatter_test.js +++ b/javascript/i18n/phonenumbers/asyoutypeformatter_test.js @@ -73,7 +73,7 @@ function testInvalidPlusSign() { } function testTooLongNumberMatchingMultipleLeadingDigits() { - // See https://github.com/googlei18n/libphonenumber/issues/36 + // See https://github.com/google/libphonenumber/issues/36 // The bug occurred last time for countries which have two formatting rules // with exactly the same leading digits pattern but differ in length. /** @type {i18n.phonenumbers.AsYouTypeFormatter} */ @@ -1199,7 +1199,7 @@ function testAYTFNumberPatternsBecomingInvalidShouldNotResultInDigitLoss() { // leading digit patterns; when we try again to extract a country code we // should ensure we use the last leading digit pattern, rather than the first // one such that it *thinks* it's found a valid formatting rule again. - // https://github.com/googlei18n/libphonenumber/issues/437 + // https://github.com/google/libphonenumber/issues/437 assertEquals('+8698812', f.inputDigit('2')); assertEquals('+86988123', f.inputDigit('3')); assertEquals('+869881234', f.inputDigit('4')); diff --git a/making-metadata-changes.md b/making-metadata-changes.md index 8319b5ec8..0cca53aba 100644 --- a/making-metadata-changes.md +++ b/making-metadata-changes.md @@ -63,7 +63,7 @@ changes, as per the instructions in `javascript/README`. #### C++ See the [C++ -README](http://github.com/googlei18n/libphonenumber/blob/master/cpp/README) +README](http://github.com/google/libphonenumber/blob/master/cpp/README) instructions for how to build and run C++. You should build it with `USE_LITE_METADATA` set to `ON` as well as `OFF`, which will generate both a `metadata.cc` and a `metadata_lite.cc` file. diff --git a/release_notes.txt b/release_notes.txt index e7e7e3da1..726156459 100644 --- a/release_notes.txt +++ b/release_notes.txt @@ -1708,7 +1708,7 @@ Oct 10, 2012: libphonenumber-5.2 - Adds isNumberGeographical() method. - Adds getRegionCodesForCountryCode() method. - Fixing issue with getSupportedGlobalNetworkCallingCodes() - [https://github.com/googlei18n/libphonenumber/issues/202] + [https://github.com/google/libphonenumber/issues/202] - Ensures that returned collections are unmodifiable where necessary [there is a very slight risk that this may break existing users who were relying on being able to modify these collections, but doing so would be breaking lots of other assumptions that this diff --git a/resources/timezones/README.md b/resources/timezones/README.md index 1f67afdf9..68ea25da3 100644 --- a/resources/timezones/README.md +++ b/resources/timezones/README.md @@ -10,7 +10,7 @@ whether it is likely to be a good time to ring a user based on their provided number. Code Location: -[java/geocoder/src/com/google/i18n/phonenumbers/PhoneNumberToTimeZonesMapper.java](https://github.com/googlei18n/libphonenumber/blob/master/java/geocoder/src/com/google/i18n/phonenumbers/PhoneNumberToTimeZonesMapper.java) +[java/geocoder/src/com/google/i18n/phonenumbers/PhoneNumberToTimeZonesMapper.java](https://github.com/google/libphonenumber/blob/master/java/geocoder/src/com/google/i18n/phonenumbers/PhoneNumberToTimeZonesMapper.java) Example usage: diff --git a/run-java-demo.md b/run-java-demo.md index 47ad1156d..156c2232a 100644 --- a/run-java-demo.md +++ b/run-java-demo.md @@ -23,7 +23,7 @@ SDK of Google App Engine. This document assumes it is named as Check out the Java code: ``` -git clone https://github.com/googlei18n/libphonenumber.git +git clone https://github.com/google/libphonenumber.git ``` Create a symlink to your unpacked appengine sdk directory at the same level as diff --git a/tools/java/common/src/com/google/i18n/phonenumbers/MetadataFilter.java b/tools/java/common/src/com/google/i18n/phonenumbers/MetadataFilter.java index 0cae69356..e9ca75aad 100644 --- a/tools/java/common/src/com/google/i18n/phonenumbers/MetadataFilter.java +++ b/tools/java/common/src/com/google/i18n/phonenumbers/MetadataFilter.java @@ -86,7 +86,7 @@ final class MetadataFilter { // Note: If changing the blacklist here or the name of the method, update documentation about // affected methods at the same time: - // https://github.com/googlei18n/libphonenumber/blob/master/FAQ.md#what-is-the-metadatalitejsmetadata_lite-option + // https://github.com/google/libphonenumber/blob/master/FAQ.md#what-is-the-metadatalitejsmetadata_lite-option static MetadataFilter forLiteBuild() { // "exampleNumber" is a blacklist. return new MetadataFilter(parseFieldMapFromString("exampleNumber")); diff --git a/tools/java/data/webapp/index.html b/tools/java/data/webapp/index.html index ea5107993..5916f5427 100644 --- a/tools/java/data/webapp/index.html +++ b/tools/java/data/webapp/index.html @@ -15,7 +15,7 @@
- Back to libphonenumber + Back to libphonenumber