This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var packet = new JSJaCPresence(); | |
| packet.setTo("#wewo@conference.example.com/whoahbot"); | |
| packet.appendNode('x', {xmlns: "http://jabber.org/protocol/muc"}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(function() { | |
| $('.login_button').click(function() { | |
| doLogin(); | |
| }); | |
| $('#send_chat_form').submit(function() { | |
| var message = $(this).find('.message').val(); | |
| sendMsg(message); | |
| $('#chat').append('<div class="msg">me: ' + message + '</div>'); | |
| $(this).find(".message").val(''); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <VirtualHost *> | |
| Servername whoahbot.example.com | |
| DocumentRoot /var/www | |
| RewriteEngine On | |
| RewriteRule ^/http-bind/ http://jabber.example.com:5280/http-bind/ [P] | |
| </VirtualHost> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {5280, ejabberd_http, [ | |
| http_bind, | |
| http_poll, | |
| web_admin | |
| ]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| =INFO REPORT==== 2009-03-31 03:00:52 === | |
| I(<0.253.0>:ejabberd_listener:116) : (#Port<0.5709>) Accepted connection {{67,189,35,116},45469} -> {{174,143,25,47},5280} | |
| =INFO REPORT==== 2009-03-31 03:00:52 === | |
| D(<0.246.0>:ejabberd_http:121) : S: [{["admin"],ejabberd_web_admin}, | |
| {["http-bind"],mod_http_bind}, | |
| {["http-poll"],ejabberd_http_poll}] | |
| =INFO REPORT==== 2009-03-31 03:00:52 === |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // TrollopsViewController.m | |
| // Trollops | |
| // | |
| // Created by dph on 3/16/09. | |
| // Copyright __MyCompanyName__ 2009. All rights reserved. | |
| // | |
| #import "TrollopsViewController.h" | |
| #import "TrollopView.h" |
NewerOlder