phonelib 0.6.3 → 0.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. checksums.yaml +4 -4
  2. data/data/extended_data.dat +0 -0
  3. data/data/libphonenumber/README.md +1 -1
  4. data/data/libphonenumber/cpp/CMakeLists.txt +1 -1
  5. data/data/libphonenumber/cpp/src/phonenumbers/geocoding/phonenumber_offline_geocoder.cc +12 -2
  6. data/data/libphonenumber/cpp/src/phonenumbers/lite_metadata.cc +7951 -7937
  7. data/data/libphonenumber/cpp/src/phonenumbers/metadata.cc +8658 -8642
  8. data/data/libphonenumber/cpp/src/phonenumbers/phonenumberutil.cc +30 -3
  9. data/data/libphonenumber/cpp/src/phonenumbers/phonenumberutil.h +14 -5
  10. data/data/libphonenumber/cpp/src/phonenumbers/short_metadata.cc +1526 -1523
  11. data/data/libphonenumber/cpp/src/phonenumbers/test_metadata.cc +604 -590
  12. data/data/libphonenumber/cpp/test/phonenumbers/geocoding/phonenumber_offline_geocoder_test.cc +9 -0
  13. data/data/libphonenumber/cpp/test/phonenumbers/phonenumberutil_test.cc +24 -5
  14. data/data/libphonenumber/java/build.xml +0 -30
  15. data/data/libphonenumber/java/carrier/pom.xml +4 -4
  16. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/212_en +0 -0
  17. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/251_en +0 -0
  18. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/382_en +0 -0
  19. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/421_en +0 -0
  20. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/852_zh +0 -0
  21. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/852_zh_Hant +0 -0
  22. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/86_en +0 -0
  23. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/86_zh +0 -0
  24. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/86_zh_Hant +0 -0
  25. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/91_en +0 -0
  26. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/963_en +0 -0
  27. data/data/libphonenumber/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/config +0 -0
  28. data/data/libphonenumber/java/demo/pom.xml +5 -5
  29. data/data/libphonenumber/java/geocoder/pom.xml +4 -4
  30. data/data/libphonenumber/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/PhoneNumberOfflineGeocoder.java +2 -13
  31. data/data/libphonenumber/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/212_en +0 -0
  32. data/data/libphonenumber/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/PhoneNumberOfflineGeocoderTest.java +7 -0
  33. data/data/libphonenumber/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data/82_en +0 -0
  34. data/data/libphonenumber/java/internal/prefixmapper/pom.xml +3 -3
  35. data/data/libphonenumber/java/lib/protobuf-javanano-3.0.0-alpha-7.jar +0 -0
  36. data/data/libphonenumber/java/lib/protobuf-javanano-readme.md +20 -0
  37. data/data/libphonenumber/java/libphonenumber/pom.xml +6 -43
  38. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/MetadataManager.java +66 -41
  39. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/MultiFileMetadataSourceImpl.java +9 -32
  40. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/PhoneNumberUtil.java +40 -11
  41. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/SingleFileMetadataSourceImpl.java +19 -51
  42. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CO +0 -0
  43. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_EH +0 -0
  44. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ET +0 -0
  45. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_IN +0 -0
  46. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_JM +0 -0
  47. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MA +0 -0
  48. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ME +0 -0
  49. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SK +0 -0
  50. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SN +0 -0
  51. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SY +0 -0
  52. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ZM +0 -0
  53. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_IN +0 -0
  54. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_ZA +0 -0
  55. data/data/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/PhoneNumberUtilTest.java +14 -1
  56. data/data/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_CN +0 -0
  57. data/data/libphonenumber/java/pom.xml +1 -1
  58. data/data/libphonenumber/java/release_notes.txt +25 -0
  59. data/data/libphonenumber/javascript/i18n/phonenumbers/demo-compiled.js +88 -88
  60. data/data/libphonenumber/javascript/i18n/phonenumbers/metadata.js +21 -19
  61. data/data/libphonenumber/javascript/i18n/phonenumbers/metadatafortesting.js +7 -5
  62. data/data/libphonenumber/javascript/i18n/phonenumbers/metadatalite.js +21 -19
  63. data/data/libphonenumber/resources/PhoneNumberMetadata.xml +86 -48
  64. data/data/libphonenumber/resources/PhoneNumberMetadataForTesting.xml +33 -2
  65. data/data/libphonenumber/resources/ShortNumberMetadata.xml +24 -8
  66. data/data/libphonenumber/resources/carrier/en/212.txt +16 -3
  67. data/data/libphonenumber/resources/carrier/en/251.txt +1 -0
  68. data/data/libphonenumber/resources/carrier/en/382.txt +29 -0
  69. data/data/libphonenumber/resources/carrier/en/421.txt +1 -0
  70. data/data/libphonenumber/resources/carrier/en/86.txt +13 -1
  71. data/data/libphonenumber/resources/carrier/en/91.txt +1 -0
  72. data/data/libphonenumber/resources/carrier/en/963.txt +50 -0
  73. data/data/libphonenumber/resources/carrier/zh/852.txt +283 -0
  74. data/data/libphonenumber/resources/carrier/zh/86.txt +64 -0
  75. data/data/libphonenumber/resources/carrier/zh_Hant/852.txt +283 -0
  76. data/data/libphonenumber/resources/carrier/zh_Hant/86.txt +64 -0
  77. data/data/libphonenumber/resources/geocoding/en/212.txt +1 -1
  78. data/data/libphonenumber/resources/test/geocoding/en/82.txt +1 -0
  79. data/data/libphonenumber/tools/java/common/pom.xml +4 -9
  80. data/data/libphonenumber/tools/java/cpp-build/pom.xml +4 -31
  81. data/data/libphonenumber/tools/java/cpp-build/target/cpp-build-1.0-SNAPSHOT-jar-with-dependencies.jar +0 -0
  82. data/data/libphonenumber/tools/java/java-build/pom.xml +4 -9
  83. data/data/libphonenumber/tools/java/java-build/target/java-build-1.0-SNAPSHOT-jar-with-dependencies.jar +0 -0
  84. data/data/phone_data.dat +0 -0
  85. data/lib/phonelib/phone.rb +1 -1
  86. data/lib/phonelib/version.rb +1 -1
  87. metadata +18 -8
  88. data/data/libphonenumber/java/lib/com/google/protobuf/protobuf-java/2.6.1/protobuf-java-2.6.1.jar +0 -0
  89. data/data/libphonenumber/java/lib/com/google/protobuf/protobuf-java/2.6.1/protobuf-java-2.6.1.pom +0 -9
  90. data/data/libphonenumber/java/lib/com/google/protobuf/protobuf-java/maven-metadata-local.xml +0 -12
  91. data/data/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/data/SingleFilePhoneNumberMetadataProto +0 -0
  92. data/data/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/data/SingleFilePhoneNumberMetadataProtoForTesting +0 -0
