Browse Source

Changing license to Libphonenumber Authors.

pull/567/head
Philippe Liard 15 years ago
committed by Mihaela Rosca
parent
commit
b59d9080ab
184 changed files with 185 additions and 185 deletions
  1. +1
    -1
      cpp/CMakeLists.txt
  2. +1
    -1
      cpp/LICENSE
  3. +1
    -1
      cpp/src/base/logging.h
  4. +1
    -1
      cpp/src/base/memory/singleton.h
  5. +1
    -1
      cpp/src/base/scoped_ptr.h
  6. +1
    -1
      cpp/src/base/synchronization/lock.h
  7. +1
    -1
      cpp/src/phonenumbers/default_logger.cc
  8. +1
    -1
      cpp/src/phonenumbers/default_logger.h
  9. +1
    -1
      cpp/src/phonenumbers/encoding_utils.h
  10. +1
    -1
      cpp/src/phonenumbers/lite_metadata.cc
  11. +1
    -1
      cpp/src/phonenumbers/logger.cc
  12. +1
    -1
      cpp/src/phonenumbers/logger.h
  13. +1
    -1
      cpp/src/phonenumbers/metadata.cc
  14. +1
    -1
      cpp/src/phonenumbers/metadata.h
  15. +1
    -1
      cpp/src/phonenumbers/normalize_utf8.h
  16. +1
    -1
      cpp/src/phonenumbers/phonenumber.cc
  17. +1
    -1
      cpp/src/phonenumbers/phonenumber.h
  18. +1
    -1
      cpp/src/phonenumbers/phonenumberutil.cc
  19. +1
    -1
      cpp/src/phonenumbers/phonenumberutil.h
  20. +1
    -1
      cpp/src/phonenumbers/regexp_adapter.h
  21. +1
    -1
      cpp/src/phonenumbers/regexp_adapter_icu.cc
  22. +1
    -1
      cpp/src/phonenumbers/regexp_adapter_icu.h
  23. +1
    -1
      cpp/src/phonenumbers/regexp_adapter_re2.cc
  24. +1
    -1
      cpp/src/phonenumbers/regexp_adapter_re2.h
  25. +1
    -1
      cpp/src/phonenumbers/regexp_cache.cc
  26. +1
    -1
      cpp/src/phonenumbers/regexp_cache.h
  27. +1
    -1
      cpp/src/phonenumbers/regexp_factory.h
  28. +1
    -1
      cpp/src/phonenumbers/region_code.h
  29. +1
    -1
      cpp/src/phonenumbers/stl_util.h
  30. +1
    -1
      cpp/src/phonenumbers/stringutil.cc
  31. +1
    -1
      cpp/src/phonenumbers/stringutil.h
  32. +1
    -1
      cpp/src/phonenumbers/test_metadata.cc
  33. +1
    -1
      cpp/test/phonenumbers/logger_test.cc
  34. +1
    -1
      cpp/test/phonenumbers/phonenumberutil_test.cc
  35. +1
    -1
      cpp/test/phonenumbers/regexp_adapter_test.cc
  36. +1
    -1
      cpp/test/phonenumbers/regexp_cache_test.cc
  37. +1
    -1
      cpp/test/phonenumbers/stringutil_test.cc
  38. +1
    -1
      cpp/test/phonenumbers/utf/unicodetext_test.cc
  39. +1
    -1
      java/demo/src/com/google/phonenumbers/PhoneNumberParserServlet.java
  40. +1
    -1
      java/src/com/google/i18n/phonenumbers/AsYouTypeFormatter.java
  41. +1
    -1
      java/src/com/google/i18n/phonenumbers/CountryCodeToRegionCodeMap.java
  42. +1
    -1
      java/src/com/google/i18n/phonenumbers/NumberParseException.java
  43. +1
    -1
      java/src/com/google/i18n/phonenumbers/PhoneNumberMatch.java
  44. +1
    -1
      java/src/com/google/i18n/phonenumbers/PhoneNumberMatcher.java
  45. +1
    -1
      java/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java
  46. +1
    -1
      java/src/com/google/i18n/phonenumbers/Phonemetadata.java
  47. +1
    -1
      java/src/com/google/i18n/phonenumbers/Phonenumber.java
  48. +1
    -1
      java/src/com/google/i18n/phonenumbers/RegexCache.java
  49. +1
    -1
      java/src/com/google/i18n/phonenumbers/geocoding/AreaCodeMap.java
  50. +1
    -1
      java/src/com/google/i18n/phonenumbers/geocoding/AreaCodeMapStorageStrategy.java
  51. +1
    -1
      java/src/com/google/i18n/phonenumbers/geocoding/DefaultMapStorage.java
  52. +1
    -1
      java/src/com/google/i18n/phonenumbers/geocoding/FlyweightMapStorage.java
  53. +1
    -1
      java/src/com/google/i18n/phonenumbers/geocoding/MappingFileProvider.java
  54. +1
    -1
      java/src/com/google/i18n/phonenumbers/geocoding/PhoneNumberOfflineGeocoder.java
  55. +1
    -1
      java/test/com/google/i18n/phonenumbers/AsYouTypeFormatterTest.java
  56. +1
    -1
      java/test/com/google/i18n/phonenumbers/CountryCodeToRegionCodeMapForTesting.java
  57. +1
    -1
      java/test/com/google/i18n/phonenumbers/ExampleNumbersTest.java
  58. +1
    -1
      java/test/com/google/i18n/phonenumbers/PhoneNumberMatchTest.java
  59. +1
    -1
      java/test/com/google/i18n/phonenumbers/PhoneNumberMatcherTest.java
  60. +1
    -1
      java/test/com/google/i18n/phonenumbers/PhoneNumberUtilTest.java
  61. +1
    -1
      java/test/com/google/i18n/phonenumbers/PhonenumberTest.java
  62. +1
    -1
      java/test/com/google/i18n/phonenumbers/RegexCacheTest.java
  63. +1
    -1
      java/test/com/google/i18n/phonenumbers/geocoding/AreaCodeMapTest.java
  64. +1
    -1
      java/test/com/google/i18n/phonenumbers/geocoding/FlyweightMapStorageTest.java
  65. +1
    -1
      java/test/com/google/i18n/phonenumbers/geocoding/MappingFileProviderTest.java
  66. +1
    -1
      java/test/com/google/i18n/phonenumbers/geocoding/PhoneNumberOfflineGeocoderTest.java
  67. +1
    -1
      javascript/i18n/phonenumbers/asyoutypeformatter.js
  68. +1
    -1
      javascript/i18n/phonenumbers/asyoutypeformatter_test.html
  69. +1
    -1
      javascript/i18n/phonenumbers/asyoutypeformatter_test.js
  70. +1
    -1
      javascript/i18n/phonenumbers/demo.html
  71. +1
    -1
      javascript/i18n/phonenumbers/metadata.js
  72. +1
    -1
      javascript/i18n/phonenumbers/metadatafortesting.js
  73. +1
    -1
      javascript/i18n/phonenumbers/metadatalite.js
  74. +1
    -1
      javascript/i18n/phonenumbers/phonemetadata.pb.js
  75. +1
    -1
      javascript/i18n/phonenumbers/phonenumber.pb.js
  76. +1
    -1
      javascript/i18n/phonenumbers/phonenumberutil.js
  77. +1
    -1
      javascript/i18n/phonenumbers/phonenumberutil_test.html
  78. +1
    -1
      javascript/i18n/phonenumbers/phonenumberutil_test.js
  79. +1
    -1
      resources/PhoneNumberMetaData.xml
  80. +1
    -1
      resources/PhoneNumberMetaDataForTesting.xml
  81. +1
    -1
      resources/geocoding/de/352.txt
  82. +1
    -1
      resources/geocoding/de/41.txt
  83. +1
    -1
      resources/geocoding/de/43.txt
  84. +1
    -1
      resources/geocoding/de/49.txt
  85. +1
    -1
      resources/geocoding/el/30.txt
  86. +1
    -1
      resources/geocoding/en/1.txt
  87. +1
    -1
      resources/geocoding/en/213.txt
  88. +1
    -1
      resources/geocoding/en/216.txt
  89. +1
    -1
      resources/geocoding/en/220.txt
  90. +1
    -1
      resources/geocoding/en/221.txt
  91. +1
    -1
      resources/geocoding/en/224.txt
  92. +1
    -1
      resources/geocoding/en/225.txt
  93. +1
    -1
      resources/geocoding/en/226.txt
  94. +1
    -1
      resources/geocoding/en/228.txt
  95. +1
    -1
      resources/geocoding/en/229.txt
  96. +1
    -1
      resources/geocoding/en/232.txt
  97. +1
    -1
      resources/geocoding/en/233.txt
  98. +1
    -1
      resources/geocoding/en/249.txt
  99. +1
    -1
      resources/geocoding/en/251.txt
  100. +1
    -1
      resources/geocoding/en/254.txt

