summaryrefslogtreecommitdiff
path: root/res/xml/preferences.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-11-27 13:18:04 +0300
committerAndrew Dolgov <[email protected]>2011-11-27 13:18:04 +0300
commit16fd6cebd7ebda1ff159abdc8a382e621fa358c4 (patch)
tree2539e64bad20325c24b76fbbad7866e878059c14 /res/xml/preferences.xml
parentb5af258ee7dd71054fa81252cbc0769d1c176140 (diff)
cleaner preference handling in ApiRequest
make json data debugging optional
Diffstat (limited to 'res/xml/preferences.xml')
-rw-r--r--res/xml/preferences.xml11
1 files changed, 7 insertions, 4 deletions
diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml
index 1c102fb0..4fb2c5ec 100644
--- a/res/xml/preferences.xml
+++ b/res/xml/preferences.xml
@@ -3,14 +3,13 @@
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
- <PreferenceCategory android:title="@string/authentication">
+ <PreferenceCategory android:title="@string/connection">
<EditTextPreference android:title="@string/login" android:key="login" android:singleLine="true"></EditTextPreference>
<EditTextPreference android:title="@string/password" android:key="password" android:singleLine="true" android:password="true"></EditTextPreference>
<EditTextPreference android:key="ttrss_url" android:title="@string/ttrss_url" android:singleLine="true" textUri="true" android:hint="@string/default_url"></EditTextPreference>
<CheckBoxPreference android:defaultValue="false" android:title="@string/ssl_trust_any" android:key="ssl_trust_any" />
-
- </PreferenceCategory>
+ </PreferenceCategory>
<PreferenceCategory android:title="@string/look_and_feel">
<ListPreference
@@ -22,5 +21,9 @@
<CheckBoxPreference android:title="@string/sort_feeds_by_unread" android:key="sort_feeds_by_unread"/>
</PreferenceCategory>
-
+
+ <PreferenceCategory android:title="@string/debugging">
+ <CheckBoxPreference android:defaultValue="false" android:title="@string/transport_debugging" android:key="transport_debugging" />
+ </PreferenceCategory>
+
</PreferenceScreen> \ No newline at end of file