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
|
%% =====================================================================
%% Header file for EDoc
%%
%% Copyright (C) 2001-2004 Richard Carlsson
%%
%% This library is free software; you can redistribute it and/or modify
%% it under the terms of the GNU Lesser General Public License as
%% published by the Free Software Foundation; either version 2 of the
%% License, or (at your option) any later version.
%%
%% This library 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
%% Lesser General Public License for more details.
%%
%% You should have received a copy of the GNU Lesser General Public
%% License along with this library; if not, write to the Free Software
%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
%% USA
%%
%% Author contact: [email protected]
%% =====================================================================
%% Note: Documentation in this file is included by edoc_extract.erl
-define(APPLICATION, edoc).
-define(INFO_FILE, "edoc-info").
-define(PACKAGE_FILE, "package.edoc").
-define(OVERVIEW_FILE, "overview.edoc").
-define(PACKAGE_SUMMARY, "package-summary").
-define(DEFAULT_SOURCE_SUFFIX, ".erl").
-define(DEFAULT_FILE_SUFFIX, ".html").
-define(DEFAULT_DOCLET, edoc_doclet).
-define(DEFAULT_LAYOUT, edoc_layout).
-define(APP_DEFAULT, "http://www.erlang.org/edoc/doc").
-define(CURRENT_DIR, ".").
-define(SOURCE_DIR, "src").
-define(EBIN_DIR, "ebin").
-define(EDOC_DIR, "doc").
-define(REPORT_MISSING_TYPES, false).
-include("edoc_doclet.hrl").
%% Module information
%% @type module() = #module{name = [] | atom(),
%% parameters = none | [atom()],
%% functions = ordset(function_name()),
%% exports = ordset(function_name()),
%% attributes = ordset({atom(), term()}),
%% records = [{atom(), [{atom(), term()}]}],
%% encoding = epp:source_encoding()}
%% ordset(T) = sets:ordset(T)
%% function_name(T) = {atom(), integer()}
-record(module, {name = [],
parameters = none,
functions = [],
exports = [],
attributes = [],
records = [],
encoding = latin1
}).
%% Environment for generating documentation data
-record(env, {module = [],
package = [],
root = "",
file_suffix,
package_summary,
apps,
modules,
packages,
app_default,
macros = [],
includes = []
}).
%% Simplified comment data
%% @type comment() = #comment{line = integer(),
%% text = string()}
-record(comment, {line = 0, text}).
%% Module Entries (one per function, plus module header and footer)
%% @type entry() = #entry{{atom(), integer()} % function
%% | name = atom(), % other
%% args = [atom()],
%% line = integer(),
%% export = boolean(),
%% data = term()}
-record(entry, {name, args = [], line = 0, export, data}).
%% Generic tag information
%% @type tag() = #tag{name = atom(),
%% line = integer(),
%% origin = comment | code,
%% data = term()}
-record(tag, {name, line = 0, origin = comment, data}).
|