+ 1
- 1
cpp/CMakeLists.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
cpp/LICENSE View File

@ -1,4 +1,4 @@
Copyright (C) 2011 Google Inc.
Copyright (C) 2011 The Libphonenumber Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/base/logging.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/base/memory/singleton.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/base/scoped_ptr.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/base/synchronization/lock.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/default_logger.cc View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/default_logger.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/encoding_utils.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/lite_metadata.cc View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/logger.cc View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/logger.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/metadata.cc View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/metadata.h View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/normalize_utf8.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/phonenumber.cc View File

@ -1,4 +1,4 @@
// Copyright (C) 2009 Google Inc.
// Copyright (C) 2009 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/phonenumber.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2009 Google Inc.
// Copyright (C) 2009 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/phonenumberutil.cc View File

@ -1,4 +1,4 @@
// Copyright (C) 2009 Google Inc.
// Copyright (C) 2009 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/phonenumberutil.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2009 Google Inc.
// Copyright (C) 2009 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/regexp_adapter.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/regexp_adapter_icu.cc View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/regexp_adapter_icu.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/regexp_adapter_re2.cc View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/regexp_adapter_re2.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/regexp_cache.cc View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/regexp_cache.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/regexp_factory.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/region_code.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/stl_util.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/stringutil.cc View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/stringutil.h View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/src/phonenumbers/test_metadata.cc View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
cpp/test/phonenumbers/logger_test.cc View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/test/phonenumbers/phonenumberutil_test.cc View File

