2018-08-30 14:25:33 +00:00
|
|
|
export const R_URL_REQUIRES_PROTOCOL = /^https?:\/\/\w[\w_\-.]*\.[a-z]{2,8}[^\s]*$/;
|
2018-10-12 12:23:21 +00:00
|
|
|
|
|
|
|
export const STATS_NAMES = {
|
|
|
|
avg_processing_time: 'Average processing time',
|
|
|
|
blocked_filtering: 'Blocked by filters',
|
|
|
|
dns_queries: 'DNS queries',
|
|
|
|
replaced_parental: 'Blocked adult websites',
|
|
|
|
replaced_safebrowsing: 'Blocked malware/phishing',
|
|
|
|
replaced_safesearch: 'Enforced safe search',
|
|
|
|
};
|
|
|
|
|
|
|
|
export const STATUS_COLORS = {
|
|
|
|
blue: '#467fcf',
|
|
|
|
red: '#cd201f',
|
|
|
|
green: '#5eba00',
|
|
|
|
yellow: '#f1c40f',
|
|
|
|
};
|
2018-10-14 20:24:11 +00:00
|
|
|
|
|
|
|
export const REPOSITORY = {
|
|
|
|
URL: 'https://github.com/AdguardTeam/AdguardDNS',
|
|
|
|
TRACKERS_DB: 'https://github.com/AdguardTeam/AdguardDNS/tree/master/client/src/helpers/trackers/adguard.json',
|
|
|
|
};
|