about summary refs log tree commit diff stats
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* Fixed compiler warning in test_autocomplete.cJames Booth2013-08-261-1/+0
* removed strdup in autocomplete callsDmitry Podgorny2013-08-261-32/+17
* Added test for quoted freetext in parserJames Booth2013-07-201-0/+13
* Added parser testsJames Booth2013-07-141-0/+131
* Merge branch 'master' into unicodeJames Booth2013-07-131-3/+3
|\
| * Down arrow adds current line to history and shows empty lineJames Booth2013-07-131-3/+3
* | Moved functions to parser.c, moved parser to toolsJames Booth2013-07-111-1/+1
|/
* Fixed roster testsJames Booth2013-06-231-70/+68
* Removed contact_list, moved roster logic to xmpp/roster moduleJames Booth2013-05-061-1/+1
* Renamed contact_list_ functions to roster_James Booth2013-05-063-89/+89
* Fixed testsJames Booth2013-02-171-54/+54
* Removed invalid testsJames Booth2013-02-141-39/+0
* Only create contacts resource when onlineJames Booth2013-02-101-101/+58
* Renamed contact property jid->barejidJames Booth2013-02-091-19/+19
* Fixed testsJames Booth2013-02-023-3/+3
* Renamed parser.c -> command_parser.cJames Booth2013-01-282-92/+92
* Renamed history modulesJames Booth2013-01-283-5/+5
* Renamed create jid function using barejid and resourceJames Booth2013-01-271-2/+2
* Fixed jid handling to allow @ and / in resourceJames Booth2013-01-261-0/+48
* Got rid of old naming convention on prof_autocompleteJames Booth2013-01-253-57/+57
* Updated /info command for chat and private chatJames Booth2013-01-201-4/+4
* Command parser handles quotes argumentsJames Booth2013-01-141-0/+107
* Added jid_create_room_jidJames Booth2013-01-131-0/+16
* Changed Jid typedef to be explicit pointerJames Booth2013-01-131-17/+17
* Added jid datatypeJames Booth2013-01-123-0/+130
* Autocomplete: added free functionJames Booth2013-01-111-4/+4
* Fixed contact list testJames Booth2012-11-281-61/+61
* Commands now use parser function to handle parametersJames Booth2012-11-181-41/+25
* Handle commands with min 0 argsJames Booth2012-11-181-0/+26
* Added command parser for commands accepting free textJames Booth2012-11-181-0/+66
* Added parser moduleJames Booth2012-11-183-0/+129
* Removed old chat session testsJames Booth2012-11-013-75/+0
* Merge branch 'master' into chatstatesJames Booth2012-10-302-438/+101
|\
| * Fixed testsJames Booth2012-10-292-438/+101
* | Merge branch 'master' into type_outJames Booth2012-10-223-74/+74
|\|
| * Refactored parameter autocompletersJames Booth2012-10-221-18/+18
| * Removed trailing whitespace from src and testsJames Booth2012-10-213-56/+56
* | Basic chat session statesJames Booth2012-10-041-7/+55
* | Started work on chat session, and chat statesJames Booth2012-10-033-0/+27
|/
* Merge common and utilJames Booth2012-08-233-5/+5
* Added autobuild toolsJames Booth2012-07-016-0/+1316
> 2015-04-22 19:28:44 -0700 1139' href='/akkartik/mu/commit/cpp/termbox/term.inl?h=hlt&id=9a31c34f0f2aab901be29e0844ae2fcb9b3f4a13'>9a31c34f ^
5f128523 ^
9a31c34f ^






5f128523 ^






9a31c34f ^
5f128523 ^
9a31c34f ^




5f128523 ^
9a31c34f ^
5f128523 ^



9a31c34f ^




























5f128523 ^






9a31c34f ^























5f128523 ^


9a31c34f ^
b4bbd479 ^
c64c9caa ^
b4bbd479 ^
9a31c34f ^





b4bbd479 ^

9a31c34f ^
5f128523 ^


9a31c34f ^














b4bbd479 ^

c64c9caa ^
b4bbd479 ^
9a31c34f ^







b4bbd479 ^


9a31c34f ^














5f128523 ^






9a31c34f ^





5f128523 ^


9a31c34f ^
5f128523 ^


9a31c34f ^


5f128523 ^


9a31c34f ^
























e709c65e ^
9a31c34f ^
e709c65e ^
9a31c34f ^



e709c65e ^



9a31c34f ^



5f128523 ^


9a31c34f ^




e709c65e ^
9a31c34f ^

e709c65e ^
9a31c34f ^




5f128523 ^
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310