@ -1,4 +1,4 @@
// Copyright (C) 2009 Google Inc.
// Copyright (C) 2009 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/test/phonenumbers/regexp_adapter_test.cc View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/test/phonenumbers/regexp_cache_test.cc View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/test/phonenumbers/stringutil_test.cc View File

@ -1,4 +1,4 @@
// Copyright (C) 2011 Google Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.


+ 1
- 1
cpp/test/phonenumbers/utf/unicodetext_test.cc View File

@ -1,4 +1,4 @@
// Copyright 2011 Facebook, Inc.
// Copyright (C) 2011 The Libphonenumber Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License. You may obtain


+ 1
- 1
java/demo/src/com/google/phonenumbers/PhoneNumberParserServlet.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/AsYouTypeFormatter.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2009 Google Inc.
* Copyright (C) 2009 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/CountryCodeToRegionCodeMap.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/NumberParseException.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2009 Google Inc.
* Copyright (C) 2009 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/PhoneNumberMatch.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/PhoneNumberMatcher.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2009 Google Inc.
* Copyright (C) 2009 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/Phonemetadata.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/Phonenumber.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/RegexCache.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/geocoding/AreaCodeMap.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/geocoding/AreaCodeMapStorageStrategy.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/geocoding/DefaultMapStorage.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/geocoding/FlyweightMapStorage.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/geocoding/MappingFileProvider.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/src/com/google/i18n/phonenumbers/geocoding/PhoneNumberOfflineGeocoder.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/test/com/google/i18n/phonenumbers/AsYouTypeFormatterTest.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2009 Google Inc.
* Copyright (C) 2009 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/test/com/google/i18n/phonenumbers/CountryCodeToRegionCodeMapForTesting.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/test/com/google/i18n/phonenumbers/ExampleNumbersTest.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2009 Google Inc.
* Copyright (C) 2009 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/test/com/google/i18n/phonenumbers/PhoneNumberMatchTest.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/test/com/google/i18n/phonenumbers/PhoneNumberMatcherTest.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/test/com/google/i18n/phonenumbers/PhoneNumberUtilTest.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2009 Google Inc.
* Copyright (C) 2009 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/test/com/google/i18n/phonenumbers/PhonenumberTest.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2009 Google Inc.
* Copyright (C) 2009 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/test/com/google/i18n/phonenumbers/RegexCacheTest.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/test/com/google/i18n/phonenumbers/geocoding/AreaCodeMapTest.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/test/com/google/i18n/phonenumbers/geocoding/FlyweightMapStorageTest.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/test/com/google/i18n/phonenumbers/geocoding/MappingFileProviderTest.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
java/test/com/google/i18n/phonenumbers/geocoding/PhoneNumberOfflineGeocoderTest.java View File

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Google Inc.
* Copyright (C) 2011 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
javascript/i18n/phonenumbers/asyoutypeformatter.js View File

