summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/xml/preferences_network.xml
diff options
context:
space:
mode:
Diffstat (limited to 'org.fox.ttrss/src/main/res/xml/preferences_network.xml')
-rwxr-xr-xorg.fox.ttrss/src/main/res/xml/preferences_network.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/org.fox.ttrss/src/main/res/xml/preferences_network.xml b/org.fox.ttrss/src/main/res/xml/preferences_network.xml
new file mode 100755
index 00000000..8d1469d5
--- /dev/null
+++ b/org.fox.ttrss/src/main/res/xml/preferences_network.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
+ <PreferenceCategory android:title="@string/ssl" >
+ <org.fox.ttrss.util.LessBrokenSwitchPreference
+ android:defaultValue="false"
+ android:key="ssl_trust_any"
+ android:summary="@string/ssl_trust_any_long"
+ android:title="@string/ssl_trust_any" />
+ <org.fox.ttrss.util.LessBrokenSwitchPreference
+ android:defaultValue="false"
+ android:key="ssl_trust_any_host"
+ android:summary="@string/ssl_trust_any_host_long"
+ android:title="@string/ssl_trust_any_host" />
+ </PreferenceCategory>
+ <PreferenceCategory android:title="@string/http_authentication" >
+ <EditTextPreference
+ android:key="http_login"
+ android:singleLine="true"
+ android:summary="@string/http_login_summary"
+ android:title="@string/login" >
+ </EditTextPreference>
+ <EditTextPreference
+ android:key="http_password"
+ android:password="true"
+ android:singleLine="true"
+ android:title="@string/password" >
+ </EditTextPreference>
+ </PreferenceCategory>
+</PreferenceScreen>