[Bug 259830] Re: Honor gnome proxy setting

2013-03-28 Thread Robert Bruce Park
** Changed in: gwibber
   Status: Confirmed = Fix Committed

** Changed in: gwibber (Ubuntu)
   Status: Triaged = Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwibber/+bug/259830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2013-02-27 Thread akatdim
Ubuntu 12.10
Gwibber 3.6.0 has same bug, but Empathy works fine.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwibber/+bug/259830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2012-12-13 Thread Bilal Shahid
** Changed in: gwibber
   Status: Incomplete = Confirmed

** Changed in: gwibber
   Importance: Medium = Wishlist

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwibber/+bug/259830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2012-12-12 Thread KARTHIK
Ubuntu 12.04

Using Empathy 3.4.2.3

I am using an authenticated proxy.

Empathy still not working behind authenticated proxy.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwibber/+bug/259830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2012-07-19 Thread Brian Thorne
I changed line 127 of
/usr/share/gwibber/plugins/twitter/gtk/twitter/__init__.py to use https
instead of http which seemed to get through my work proxy:

http_url=https://api.twitter.com/oauth/access_token;,

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwibber/+bug/259830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2012-07-13 Thread Andrei Petcu
same here. Ubuntu 12.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwibber/+bug/259830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2012-06-20 Thread Launchpad Bug Tracker
** Branch linked: lp:~webcredentials-team/+junk/gwibber-opensesame-
packaging

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwibber/+bug/259830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2012-05-04 Thread Vladimir Scherbaev
gwibber 3.4.1-0ubuntu1 in Ubuntu 12.04. Still don't work behind proxy.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwibber/+bug/259830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2012-04-09 Thread Bilal Shahid
Thanks for your patch, unfortunately our busy developers haven't been
able to review your patch in a timely manor.  The gwibber codebase has
seen significant change and it is likely this patch no longer applies.
Please review it again and if it is still applicable, update it to work
with the latest gwibber trunk.  We will be doing a patch review day in
the next few weeks and would like to review your patch.  Thanks again
for your contribution!

** Changed in: gwibber
   Status: Confirmed = Incomplete

** Tags removed: patch-needswork
** Tags added: patch-day-old

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwibber/+bug/259830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2011-12-06 Thread Denis A. Grigoriev
This is a hack to get twitter working behind proxy. I don't know how to make 
this gwibber-wide :(
I'll try to look for ways to do it.

Gwibber 2.32.0.1, Ubuntu 10.10

--- twitter.py  2011-12-06 17:41:26.741085914 +0400
+++ /usr/share/pyshared/gwibber/lib/gtk/twitter.py  2011-12-06 
17:42:12.421057531 +0400
@@ -16,6 +16,15 @@
 
 sigmeth = oauth.OAuthSignatureMethod_HMAC_SHA1()
 
+#dirty ugly proxy hack
+import ctypes
+libgobject = ctypes.CDLL('/usr/lib/libgobject-2.0.so.0')
+libsoup = ctypes.CDLL('/usr/lib/libsoup-2.4.so.1')
+libwebkit = ctypes.CDLL('/usr/lib/libwebkit-1.0.so.2')
+proxy_uri = libsoup.soup_uri_new('http://127.0.0.1:5865')
+session = libwebkit.webkit_get_default_session()
+libgobject.g_object_set(session, proxy-uri, proxy_uri, None)
+
 class AccountWidget(gtk.VBox):
   AccountWidget: A widget that provides a user interface for configuring 
twitter accounts in Gwibber
   

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwibber/+bug/259830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2011-11-28 Thread sammcj
A major faulty, I cannot believe this still has not been fixed, no
gwibber at work!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwibber/+bug/259830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2011-11-08 Thread Peter Ivanov
No proxy support in 3.2.1 either.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwibber/+bug/259830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2011-10-14 Thread Eshwar Andhavarapu
It still has not been fixed. Sad. This is with oneiric released with
3.2.0.1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

To manage notifications about this bug go to:
https://bugs.launchpad.net/gwibber/+bug/259830/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2011-04-05 Thread Ken VanDine
** Changed in: gwibber
Milestone: 3.0 = 3.2

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2011-03-17 Thread Shinji Ikari
the two published patches do not work, i look forward to, like many
users, use gwibber at work...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2011-03-11 Thread Ken VanDine
** Changed in: gwibber
   Status: In Progress = Triaged

** Changed in: gwibber (Ubuntu)
   Status: In Progress = Triaged

** Changed in: gwibber
   Status: Triaged = Confirmed

** Changed in: gwibber
 Assignee: (unassigned) = Ken VanDine (ken-vandine)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2011-03-09 Thread Ken VanDine
** Changed in: gwibber
 Assignee: Ken VanDine (ken-vandine) = (unassigned)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2011-01-25 Thread Stanislav Hanzhin
Libproxy is now disabled in source code. And the authentication, that
uses python-webkit is unabled to use http proxy.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2011-01-12 Thread Alessio Tomelleri
Linux pulsarx 2.6.32-27-generic #49-Ubuntu SMP Wed Dec 1 23:52:12 UTC
2010 i686 GNU/Linux

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=10.04
DISTRIB_CODENAME=lucid
DISTRIB_DESCRIPTION=Ubuntu 10.04.1 LTS

Gwibber 2.91.3

I confirm, simply it doesn't work under proxy.

If I try to add any account (facebook, twitter, identi.ca), it gives me this 
message:
-
Unable to load page

Problem occurred while loading the URL
https://graph.facebook.com/oauth/authorize?redirect_uri=http%3A%2F%2Fwww.facebook.com%2Fconnect%2Flogin_success.htmltype=user_agentdisplay=popupclient_id=71b85c6d8cb5bbb9f1a3f8bbdcdd4b05

Cannot connect to destination


...of course my network connection is fine.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/259830

Title:
  Honor gnome proxy setting

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-11-12 Thread Ken VanDine
** Changed in: gwibber (Ubuntu)
 Assignee: Ken VanDine (ken-vandine) = (unassigned)

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-11-12 Thread Michael Hall
** Branch linked: lp:~mhall119/gwibber/fixes-658554

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-10-25 Thread temsa
Seems to work partially fine with proxy (not sure, however) on an Mint
Isadora updated with Ubuntu 10.10 packages : Any browser based (like
connection to facebook or twitter account) feature won't work (I had to
use proxychains), but message sending/retrieval seems to work fine after
service subscriptions

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-10-20 Thread Bob Morton
thanks for the help

