;;; eev-all.el -- load all the (main) modules of eev. Experimental.

;; Copyright (C) 2007 Free Software Foundation, Inc.
;;
;; This file is part of GNU eev.
;;
;; GNU eev is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;;
;; GNU eev is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING.  If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;
;; Author:     Eduardo Ochs <eduardoochs@gmail.com>
;; Maintainer: Eduardo Ochs <eduardoochs@gmail.com>
;; Version:    2007aug31
;; Keywords:   e-scripts, help, hyperlinks, hypertext, processes,
;;             shell, tex
;;
;; Latest version: <http://angg.twu.net/eev-current/eev-all.el>
;;       htmlized: <http://angg.twu.net/eev-current/eev-all.el.html>
;;       See also: <http://angg.twu.net/eev-current/README.html>

;; Comment:
;;
;; This file is very new (2007aug31). Its intent is to makes it a bit
;; easier to try eev.

;; The easy way to try eev is to download and unpack the tarball
;; somewhere, with, for example,
;;
;;   mkdir ~/eev-current/
;;   cd    ~/eev-current/
;;   wget http://angg.twu.net/eev-current.tar.gz
;;   tar -xvzf eev-current.tar.gz
;;
;; and then load it and activate it with:
;;
;;   (add-to-list 'load-path "~/eev-current/")
;;   (require 'eev-all)
;;   (eev-mode 1)
;;
;; The effects of "(require 'eev-all)" are: lots of functions - mainly
;; for elisp hyperlinks - become defined; some environment variables -
;; $EE, $EEVTMPDIR, etc - are set inside Emacs, and will be inherited
;; by programs that are started from Emacs; and a few glyphs are
;; defined.
;;
;; Turning eev-mode on (with `M-x eev-mode') has only two effects:
;; the keymap `eev-mode-map' becomes active, and `pop-up-windows'
;; becomes nil (this makes the keys `M-e', `M-E', `M-k', and `M-K',
;; that follow and return from elisp hyperlinks, behave better).
;; Turning eev-mode off deactivates the keymap and restores the
;; value of `pop-up-windows'.
;;
;; The "full instalation" for eev involves changing some rcfiles -
;; .emacs, .bashrc, etc. This can be done semi-automatically (see
;; eev-rctool and the INSTALL file) and is trivial to undo. If you try
;; eev without changing rcfiles then `M-x eev' and <F3> will not work
;; properly, in the sense that the shortcut "ee" to execute the
;; temporary script file - a shell function - will not be defined.




(require 'eev)                 ; (find-eev "eev.el")
(require 'eev-bounded)         ; (find-eev "eev-bounded.el")
(require 'eev-insert)          ; (find-eev "eev-insert.el")
(require 'eev-steps)           ; (find-eev "eev-steps.el")
(require 'eev-glyphs)          ; (find-eev "eev-glyphs.el")
(require 'eev-compose)         ; (find-eev "eev-compose.el")
(require 'eev-langs)           ; (find-eev "eev-langs.el")
(require 'eev-browse-url)      ; (find-eev "eev-browse-url.el")

;; This is temporary - some of the stepper functions have been
;; rewritten and the new code (in eev-mini-steps.el) is currently much
;; better than the (slightly) more documented code in eev-steps.el...
;; In a near future the rewrites will be migrated to eev-steps and
;; this won't be necessary anymore.
;;
(require 'eev-mini-steps)      ; (find-eev "eev-mini-steps.el")

(eev-set-aliases)              ; (find-eev "eev.el" "eev-set-aliases")
(eev-set-default-glyphs)       ; (find-efunction 'eev-set-default-glyphs)


;; (eev-mode 1)                ; (find-efunctiondescr 'eev-mode)

(provide 'eev-all)


;; Local Variables:
;; coding:            raw-text-unix
;; no-byte-compile:   t
;; End: