2011-09-20 22:40:27 +00:00
|
|
|
# Created On: 2011/09/20
|
2015-01-03 21:30:57 +00:00
|
|
|
# Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
|
2011-09-20 22:40:27 +00:00
|
|
|
#
|
2015-01-03 21:33:16 +00:00
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
2011-09-20 22:40:27 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2015-01-03 21:33:16 +00:00
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
2011-09-20 22:40:27 +00:00
|
|
|
|
2013-07-14 21:43:58 +00:00
|
|
|
from core.app import DupeGuru as DupeGuruBase
|
2011-09-21 14:26:58 +00:00
|
|
|
from core import prioritize
|
2013-07-14 21:43:58 +00:00
|
|
|
from . import __appname__, fs
|
2011-11-27 17:47:00 +00:00
|
|
|
from .result_table import ResultTable
|
2011-09-20 22:40:27 +00:00
|
|
|
|
|
|
|
class DupeGuru(DupeGuruBase):
|
2011-09-21 14:35:34 +00:00
|
|
|
NAME = __appname__
|
2011-09-21 14:26:58 +00:00
|
|
|
METADATA_TO_READ = ['size', 'mtime']
|
|
|
|
|
2013-10-12 17:54:13 +00:00
|
|
|
def __init__(self, view):
|
|
|
|
DupeGuruBase.__init__(self, view)
|
2013-07-14 21:43:58 +00:00
|
|
|
self.directories.fileclasses = [fs.File]
|
2013-08-19 00:50:31 +00:00
|
|
|
self.directories.folderclass = fs.Folder
|
2011-09-21 14:26:58 +00:00
|
|
|
|
|
|
|
def _prioritization_categories(self):
|
|
|
|
return prioritize.all_categories()
|
2011-09-20 22:40:27 +00:00
|
|
|
|
2012-01-13 21:34:21 +00:00
|
|
|
def _create_result_table(self):
|
|
|
|
return ResultTable(self)
|
|
|
|
|