2009-06-01 09:55:11 +00:00
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2009-05-24
|
2013-04-28 14:35:51 +00:00
|
|
|
# Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
#
|
2010-09-30 10:17:41 +00:00
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2009-08-05 08:59:46 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2010-09-30 10:17:41 +00:00
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2010-08-14 17:52:23 +00:00
|
|
|
from core.scanner import ScanType
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2010-10-04 13:29:00 +00:00
|
|
|
from ..base.preferences import Preferences as PreferencesBase
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
class Preferences(PreferencesBase):
|
2010-08-15 10:27:15 +00:00
|
|
|
def _load_specific(self, settings):
|
|
|
|
get = self.get_value
|
2009-06-01 09:55:11 +00:00
|
|
|
self.scan_type = get('ScanType', self.scan_type)
|
|
|
|
self.word_weighting = get('WordWeighting', self.word_weighting)
|
|
|
|
self.match_similar = get('MatchSimilar', self.match_similar)
|
|
|
|
self.ignore_small_files = get('IgnoreSmallFiles', self.ignore_small_files)
|
|
|
|
self.small_file_threshold = get('SmallFileThreshold', self.small_file_threshold)
|
|
|
|
|
|
|
|
def _reset_specific(self):
|
|
|
|
self.filter_hardness = 80
|
2010-08-14 17:52:23 +00:00
|
|
|
self.scan_type = ScanType.Contents
|
2009-06-01 09:55:11 +00:00
|
|
|
self.word_weighting = True
|
|
|
|
self.match_similar = False
|
|
|
|
self.ignore_small_files = True
|
|
|
|
self.small_file_threshold = 10 # KB
|
|
|
|
|
2010-08-15 10:27:15 +00:00
|
|
|
def _save_specific(self, settings):
|
|
|
|
set_ = self.set_value
|
2009-06-01 09:55:11 +00:00
|
|
|
set_('ScanType', self.scan_type)
|
|
|
|
set_('WordWeighting', self.word_weighting)
|
|
|
|
set_('MatchSimilar', self.match_similar)
|
|
|
|
set_('IgnoreSmallFiles', self.ignore_small_files)
|
|
|
|
set_('SmallFileThreshold', self.small_file_threshold)
|
|
|
|
|