Re: [Bug 424833] Re: python-webkit doesn't honor http_proxy anymore

2011-11-11 Thread Serge Noiraud
Le 11/11/2011 18:12, George Klein a écrit :
 Just been hit by this in 11.10 using gramps.

 Looking at the comments here and in the remote bugs, it seem that this
 problem is being sloped off as somebody else's problem and/or ignored.

 It's beyond me to decide which of the myriad possible pieces of software
 should/could be fixing this.  Does anyone have any idea if we will ever
 see any progress on this?


Sorry for reply only to you.
I can't any more login to launchpad : your page is too old ! even if I want to 
change my password.

gramps now use no more webkit for the maps.
We only use webkit for an internal browser which is masked by default.
I'm on oneiric ( 11.10 ) too and it seems to work.
Since a while, nobody complains from this.

I speak only about gramps. I don't know for other's projects.

Serge

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

Title:
  python-webkit doesn't honor http_proxy anymore

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

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

[Bug 522410] Re: no support for Samba 3.4.5

2010-08-03 Thread Serge Noiraud
I need the above functionality + wine and fusesmb.
But, I can't install wine which needs winbind.

-- 
no support for Samba 3.4.5
https://bugs.launchpad.net/bugs/522410
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 448670] Re: Gramps crashes after some minutes

2009-11-25 Thread Serge Noiraud
As we call some webkit function earlier ( webkit problem )
I tried to solve this.
I made a patch : It works for me. can you test it ?

-- 
Gramps crashes after some minutes
https://bugs.launchpad.net/bugs/448670
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 448670] Re: Gramps crashes after some minutes

2009-11-25 Thread Serge Noiraud
I don't know how to add a patch, so I copy it :
--- /usr/share/gramps/DataViews/GeoView.py.org  2009-11-25 10:52:12.0 
+0100
+++ /usr/share/gramps/DataViews/GeoView.py  2009-11-25 10:53:15.0 
+0100
@@ -417,8 +417,9 @@
 
 Set the backward and forward button in accordance to the browser.
 
-self.forward_action.set_sensitive(self.renderer.can_go_forward())
-self.back_action.set_sensitive(self.renderer.can_go_back())
+pass
+#self.forward_action.set_sensitive(self.renderer.can_go_forward())
+#self.back_action.set_sensitive(self.renderer.can_go_back())
 
 def open(self, url):
 
@@ -698,6 +699,11 @@
 
 Specifies the UIManager XML code that defines the menus and buttons
 associated with the interface.
+placeholder name=CommonNavigation
+  toolitem action=Back/  
+  toolitem action=Forward/  
+  toolitem action=Refresh/
+/placeholder
 
 if Config.get(Config.GEOVIEW_GOOGLEMAPS):
 alternate_map = GoogleMaps
