Installing

Installed

 nomed@nomed-laptop:~$ sudo apt-get remove gconf2-common
Reading package lists... Done 
Building dependency tree... Done 
The following packages will be REMOVED 
  capplets-data espresso espresso-frontend-gtk gconf2 gconf2-common gdebi gdm
  gksu gnome-control-center gnome-menus gnome-session gparted libbonoboui2-0
  libcamel1.2-8 libebook1.2-5 libedataserver1.2-7 libegroupwise1.2-9
  libgconf2-4 libgdl-1-0 libgdl-1-common libgnome-desktop-2 libgnome-menu2
  libgnome2-0 libgnome2-common libgnomeui-0 libgnomevfs2-0 libgnomevfs2-common
  libmetacity0 libnautilus-extension1 python-gmenu python-gnome2-extras
  python2.4-gnome2-extras update-manager xubuntu-desktop xubuntu-live
0 upgraded, 0 newly installed, 35 to remove and 9 not upgraded.
Need to get 0B of archives.
After unpacking 62.8MB disk space will be freed.
Do you want to continue [Y/n]?

python2.4-gnome2-extras

Depends:

Why ?

gtkui.py

   1         # show interface
   2         # TODO cjwatson 2005-12-20: Disabled for now because this segfaults in
   3         # current dapper (https://bugzilla.ubuntu.com/show_bug.cgi?id=20338).
   4         #self.show_browser()

and show_browser:

   1     def show_browser(self):
   2         """Embed Mozilla widget into a vbox."""
   3 
   4         import gtkmozembed
   5 
   6         widget = gtkmozembed.MozEmbed()
   7         local_uri = os.path.join(PATH, 'htmldocs/', self.distro, 'index.html')
   8 
   9         # Loading branding if htmldocs/ brand exists. In other hand Ubuntu Project
  10         #     website is loaded
  11         try:
  12             widget.load_url("file://" + local_uri)
  13         except:
  14             widget.load_url("http://www.ubuntu.com/")
  15         widget.get_location()
  16         self.stepWelcome.add(widget)
  17         widget.show()

firefox

DanieleFavara/DapperXubuntuEspresso (last edited 2008-08-06 17:01:43 by localhost)