Added comment regarding KeePass settings for Autotype matching

This commit is contained in:
michael starke
2014-09-01 19:06:18 +02:00
parent bf2a8ed5f6
commit 16ae9739f2

View File

@@ -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 */