@@ -709,11 +715,6 @@
 alternate_map = MicrosoftMaps
 return '''ui
   toolbar name=ToolBar
-placeholder name=CommonNavigation
-  toolitem action=Back/  
-  toolitem action=Forward/  
-  toolitem action=Refresh/
-/placeholder
 placeholder name=CommonEdit
   toolitem action=OpenStreetMap/
   toolitem action=%s/
@@ -731,9 +732,9 @@
 Required define_actions function for PageView. Builds the action
 group information required. 
 
-HtmlView._define_actions_fw_bw(self)
-self.forward_action.set_sensitive(False)
-self.back_action.set_sensitive(False)
+#HtmlView._define_actions_fw_bw(self)
+#self.forward_action.set_sensitive(False)
+#self.back_action.set_sensitive(False)
 self._add_action('OpenStreetMap', 'gramps-openstreetmap', 
  _('_OpenStreetMap'),
  callback=self.select_openstreetmap_map,

-- 
Gramps crashes after some minutes
https://bugs.launchpad.net/bugs/448670
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 448670] Re: Gramps crashes after some minutes

2009-11-11 Thread Serge Noiraud
You can use gtkmozembed in place of webkit to have a workaround
sudo aptitude remove python-webkit
sudo aptitude install python-gtkmozembed
Then run gramps.
You should not have this problem anymore.
If the problem always occurs, it's a gramps problem.
If it doesn't, it's a webkit problem.

-- 
Gramps crashes after some minutes
https://bugs.launchpad.net/bugs/448670
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 448670] Re: Gramps crashes after some minutes

2009-11-09 Thread Serge Noiraud
I can reproduce the problem too. If it's the same problem than the bug 3341 on 
gramps-project bug list,
http://www.gramps-project.org/bugs/view.php?id=3341

** (gramps.py:5858): DEBUG: NP_Initialize
** (gramps.py:5858): DEBUG: NP_Initialize succeeded
 --- modulename: GeoView, funcname: page_loaded
GeoView.py(210): self.set_button_sensitivity()
 --- modulename: GeoView, funcname: set_button_sensitivity
GeoView.py(187): self.fct()
 --- modulename: GeoView, funcname: set_button_sensitivity
GeoView.py(420): 
self.forward_action.set_sensitive(self.renderer.can_go_forward())
 --- modulename: GeoView, funcname: can_go_forward
GeoView.py(169): return self.window.can_go_forward()
GeoView.py(421): self.back_action.set_sensitive(self.renderer.can_go_back())
 --- modulename: GeoView, funcname: can_go_back
GeoView.py(157): return self.window.can_go_back()
Segmentation fault (core dumped)

This is a libwebkit or a python-webkit problem :
I ask to webkit if I can go back ( go to the prior html page )
It should answer False because at this moment, we have no html page loaded.

As you can see, the can_go_forward is ok. This is used to have the back and 
forward button active or not.
self.window = webkit.webview()

If I use : python -m trace --count when I launch gramps, sometimes it work, 
sometimes it doesn't,
So The problem appears ( I suppose ) when webkit is not fully initialized.

Does it help ?
is it the same bug than 
https://bugs.launchpad.net/ubuntu/+source/gramps/+bug/388815 ?


** Bug watch added: GRAMPS Bug Tracking System #3341
   http://www.gramps-project.org/bugs/view.php?id=3341

-- 
Gramps crashes after some minutes
https://bugs.launchpad.net/bugs/448670
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 388815] Re: Overwrite process with .deb on upgrade (Hardy-backports)

2009-11-09 Thread Serge Noiraud
Is it the same bug than
https://bugs.launchpad.net/ubuntu/+source/gramps/+bug/448670 ?

-- 
Overwrite process with .deb on upgrade (Hardy-backports) 
https://bugs.launchpad.net/bugs/388815
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 448670] Re: Gramps crashes after some minutes

2009-11-08 Thread Serge Noiraud
I'm the gramps  developper which include GeoView in gramps.
Geoview try to load libwebkit or gtkmozembed to show the maps.
If we have none of these kits, Geoview is not loaded.
If we have one kit, we load the kit available
and if we have the two kits, webkit is used.
If you don't need the maps for the moment, you can disallow geoview in the .ini 
file
$HOME/.gramps/gramps.ini or gramps32.ini
You remove 'GeoView' in the data-views variable.

This is for the work around. Normally, gramps must run correctly.

Now, for your problem, I think there is a problem during libwebkit and 
python-webkit installation.
During the karmic development, I already had this problem one time.
To correct this, I only did :
sudo aptitude remove python-webkit
then
sudo aptitude install python-webkit
and normally, the problem should disapear ...

-- 
Gramps crashes after some minutes
https://bugs.launchpad.net/bugs/448670
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 424833] [NEW] python-webkit doen't honor anymore http_proxy

2009-09-05 Thread Serge Noiraud
Public bug reported:

The problem exists on hardy and on karmic.

on hardy :
libwebkit-1.0-21.1.5-1~hhwkt1
libwebkit-1.0-common1.1.5-1~hhwkt1
python-webkit 1.1.5-0~hhwkt1
libsoup2.4-12.27.1-0ubuntu1~hhwkt1

on karmic : 
libwebkit-1.0-21.1.12-1ubuntu1
libwebkit-1.0-common1.1.12-1ubuntu1
python-webkit 1.1.5-1
libsoup2.4-12.27.90-0ubuntu1

It worked before webkit use libsoup. ( libcurl  was OK.)
Is it a bug ?
If not, how to say to webkit, use the http_proxy environment variable ?

** Affects: pywebkitgtk (Ubuntu)
 Importance: Undecided
 Status: New

-- 
python-webkit doen't honor anymore http_proxy
https://bugs.launchpad.net/bugs/424833
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 424833] Re: python-webkit doen't honor anymore http_proxy

2009-09-05 Thread Serge Noiraud
** Also affects: gramps
   Importance: Undecided
   Status: New

** Description changed:

  The problem exists on hardy and on karmic.
  
  on hardy :
  libwebkit-1.0-21.1.5-1~hhwkt1
  libwebkit-1.0-common1.1.5-1~hhwkt1
  python-webkit 1.1.5-0~hhwkt1
  libsoup2.4-12.27.1-0ubuntu1~hhwkt1
  
  on karmic : 
  libwebkit-1.0-21.1.12-1ubuntu1
  libwebkit-1.0-common1.1.12-1ubuntu1
  python-webkit 1.1.5-1
  libsoup2.4-12.27.90-0ubuntu1
  
  It worked before webkit use libsoup. ( libcurl  was OK.)
  Is it a bug ?
  If not, how to say to webkit, use the http_proxy environment variable ?
+ 
+ I don't use gnome. I use kde

-- 
python-webkit doen't honor anymore http_proxy
https://bugs.launchpad.net/bugs/424833
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 306160] Re: Since last libwebkit upgrade, segmentation fault on hardy

2008-12-10 Thread Serge Noiraud
Is there somebody in the ubuntu world ?
If this bug is not in the good place, how to send it to the libwebkit team ?
I think it's for :
http://ppa.launchpad.net/webkit-team/

-- 
Since last libwebkit upgrade, segmentation fault on hardy
https://bugs.launchpad.net/bugs/306160
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 306160] Re: Since last libwebkit upgrade, segmentation fault on hardy

2008-12-09 Thread Serge Noiraud
Is it the same problem than midori :
Midori crashes shortly before pages are loaded
There appears to be an issue with Glib 2.16. The recommended solution is to 
upgrade your Glib package to 2.18.

On my hardy the glib is : 2.16.6-0ubuntu1

-- 
Since last libwebkit upgrade, segmentation fault on hardy
https://bugs.launchpad.net/bugs/306160
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 306160] Re: Since last libwebkit upgrade, segmentation fault on hardy

2008-12-08 Thread Serge Noiraud
I installed an intrepid in virtualbox on my hardy.
libwebkit+python-webkitgtk works correctly on intrepid.
It's only a hardy problem.
do you need more infos ? what ?

-- 
Since last libwebkit upgrade, segmentation fault on hardy
https://bugs.launchpad.net/bugs/306160
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 295939] Re: import problem with ubuntu hardy

2008-11-19 Thread Serge Noiraud
Hi,
I didn't know where was the problem.
I uninstall all webkit  packages then reinstall libwebkit and python-webkitgtk.
I don't have this problem anymore.
So You can close this bug.

-- 
import problem with ubuntu hardy
https://bugs.launchpad.net/bugs/295939
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 295939] [NEW] import problem with ubuntu hardy

2008-11-09 Thread Serge Noiraud
Public bug reported:


I'm on kubuntu hardy  ( updated each day )

apt-cache policy python-webkitgtk
python-webkitgtk:
  Installé : 1.0.1~hardy~ppa3
  Candidat : 1.0.1~hardy~ppa3
 Table de version :
 *** 1.0.1~hardy~ppa3 0
500 http://ppa.launchpad.net hardy/main Packages
100 /var/lib/dpkg/status


lsb_release -rd
Description:Ubuntu 8.04.1
Release:8.04


When importing webkit, I get the following error :
import webkit
ImportError: /var/lib/python-support/python2.5/gtk-2.0/webkit.so: undefined 
symbol: webkit_web_view_zoom_in


Is there a missing package ?
Do you need some other package version ?

** Affects: pywebkitgtk (Ubuntu)
 Importance: Undecided
 Status: New

-- 
import problem with ubuntu hardy
https://bugs.launchpad.net/bugs/295939
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 288734] Re: cannot add weather applet in task bar

2008-11-03 Thread Serge Noiraud
How can we use the plasmoïd in countries other than the US ?
For my town, in france, the code is LFRS. it is not a zip code !
it is an ICAO code.
I switch to kde4 only when this will work.
What about the logs like in kweather !
These two problems are important.
I'll stay in kde3 until this work or I'll switch to another desktop.

-- 
cannot add weather applet in task bar
https://bugs.launchpad.net/bugs/288734
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdetoys in ubuntu.

-- 
kubuntu-bugs mailing list
[EMAIL PROTECTED]
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 263538] Re: gramps crash with hspell wich is not needed.

2008-10-08 Thread Serge Noiraud
Yes it is.
There is no more  problem. this bug can be closed.

-- 
gramps crash with hspell wich is not needed.
https://bugs.launchpad.net/bugs/263538
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