@ -1,6 +1,6 @@
/**
* @license
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
javascript/i18n/phonenumbers/asyoutypeformatter_test.html View File

@ -2,7 +2,7 @@
<html>
<!--
@license
Copyright (C) 2010 Google Inc.
Copyright (C) 2010 The Libphonenumber Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.


+ 1
- 1
javascript/i18n/phonenumbers/asyoutypeformatter_test.js View File

@ -1,6 +1,6 @@
/**
* @license
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
javascript/i18n/phonenumbers/demo.html View File

@ -2,7 +2,7 @@
<html>
<!--
@license
Copyright (C) 2010 Google Inc.
Copyright (C) 2010 The Libphonenumber Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.


+ 1
- 1
javascript/i18n/phonenumbers/metadata.js View File

@ -1,6 +1,6 @@
/**
* @license
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
javascript/i18n/phonenumbers/metadatafortesting.js View File

@ -1,6 +1,6 @@
/**
* @license
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
javascript/i18n/phonenumbers/metadatalite.js View File

@ -1,6 +1,6 @@
/**
* @license
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
javascript/i18n/phonenumbers/phonemetadata.pb.js View File

@ -2,7 +2,7 @@
* @license
* Protocol Buffer 2 Copyright 2008 Google Inc.
* All other code copyright its respective owners.
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
javascript/i18n/phonenumbers/phonenumber.pb.js View File

@ -2,7 +2,7 @@
* @license
* Protocol Buffer 2 Copyright 2008 Google Inc.
* All other code copyright its respective owners.
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
javascript/i18n/phonenumbers/phonenumberutil.js View File

@ -1,6 +1,6 @@
/**
* @license
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
javascript/i18n/phonenumbers/phonenumberutil_test.html View File

@ -2,7 +2,7 @@
<html>
<!--
@license
Copyright (C) 2010 Google Inc.
Copyright (C) 2010 The Libphonenumber Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.


+ 1
- 1
javascript/i18n/phonenumbers/phonenumberutil_test.js View File

@ -1,6 +1,6 @@
/**
* @license
* Copyright (C) 2010 Google Inc.
* Copyright (C) 2010 The Libphonenumber Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.


+ 1
- 1
resources/PhoneNumberMetaData.xml View File

@ -1,4 +1,4 @@
<!-- Copyright (C) 2009 Google Inc.
<!-- Copyright (C) 2009 The Libphonenumber Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.


+ 1
- 1
resources/PhoneNumberMetaDataForTesting.xml View File

@ -1,4 +1,4 @@
<!-- Copyright (C) 2009 Google Inc.
<!-- Copyright (C) 2009 The Libphonenumber Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/de/352.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/de/41.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/de/43.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/de/49.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/el/30.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/1.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/213.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/216.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/220.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/221.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/224.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/225.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/226.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/228.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/229.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/232.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/233.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/249.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/251.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


+ 1
- 1
resources/geocoding/en/254.txt View File

@ -1,4 +1,4 @@
# Copyright (C) 2011 Google Inc.
# Copyright (C) 2011 The Libphonenumber Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.


Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save