sources for html.py [rev. unknown]
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
202
203
204
205
206
207
208
import py
html = py.xml.html
# HTML related stuff
class H(html):
    class Content(html.div):
        def __init__(self, *args):
            super(H.Content, self).__init__(id='apigen-content', *args)
    class Description(html.div):
        pass
    
    class NamespaceDescription(Description):
        pass
    class NamespaceItem(html.div):
        pass
    class NamespaceDef(html.h1):
        pass
    class ClassDescription(Description):
        pass
    class ClassDef(html.div):
        def __init__(self, classname, bases, docstring, sourcelink,
                     attrs, methods):
            header = H.h1('class %s(' % (classname,))
            for i, (name, href) in py.builtin.enumerate(bases):
                if i > 0:
                    header.append(', ')
                link = name
                if href is not None:
                    link = H.a(name, href=href)
                header.append(H.BaseDescription(link))
            header.append('):')
            super(H.ClassDef, self).__init__(header)
            self.append(H.div(H.Docstring(docstring or
                                          '*no docstring available*'),
                              sourcelink,
                              class_='classdoc'))
            if attrs:
                self.append(H.h2('class attributes and properties:'))
                for name, val in attrs:
                    self.append(H.PropertyDescription(name, val))
            if methods:
                self.append(H.h2('methods:'))
                for methodhtml in methods:
                    self.append(methodhtml)
    class MethodDescription(Description):
        pass
    class MethodDef(html.h2):
        pass
    class FunctionDescription(Description):
        def __init__(self, localname, argdesc, docstring, valuedesc, csource,
                     callstack):
            infoid = 'info_%s' % (localname.replace('.', '_dot_'),)
            docstringid = 'docstring_%s' % (localname.replace('.', '_dot_'),)
            fd = H.FunctionDef(localname, argdesc,
                               onclick=('showhideel('
                                        'document.getElementById("%s")); '
                                         % (infoid,)))
            infodiv = H.div(
                H.Docstring(docstring or '*no docstring available*',
                            id=docstringid),
                H.FunctionInfo(valuedesc, csource, callstack,
                               id=infoid, style="display: none"),
                class_='funcdocinfo')
            super(H.FunctionDescription, self).__init__(fd, infodiv)
    class FunctionDef(html.h2):
        style = html.Style(cursor='pointer')
        def __init__(self, name, argdesc, **kwargs):
            class_ = kwargs.pop('class_', 'funcdef')
            super(H.FunctionDef, self).__init__('def %s%s:' % (name, argdesc),
                                                class_=class_, **kwargs)
    class FunctionInfo(html.div):
        def __init__(self, valuedesc, csource, callstack, **kwargs):
            super(H.FunctionInfo, self).__init__(valuedesc, H.br(), csource,
                                                 callstack, class_='funcinfo',
                                                 **kwargs)
    
    class PropertyDescription(html.div):
        def __init__(self, name, value):
            if type(value) not in [str, unicode]:
                value = str(value)
            if len(value) > 100:
                value = value[:100] + '...'
            super(H.PropertyDescription, self).__init__(name, ': ',
                                                        H.em(value),
                                                        class_='property')
    class ParameterDescription(html.div):
        pass
    class Docstring(html.div):
        style = html.Style(white_space='pre', color='#666',
                           margin_left='1em', margin_bottom='1em')
    class Navigation(html.div):
        #style = html.Style(min_height='99%', float='left', margin_top='1.2em',
        #                   overflow='auto', width='15em', white_space='nowrap')
        pass
    class NavigationItem(html.div):
        def __init__(self, linker, linkid, name, indent, selected):
            href = linker.get_lazyhref(linkid)
            super(H.NavigationItem, self).__init__((indent * 2 * u'\xa0'),
                                                 H.a(name, href=href))
            if selected:
                self.attr.class_ = 'selected'
    class BaseDescription(html.span):
        pass
    class SourceSnippet(html.div):
        def __init__(self, text, href, sourceels=None):
            if sourceels is None:
                sourceels = []
            link = text
            if href:
                link = H.a(text, href=href)
            super(H.SourceSnippet, self).__init__(
                link, H.div(*sourceels))
    
    class PythonSource(Content):
        style = html.Style(font_size='0.8em')
        def __init__(self, *sourceels):
            super(H.PythonSource, self).__init__(
                H.div(*sourceels))
    class SourceBlock(html.table):
        def __init__(self):
            tbody = H.tbody()
            row = H.tr()
            tbody.append(row)
            linenocell = H.td(style='width: 1%')
            row.append(linenocell)
            linecell = H.td()
            row.append(linecell)
            
            self.linenotable = lntable = H.table()
            self.linenotbody = lntbody = H.tbody()
            lntable.append(lntbody)
            linenocell.append(lntable)
            self.linetable = ltable = H.table()
            self.linetbody = ltbody = H.tbody()
            ltable.append(ltbody)
            linecell.append(ltable)
            super(H.SourceBlock, self).__init__(tbody, class_='codeblock')
        def add_line(self, lineno, els):
            self.linenotbody.append(H.tr(H.td(lineno, class_='lineno')))
            self.linetbody.append(H.tr(H.td(H.pre(class_='code', *els),
                                            class_='codecell')))
    class NonPythonSource(Content):
        def __init__(self, *args):
            super(H.NonPythonSource, self).__init__(H.pre(*args))
    class DirList(Content):
        def __init__(self, dirs, files):
            dirs = [H.DirListItem(text, href) for (text, href) in dirs]
            files = [H.DirListItem(text, href) for (text, href) in files]
            super(H.DirList, self).__init__(
                H.h2('directories'), dirs,
                H.h2('files'), files,
            )
    class DirListItem(html.div):
        def __init__(self, text, href):
            super(H.DirListItem, self).__init__(H.a(text, href=href))
    class ValueDescList(html.ul):
        def __init__(self, *args, **kwargs):
            super(H.ValueDescList, self).__init__(*args, **kwargs)
    class ValueDescItem(html.li):
        pass
    class CallStackDescription(Description):
        pass
    class CallStackLink(html.div):
        def __init__(self, filename, lineno, href):
            super(H.CallStackLink, self).__init__(
                H.a("stack trace %s - line %s" % (filename, lineno),
                    href=href))
    class Hideable(html.div):
        def __init__(self, name, class_, *content):
            super(H.Hideable, self).__init__(
                H.div(H.a('show/hide %s' % (name,),
                          href='#',
                          onclick=('showhideel(getnextsibling(this));'
                                   'return false;')),
                      H.div(style='display: none',
                            class_=class_,
                            *content)))