1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-04 02:35:29 +00:00
elinks/src
2022-02-15 17:21:16 +01:00
..
bfu [bfu] const in load_input_history and save_input_history 2022-02-11 19:57:36 +01:00
bookmarks [bookmarks] const 2022-01-31 15:49:01 +01:00
cache [cache] enum cache_mode -> cache_mode_T 2022-01-28 17:32:27 +01:00
config [config] const in help_str 2022-02-10 19:48:46 +01:00
cookies [cookies] const 2022-01-31 15:54:55 +01:00
dialogs [menu] const in add_cmdline_bool_option 2022-02-08 18:08:53 +01:00
document [html] const in lt_default_name 2022-02-15 17:21:16 +01:00
dom [dom] cast 2022-01-31 16:02:30 +01:00
ecmascript [quikjs] window const char * -> char * 2022-01-30 14:08:33 +01:00
encoding [lzma] signdness 2022-01-29 11:31:41 +01:00
formhist [formhist] silly workaround for C++ compiler 2022-01-30 14:52:23 +01:00
globhist [event] union for const/non-const void * 2022-01-30 19:19:20 +01:00
intl [libintl] const in iso code 2022-02-07 19:02:40 +01:00
main [event] union for const/non-const void * 2022-01-30 19:19:20 +01:00
mime [option] union of const and non-const char * in option 2022-01-29 18:17:43 +01:00
network [ssl] SSL -> ssl_t 2022-01-28 20:22:38 +01:00
osdep [terminal] exec_on_terminal and related rewritten a bit to allow const param 2022-01-30 18:12:38 +01:00
protocol [about] const 2022-02-02 18:53:51 +01:00
scripting [ruby] const 2022-01-30 19:43:11 +01:00
session [session] const in request_additional_file 2022-02-10 19:52:24 +01:00
terminal [draw] const char * in draw_text 2022-01-31 16:18:43 +01:00
util [fastfind] const in comment 2022-02-15 15:36:40 +01:00
viewer [dump] const in dump_print 2022-02-14 20:23:38 +01:00
.gitignore Ignore tags file 2007-08-08 14:25:38 +02:00
elinks.h [char] Introduced macro C_ 2022-01-19 22:49:13 +01:00
Makefile Added $(EXEEXT) for executables. 2010-03-22 09:35:15 +01:00
meson.build [cflags] Removed -Wno-pointer-sign 2021-01-02 16:20:27 +01:00
README Remove now useless $Id: lines. 2005-10-21 09:14:07 +02:00
setup.h [dialogs] Make 9 / 10 ratio configurable at compile time. 2021-08-23 16:11:17 +02:00
vernum.c [vernum] const char * 2021-12-05 16:01:12 +01:00
vernum.h [vernum] const char * 2021-12-05 16:01:12 +01:00

				  The Big View

The whole dependency tree is supposed (in ideal world) to look somewhat like
the following. Please note that this deals only with the core parts of ELinks,
not extensions like bookmarks, cookies, globhist, mime etc. Those act like
modules and are generally self-contained - the main visible difference is that
they don't have their UI stuff in dialogs/foo.c but in foo/dialogs.c.

Note also that it isn't all that clean-cut as it looks. Some parts of e.g.
lowlevel/ or osdep/ are omnipresent as well and it's meant to be so (at least
for now). Also some other exceptions are possible; the exception to this is
util/, where no exceptions are permitted - it must have no dependencies to the
rest of the code whatsoever, not even compile-time ones. The other way around,
the gettext part of intl/ is generally omnipresent but the charset part is
pretty isolated - it could be probably drawn as connected to document and
terminal (actually, it is used when encoding forms in viewer too, but that
stuff should be probably moved to document).

viewer/ contains code concerning that big rectangle between bars at the top
and bars at the bottom, documents usually being shown inside. Logically, it
is in fact kind of a BFU widget, but in practice it has little in common with
the bfu/ widgets, it is special in many ways and deeply woven to the fabric
of session/ (e.g. session history is basically a chain of viewer widget
descriptors).

dialogs/ is special too. It in fact means to say "global and unique BFU
instances belonging to the ELinks core"/ but that's a rather long and boring
name, besides the nightmares associated with maintaining files and directories
containing spaces in GIT. The "global and unique BFU instances" part can be
represented by exmode, menus and leds (were they there). The "ELinks core"
part can be represented by options, document and downloads. The reason those
aren't in their respective directories (while bookmarks or formhist have their
dialogs.c) is that it's important to keep the dependencies sorted out
reasonably. Had there been e.g. terminal/dialogs.c, it would mean libterminal
has to depend on libbfu.a and so. (There are two 'managerial' exceptions
to this; don't dig into them, please. ;-)

scripting/ (== browser scripting) is also expected to hook all around, perhaps
it should be better in the omnipresent box.

The edges are directed and represent the "using" relation. Therefore,
"bfu -> terminal" means "bfu/ is using terminal/ services (but not
the other way around)".

.---------.
| util/   | <-- This is omnipresent :)
| config/ |
| intl/   |
`---------'

                   .-------.         .---------.
                   |  bfu  |<------- | dialogs |
                   `-------' \       `---------'
                       v      `---.       |
                 .----------.      \ .--------.
                 | terminal | <----- | viewer | <-----------------.
               / `----------'     .> `--------'                   |
           .--'        v         /        v                       v
.-------. /      .----------.   |    .----------.       .----/ecmascript/----.
| osdep |<------ | lowlevel |   |    | document | ----> | document scripting |
`-------' \      `----------'   |    `----------'       `--------------------'
           `---.       ^         \        ^
                \ .---------.     `> .---------.        .----/scripting/----.
                  | network | <----- | session | -----> | browser scripting |
                  `---------'      / `---------'        `-------------------'
                       ^       .--'
                 .----------. <
                 | protocol |
                 `----------'