about summary refs log tree commit diff stats
path: root/src/io
Commit message (Expand)AuthorAgeFilesLines
...
* Fix curl getting stuck while reading headersbptato2022-06-171-2/+3
* Submit form on pressing enter in search fieldbptato2022-06-171-1/+13
* Add curl supportbptato2022-06-071-4/+128
* Update loader.nimbptato2022-05-211-3/+9
* Slightly change header handlingbptato2022-05-101-4/+11
* Rename conflicting source filesbptato2022-05-101-1/+1
* Some refactoring for layout engine rewritebptato2022-05-101-1/+0
* Fix a windows compilation errorbptato2022-02-221-1/+1
* Reduce formatting complexitybptato2022-02-192-18/+29
* Fix format background unicode problemsbptato2022-02-151-6/+0
* Incomplete background-color implementationbptato2022-02-141-1/+3
* Implement blink tagbptato2022-02-121-0/+5
* Remove some unused variablesbptato2022-02-121-4/+0
* Some loader polishingbptato2022-02-092-10/+8
* Cleanup form method codebptato2022-02-082-26/+38
* Implement formsbptato2022-01-293-27/+269
* Implement paddingbptato2022-01-262-77/+77
* Fix potential crash in next link commandbptato2022-01-261-14/+7
* Add some command line fixes, fix related bugsbptato2022-01-251-1/+3
* Disallow different scheme in link tagsbptato2022-01-251-4/+5
* Fix stylesheet containment bugbptato2022-01-251-2/+11
* Fix some path bugs and misc. warningsbptato2022-01-252-5/+8
* Refactorbptato2022-01-241-1/+1
* Fix node to cell mappingbptato2022-01-242-51/+47
* Fix incorrect canvas width and whitespace bugsbptato2022-01-231-2/+3
* Use pixels as the base unit for the layoutbptato2022-01-231-3/+3
* Consider cell ratio when calculating lengthsbptato2022-01-231-2/+5
* Support external stylesheetsbptato2022-01-232-1/+49
* Fix page navigationbptato2022-01-221-4/+4
* Rewrite whitespace handlingbptato2022-01-191-4/+2
* Implement basic media query supportbptato2021-12-271-2/+3
* Basic content type implementationbptato2021-12-262-10/+36
* Proper URL handlingbptato2021-12-262-67/+87
* Refactor formatting, improve buffer cursor movementbptato2021-12-252-160/+93
* Fix pager bugsbptato2021-12-232-66/+98
* Refactor buffer rendering proceduresbptato2021-12-231-144/+11
* More efficient pipe outputbptato2021-12-211-3/+13
* Use a linked list for buffers, allow pipe as outputbptato2021-12-211-4/+26
* No anchor error messagebptato2021-12-211-0/+3
* Honestly I'm not sure what I added here...bptato2021-12-213-99/+72
* Add client for buffer controlbptato2021-12-201-115/+46
* Implement gotoAnchorbptato2021-12-201-8/+16
* Fix and implement cursor movement commandsbptato2021-12-202-75/+164
* Fix cursorPrevWord, cursorNextWordbptato2021-12-191-65/+81
* Add commands for vertical navigation on displayed linebptato2021-12-191-1/+15
* Fix pager mode formattingbptato2021-12-192-26/+26
* Preparation for at rules, small inline-block fixbptato2021-12-191-2/+2
* Refactor selector code, optimize style tagsbptato2021-12-181-1/+2
* Move... thingsbptato2021-12-171-5/+2
* More code formatting consistencybptato2021-12-174-11/+11
artik.com> 2016-12-26 20:58:37 -0800 3713 - cross-link calls with definitions in html' href='/akkartik/mu/commit/html/000organization.cc.html?h=main&id=201458e3bd2f1d79a0ea0b853552e9df267e92b1'>201458e3 ^
51728d93 ^
204dae92 ^











36f616b5 ^
204dae92 ^
5fe060d5 ^
204dae92 ^



51728d93 ^

204dae92 ^
672e3e50 ^


a654e4ec ^
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