about summary refs log tree commit diff stats
path: root/src/xmpp
Commit message (Collapse)AuthorAgeFilesLines
* Implemented /roster by groupJames Booth2014-11-131-1/+1
|
* Free datetime on ping errorsJames Booth2014-11-031-1/+2
|
* Fixed leaks in /affiliation and /roleJames Booth2014-11-031-0/+2
|
* Fixed various memory leaksJames Booth2014-11-015-5/+17
|
* Renamed room destroy functionJames Booth2014-10-232-3/+3
|
* Set file permissions for logsJames Booth2014-10-181-0/+6
|
* Removed debug messages when setting roles/affiliationsJames Booth2014-10-181-4/+0
|
* Show occupants role/affiliation changesJames Booth2014-10-183-15/+17
|
* Added reason to role/affiliation changesJames Booth2014-10-181-1/+3
|
* Removed /duck commandJames Booth2014-10-182-29/+1
|
* Include self in room rosterJames Booth2014-10-071-7/+6
|
* Refactor muc user handlerJames Booth2014-10-071-29/+16
|
* Refactor muc_user_handlerJames Booth2014-10-072-80/+52
|
* Added jid autocomplete for affiliation commandsJames Booth2014-10-063-8/+22
|
* Implemented setting and listing rolesJames Booth2014-10-064-11/+201
|
* Implemented /room kick commandJames Booth2014-10-054-3/+196
|
* Added /room kick commandJames Booth2014-10-054-1/+91
|
* Added /room subject commandJames Booth2014-10-054-4/+40
|
* Implemented getting affiliation list, and setting affiliationJames Booth2014-10-052-4/+101
|
* Implemented setting affiliation and listing affiliationsJames Booth2014-10-044-34/+22
|
* Allow adding and removing room ownersJames Booth2014-10-044-0/+111
|
* Added service discovery to /room info commandJames Booth2014-10-022-4/+40
|
* Merge branch 'master' into muc_rolesJames Booth2014-10-021-10/+15
|\
| * Handle roster set and result when item name is empty stringJames Booth2014-10-021-10/+15
| | | | | | | | fixed #431
* | Store real jid with occupantsJames Booth2014-10-011-4/+6
| |
* | Merge branch 'master' into muc_rolesJames Booth2014-09-301-52/+54
|\| | | | | | | | | Conflicts: .gitignore
| * Dont check for var attribute on form fields of type fixedJames Booth2014-09-301-52/+54
| |
* | wip - Store roles and affiliations with occupantsJames Booth2014-09-301-4/+16
| |
* | Changed rooms to use Occupant type instead of PContactJames Booth2014-09-301-5/+6
| |
* | Tidied muc moduleJames Booth2014-09-285-26/+26
| |
* | Store room affiliation and roleJames Booth2014-09-282-16/+32
| |
* | Check for NULL inside autocomplete_freeJames Booth2014-09-261-3/+1
| |
* | Renamed autocomplete function to get listJames Booth2014-09-261-2/+2
|/
* Use log_warning for room config form errorsJames Booth2014-09-251-5/+5
|
* Fixed spelling mistake in form.hJames Booth2014-09-251-1/+1
|
* Free caps, remove strdupJames Booth2014-09-242-1/+4
|
* Free unique idJames Booth2014-09-241-0/+2
|
* Handle errors for /disco info requestsJames Booth2014-09-242-2/+12
|
* Capabilities: check for identity localeJames Booth2014-09-231-7/+55
|
* Reordered identity attributes in caps cache for readabilityJames Booth2014-09-231-3/+3
|
* Create sha-1 of own capabilities onceJames Booth2014-09-233-2/+18
|
* Cache capabilities to fileJames Booth2014-09-222-26/+162
|
* Show message when no capabilities availableJames Booth2014-09-211-2/+0
|
* Sort form fields for sha-1 caps hashJames Booth2014-09-213-54/+106
|
* Log errors on caps responsesJames Booth2014-09-212-6/+20
|
* Handle capabilities for room participantsJames Booth2014-09-211-31/+46
|
* Fixed muc presence check, remove logging from presence handlerJames Booth2014-09-212-22/+11
|
* Removed _get_caps_key functionJames Booth2014-09-211-61/+5
|
* Added jid->hash lookup for capabilitiesJames Booth2014-09-205-19/+48
|
* Do not send caps request on self presenceJames Booth2014-09-191-1/+1
|
/account.go?h=0.2.1&id=289e3b09ea20e911071e5a0f274445429502e934'>289e3b0 ^
8492a21 ^
c286d3d ^












2349b7d ^



cf66462 ^
















2349b7d ^

2349b7d ^



2349b7d ^

b60999c ^





b389647 ^

























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