]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/xml/preferences.xml
Allow customization of the search URLs.
[PrivacyBrowserAndroid.git] / app / src / main / res / xml / preferences.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright 2016 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
7
8   Privacy Browser is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   Privacy Browser is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
22     <PreferenceCategory
23         android:key="privacy"
24         android:title="@string/privacy" >
25
26         <SwitchPreference
27             android:key="javascript_enabled"
28             android:title="@string/javascript_preference"
29             android:summary="@string/javascript_preference_summary"
30             android:defaultValue="false" />
31
32         <SwitchPreference
33             android:key="first_party_cookies_enabled"
34             android:title="@string/first_party_cookies_preference"
35             android:summary="@string/first_party_cookies_preference_summary"
36             android:defaultValue="false" />
37
38         <SwitchPreference
39             android:key="third_party_cookies_enabled"
40             android:title="@string/third_party_cookies_preference"
41             android:summary="@string/third_party_cookies_summary"
42             android:defaultValue="false" />
43
44         <SwitchPreference
45             android:key="dom_storage_enabled"
46             android:title="@string/dom_storage_preference"
47             android:summary="@string/dom_storage_preference_summary"
48             android:defaultValue="false" />
49     </PreferenceCategory>
50
51     <PreferenceCategory
52         android:key="search"
53         android:title="@string/search">
54
55         <ListPreference
56             android:key="javascript_disabled_search"
57             android:title="@string/javascript_disabled_search"
58             android:entries="@array/javascript_disabled_search_entries"
59             android:entryValues="@array/javascript_disabled_search_entry_values"
60             android:defaultValue="https://duckduckgo.com/html/?q=" />
61
62         <EditTextPreference
63             android:key="javascript_disabled_search_custom_url"
64             android:title="@string/javascript_disabled_search_custom_url"
65             android:defaultValue=""
66             android:inputType="textUri"
67             android:singleLine="true" />
68
69         <ListPreference
70             android:key="javascript_enabled_search"
71             android:title="@string/javascript_enabled_search"
72             android:entries="@array/javascript_enabled_search_entries"
73             android:entryValues="@array/javascript_enabled_search_entry_values"
74             android:defaultValue="https://duckduckgo.com/?q=" />
75
76         <EditTextPreference
77             android:key="javascript_enabled_search_custom_url"
78             android:title="@string/javascript_enabled_search_custom_url"
79             android:defaultValue=""
80             android:inputType="textUri"
81             android:singleLine="true" />
82     </PreferenceCategory>
83
84     <PreferenceCategory
85         android:key="general"
86         android:title="@string/general" >
87
88         <EditTextPreference
89             android:key="homepage"
90             android:title="@string/homepage_preference"
91             android:defaultValue="https://www.duckduckgo.com"
92             android:inputType="textUri"
93             android:singleLine="true" />
94
95         <SwitchPreference
96             android:key="swipe_to_refresh_enabled"
97             android:title="@string/swipe_to_refresh_enabled"
98             android:summary="@string/swipe_to_refresh_enabled_summary"
99             android:defaultValue="true" />
100     </PreferenceCategory>
101 </PreferenceScreen>