~ubuntu-branches/ubuntu/lucid/gwibber/lucid-proposed

« back to all changes in this revision

Viewing changes to gwibber/lib/gtk/facebook.py

  • Committer: Bazaar Package Importer
  • Author(s): Ken VanDine, Ken VanDine, Didier Roche
  • Date: 2010-02-17 14:47:15 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20100217144715-emnd56aqicc3hone
Tags: 2.29.90-0ubuntu1
[ Ken VanDine ]
* New upstream release 2.29.90
  - ported Qaiku, StatusNet and Digg to 2.29.x
  - Added logging, now outputs logs in $HOME/.cache/gwibber/
  - Added url shortening to the python API
  - Updated docstrings for epydoc friendly API docs

[ Didier Roche ]
* debian/control:
  - bump Standard-Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
from gtk import Builder
25
25
import gwibber.microblog
26
26
from gwibber.microblog import facebook
27
 
from gwibber.microblog.support import facelib
 
27
from gwibber.microblog.util import facelib
28
28
import json, urlparse
29
29
 
30
30
APP_KEY = "71b85c6d8cb5bbb9f1a3f8bbdcdd4b05"
73
73
    web.set_size_request(450, 340)
74
74
    web.open("http://www.facebook.com/login.php?" + url)
75
75
    web.connect("title-changed", self.on_facebook_auth_title_change)
76
 
    self.pack_start(web, True, True, 0)
 
76
 
 
77
    scroll = gtk.ScrolledWindow()
 
78
    scroll.add(web)
 
79
 
 
80
    self.pack_start(scroll, True, True, 0)
77
81
    self.show_all()
78
82
    self.ui.get_object("vbox1").hide()
79
83
    self.ui.get_object("expander1").hide()