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

« back to all changes in this revision

Viewing changes to groupchat_top.html.de

  • 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></title>
5
 
    <script src="switchStyle.js"></script>
6
 
                <script src="shared.js" language="JavaScript1.2"></script>
7
 
    <script src="jsjac.js"></script>
8
 
    <script>
9
 
      function setSubject() {
10
 
 
11
 
                                var aMessage = new JSJaCMessage();
12
 
                                aMessage.setTo(parent.group);
13
 
                                aMessage.setType('groupchat');
14
 
                                aMessage.setSubject(document.forms[0].elements['subject'].value);
15
 
                                parent.srcW.con.send(aMessage);
16
 
 
17
 
        /* restore topic */
18
 
        if (top.user.roster.subject)
19
 
          document.forms[0].elements['subject'].value = top.user.roster.subject;
20
 
        else 
21
 
          document.forms[0].elements['subject'].value = '';
22
 
 
23
 
        return false;
24
 
      }
25
 
    </script>
26
 
  </head>
27
 
 
28
 
  <body style="margin:8px;">
29
 
    <form onSubmit="return setSubject();">
30
 
      <table width="100%">
31
 
          <tr>
32
 
            <td>Thema:&nbsp;</td>
33
 
            <td width="100%"><input type="text" style="width:100%;" name="subject"></span></td>
34
 
          </tr>
35
 
      </table>
36
 
    </form>
37
 
  </body>
38
 
</html>