@@ -0,0 +1,64 @@
1
+ # Copyright (C) 2016 The Libphonenumber Authors
2
+
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ # Translations of en/86.txt from each carrier's wikipedia page and in
16
+ # some cases the carrier's own home page.
17
+
18
+ 86130|中国联通
19
+ 86131|中国联通
20
+ 86132|中国联通
21
+ 86133|中国电信
22
+ 861340|中国移动
23
+ 861341|中国移动
24
+ 861342|中国移动
25
+ 861343|中国移动
26
+ 861344|中国移动
27
+ 861345|中国移动
28
+ 861346|中国移动
29
+ 861347|中国移动
30
+ 861348|中国移动
31
+ 86135|中国移动
32
+ 86136|中国移动
33
+ 86137|中国移动
34
+ 86138|中国移动
35
+ 86139|中国移动
36
+ 86145|中国联通
37
+ 86147|中国移动
38
+ 86150|中国移动
39
+ 86151|中国移动
40
+ 86152|中国移动
41
+ 86153|中国电信
42
+ 86155|中国联通
43
+ 86156|中国联通
44
+ 86157|中国移动
45
+ 86158|中国移动
46
+ 86159|中国移动
47
+ 861703|中国移动
48
+ 861705|中国移动
49
+ 861706|中国移动
50
+ 86172|中国移动
51
+ 86173|中国电信
52
+ 86176|中国联通
53
+ 86177|中国电信
54
+ 86178|中国移动
55
+ 86180|中国电信
56
+ 86181|中国电信
57
+ 86182|中国移动
58
+ 86183|中国移动
59
+ 86184|中国移动
60
+ 86185|中国联通
61
+ 86186|中国联通
62
+ 86187|中国移动
63
+ 86188|中国移动
64
+ 86189|中国电信
@@ -0,0 +1,283 @@
1
+ # Copyright (C) 2016 The Libphonenumber Authors
2
+
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ # Translations of en/852.txt from each carrier's wikipedia page and in
16
+ # some cases the carrier's own home page.
17
+
18
+ 852510|中國移動
19
+ 852511|新移動通訊
20
+ 852512|中國移動
21
+ 852513|中國移動
22
+ 852514|香港移動通訊
23
+ 8525149|Truphone
24
+ 852516|中國移動
25
+ 852517|中國移動
26
+ 852518|香港移動通訊
27
+ 852519|3
28
+ 852521|1O1O / One2Free
29
+ 8525230|香港移動通訊
30
+ 8525231|香港移動通訊
31
+ 8525232|香港移動通訊
32
+ 8525233|香港移動通訊
33
+ 852524|1O1O / One2Free
34
+ 852526|中國移動
35
+ 852530|中國移動
36
+ 852531|中國移動
37
+ 852532|香港移動通訊
38
+ 852533|3
39
+ 852534|中國移動
40
+ 852536|香港移動通訊
41
+ 852537|中國移動
42
+ 852538|中國聯通
43
+ 852539|中國移動
44
+ 852540|新移動通訊
45
+ 852541|香港移動通訊
46
+ 852542|中國移動
47
+ 852543|1O1O / One2Free
48
+ 852544|中國移動
49
+ 852546|3
50
+ 852547|1O1O / One2Free
51
+ 852548|中國移動
52
+ 852549|中國移動
53
+ 852550|數碼通
54
+ 852551|中國移動
55
+ 852552|1O1O / One2Free
56
+ 852553|中國移動
57
+ 8525540|新移動通訊
58
+ 8525541|新移動通訊
59
+ 8525542|新移動通訊
60
+ 8525543|新移動通訊
61
+ 8525544|新移動通訊
62
+ 8525545|新移動通訊
63
+ 8525546|新移動通訊
64
+ 8525547|新移動通訊
65
+ 8525548|新移動通訊
66
+ 852556|3
67
+ 852557|中國移動
68
+ 852558|香港移動通訊
69
+ 852559|數碼通
70
+ 852560|中國移動
71
+ 852561|中國移動
72
+ 852562|中國移動
73
+ 852563|3
74
+ 852564|中國移動
75
+ 852566|3
76
+ 852568|1O1O / One2Free
77
+ 852569|3
78
+ 8525900|香港移動通訊
79
+ 8525901|香港移動通訊
80
+ 8525902|香港移動通訊
81
+ 8525903|香港移動通訊
82
+ 8525904|香港移動通訊
83
+ 8525905|香港移動通訊
84
+ 852591|1O1O / One2Free
85
+ 852592|1O1O / One2Free
86
+ 852593|中國移動
87
+ 852594|香港移動通訊
88
+ 852596|3
89
+ 852597|3
90
+ 852598|中國移動
91
+ 852599|1O1O / One2Free
92
+ 852601|數碼通
93
+ 852602|1O1O / One2Free
94
+ 852603|1O1O / One2Free
95
+ 852604|3
96
+ 852605|1O1O / One2Free
97
+ 852606|中國移動
98
+ 852607|3
99
+ 852608|3
100
+ 852609|中國移動
101
+ 852610|3
102
+ 852611|數碼通
103
+ 852612|香港移動通訊
104
+ 852613|1O1O / One2Free
105
+ 852614|1O1O / One2Free
106
+ 852615|中國移動
107
+ 852616|1O1O / One2Free
108
+ 852617|1O1O / One2Free
109
+ 852618|香港移動通訊
110
+ 852619|3
111
+ 852620|3
112
+ 852621|中國移動
113
+ 852622|中國移動
114
+ 852623|中國移動
115
+ 852624|潤迅通信
116
+ 852625|香港移動通訊
117
+ 852627|3
118
+ 852628|1O1O / One2Free
119
+ 852629|1O1O / One2Free
120
+ 852630|香港移動通訊
121
+ 852631|3
122
+ 852632|數碼通
123
+ 852633|3
124
+ 852634|3
125
+ 852635|中國移動
126
+ 852637|1O1O / One2Free
127
+ 852638|香港移動通訊
128
+ 852639|1O1O / One2Free
129
+ 852640|3
130
+ 852641|1O1O / One2Free
131
+ 852642|1O1O / One2Free
132
+ 852643|中國移動
133
+ 852644|香港移動通訊
134
+ 8526450|中信國際電訊
135
+ 85264510|中信國際電訊
136
+ 85264511|中信國際電訊
137
+ 8526452|中信國際電訊
138
+ 85264535|中信國際電訊
139
+ 85264536|中信國際電訊
140
+ 85264537|中信國際電訊
141
+ 85264538|中信國際電訊
142
+ 85264539|中信國際電訊
143
+ 8526454|中信國際電訊
144
+ 8526455|中信國際電訊
145
+ 8526456|中信國際電訊
146
+ 8526457|中信國際電訊
147
+ 8526458|中信國際電訊
148
+ 8526459|中信國際電訊
149
+ 852646|數碼通
150
+ 852647|3
151
+ 852648|中國移動
152
+ 852649|香港移動通訊
153
+ 852650|3
154
+ 852651|中港通
155
+ 852652|中國聯通
156
+ 852653|1O1O / One2Free
157
+ 852654|1O1O / One2Free
158
+ 852655|中國聯通
159
+ 852656|中國聯通
160
+ 852657|中國移動
161
+ 852658|中國移動
162
+ 852659|1O1O / One2Free
163
+ 852660|香港移動通訊
164
+ 852661|中國聯通
165
+ 852662|香港移動通訊
166
+ 852663|中國聯通
167
+ 852664|中國移動
168
+ 852665|1O1O / One2Free
169
+ 852667|中國移動
170
+ 852668|3
171
+ 852669|香港移動通訊
172
+ 852670|中國移動
173
+ 852671|1O1O / One2Free
174
+ 852672|中國聯通
175
+ 852673|中國移動
176
+ 852674|中國移動
177
+ 852675|1O1O / One2Free
178
+ 852676|中國移動
179
+ 852677|1O1O / One2Free
180
+ 852679|3
181
+ 852680|香港移動通訊
182
+ 852681|中國聯通
183
+ 852682|1O1O / One2Free
184
+ 852683|潤迅通信
185
+ 852684|中國移動
186
+ 852685|中國移動
187
+ 852687|中國移動
188
+ 852688|中國聯通
189
+ 852689|1O1O / One2Free
190
+ 852690|3
191
+ 852691|中國移動
192
+ 852692|香港移動通訊
193
+ 852693|中國移動
194
+ 852694|中國移動
195
+ 852695|中國移動
196
+ 852696|潤迅通信
197
+ 852697|1O1O / One2Free
198
+ 852698|潤迅通信
199
+ 852699|中國移動
200
+ 852901|數碼通
201
+ 852902|1O1O / One2Free
202
+ 852903|1O1O / One2Free
203
+ 852904|3
204
+ 852905|潤迅通信
205
+ 852906|中國移動
206
+ 852907|香港移動通訊
207
+ 852908|1O1O / One2Free
208
+ 852909|1O1O / One2Free
209
+ 852910|1O1O / One2Free
210
+ 852912|3
211
+ 852913|數碼通
212
+ 852914|中國移動
213
+ 852915|1O1O / One2Free
214
+ 852916|數碼通
215
+ 852917|數碼通
216
+ 852918|1O1O / One2Free
217
+ 852919|1O1O / One2Free
218
+ 852920|中國移動
219
+ 852921|1O1O / One2Free
220
+ 852922|數碼通
221
+ 852923|香港移動通訊
222
+ 852924|數碼通
223
+ 852925|1O1O / One2Free
224
+ 852926|1O1O / One2Free
225
+ 852927|香港移動通訊
226
+ 852928|3
227
+ 852930|1O1O / One2Free
228
+ 852931|數碼通
229
+ 852932|3
230
+ 852933|1O1O / One2Free
231
+ 852934|中國移動
232
+ 852935|3
233
+ 852936|3
234
+ 852937|3
235
+ 852938|數碼通
236
+ 852940|1O1O / One2Free
237
+ 852941|3
238
+ 852942|3
239
+ 852943|數碼通
240
+ 852944|數碼通
241
+ 852945|數碼通
242
+ 852946|1O1O / One2Free
243
+ 852947|3
244
+ 852948|3
245
+ 852949|3
246
+ 852950|3
247
+ 852951|中國移動
248
+ 852952|香港移動通訊
249
+ 852953|1O1O / One2Free
250
+ 852954|數碼通
251
+ 852955|1O1O / One2Free
252
+ 852956|中國聯通
253
+ 852957|3
254
+ 852958|中國移動
255
+ 852960|中國移動
256
+ 852961|1O1O / One2Free
257
+ 852962|1O1O / One2Free
258
+ 852963|3
259
+ 852964|香港移動通訊
260
+ 852965|1O1O / One2Free
261
+ 852966|數碼通
262
+ 852967|3
263
+ 852968|數碼通
264
+ 852969|中港通
265
+ 852970|3
266
+ 852971|中國移動
267
+ 852972|數碼通
268
+ 852973|數碼通
269
+ 852974|3
270
+ 852975|3
271
+ 852976|1O1O / One2Free
272
+ 852977|香港移動通訊
273
+ 852978|1O1O / One2Free
274
+ 852979|中國移動
275
+ 852980|香港移動通訊
276
+ 852981|3
277
+ 852982|3
278
+ 852983|3
279
+ 852984|數碼通
280
+ 852985|數碼通
281
+ 852986|數碼通
282
+ 852987|1O1O / One2Free
283
+ 852988|1O1O / One2Free
@@ -0,0 +1,64 @@
1
+ # Copyright (C) 2016 The Libphonenumber Authors
2
+
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ # Translations of en/86.txt from each carrier's wikipedia page and in
16
+ # some cases the carrier's own home page.
17
+
18
+ 86130|中國聯通
19
+ 86131|中國聯通
20
+ 86132|中國聯通
21
+ 86133|中國電信
22
+ 861340|中國移動
23
+ 861341|中國移動
24
+ 861342|中國移動
25
+ 861343|中國移動
26
+ 861344|中國移動
27
+ 861345|中國移動
28
+ 861346|中國移動
29
+ 861347|中國移動
30
+ 861348|中國移動
31
+ 86135|中國移動
32
+ 86136|中國移動
33
+ 86137|中國移動
34
+ 86138|中國移動
35
+ 86139|中國移動
36
+ 86145|中國聯通
37
+ 86147|中國移動
38
+ 86150|中國移動
39
+ 86151|中國移動
40
+ 86152|中國移動
41
+ 86153|中國電信
42
+ 86155|中國聯通
43
+ 86156|中國聯通
44
+ 86157|中國移動
45
+ 86158|中國移動
46
+ 86159|中國移動
47
+ 861703|中國移動
48
+ 861705|中國移動
49
+ 861706|中國移動
50
+ 86172|中國移動
51
+ 86173|中國電信
52
+ 86176|中國聯通
53
+ 86177|中國電信
54
+ 86178|中國移動
55
+ 86180|中國電信
56
+ 86181|中國電信
57
+ 86182|中國移動
58
+ 86183|中國移動
59
+ 86184|中國移動
60
+ 86185|中國聯通
61
+ 86186|中國聯通
62
+ 86187|中國移動
63
+ 86188|中國移動
64
+ 86189|中國電信
@@ -50,7 +50,7 @@
50
50
  21252980|Marrakech area
