summary refs log tree commit diff stats
path: root/handlers.go
Commit message (Expand)AuthorAgeFilesLines
* ?page=N query addedBen Morrison2019-06-031-0/+40
* comments editedBen Morrison2019-05-281-1/+1
* removed extraneous commentsBen Morrison2019-05-271-2/+1
* simplified indexHandler to reference staticCacheBen Morrison2019-05-261-14/+11
* caching some static assetsBen Morrison2019-05-231-20/+4
* configuration init changesBen Morrison2019-05-231-2/+2
* tuning query handlingBen Morrison2019-05-221-9/+4
* tuning query handlingBen Morrison2019-05-221-8/+33
* runtime bugs related to api outputBen Morrison2019-05-211-1/+1
* added cache update / db push intervals to conf;Ben Morrison2019-05-211-0/+2
* fleshed out POST handler, added remote registry listBen Morrison2019-05-211-14/+1
* apiEndpointHandler returning all users/statuses/mentions if no query presentBen Morrison2019-05-211-36/+21
* apiTagsBaseHandler returning all statuses with '#' - return all statuses with...Ben Morrison2019-05-201-5/+10
* removing check for zero bytes written to http.ResponseWriter - handling later...Ben Morrison2019-05-201-8/+8
* renamed files for clarityBen Morrison2019-05-201-0/+209
* middleware func to attach remote ip to contextBen Morrison2019-05-201-159/+0
* commented indexHandlerBen Morrison2019-05-131-5/+14
* send etag for index. sha256 of template mod time.Ben Morrison2019-05-131-1/+8
* template initialization addedBen Morrison2019-05-131-3/+5
* serving css virtually instead of directlyBen Morrison2019-05-131-7/+42
* staticcheck warning fixedBen Morrison2019-05-131-2/+2
* more stubbed testsBen Morrison2019-05-131-1/+1
* reorganized handlers. StrictSlash(true). handling POST /api/plain/users for n...Ben Morrison2019-05-121-0/+14
* commenting earlyBen Morrison2019-05-111-8/+19
* skeleton handlers respondingBen Morrison2019-05-111-1/+41
* stubbed out handlersBen Morrison2019-05-111-13/+17
* reorgBen Morrison2019-05-111-3/+2
* building the skeletonBen Morrison2019-05-101-0/+38
n class='oid'>c51043ab ^
66b97b4d ^


66b97b4d ^
7fb3fccb ^




























fc52705f ^

7fb3fccb ^
66b97b4d ^

fc52705f ^
ff58b456 ^
23fd54f1 ^
b1bfd921 ^
23fd54f1 ^

66b97b4d ^

ff58b456 ^


66b97b4d ^
1d0a623a ^

7fb3fccb ^




fc52705f ^

7fb3fccb ^

fc52705f ^




7fb3fccb ^











fc52705f ^
1d0a623a ^
fc52705f ^

66b97b4d ^
5e21a9f6 ^
7a9b05fa ^
05d17773 ^


7a9b05fa ^

7c0d16a7 ^
7a9b05fa ^






ea542d0a ^




7cc045d9 ^



















88be3dbc ^
3d6c13dc ^
e3fa6cc7 ^
3d6c13dc ^
c712c271 ^
c51043ab ^
23fd54f1 ^



c712c271 ^
23fd54f1 ^
fc52705f ^






c51043ab ^



35457609 ^
c712c271 ^
d7494165 ^
4f5cf668 ^
c51043ab ^
2f677225 ^






7fb3fccb ^














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