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
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
orrison <ben@gbmor.dev>  2019-05-20 02:12:08 -0400

endpoint query function added' href='/gbmor/getwtxt/commit/query.go?h=v0.4.2&id=efa99ed5253c229c83d8f2d98ee1c08b4383184e'>efa99ed ^









3c5dd59 ^
37be25f ^
37bf8b0 ^
efa99ed ^

37be25f ^
3c5dd59 ^
efa99ed ^


90638ac ^


3c5dd59 ^
efa99ed ^
37be25f ^




efa99ed ^


90638ac ^
37bf8b0 ^
efa99ed ^
fc49c57 ^
efa99ed ^

90638ac ^
fc49c57 ^
efa99ed ^
a6f47c0 ^

efa99ed ^
a6f47c0 ^
efa99ed ^
fc49c57 ^
bce5265 ^
efa99ed ^
90638ac ^


























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