51
51
  21252990|Agadir area
52
52
  212530|Rabat/Kènitra
53
- 212531|Tangier/Al Hoceima/Larache/Tètouan
53
+ 212531|Tangier/Al Hoceima/Larache/Tètouan/Chefchaouen
54
54
  212532|Fès/Errachidia/Meknès/Nador/Oujda/Taza
55
55
  2125352|Taza
56
56
  2125353|Midelt
@@ -12,6 +12,7 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
+ 8210|Mobile prefix, should not be geocoded.
15
16
  822|Seoul
16
17
  8231|Gyeonggi
17
18
  8232|Incheon
@@ -51,12 +51,6 @@
51
51
  </plugins>
52
52
  </build>
53
53
 
54
- <repositories>
55
- <repository>
56
- <id>protobuf-java-lib</id>
57
- <url>file://${project.basedir}/../../../java/lib</url>
58
- </repository>
59
- </repositories>
60
54
  <dependencies>
61
55
  <dependency>
62
56
  <groupId>junit</groupId>
@@ -65,9 +59,10 @@
65
59
  <scope>test</scope>
66
60
  </dependency>
67
61
  <dependency>
68
- <groupId>com.google.protobuf</groupId>
69
- <artifactId>protobuf-java</artifactId>
70
- <version>2.6.1</version>
62
+ <groupId>com.google.protobuf.nano</groupId>
63
+ <artifactId>protobuf-javanano</artifactId>
64
+ <!-- If updating the version, see instructions in java/lib/protobuf-javanano-readme.md. -->
65
+ <version>3.0.0-alpha-7</version>
71
66
  </dependency>
72
67
  </dependencies>
73
68