diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /mobile/android/docs/defaultdomains.rst | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'mobile/android/docs/defaultdomains.rst')
-rw-r--r-- | mobile/android/docs/defaultdomains.rst | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/mobile/android/docs/defaultdomains.rst b/mobile/android/docs/defaultdomains.rst new file mode 100644 index 000000000..470c2c8ec --- /dev/null +++ b/mobile/android/docs/defaultdomains.rst @@ -0,0 +1,90 @@ +.. -*- Mode: rst; fill-column: 100; -*- + +========================== + Shipping Default Domains +========================== + +Firefox for Mobile (Android and iOS) ships sets of default content in order to improve the +first-run experience. There are two primary places where default sets of domains are used: URLBar +domain auto-completion, and Top Sites suggested thumbnails. + +The source of these domains is typically the Alexa top sites lists, global and by-country. Before +shipping the sets of domains, the lists are sanitized. + +Domain Auto-completion +====================== + +As you type in the URLBar, Firefox will scan your history and auto-complete previously visited +domains that match what you have entered. This can make navigating to web sites faster because it +can avoid significant amounts of typing. During your first few uses, Firefox does not have any +history and you are forced to type full URLs. Shipping a set of top domains provides a fallback. + +The top domains list can be localized, but Firefox will fallback to using en-US as the default for all +locales that do not provide a specific set. The list can have several hundred domains, but due to +size concerns, is usually capped to five hundred or less. + +Sanitizing Methods +------------------ + +After getting a source list, e.g. Alexa top global sites, we apply some simple guidelines to the +list of domains: + + +* Remove any sites in the Alexa adult site list. +* Remove any locale-specific domain duplicates. We assume primary URLs (.com) will redirect to the + correct locale (.co.jp) at run-time. +* Remove any explicit adult content* domains. +* Remove any sites that use explicit or adult advertising*. +* Remove any URL shorteners and redirecters. +* Remove any content/CDN domains. Some sites use separate domains to store images and other static content. +* Remove any sites primarily used for advertising or management of advertising. +* Remove any sites that fail to load in mobile browsers. +* Remove any time/date specific sites that may have appeared on the list due to seasonal spikes. + +Suggested Sites +=============== + +Suggested sites are default thumbnails, displayed on the Top Sites home panel. A suggested site +consists of a title, thumbnail image, background color and URL. Multiple images are usually +required to handle the variety of device DPIs. + +Suggested sites can be localized, but Firefox will fallback to using en-US as the default for all +locales that do not provide a specific set. The list is usually small, with perhaps fewer than ten +sites. + +Sanitizing Methods +------------------ + +After getting a source list, e.g. Alexa top global sites, we apply some simple guidelines to the +list of domains: + +* Remove pure search engines. We handle search engines differently and don't consider them to be + suggested sites. +* Remove any locale-specific domain duplicates. We assume primary URLs (.com) will redirect to the + correct locale (.co.jp) at run-time. +* Remove any explicit adult content domains. +* Remove any sites that use explicit or adult advertising. +* Remove any URL shorteners and redirecters. +* Remove any content/CDN domains. Some sites use separate domains to store images and other static + content. + +Guidelines for Adult Content +============================ + +Generally the Adult category includes sites whose dominant theme is either: + +* To appeal to the prurient interest in sex without any serious literary, artistic, political, or + scientific value +* The depiction or description of nudity, including sexual or excretory activities or organs in a + lascivious way +* The depiction or description of sexually explicit conduct in a lascivious way (e.g. for + entertainment purposes) + +For a more complete definition and guidelines of adult content, use the full DMOZ guidelines at +http://www.dmoz.org/docs/en/guidelines/adult/general.html. + +Updating Lists +============== + +After approximately every two releases, Product (with Legal) will review current lists and +sanitizing methods, and update the lists accordingly. |