* lisp/allout-widgets.el: (allout-widgets-icons-light-subdir)
(allout-widgets-icons-dark-subdir): Track relocations of icons * lisp/allout.el: Remove commentary about remove encryption passphrase mnemonic support and verification. * etc/images/icons/allout-widgets/dark-bg, etc/images/icons/allout-widgets/light-bg, encrypted-locked.{xpm,png}, unlocked-encrypted.{xpm,png}: Reorganize icon directories and files to reconcile against windows short-filename clashes.
|
@ -1,3 +1,11 @@
|
|||
2011-02-17 Ken Manheimer <ken.manheimer@gmail.com>
|
||||
|
||||
* etc/images/icons/allout-widgets/dark-bg,
|
||||
etc/images/icons/allout-widgets/light-bg,
|
||||
encrypted-locked.{xpm,png}, unlocked-encrypted.{xpm,png}:
|
||||
Reorganize icon directories and files to reconcile against windows
|
||||
short-filename clashes.
|
||||
|
||||
2011-02-16 Ken Manheimer <ken.manheimer@gmail.com>
|
||||
|
||||
* etc/images/icons/allout-widgets-dark-bg,
|
||||
|
|
Before Width: | Height: | Size: 232 B After Width: | Height: | Size: 232 B |
Before Width: | Height: | Size: 231 B After Width: | Height: | Size: 231 B |
Before Width: | Height: | Size: 107 B After Width: | Height: | Size: 107 B |
Before Width: | Height: | Size: 92 B After Width: | Height: | Size: 92 B |
Before Width: | Height: | Size: 211 B After Width: | Height: | Size: 211 B |
Before Width: | Height: | Size: 210 B After Width: | Height: | Size: 210 B |
Before Width: | Height: | Size: 125 B After Width: | Height: | Size: 125 B |
Before Width: | Height: | Size: 206 B After Width: | Height: | Size: 206 B |
Before Width: | Height: | Size: 84 B After Width: | Height: | Size: 84 B |
Before Width: | Height: | Size: 92 B After Width: | Height: | Size: 92 B |
Before Width: | Height: | Size: 202 B After Width: | Height: | Size: 202 B |
Before Width: | Height: | Size: 212 B After Width: | Height: | Size: 212 B |
Before Width: | Height: | Size: 214 B After Width: | Height: | Size: 214 B |
Before Width: | Height: | Size: 111 B After Width: | Height: | Size: 111 B |
Before Width: | Height: | Size: 105 B After Width: | Height: | Size: 105 B |
Before Width: | Height: | Size: 211 B After Width: | Height: | Size: 211 B |
Before Width: | Height: | Size: 210 B After Width: | Height: | Size: 210 B |
Before Width: | Height: | Size: 115 B After Width: | Height: | Size: 115 B |
Before Width: | Height: | Size: 212 B After Width: | Height: | Size: 212 B |
Before Width: | Height: | Size: 84 B After Width: | Height: | Size: 84 B |
Before Width: | Height: | Size: 105 B After Width: | Height: | Size: 105 B |
Before Width: | Height: | Size: 202 B After Width: | Height: | Size: 202 B |
|
@ -1,3 +1,10 @@
|
|||
2011-02-17 Ken Manheimer <ken.manheimer@gmail.com>
|
||||
|
||||
* lisp/allout-widgets.el: (allout-widgets-icons-light-subdir)
|
||||
(allout-widgets-icons-dark-subdir): Track relocations of icons
|
||||
* lisp/allout.el: Remove commentary about remove encryption
|
||||
passphrase mnemonic support and verification.
|
||||
|
||||
2011-02-17 Deniz Dogan <deniz.a.m.dogan@gmail.com>
|
||||
|
||||
* net/rcirc.el (rcirc-float-time): New function.
|
||||
|
|
|
@ -154,12 +154,12 @@ See `allout-widgets-mode' for allout widgets mode features."
|
|||
;; (make-variable-buffer-local 'allout-widgets-allow-unruly-edits)
|
||||
;;;_ = allout-widgets-auto-activation - below, for eval-order dependencies
|
||||
;;;_ = allout-widgets-icons-dark-subdir
|
||||
(defcustom allout-widgets-icons-dark-subdir "icons/allout-widgets-dark-bg/"
|
||||
(defcustom allout-widgets-icons-dark-subdir "icons/allout-widgets/dark-bg/"
|
||||
"Directory on `image-load-path' holding allout icons for dark backgrounds."
|
||||
:type 'string
|
||||
:group 'allout-widgets)
|
||||
;;;_ = allout-widgets-icons-light-subdir
|
||||
(defcustom allout-widgets-icons-light-subdir "icons/allout-widgets-light-bg/"
|
||||
(defcustom allout-widgets-icons-light-subdir "icons/allout-widgets/light-bg/"
|
||||
"Directory on `image-load-path' holding allout icons for light backgrounds."
|
||||
:type 'string
|
||||
:group 'allout-widgets)
|
||||
|
@ -1923,8 +1923,8 @@ reapplying this method will rectify the glyphs."
|
|||
|
||||
(setq icon-state
|
||||
(cond (does-encrypt (if is-encrypted
|
||||
'encrypted-locked
|
||||
'encrypted-unlocked))
|
||||
'locked-encrypted
|
||||
'unlocked-encrypted))
|
||||
(expanded 'opened)
|
||||
(has-subitems 'closed)
|
||||
(t 'empty)))
|
||||
|
|
|
@ -39,11 +39,9 @@
|
|||
;; emacs local file variables need to be enabled when the
|
||||
;; file was visited -- see `enable-local-variables'.)
|
||||
;; - Configurable per-file initial exposure settings
|
||||
;; - Symmetric-key and key-pair topic encryption, plus symmetric passphrase
|
||||
;; mnemonic support, with verification against an established passphrase
|
||||
;; (using a stashed encrypted dummy string) and user-supplied hint
|
||||
;; maintenance. Encryption is via the Emacs 'epg' library. See
|
||||
;; allout-toggle-current-subtree-encryption docstring.
|
||||
;; - Symmetric-key and key-pair topic encryption. Encryption is via the
|
||||
;; Emacs 'epg' library. See allout-toggle-current-subtree-encryption
|
||||
;; docstring.
|
||||
;; - Automatic topic-number maintenance
|
||||
;; - "Hot-spot" operation, for single-keystroke maneuvering and
|
||||
;; exposure control (see the allout-mode docstring)
|
||||
|
|