index.html 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset='utf-8' />
  5. <meta http-equiv="X-UA-Compatible" content="chrome=1" />
  6. <meta name="description" content="Converse.js : Browser-based Instant Messaging with Strophe.js and Backbone.js" />
  7. <link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
  8. <title>Converse.js</title>
  9. </head>
  10. <body>
  11. <!-- HEADER -->
  12. <div id="header_wrap" class="outer">
  13. <header class="inner">
  14. <a id="forkme_banner" href="https://github.com/jcbrand/converse.js">View on GitHub</a>
  15. <h1 id="project_title">Converse.js</h1>
  16. <h2 id="project_tagline">Browser-based Instant Messaging with Strophe.js and Backbone.js</h2>
  17. <section id="downloads">
  18. <a class="zip_download_link" href="https://github.com/jcbrand/converse.js/zipball/master">Download this project as a .zip file</a>
  19. <a class="tar_download_link" href="https://github.com/jcbrand/converse.js/tarball/master">Download this project as a tar.gz file</a>
  20. </section>
  21. </header>
  22. </div>
  23. <!-- MAIN CONTENT -->
  24. <div id="main_content_wrap" class="outer">
  25. <section id="main_content" class="inner">
  26. <p><strong>Converse.js</strong> implements an <a href="http://xmpp.org">XMPP</a> based instant messaging client in the browser.</p>
  27. <p>It is used by <a href="http://github.com/collective/collective.xmpp.chat">collective.xmpp.chat</a>, which is a <a href="http://plone.org">Plone</a> instant messaging add-on.</p>
  28. <p>The ultimate goal is to enable anyone to add chat functionality to their websites, regardless of the backend.</p>
  29. <p>This is currently possible, except for adding new contacts, which still makes an XHR call to the (Plone) backend to fetch user info.</p>
  30. <h2>Features</h2>
  31. <ul>
  32. <li>Manually or automically subscribe to other users.</li>
  33. <li>Accept or decline contact requests</li>
  34. <li>Chat status (online, busy, away, offline)</li>
  35. <li>Custom status messages</li>
  36. <li>Typing notifications</li>
  37. <li>Third person messages (/me )</li>
  38. <li>Multi-user chat in chatrooms</li>
  39. <li>Chatroom Topics</li>
  40. <li>vCard support</li>
  41. </ul>
  42. <h2>Screencasts</h2>
  43. <ul>
  44. <li><a href="http://opkode.com/media/blog/instant-messaging-for-plone-with-javascript-and-xmpp">Screencast 1</a>:
  45. Integrated into a Plone site via <strong>collective.xmpp.chat</strong>.
  46. </li>
  47. <li><a href="http://opkode.com/media/blog/2013/04/02/converse.js-xmpp-instant-messaging-with-javascript">Screencast 2</a>:
  48. A static HTML page with <em>Converse.js</em>. Here we chat to external XMPP accounts on Jabber.org and Gmail.
  49. </li>
  50. </ul>
  51. <h2>Dependencies</h2>
  52. <p><strong>Converse.js</strong> depends on a few third party libraries, including:
  53. <ul>
  54. <li><a href="http://strophe.im/strophejs">strophe.js</a></li>
  55. <li><a href="http:/backbonejs.org">backbone.js</a></li>
  56. <li><a href="http:/requirejs.org">require.js</a></li>
  57. </ul>
  58. </p>
  59. <h2>Licence</h2>
  60. <p><strong>Converse.js</strong> is released under both the <a href="http://opensource.org/licenses/mit-license.php">MIT</a> and <a href="http://opensource.org/licenses/gpl-license.php">GPL</a> licenses.</p>
  61. </section>
  62. </div>
  63. <!-- FOOTER -->
  64. <div id="footer_wrap" class="outer">
  65. <footer class="inner">
  66. <p class="copyright">Converse.js maintained by <a href="https://github.com/jcbrand">jcbrand</a></p>
  67. <p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
  68. </footer>
  69. </div>
  70. <script type="text/javascript">
  71. var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
  72. document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
  73. </script>
  74. <script type="text/javascript">
  75. try {
  76. var pageTracker = _gat._getTracker("UA-2128260-8");
  77. pageTracker._trackPageview();
  78. } catch(err) {}
  79. </script>
  80. </body>
  81. </html>