summaryrefslogtreecommitdiff
path: root/tools/gendocs/exporters/html.py
blob: 72eda463a893c9c9e1787f0b3c92cae4a032080c (plain)
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#!/usr/bin/python3
# -*- coding: utf-8 -*-

from exporter import DocExporter


class HtmlExporter(DocExporter):
    """Exporte une documentation sous forme HTML."""


    def open(self, name, fullname):
        """Initialise les propriétés utiles."""

        self._filename = fullname + '.html'
        self._fd = open(self._filename, 'w')

        self._fd.write("""\
<HTML>
<HEAD>
    <META http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
    <TITLE>Documentation</TITLE>
    <STYLE>
    <!--
    H1 {
        background-color: rgb(218, 218, 218);
        border: 1px solid rgb(184, 184, 184);
        border-radius: 3px 3px 3px 3px;
        padding: 8px;
    }
    H2 {
        background-color: rgb(238, 238, 238);
        border: 1px solid rgb(204, 204, 204);
        border-radius: 3px 3px 3px 3px;
        padding: 4px;
    }
    .info {
        background-color: #efc;
        border: 1px solid #ac9;
        border-radius: 3px;
        margin-left: 40px;
        padding: 8px;
    }
    .steps {
        font-family: monospace;
    }
    .constant_name {
        font-weight: bold;
    }
    .data_name { 
        font-weight: bold;
    }
    .data_value {
    }
    .property_name { 
        font-weight: bold;
    }
    .property_desc {
        padding-left: 40px;
    }
    .callable_name {
        font-weight: bold;
    }
    .callable_desc {
        padding-left: 40px;
    }
    -->
    </STYLE>
<BODY>
        """)


    def close(self):
        """Termine l'édition de la documentation."""

        self._fd.write("""
</BODY>
</HTML>
        """)

        self._fd.close()


    def _normalize_desc(self, desc):
        """S'assure d'un bon rendu HTML d'un commentaire prévu pour."""

        return desc.replace(" ", "&nbsp;").replace("<", "&lt;").replace(">", "&gt;").replace("\n", "<BR>")



    def show_list_sub_modules(self, gparent, parent, others, builder):
        """Affiche des renvois vers les sous-parties présentes."""

        if len(others) > 0 or gparent != None:

            self._fd.write('<H2>Sub modules</H2>')

            self._fd.write('<UL>')

            if gparent != None:
                self._fd.write('<LI><A href="%s.html">..</A></LI>' % gparent)

            for o in others:
                fullname = builder(parent, o._name)
                self._fd.write('<LI><A href="%s.html">%s</A></LI>' % (fullname, fullname))

            self._fd.write('</UL>')


    def show_list_sub_classes(self, parent, classes, builder):
        """Affiche des renvois vers les sous-parties présentes."""

        if len(classes) > 0:

            self._fd.write('<H2>Classes</H2>')

            self._fd.write('<UL>')

            for cls in classes:
                self._fd.write('<LI><A href="%s.html#%s">%s</A></LI>'
                               % (parent, cls, builder(parent, cls)))

            self._fd.write('</UL>')


    def describe_module(self, desc):
        """Affiche la description du module courant."""

        self._fd.write('<H2>Description</H2>')

        self._fd.write('<P class="info">%s</P>' % self._normalize_desc(desc))


    def start_main_section(self, title):
        """Affiche un en-tête pour la zone des classes."""

        self._fd.write('<H1>%s</H1>' % title)


    def show_class_info(self, name, desc):
        """Affiche les informations générales d'une classe."""

        self._fd.write('<A name="%s"><H2>%s</H2></A>' % (name, name))

        self._fd.write('<P class="info">%s</P>' % self._normalize_desc(desc))


    def show_info_section(self, title):
        """Affiche une section d'informations particulières."""

        self._fd.write('<H3>%s</H3>' % title)


    def print_hierarchy_level(self, fullname, name, page, level):
        """Affiche un élément hiérarchique."""

        if level > 0:

            self._fd.write('<SPAN class="steps">')

            for i in range(level - 1):
                self._fd.write('&nbsp;' * 5)

            self._fd.write('&nbsp;╰──&nbsp;')

            self._fd.write('</SPAN>')

        if page != None:
            self._fd.write('<A href="%s.html#%s">' % (page, name))

        self._fd.write(fullname)

        if page != None:
            self._fd.write('</A>')

        self._fd.write('<BR>')


    def show_constant_info(self, name):
        """Affiche un élément de type 'constant'."""

        self._fd.write('<P><SPAN class="constant_name">%s</SPAN></P>' % name)


    def show_data_info(self, name, value):
        """Affiche un élément de type 'donnée'."""

        self._fd.write('<P><SPAN class="data_name">%s</SPAN> = <SPAN class="data_value">%s</SPAN></P>' % (name, self._normalize_desc(value)))

    def show_attribute_info(self, name, desc):
        """Affiche un élément de type 'attribut'."""

        self._fd.write('<P><SPAN class="property_name">%s</SPAN><BR><DIV class="property_desc">%s</DIV></P>' % (name, self._normalize_desc(desc)))


    def show_callable_info(self, ret, name, args, desc):
        """Affiche un élément de type 'routine'."""

        if args == None:
            args = '()'

        self._fd.write('<P><SPAN class="callable_name">%s</SPAN>(%s)<BR><DIV class="callable_desc">%s</DIV></P>' % (name, args, self._normalize_desc(desc)))