Software / code / prosody
Comparison
plugins/mod_pubsub.lua @ 3913:e748d29b18d6
mod_pubsub: Fix capabilities table from some debugging
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Tue, 21 Dec 2010 03:30:18 +0000 |
| parent | 3912:dfc9789f9016 |
| child | 3914:f10282c2e410 |
comparison
equal
deleted
inserted
replaced
| 3912:dfc9789f9016 | 3913:e748d29b18d6 |
|---|---|
| 217 get_nodes = true; | 217 get_nodes = true; |
| 218 | 218 |
| 219 subscribe = true; | 219 subscribe = true; |
| 220 unsubscribe = true; | 220 unsubscribe = true; |
| 221 get_subscription = true; | 221 get_subscription = true; |
| 222 --get_items = true; | 222 get_items = true; |
| 223 | 223 |
| 224 subscribe_other = false; | 224 subscribe_other = false; |
| 225 unsubscribe_other = false; | 225 unsubscribe_other = false; |
| 226 get_subscription_other = false; | 226 get_subscription_other = false; |
| 227 | 227 |
| 237 get_nodes = true; | 237 get_nodes = true; |
| 238 | 238 |
| 239 subscribe = true; | 239 subscribe = true; |
| 240 unsubscribe = true; | 240 unsubscribe = true; |
| 241 get_subscription = true; | 241 get_subscription = true; |
| 242 --get_items = true; | 242 get_items = true; |
| 243 | 243 |
| 244 | 244 |
| 245 subscribe_other = true; | 245 subscribe_other = true; |
| 246 unsubscribe_other = true; | 246 unsubscribe_other = true; |
| 247 get_subscription_other = true; | 247 get_subscription_other = true; |
| 249 be_subscribed = true; | 249 be_subscribed = true; |
| 250 be_unsubscribed = true; | 250 be_unsubscribed = true; |
| 251 | 251 |
| 252 set_affiliation = true; | 252 set_affiliation = true; |
| 253 }; | 253 }; |
| 254 admin = { get_items = true }; | |
| 255 }; | 254 }; |
| 256 | 255 |
| 257 autocreate_on_publish = module:get_option_boolean("autocreate_on_publish"); | 256 autocreate_on_publish = module:get_option_boolean("autocreate_on_publish"); |
| 258 autocreate_on_subscribe = module:get_option_boolean("autocreate_on_subscribe"); | 257 autocreate_on_subscribe = module:get_option_boolean("autocreate_on_subscribe"); |
| 259 | 258 |