aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/contrib/importers/keepassx2pass.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Correct permissionsJason A. Donenfeld2015-05-111-0/+0
|
* keepassx2pass: Handle unicodeThibaut Horel2014-09-211-1/+1
|
* keepassx2pass: Substitute empty string for NoneAndrew Spiers2014-06-291-1/+4
| | | | | | | | | | | | | | | | | | | | | | If keepassx2pass.py is given an xml file containing passwords with an empty title, like <title></title>, ElementTree.text returns None. This commit substitutes an empty string; which will produce a password with name '_', instead of raising AtttributeError, as shown in this exception:: Traceback (most recent call last): File "contrib/importers/keepassx2pass.py", line 80, in <module> main(sys.argv[1]) File "contrib/importers/keepassx2pass.py", line 77, in main import_group(group) File "contrib/importers/keepassx2pass.py", line 71, in import_group import_entry(entry, npath) File "contrib/importers/keepassx2pass.py", line 58, in import_entry print "Importing " + path_for(element, path) File "contrib/importers/keepassx2pass.py", line 37, in path_for title = cleanTitle(space_to_camelcase(element.find('title').text)) File "contrib/importers/keepassx2pass.py", line 16, in space_to_camelcase for word in value.split(" "): AttributeError: 'NoneType' object has no attribute 'split'
* keepassx2pass: handle forward slash '/' in titlesGeorge Angelopoulos2014-04-231-1/+1
| | | | | Without this, a forward slash in the title creates a new directory in the password-store. This replaces forward slashes with dashes.
* Multiline comment support for keepassx importerLukas Zapletal2014-04-151-5/+9
|
* Makefile: do not use recursion and organizeJason A. Donenfeld2014-03-221-0/+76