~ubuntu-branches/ubuntu/trusty/jwchat/trusty

« back to all changes in this revision

Viewing changes to groupchat_register.html.en

  • Committer: Bazaar Package Importer
  • Author(s): Lincoln de Sousa, Lincoln de Sousa, Marcelo Jorge Vieira
  • Date: 2010-09-16 11:42:28 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100916114228-5s5ne28n1w6wrfbl
Tags: 1.0+dfsg-1
[Lincoln de Sousa]

* Switch to dpkg-source 3.0 (quilt) format
* Migrating package from cdbs to debhelper 7.0.50~
* Changing the rule get-orig-source to generate a dfsg compatible
  package striping swf files from the orig (Closes: #591962)
* Updated Standards-Version to 3.9.1
* Removing po-debconf from the Build-Depends-Indep list.

[Marcelo Jorge Vieira]

* Fixing the default backend
* Fixing Debugger dependency
* Changing information about packaging from old maintainers to
  Debian XMPP Team.
* Removing sound support.
* Setting a port for apache VirtualHost.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
 
<html>
3
 
  <head>
4
 
    <title>JWChat - Register</title>
5
 
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
6
 
    <script src="shared.js"></script>
7
 
    <script src="switchStyle.js"></script>
8
 
    <script>
9
 
      <!--
10
 
function doSub() {};
11
 
 
12
 
function handleIQRegister(jabber) {
13
 
        srcW.Debug.log(jabber,0);
14
 
}
15
 
 
16
 
var srcW;
17
 
function init() {
18
 
        srcW = opener.parent.srcW;
19
 
 
20
 
        var roster = srcW.roster;
21
 
        srcW.fCBLoad("iq","?sid="+srcW.sid+"&to="+msgEscape(opener.parent.jid)+"&ns=jabber:iq:register",roster.getUserByJID(opener.parent.jid).chatW.frames.groupchatBottom.rw.handleIQRegister);
22
 
}
23
 
 
24
 
onload = init;
25
 
      //-->
26
 
    </script>
27
 
  <body style="margin:8px;">
28
 
    <form name="sub" onsubmit="return doSub();">
29
 
    </form>
30
 
  </body>
31
 
</html>