m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/contrib
AgeCommit message (Collapse)Author
2016-02-07dmenu: read likes -rJason A. Donenfeld
2016-02-06Moved to webpageJason A. Donenfeld
2016-02-06keepass2csv2passDavid Francoeur
The CSV is generated by KeePassX 2.0 on Mac OSX
2016-02-06passmenu: group commandsJason A. Donenfeld
2016-02-05passmenu: Use faster built-inJason A. Donenfeld
2016-02-05Add importer for Password Exporter for FirefoxDaniele Pizzolli
To assist the migration from the default Firefox password store to passff. Add also some basic tests. More info at: - <https://addons.mozilla.org/en-US/firefox/addon/password-exporter> - <https://addons.mozilla.org/en-US/firefox/addon/passff>
2016-02-05passmenu: don't use awkJason A. Donenfeld
Prof. Aho always seemed neat, but parsing a script inside a script for the simple purpose of removing the trailing new line seems a bit absurd. So, instead use two processes! One for getting the first line and one for removing the trailing line. Everybody loves more calls to fork(), right?
2016-02-05keepass2pass.py: Don't import all entries twiceMartin 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-27emacs: Add defvar for timeout timerPeter 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-20lastpass2pass.rb: Check for nil names/groupingsBrian Tomlinson
In particular, people were encountering exceptions when `empty?` was called on a `nil` grouping.
2015-09-30emacs: Guard against "%" in message stringSvend 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-24passmenu: Space to tabsChris Down
It seems this file doesn't use spaces any more.
2015-07-24passmenu: Only pass first line to xdotoolChris 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-24passmenu: Read from stdin when using xdotool to type passwordChris 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-26emacs: Make `password-store-password-length' customizableNicolas Petton
2015-05-11lastpass importer: more types supported and better checkingRaphaël Droz
2015-05-11contrib: add applescript supportSteffen Vogel
2015-05-11Add roboform import script.Jason A. Donenfeld
2015-05-11Correct permissionsJason A. Donenfeld
2015-03-23emacs: Remove dash from Package-RequiresSvend Sorensen
2015-03-23emacs: Remove dependency on dashSvend Sorensen
Use delq instead of -reject from the dash package.
2015-03-22emacs: Use spaces for indentationSvend Sorensen
2015-03-16emacs: Separate stdout and stderrSvend Sorensen
This fixes a problem where gnupg-agent messages would get mixed with the password content.
2015-01-15Add tejr's scriptJason A. Donenfeld
2015-01-08emacs: Quote shell argumentsSvend Sorensen
Quote shell arguments for insert so that it handles passwords and entry names that contain special characters.
2014-09-21keepassx2pass: Handle unicodeThibaut Horel
2014-07-16revelation2pass: fix import from entries without passwordsDaniel Poelzleithner
2014-06-29passmenu: type text with xdotoolJason A. Donenfeld
Suggested-by: Christoph Egger <christoph@christoph-egger.org>
2014-06-29keepassx2pass: Substitute empty string for NoneAndrew 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-16emacs: Use PASSWORD_STORE_CLIP_TIME env variableSvend 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-16emacs: Use when instead of if/prognSvend Sorensen
2014-06-16emacs: Update pass website URLSvend Sorensen
2014-05-07Implement interactive init functionSvend Sorensen
2014-05-07Implement interactive rename functionSvend Sorensen
2014-05-07Reorder interactive function to match order of helper functionsSvend Sorensen
2014-05-07Make edit helper function name consistent with other helpersSvend Sorensen
2014-05-07Factor out password completing-read functionSvend Sorensen
2014-05-07Add dash to Package-RequiresSvend Sorensen
2014-05-06Import new kwallet importer.Jason A. Donenfeld
2014-05-05Add (provide 'password-store) to end of packageSvend Sorensen
2014-05-05password-length is already a numberSvend Sorensen
2014-05-04Add recursive option to remove, remove force optionSvend Sorensen
Optional force does not make sense for non-interactive remove function.
2014-05-04Move s-chomp to run functionSvend Sorensen
2014-05-04Implement pass command wrapper functionsSvend Sorensen
2014-05-04Remove nils from run argument listSvend Sorensen
2014-05-04Rename pass executable variableSvend Sorensen
2014-04-24Indent using spacesSvend Sorensen
2014-04-24dmenu: hide outputJason A. Donenfeld
2014-04-24Allow overridable bash.Jason A. Donenfeld
2014-04-24dmenu: check for empty instead of ret codeJason A. Donenfeld