File tree Expand file tree Collapse file tree
templates/conversejs/includes Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,6 +2,13 @@ Changelog
22=========
33
44
5+ 0.3.0 (2013-12-06)
6+ ------------
7+
8+ - Adding CONVERSEJS_ALLOW_CONTACT_REQUESTS configuration variable. [LuanP]
9+ - Adding CONVERSEJS_SHOW_ONLY_ONLINE_USERS configuration variable. [LuanP]
10+
11+
5120.2.9 (2013-11-26)
613------------
714
Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ def get_conversejs_settings():
2222 'CONVERSEJS_SHOW_CONTROLBOX_BY_DEFAULT' : False ,
2323 'CONVERSEJS_XHR_USER_SEARCH' : False ,
2424 'CONVERSEJS_DEBUG' : settings .DEBUG ,
25+ 'CONVERSEJS_SHOW_ONLY_ONLINE_USERS' : False ,
26+ 'CONVERSEJS_ALLOW_CONTACT_REQUESTS' : True ,
2527 }
2628
2729 for key , value in converse_settings .items ():
Original file line number Diff line number Diff line change 1212 show_controlbox_by_default : { { CONVERSEJS_SHOW_CONTROLBOX_BY_DEFAULT } } ,
1313 xhr_user_search : { { CONVERSEJS_XHR_USER_SEARCH } } ,
1414 bosh_service_url : '{{ CONVERSEJS_BOSH_SERVICE_URL }}' ,
15+ show_only_online_users : '{{ CONVERSEJS_SHOW_ONLY_ONLINE_USERS }}' ,
16+ allow_contact_requests : '{{ CONVERSEJS_ALLOW_CONTACT_REQUESTS }}' ,
1517 jid : '{{ jid }}' ,
1618 sid : '{{ sid }}' ,
1719 rid : '{{ rid }}' ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def read(*parts):
1919setup (
2020 name = 'django-conversejs' ,
2121 description = 'Adds converse.js (javascript XMPP client) to Django' ,
22- version = '0.2.9 ' ,
22+ version = '0.3.0 ' ,
2323 long_description = read ('README.rst' ),
2424 packages = ['conversejs' ,
2525 'conversejs.migrations' ,
You can’t perform that action at this time.
0 commit comments