-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
executable file
·122 lines (83 loc) · 3.38 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
NAME
====
ee - Emacs information manager
DESCRIPTION
===========
Ee is the categorizing information manager for Emacs.
It works by collecting information from different
sources and converting information to a relational or
associative database. It uses the fields of database
table records to build the category trees, which are
displayed in the Emacs view buffer. The rules for
creating the views are also specified by similar data
structures and include the rules for building category
paths, sorting records and categories, calculating
the totals of category fields, filtering records, and
printing category tree and record lines.
INSTALLATION
============
1. Download the latest version from:
http://www.jurta.org/emacs/ee/
2. Unpack the emacs-ee archive, e.g.:
tar zxvf emacs-ee-version.numbers.tar.gz
3. Add next lines to your .emacs or site-start.el file:
(add-to-list 'load-path "~/emacs/ee/")
(require 'ee-autoloads)
where "~/emacs/ee/" is the directory where you installed *.el files.
USAGE
=====
For quick start just type:
M-x ee RET
This command will display a view of all available ee extensions
that you can select by typing <RET>.
You can also start every separate extension by typing its name, e.g.:
M-x ee-buffers RET
Some commands may require from you more knowledge about ee package.
DOCS
====
For more information please consult the documentation:
Info - in the ee.info file, e.g. by evaluating (ee-info "ee")
HTML - at http://www.jurta.org/emacs/ee/ee.info.en.html
For information about ee in general and each of available
extensions in particular as well as their htmlized screenshots
look at <URL:http://www.jurta.org/emacs/ee/>
NEWS
====
If you have successfully loaded and initialized the ee package,
you can visit the file ./NEWS.ee using the ee itself
to see the history of user-visible changes.
TODO
====
If you have successfully loaded and initialized the ee package,
you can visit the file ./TODO.ee using the ee itself
to see the list of to-do topics for ee.
BUGS
====
Note that although ee is already in the usable state,
it is still under active development.
Please report bugs, send suggestions and contributions
to <URL:mailto:[email protected]> or on the Web pages
at <URL:http://www.jurta.org/emacs/ee/>.
NOTES
=====
You could compile all *.el files after installation by the
following command:
make elc
AUTHOR
======
Juri Linkov <[email protected]>
COPYRIGHT
=========
Copyright (C) 2002, 2003, 2006 Juri Linkov <[email protected]>
This package 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.
This package 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 this package; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.