summaryrefslogtreecommitdiffstats
path: root/site/projects
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-07-01 15:09:32 +0200
committerGravatar Tom Willemsen2012-07-01 15:09:32 +0200
commit2e78e4e78de8289a7ef2447d03a3be41f4cac531 (patch)
tree6a3914320bd8dcf4f20dec1ec058381fbd2fb5a9 /site/projects
parente3db60ce555adf90880184d6790d548fe9766356 (diff)
downloadorgweb-2e78e4e78de8289a7ef2447d03a3be41f4cac531.tar.gz
orgweb-2e78e4e78de8289a7ef2447d03a3be41f4cac531.zip
Add dispass.el project description
Diffstat (limited to 'site/projects')
-rw-r--r--site/projects/dispass.el.org59
1 files changed, 58 insertions, 1 deletions
diff --git a/site/projects/dispass.el.org b/site/projects/dispass.el.org
index b64a4ed..d8ec515 100644
--- a/site/projects/dispass.el.org
+++ b/site/projects/dispass.el.org
@@ -1 +1,58 @@
-#+TITLE: Dispass.el
+#+TITLE: dispass.el
+#+LINK_UP: ../index.html
+#+LINK_HOME: http://ryuslash.org
+#+LINK: src https://github.com/ryuslash/dispass.el
+#+LINK: tar_gz https://github.com/ryuslash/dispass.el/tarball/master
+#+LINK: zip https://github.com/ryuslash/dispass.el/zipball/master
+#+LINK: dispass http://dispass.babab.nl
+#+STARTUP: showall
+
+#+begin_html
+ <script src="/keyjs.KS" type="text/javascript"></script>
+ <script type="text/javascript">
+ keyjs_initialize({ "u": [ "keyjs_goto", "../index.html" ],
+ "h": [ "keyjs_goto", "http://ryuslash.org" ] });
+ </script>
+#+end_html
+
+#+INCLUDE: "dlmenu.inc"
+
+* About
+
+ [[dispass][DisPass]] is a passphrase generator. ~dispass.el~ is an [[emacs][Emacs]] wrapper
+ for [[dispass][DisPass]].
+
+** Features
+
+ - Copy passwords directly to the clipboard, no need for manual
+ selection and copying.
+ - Specify the length of the passphrase by using a numeric prefix
+ argument.
+
+** Requirements
+
+ - [[emacs][Emacs]]
+ - [[dispass][DisPass]]
+
+* Usage
+
+ First place ~dispass.el~ somewhere in your load path, or add its
+ location to your load path:
+
+ #+begin_src emacs-lisp
+ (add-to-list 'load-path "~/location/of/dispass.el")
+ #+end_src
+
+ Then you need to load it up:
+
+ #+begin_src emacs-lisp
+ (require 'dispass)
+ #+end_src
+
+ After that everything should be simple, either call =dispass= or
+ =dispass-create= to generate the passphrase. =dispass-create= will ask
+ for your password twice, for confirmation purposes.
+
+ To specify a length of the generated passphrase, use numeric prefix
+ arguments: =C-8 M-x dispass <RET>= to create a passphrase of 8
+ characters.