From 16ae9739f28fb4ec47ac0777cb61d61ab6b01433 Mon Sep 17 00:00:00 2001 From: michael starke Date: Mon, 1 Sep 2014 19:06:18 +0200 Subject: [PATCH] Added comment regarding KeePass settings for Autotype matching --- MacPass/MPDocument+Autotype.m | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/MacPass/MPDocument+Autotype.m b/MacPass/MPDocument+Autotype.m index 30918e45..bc64d307 100644 --- a/MacPass/MPDocument+Autotype.m +++ b/MacPass/MPDocument+Autotype.m @@ -53,6 +53,15 @@ NSArray *autotypeEntries = [self.root autotypeableChildEntries]; NSMutableArray *contexts = [[NSMutableArray alloc] initWithCapacity:MAX(1,ceil([autotypeEntries count] / 4.0))]; for(KPKEntry *entry in autotypeEntries) { + /* TODO: + + KeePass for Windows hase the following options for matching: + Title is contained + URL is contained + Host component is contained + A tag is contained + + */ /* Test for entry title in window title */ NSRange titleRange = [windowTitle rangeOfString:entry.title options:NSCaseInsensitiveSearch]; /* Test for window title in entry title */