Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-05 | keepass2pass.py: Don't import all entries twice | Martin Günther | |
Without this patch, all entries are processed twice: once in the first call to import_group (which recursively processes all entries), then in the following import_group on all subgroups. This leads to spurious warnings ("Duplicate needs merging") and extra text added to each entry. | |||
2015-10-27 | emacs: Add defvar for timeout timer | Peter Vasil | |
Use a defvar for the timeout timer in order to have better control and not starting multiple timers when calling password-store-copy. | |||
2015-10-20 | lastpass2pass.rb: Check for nil names/groupings | Brian Tomlinson | |
In particular, people were encountering exceptions when `empty?` was called on a `nil` grouping. | |||
2015-09-30 | emacs: Guard against "%" in message string | Svend Sorensen | |
The output of pass may contain "%", which will cause `message` to throw the error: "Not enough arguments for format string". For example, `pass rename foo bar` outputs: [master c33f7a9] Rename foo to bar. 1 file changed, 0 insertions(+), 0 deletions(-) rename foo.gpg => bar.gpg (100%) | |||
2015-07-24 | passmenu: Space to tabs | Chris Down | |
It seems this file doesn't use spaces any more. | |||
2015-07-24 | passmenu: Only pass first line to xdotool | Chris Down | |
In 87ec1489fa98, I forgot that some people like to store more than one line in their password files. We should only pass the first line to xdotool. | |||
2015-07-24 | passmenu: Read from stdin when using xdotool to type password | Chris Down | |
This works around a bug in xdotool parsing when encountering quotes, see https://github.com/jordansissel/xdotool/issues/72. Thanks to Gerd Wachsmuth for the report. | |||
2015-05-26 | emacs: Make `password-store-password-length' customizable | Nicolas Petton | |
2015-05-11 | lastpass importer: more types supported and better checking | Raphaël Droz | |
2015-05-11 | contrib: add applescript support | Steffen Vogel | |
2015-05-11 | Add roboform import script. | Jason A. Donenfeld | |
2015-05-11 | Correct permissions | Jason A. Donenfeld | |
2015-03-23 | emacs: Remove dash from Package-Requires | Svend Sorensen | |
2015-03-23 | emacs: Remove dependency on dash | Svend Sorensen | |
Use delq instead of -reject from the dash package. | |||
2015-03-22 | emacs: Use spaces for indentation | Svend Sorensen | |
2015-03-16 | emacs: Separate stdout and stderr | Svend Sorensen | |
This fixes a problem where gnupg-agent messages would get mixed with the password content. | |||
2015-01-15 | Add tejr's script | Jason A. Donenfeld | |
2015-01-08 | emacs: Quote shell arguments | Svend Sorensen | |
Quote shell arguments for insert so that it handles passwords and entry names that contain special characters. | |||
2014-09-21 | keepassx2pass: Handle unicode | Thibaut Horel | |
2014-07-16 | revelation2pass: fix import from entries without passwords | Daniel Poelzleithner | |
2014-06-29 | passmenu: type text with xdotool | Jason A. Donenfeld | |
Suggested-by: Christoph Egger <christoph@christoph-egger.org> | |||
2014-06-29 | keepassx2pass: Substitute empty string for None | Andrew Spiers | |
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' | |||
2014-06-16 | emacs: Use PASSWORD_STORE_CLIP_TIME env variable | Svend Sorensen | |
Timeout password after PASSWORD_STORE_CLIP_TIME seconds, if set. Otherwise timeout after 45 seconds. These are the setting used by pass. | |||
2014-06-16 | emacs: Use when instead of if/progn | Svend Sorensen | |
2014-06-16 | emacs: Update pass website URL | Svend Sorensen | |
2014-05-07 | Implement interactive init function | Svend Sorensen | |
2014-05-07 | Implement interactive rename function | Svend Sorensen | |
2014-05-07 | Reorder interactive function to match order of helper functions | Svend Sorensen | |
2014-05-07 | Make edit helper function name consistent with other helpers | Svend Sorensen | |
2014-05-07 | Factor out password completing-read function | Svend Sorensen | |
2014-05-07 | Add dash to Package-Requires | Svend Sorensen | |
2014-05-06 | Import new kwallet importer. | Jason A. Donenfeld | |
2014-05-05 | Add (provide 'password-store) to end of package | Svend Sorensen | |
2014-05-05 | password-length is already a number | Svend Sorensen | |
2014-05-04 | Add recursive option to remove, remove force option | Svend Sorensen | |
Optional force does not make sense for non-interactive remove function. | |||
2014-05-04 | Move s-chomp to run function | Svend Sorensen | |
2014-05-04 | Implement pass command wrapper functions | Svend Sorensen | |
2014-05-04 | Remove nils from run argument list | Svend Sorensen | |
2014-05-04 | Rename pass executable variable | Svend Sorensen | |
2014-04-24 | Indent using spaces | Svend Sorensen | |
2014-04-24 | dmenu: hide output | Jason A. Donenfeld | |
2014-04-24 | Allow overridable bash. | Jason A. Donenfeld | |
2014-04-24 | dmenu: check for empty instead of ret code | Jason A. Donenfeld | |
2014-04-23 | find: support tree 1.7.0 | Jason A. Donenfeld | |
2014-04-23 | contrib: import passmenu | Jason A. Donenfeld | |
2014-04-23 | emacs: import svend's tree | Jason A. Donenfeld | |
2014-04-23 | contrib: fix typo | Jason A. Donenfeld | |
Reported-by: Lukas Fleischer <info@cryptocrack.de> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> | |||
2014-04-23 | keepassx2pass: handle forward slash '/' in titles | George Angelopoulos | |
Without this, a forward slash in the title creates a new directory in the password-store. This replaces forward slashes with dashes. | |||
2014-04-23 | contrib: typo | Jason A. Donenfeld | |
2014-04-22 | Add link to emacs password store. | Jason A. Donenfeld | |