Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
8192b4a6
Commit
8192b4a6
authored
12 years ago
by
Jean Chalard
Browse files
Options
Downloads
Patches
Plain Diff
[B9] Pass the client id parameter for dict info requests
Bug: 6789534 Change-Id: Ie3ea75b19ae4da2dea531e0077c58742a9502bc6
parent
f1acb0e5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/res/values/donottranslate.xml
+1
-0
1 addition, 0 deletions
java/res/values/donottranslate.xml
java/src/com/android/inputmethod/latin/BinaryDictionaryFileDumper.java
+12
-1
12 additions, 1 deletion
...android/inputmethod/latin/BinaryDictionaryFileDumper.java
with
13 additions
and
1 deletion
java/res/values/donottranslate.xml
+
1
−
0
View file @
8192b4a6
...
...
@@ -213,5 +213,6 @@
<!-- dictionary pack package name /settings activity (for shared prefs and settings) -->
<string
name=
"dictionary_pack_package_name"
>
com.google.android.inputmethod.latin.dictionarypack
</string>
<string
name=
"dictionary_pack_settings_activity"
>
com.google.android.inputmethod.latin.dictionarypack.DictionarySettingsActivity
</string>
<string
name=
"dictionary_pack_client_id"
>
com.android.inputmethod.latin
</string>
<string
name=
"settings_warning_researcher_mode"
>
Attention! You are using the special keyboard for research purposes.
</string>
</resources>
This diff is collapsed.
Click to expand it.
java/src/com/android/inputmethod/latin/BinaryDictionaryFileDumper.java
+
12
−
1
View file @
8192b4a6
...
...
@@ -62,6 +62,13 @@ public final class BinaryDictionaryFileDumper {
private
static
final
String
QUERY_PARAMETER_SUCCESS
=
"success"
;
private
static
final
String
QUERY_PARAMETER_FAILURE
=
"failure"
;
// Using protocol version 2 to communicate with the dictionary pack
private
static
final
String
QUERY_PARAMETER_PROTOCOL
=
"protocol"
;
private
static
final
String
QUERY_PARAMETER_PROTOCOL_VALUE
=
"2"
;
// The path fragment to append after the client ID for dictionary info requests.
private
static
final
String
QUERY_PATH_DICT_INFO
=
"dict"
;
// Prevents this class to be accidentally instantiated.
private
BinaryDictionaryFileDumper
()
{
}
...
...
@@ -85,7 +92,11 @@ public final class BinaryDictionaryFileDumper {
private
static
List
<
WordListInfo
>
getWordListWordListInfos
(
final
Locale
locale
,
final
Context
context
,
final
boolean
hasDefaultWordList
)
{
final
ContentResolver
resolver
=
context
.
getContentResolver
();
final
Uri
.
Builder
builder
=
getProviderUriBuilder
(
locale
.
toString
());
final
String
clientId
=
context
.
getString
(
R
.
string
.
dictionary_pack_client_id
);
final
Uri
.
Builder
builder
=
getProviderUriBuilder
(
clientId
);
builder
.
appendPath
(
QUERY_PATH_DICT_INFO
);
builder
.
appendPath
(
locale
.
toString
());
builder
.
appendQueryParameter
(
QUERY_PARAMETER_PROTOCOL
,
QUERY_PARAMETER_PROTOCOL_VALUE
);
if
(!
hasDefaultWordList
)
{
builder
.
appendQueryParameter
(
QUERY_PARAMETER_MAY_PROMPT_USER
,
QUERY_PARAMETER_TRUE
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment