~ubuntu-branches/ubuntu/karmic/gwibber/karmic

« back to all changes in this revision

Viewing changes to ui/themes/default/errors.mako

  • Committer: Bazaar Package Importer
  • Author(s): Ken VanDine
  • Date: 2009-10-04 20:40:40 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20091004204040-z10z1jsdy288o6w6
Tags: 2.0.0~bzr465-0ubuntu1
* New upstream snapshot - r465
  - Fixes for dbus call blocking crashes (LP: #422726) (LP: #434833)
  - dbus client and server now follow name changes (LP: #439325) (LP: #434592)
  - Remember previous window size and position (LP: #422525)
  - Remember previous account tree splitter position
  - Remember previous input area size
  - Do not change input area height when resizing main window (LP: #422532)
  - Version themes to ensure only compatible themes are available
  - fix dict handling for facebook replies (LP: #436690)
  - facebook now uses pycurl instead of urllib2, fixes hangs (LP: #422864)
* debian/preinst:
  - Moved from debian/postinst and added version compare
* debian/control:
  - depend on python-pycurl, urllib2 was causing terrible problems
    with facebook (LP: #422864)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<%namespace name="base" file="base.mako">
 
2
</%namespace>
 
3
 
 
4
<html>
 
5
  <head>
 
6
    <script src="jquery.js"></script>
 
7
    <style>
 
8
      <%include file="css.mako" /> 
 
9
      <%include file="defaultcss.mako" /> 
 
10
    </style>
 
11
    <script>
 
12
      $(document).ready(function() {
 
13
        $(".toggledupe").show(0).unbind().toggle(
 
14
          function() {$(this).parent().parent().find(".dupes").show(100)},
 
15
          function() {$(this).parent().parent().find(".dupes").hide(100)});
 
16
      });
 
17
    </script>
 
18
  </head>
 
19
  <body>
 
20
    <div class="welcome">
 
21
      <h2>Errors</h2>
 
22
    </div>
 
23
    % if message_store:
 
24
      ${base.errors(message_store)}
 
25
    % endif
 
26
  </body>
 
27
</html>