| OLD | NEW | 
|---|
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> | 
| 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public | 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public | 
| 3    - License, v. 2.0. If a copy of the MPL was not distributed with this | 3    - License, v. 2.0. If a copy of the MPL was not distributed with this | 
| 4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> | 4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> | 
| 5 | 5 | 
| 6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 6 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 
| 7                   xmlns:gecko="http://schemas.android.com/apk/res-auto" | 7                   xmlns:gecko="http://schemas.android.com/apk/res-auto" > | 
| 8                   android:enabled="false"> |  | 
| 9 | 8 | 
| 10     <PreferenceCategory android:title="@string/abb_pref_category_blocking"> | 9     <PreferenceCategory android:title="@string/abb_pref_category_blocking"> | 
| 11         <PreferenceScreen android:title="@string/abb_pref_category_adblocking" | 10         <PreferenceScreen android:title="@string/abb_pref_category_adblocking" | 
| 12                           android:summary="@string/abb_pref_category_adblocking_
    summary" > | 11                           android:summary="@string/abb_pref_category_adblocking_
    summary" > | 
| 13               <intent android:action="android.intent.action.VIEW" | 12               <intent android:action="android.intent.action.VIEW" | 
| 14                       android:targetPackage="@string/android_package_name" | 13                       android:targetPackage="@string/android_package_name" | 
| 15                       android:targetClass="org.mozilla.gecko.preferences.GeckoPr
    eferences" > | 14                       android:targetClass="org.mozilla.gecko.preferences.GeckoPr
    eferences" > | 
| 16                   <extra android:name="resource" | 15                   <extra android:name="resource" | 
| 17                          android:value="preferences_abb_adblocking" /> | 16                          android:value="preferences_abb_adblocking" /> | 
| 18               </intent> | 17               </intent> | 
| 19         </PreferenceScreen> | 18         </PreferenceScreen> | 
| 20 <!-- Commented out until implemented |  | 
| 21         <PreferenceScreen android:title="@string/abb_pref_category_further_block
    ing" | 19         <PreferenceScreen android:title="@string/abb_pref_category_further_block
    ing" | 
| 22                           android:summary="@string/abb_pref_category_further_blo
    cking_summary" > | 20                           android:summary="@string/abb_pref_category_further_blo
    cking_summary" > | 
|  | 21               <intent android:action="android.intent.action.VIEW" | 
|  | 22                       android:targetPackage="@string/android_package_name" | 
|  | 23                       android:targetClass="org.mozilla.gecko.preferences.GeckoPr
    eferences" > | 
|  | 24                   <extra android:name="resource" | 
|  | 25                          android:value="preferences_abb_further_blocking" /> | 
|  | 26               </intent> | 
| 23         </PreferenceScreen> | 27         </PreferenceScreen> | 
| 24 --> |  | 
| 25     </PreferenceCategory> | 28     </PreferenceCategory> | 
| 26     <PreferenceCategory android:title="@string/abb_pref_category_exceptions"> | 29     <PreferenceCategory android:title="@string/abb_pref_category_exceptions"> | 
| 27         <PreferenceScreen android:title="@string/abb_pref_category_acceptable_ad
    s" | 30         <PreferenceScreen android:title="@string/abb_pref_category_acceptable_ad
    s" | 
| 28                           android:summary="@string/abb_pref_category_acceptable_
    ads_summary" > | 31                           android:summary="@string/abb_pref_category_acceptable_
    ads_summary" > | 
| 29               <intent android:action="android.intent.action.VIEW" | 32               <intent android:action="android.intent.action.VIEW" | 
| 30                       android:targetPackage="@string/android_package_name" | 33                       android:targetPackage="@string/android_package_name" | 
| 31                       android:targetClass="org.mozilla.gecko.preferences.GeckoPr
    eferences" > | 34                       android:targetClass="org.mozilla.gecko.preferences.GeckoPr
    eferences" > | 
| 32                   <extra android:name="resource" | 35                   <extra android:name="resource" | 
| 33                          android:value="preferences_abb_abp_acceptable_ads" /> | 36                          android:value="preferences_abb_abp_acceptable_ads" /> | 
| 34               </intent> | 37               </intent> | 
| 35         </PreferenceScreen> | 38         </PreferenceScreen> | 
| 36 <!-- Commented out until implemented | 39 <!-- Commented out until implemented | 
| 37         <PreferenceScreen android:title="@string/abb_pref_category_whitelisted_s
    ites" | 40         <PreferenceScreen android:title="@string/abb_pref_category_whitelisted_s
    ites" | 
| 38                           android:summary="@string/abb_pref_category_whitelisted
    _sites_summary" > | 41                           android:summary="@string/abb_pref_category_whitelisted
    _sites_summary" > | 
| 39         </PreferenceScreen> | 42         </PreferenceScreen> | 
| 40 --> | 43 --> | 
| 41     </PreferenceCategory> | 44     </PreferenceCategory> | 
| 42 | 45 | 
| 43 </PreferenceScreen> | 46 </PreferenceScreen> | 
| 44 | 47 | 
| OLD | NEW | 
|---|