Skip to content

Latest commit

 

History

History

caps

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Strophe.CAPS.js

Strophe.caps.js is a plugin to provide XMPP Entity Capabilities ( XEP-0115 ).

Usage

Adding features

connection.caps.add( "myfeature" );

Removing features

connection.caps.remove( "myfeature" );

Sending presence

conncection.caps.pres( attrs );

Dependencies

  • strophe.disco.js (by François de Metz)
  • sha1.js

ToDo

  • write specs
  • support service discovery data forms

Authors

  • Markus Kohlhase

Strophe.caps.jsonly.js

Strophe.caps.jsonly.js is a similar plugin as Strophe.CAPS.js but isn't developed in coffeescript. In order to prevent naming conflicts, it has been renamed to this.

It uses strophe.disco.js to add features etc.

Usage

See strophe.disco.js for more info.

Dependencies

  • strophe.disco.js (by François de Metz)
  • sha1.js

Authors