[url=http://www.google.com]thanks[/url]

[http://www.google.com thanks]

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-10-12 Thread Harsh Kumar
Bug exists in Ubuntu 10.10

Please fix this bug. Its annoying that ubuntu is shipping applications
these days with no proxy support.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-09-17 Thread Vadim Rutkovsky
Due to http://code.google.com/p/pywebkitgtk/issues/detail?id=53 any
OAuth dialog will be unavailable (i.e Facebook, Twitter and Buzz).

** Bug watch added: code.google.com/p/pywebkitgtk/issues #53
   http://code.google.com/p/pywebkitgtk/issues/detail?id=53

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-09-13 Thread BehzadSh
gwibber-daily doesn't work either :|

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-09-03 Thread wiz
Buzz not working in 10.10 beta

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-09-02 Thread Michael Hall
Using Gwibber  2.31.92, and it does not seem to use the proxy for any of
the protocols.

Linux mhall-laptop 2.6.32-24-generic #42-Ubuntu SMP Fri Aug 20 14:24:04
UTC 2010 i686 GNU/Linux

Distributor ID: Ubuntu
Description:Ubuntu 10.04.1 LTS
Release:10.04
Codename:   lucid

Version: 2.31.92~bzr837-0ubuntu1~daily1~lucid
From: deb http://ppa.launchpad.net/gwibber-daily/ppa/ubuntu lucid main

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-08-26 Thread Ing. Pavel Milanes Costa
Not working at least with twitter.

Linux gandalf 2.6.32-24-generic #41-Ubuntu SMP Thu Aug 19 01:12:52 UTC
2010 i686 GNU/Linux

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=10.04
DISTRIB_CODENAME=lucid
DISTRIB_DESCRIPTION=Ubuntu 10.04.1 LTS

Last full update: 23 august 2010

gwibber_2.30.1-0ubuntu1

Proxy settings are set in gnome settings.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-07-20 Thread John
only partially working for me in 2.30.1 under Karmic.

- gwibber does not seem to check the proxy settings when it starts, it
doesn't pick up changes to the Gnome proxy settings until I
logout/login.

- authenticating a facebook account doesn't appear to be aware of proxy
settings. I get a cannot resolve hostname error page, which is what
would be expected if the proxy is not used.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-07-20 Thread Sassan
It is not fixed, I can't login to facebook and the login widget doesn't
respect my proxy, please don't change the status of this bug to fixed
until it's been confirmed by at least one person who's experiencing the
problem.

regards
--
Sassan

** Changed in: gwibber
   Status: Fix Released = In Progress

** Changed in: gwibber (Ubuntu)
   Status: Fix Released = In Progress

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-07-14 Thread Omer Akram
you were not able to add facebook account cuz that was a bug which is
now fixed.

** Changed in: gwibber (Ubuntu)
   Status: In Progress = Fix Released

** Changed in: gwibber
   Status: Confirmed = Fix Released

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-06-24 Thread Launchpad Bug Tracker
This bug was fixed in the package gwibber - 2.31.1-0ubuntu1

---
gwibber (2.31.1-0ubuntu1) maverick; urgency=low

  * New upstream release
- Added GetVersion method to the API
- added libproxy support for gwibber-service (LP: #259830)
 -- Ken VanDine ken.vand...@canonical.com   Thu, 24 Jun 2010 12:11:42 -0400

** Changed in: gwibber (Ubuntu)
   Status: Triaged = Fix Released

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-06-24 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-desktop/gwibber/ubuntu

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-06-24 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/gwibber

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-06-24 Thread Sassan
Well thank you for your immediate action, I appreciate it, you made
CurlDownloader use libproxy and it probably solved the problem, I say
probably because I'm unable to test it because I can't authenticate my
facebook account, and I can't authenticate it because facebook
authentication dialog (which is in lib/gtk/facebook.py) uses webkit it
still doesn't respect gnome proxy and I can't make it use gnome proxy.
If you make webkit use proxy (any kind of proxy - gnome-network-proxy,
defined in py file, etc) you're my hero :D

Regards
--
Sassan

** Changed in: gwibber (Ubuntu)
   Status: Fix Released = In Progress

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-06-21 Thread Sassan
It's pretty much unusable here in Iran as they filtered facebook, twiter, 
flicker, etc.
I even tried to setup a transparent (intercepting) proxy and then connect to 
facebook with gwibber running on a machine behind this proxy but facebook 
authentication needs https and as you know there's no way making https work 
with transparent proxy (Man in the middle attack).
I read all the python sources and ended up knowing that it's almost impossible 
to make webkit module for python to use proxy.
Well after all I wanna kindly mention that for us (who live in a country with 
huge usage of filtering like Iran, China, etc) it'd be nice if Ubuntu and 
softwares made in it's community give a full support for proxy services.

BTW it's getting two months :)

Regards
--
Sassan

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-05-05 Thread Nigel Babu
Thanks Pēteris for the patch, I've added patch-needswork tag for now,
when you've fixed the facebook issues and this is ready for prime time,
please feel free to change it back to patch tag.

** Tags added: patch-needswork
** Tags removed: patch

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 259830] Re: Honor gnome proxy setting

2010-05-04 Thread Brendan Hassett
I see this as a major fault.

Two high-profile items for Lucid are the integration of Social
Networking and integration of Ubuntu One. Both of these features are
blocked for anybody behind a proxy.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-05-04 Thread skre
I agree #40. Especially business users have to use a proxy. I can't
understand why a lot of applications don't use gnome proxy settings.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-05-04 Thread Pēteris Krišjānis
While not wanting to turn this into discussion thread, as staunch Ubuntu
supporter I agree that we have ignored proxy users for a while. For
brighter side, we have definite plans for releasing proxy supporting
Gwibber in PPA for Lucid within 2 months, so proxy users won't be left
out in the cold. I will try to research posiblity to add some support
for XMPP in Empathy.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-04-28 Thread ktp
#36 says that the Facebook widget uses webkit. I found the following regarding 
webkit and gnome proxy settings:
https://bugs.launchpad.net/ubuntu/+source/pywebkitgtk/+bug/424833 links to 
https://bugs.webkit.org/show_bug.cgi?id=25263 and the bad news is, that they 
won't fix because the problem seems to be in libsoup. There is also a bug filed 
under https://bugzilla.gnome.org/show_bug.cgi?id=605048

Maybe someone can sort this out. For me qwibber is rendered useless at
this time, because I need to have a proxy.

** Bug watch added: bugs.webkit.org/ #25263
   https://bugs.webkit.org/show_bug.cgi?id=25263

** Bug watch added: GNOME Bug Tracker #605048
   https://bugzilla.gnome.org/show_bug.cgi?id=605048

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-04-13 Thread Ken VanDine
** Changed in: gwibber
 Assignee: Ryan Paul (segphault) = Ken VanDine (ken-vandine)

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-04-09 Thread samurailink3
Still an issue on 10.04:
Linux Macaroni 2.6.32-19-generic #28-Ubuntu SMP Wed Mar 31 17:46:20 UTC 2010 
i686 GNU/Linux

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-04-09 Thread Amaeth
godavid  wrote on 2010-02-09:#34
+1. I really need proxy feature in gwibber too.

+1

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-03-30 Thread Ken VanDine
** Changed in: gwibber (Ubuntu)
 Assignee: (unassigned) = Ken VanDine (ken-vandine)

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-03-26 Thread Pēteris Krišjānis
Rudamentary patch for proxy support using libproxy (it checks for
proxies supporing url, if there is none, proxy is not set. If there is
authentification, it sets curl to autodetection for most secure method).
Facebook widget is another target, but it uses webkit so it will be more
complicated.

** Patch added: gwibber-proxy-libproxy.patch
   http://launchpadlibrarian.net/42059052/gwibber-proxy-libproxy.patch

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-03-24 Thread Pēteris Krišjānis
This is first version of the patch to add GNOME proxy settings support. Several 
notes:
* Would be nice to test it with different proxy authentications, set 
CURLAUTH_ANY to get most secure way, but not sure how properly it works;
* Facebook client activation page doesn't work, should take a look;

** Patch added: Patch for gwibber-2.29.92.1
   http://launchpadlibrarian.net/41848907/gwibber-proxy-support.diff

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-03-24 Thread Omer Akram
** Tags added: patch

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-03-08 Thread Ryan Paul
** Changed in: gwibber
Milestone: None = 3.0

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-02-08 Thread godavid
+1. I really need proxy feature in gwibber too.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-01-14 Thread Jamal Fanaian
This still doesn't seem to be working (at least not using a socks proxy,
haven't tested HTTP). The way I am testing it is by setting a proxy in
Gnome, and shutting down the proxy connection. Gwibber is still able to
get the data although other applications (tested with Chromium) are not,
since they are relying on the proxy configuration.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-01-14 Thread Jamal Fanaian
It seems like this is an issue with most applications in Gnome, not just
Gwibber (bug #479630).

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2010-01-11 Thread Mehdi Hassanpour
after export http_proxy I run gwibber-daemon in one terminal and
gwibber in another terminal. This is the only way I found to have
gwibber running...

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-12-24 Thread oliwek
I have the same problem here at work behind a proxy (Lucid daily build, gwibber 
2.0.0)... that's really a pity after having used to such an alternative for 
both twitter and identi.ca
Launching it from terminal with http_proxy and https_proxy set doesn't help 
either

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-12-01 Thread Pezz
In the latest nightly (490) either http_proxy or https_proxy is working.
I can get my Twitter feed, but without images and Facebook still does
not work at all.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-12-01 Thread Ken VanDine
Ryan: Could this be related to the different modules using a different
lib for getting messages?  Like facebook using pycurl and twitter using
urllib2?

** Changed in: gwibber
 Assignee: (unassigned) = Ryan Paul (segphault)

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-12-01 Thread 2GooD
@Pezz: I have filed https://bugs.launchpad.net/gwibber/+bug/487477 about
missing images for the Twitter feed.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-12-01 Thread Pezz
@2GooD: When using Gwibber nightly (490) from home, no proxy, I see
Twitter images fine, and Facebook works.

Images are only missing from Twitter when I need to go via a proxy, so I
guess it's related to this bug.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-11-17 Thread Pezz
Running Ubuntu 9.10 / karmic final and both the version of Gwibber in
the normal repo, and the daily repo version
(2.0.0-bzr478-0ubuntu2~daily1) do not work via a proxy (squid proxy auth
required).

* Setting the Gnome Network Proxy setting has no effect.
* Exporting http_proxy and https_proxy in a terminal then running it has no 
effect.
* Made a script, exported those two vars, then run Gwibber and it does not work.

Tailing the access log of Squid shows Gwibber isn't even trying to
connect to the proxy.

At this time, unless you have direct Internet access, it appears you
cannot use Gwibber. Weird thing is, exporting those vars used to work
(before version 2).

Would be great to see this fixed and working.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-11-17 Thread Pezz
Sorry, typo: I meant to say (squid proxy, no auth required)

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-10-13 Thread Lionel Dricot
Confirming that twitter and identi.ca still don't work with the latest
karmic. Sad...

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 259830] Re: Honor gnome proxy setting

2009-10-13 Thread hellfeuer
Did anyone try the fix I suggested?

On Tue, Oct 13, 2009 at 4:40 PM, Lionel Dricot pl...@ploum.net wrote:

 Confirming that twitter and identi.ca still don't work with the latest
 karmic. Sad...

 --
 Honor gnome proxy setting
 https://bugs.launchpad.net/bugs/259830
 You received this bug notification because you are a direct subscriber
 of the bug.


-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-10-13 Thread Lionel Dricot
helifeuer  I use a proxy without autorisation (no login needed) so I
don't see what I could change.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 259830] Re: Honor gnome proxy setting

2009-10-13 Thread Salil
That shouldn't matter.

Use https://username:p...@twitter.com in the 'connect' method, where
username and password are your twitter username and pass (I'm not suggesting
you hard code this.. use self.get_auth(), but prepend the info to the url
instead of instead of passing it as the headers argument in urllib2.urlopen)

If you do this, and if you https_proxy is set correctly, then urllib2 should
do the rest.

On Tue, Oct 13, 2009 at 5:38 PM, Lionel Dricot pl...@ploum.net wrote:

 helifeuer  I use a proxy without autorisation (no login needed) so I
 don't see what I could change.

 --
 Honor gnome proxy setting
 https://bugs.launchpad.net/bugs/259830
 You received this bug notification because you are a direct subscriber
 of the bug.


-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-09-04 Thread hellfeuer
Ok it works for me with facebook and gmail, and both use https.

I think this may be happening because twitter.py sets the headers
argument explicitly. In which case the solution is to simply move the
authorization into the url (https://username:p...@blah), and allow
urllib to set the headers appropriately (which is what I do with gmail,
and it seems to work).

Unfortunately I don't have a twitter account so I can't try this out.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-09-03 Thread hellfeuer
gwibber works fine with a proxy for me.

I launch it from a terminal that has http_proxy and https_proxy set.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-09-03 Thread FuePi
Still an issue on Ubuntu 9.04 with Gwibber 0.9.2.

$ env|grep proxy
http_proxy=http://proxy-001:3128
https_proxy=http://proxy-001:3128
$ gwibber 

This produces the error
retrieve messages HTTPError: HTTP Error 400: Bad Request
for the protocol twitter.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-07-23 Thread BUGabundo
this is still a problem on debian squeeze with trunk gwibber.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-07-04 Thread Alexander Sack
is this still a problem in current karmic gwibber (or in current
gwibber.daily?)

** Changed in: gwibber (Ubuntu)
   Importance: Undecided = Wishlist

** Changed in: gwibber (Ubuntu)
   Status: New = Confirmed

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-07-04 Thread Alexander Sack
setting upstreamed bugs to Triaged

** Changed in: gwibber (Ubuntu)
   Status: Confirmed = Triaged

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-07-04 Thread Dalton Scavassa
quote
is this still a problem in current karmic gwibber (or in current gwibber.daily?)
/quote

Yes, it's still an issue here with 1.2.0~bzr346-0ubuntu1~daily1~jaunty

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-06-02 Thread Jonathan Lumb
Look forward to this one rolling out - Gwibber is my preferred Twitter
interface for Gnome as it is one of the few native apps available.
However, I live in China and the government has recently blocked access
to Twitter - so I can no longer use Gwibber as there is no proxy support
available. A great shame... I'll have to use a firefox extension for the
time being, not exactly ideal!

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-05-29 Thread 2GooD
This was fixed in Python 2.6 only days ago:
http://svn.python.org/view?view=revrevision=72880

Gwibber through proxy will work when we get the patch in included in
Python, either through an upstream release or as an Ubuntu patch.

I patched httplib.py and urllib.py locally and now I'm tweeting through
a proxy! (@davideriksson)

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-05-13 Thread Thijs Thiessens
Im using ubuntu on Jaunty. Gwibber just stops responding to anything if
you are behind a proxy. It doesn't respect the gnome proxy setting. This
means I can not use it @ work! :) The program looks nice though! ;)

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-05-05 Thread FuePi
On a clean install of Jaunty apt-get install gwibber installs gwibber
0.8.0, on Intrepid I have gwibber 0.9.2. Neither one supports/recognizes
my network proxy setting.

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-05-03 Thread Ryan Paul
This is supposedly fixed upstream in Jaunty. Can anyone confirm that or
let me know what the status is in other distros?

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-03-17 Thread Mehall
I can't wait till the upstream bug is resolved. it's at patch testing
just now, and I hope it can get rolled out soon!

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-03-16 Thread FuePi
Was thrilled to find gwibber as one of the few non-air, multi-account 
twitter-able apps.
IMHO this is a major bug as it prevents me and others from using gwibber at all.

Implementing the usual behavior, i.e. let the user choose between using
system proxy settings or providing a proxy host/script, would improve
the usability a lot.

Appreciating your great work,
FuePi

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 259830] Re: Honor gnome proxy setting

2009-03-11 Thread Markus Heberling
** Also affects: gwibber (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Honor gnome proxy setting
https://bugs.launchpad.net/bugs/259830
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs