[Bug 466567] Re: Firefox moz-icon://.ext not working

2010-11-17 Thread Micah Gersten
This is fixed in Natty now with Firefox 4.0b7.  Please report any other
issues you may find.

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

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2010-11-17 Thread Ilja Sekler
 This is fixed in Natty now with Firefox 4.0b7. Please report any
 other issues you may find.

While true for Firefox 4 on top of Gecko 2.0, this bug is still valid
for Thunderbird 3.1 on top of Gecko 1.9.2. It is even much more
prominent there as there are no attachment icons in Thunderbird with the
default Ubuntu icon theme.

How would you like to proceed for Natty? Do nothing and hope that
Thunderbird releases a next major version based on Gecko 2.0 till then?
Apply the patch https://bugzilla.mozilla.org/attachment.cgi?id=418531
(this is what I do locally for my private Thunderbird builds)?

Do you wish to track the issue for the thunderbird (Ubuntu) in a
separate bug?

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2010-09-18 Thread Bug Watch Updater
** Changed in: firefox
   Importance: Unknown = Medium

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2010-07-15 Thread Bug Watch Updater
** Changed in: firefox
   Status: Confirmed = Fix Released

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2010-07-15 Thread Micah Gersten
Adding unversioned firefox package to track the fix in Lucid+

** Changed in: firefox
Milestone: None = 4.0

** Also affects: firefox (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: firefox (Ubuntu)
   Importance: Undecided = Medium

** Changed in: firefox (Ubuntu)
   Status: New = Triaged

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-27 Thread flying sheep
i use a kde desktop, the oxygen icon theme (png!) and the mime icons
don’t work for me.

so this bug happens in two cases: using .svg-icon themes on gnome or
using anything on kde!

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-27 Thread Ilja Sekler
 so this bug happens in two cases: using .svg-icon themes on gnome 
 or using anything on kde!

I apologize for the mess. The issues on GNOME and on KDE are unrelated
IMHO.

To finish with the issue on GNOME in this bug, I suggest the following  
per-user 
workaround for the Humanity icon theme:


#!/bin/bash

ISOURCE=/usr/share/icons/
ITHEME=Humanity

for size in 16 22 24 32 48;
do
  mkdir -p $HOME/.icons/$ITHEME/mimes/$size;
  for file in $ISOURCE/$ITHEME/mimes/$size/*.svg;
do ln -s $file $HOME/.icons/$ITHEME/mimes/$size/`basename $file`.png;
  done;
done;


It turns out to be, that it is not required to convert SVG icons to PNG format: 
changing the filename extension to .png is sufficient.

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-27 Thread Ilja Sekler
Oops... This:

ln -s $file $HOME/.icons/$ITHEME/mimes/$size/`basename $file`.png;

must be on a single line or the line break must be escaped.

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-27 Thread Ilja Sekler
 ln -s $file $HOME/.icons/$ITHEME/mimes/$size/`basename $file`.png;

*Arrgghh* once again the fixed script:

#!/bin/bash

ISOURCE=/usr/share/icons/
ITHEME=Humanity

for size in 16 22 24 32 48;
do
  mkdir -p $HOME/.icons/$ITHEME/mimes/$size;
  for file in $ISOURCE/$ITHEME/mimes/$size/*.svg;
  do
ln -s $file $HOME/.icons/$ITHEME/mimes/$size/`basename \
$file .svg`.png;
  done;
done;

of course... My deepest apologies for the bugspam!

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-26 Thread Micah Gersten
Thank you for reporting this.  I'm marking this triaged as we have an
upstream bug.  Please report any other bugs you may find.

** Package changed: firefox (Ubuntu) = firefox-3.5 (Ubuntu)

** Changed in: firefox-3.5 (Ubuntu)
   Importance: Undecided = Medium

** Changed in: firefox-3.5 (Ubuntu)
   Status: New = Triaged

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-26 Thread Ilja Sekler
Saving the required icons from the Humanity icon theme as PNG files
definitely works around the issue. With the default Human theme an
Karmic (which includes the Humanity icons), I can see the right icon for
application/pdf in the large attachment view in Thunderbird 3 if I save
/usr/share/icons/Humanity/mimes/32/x-office-document.svg as
~/.icons/Humanity/mimes/32/x-office-document.png and make a symlink
~/.icons/Humanity/mimes/32/application-pdf.png to this file.

As far as it is unlikely that moz-icon:// would accept SVG soon enough,
it could be preferable to be nice to Firefox and Thunderbird and give
them what they want.  Setting package to humanity-icon-theme.

** Package changed: ubuntu = humanity-icon-theme (Ubuntu)

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-26 Thread mac_v
We are not going to convert all our MIME icons to png , just because a
single app is not able to handle the svg.

It is a problem in the app and not the icon theme.

** Changed in: humanity-icon-theme (Ubuntu)
   Status: Confirmed = Invalid

** Also affects: firefox via
   https://bugzilla.mozilla.org/show_bug.cgi?id=521495
   Importance: Unknown
   Status: Unknown

** Also affects: firefox (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-26 Thread mac_v
Firefox is able to use the svg icons in the toolbars and other locations.
So, it needs to be fixed in firefox and not workaround the problem by asking 
the icon theme to change its icon formats.

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-26 Thread Tadej Novak
What about using other icon themes. Firefox successfully uses Oxygen
icons as back/forward/refresh if this theme is selected. And Oxygen
already has .png mime icons.

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-19 Thread flying sheep
that is either not the cause, or on kde there is another one.
for example
/usr/share/icons/oxygen/16x16/mimetypes/image-x-generic.png
exists (and all other mimetype-.pngs) on my pc.

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-19 Thread Ilja Sekler
WFM with oxygen icons on GNOME and current trunk builds of Firefox as
well with Thunderbird 3.0.1pre.

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-18 Thread Ilja Sekler
 With which icon theme does this work for you?

Works at least with gnome and Human icon themes. The most visible
difference is that gnome and Human themes contain icons in PNG format in
the relevant /usr/share/$ICON_THEME/16x16/mimetypes/ subdirectory, but
Humanity has only SVG.

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-15 Thread flying sheep
Why should it be specific to a special iconset?

If anything, it is specific to a special feature the oxygen and humanity
(and probably loads of other) themes either have or lack.

With which icon theme does this work for you? Note that this is a Karmic
Bug, everything worked for me up to Jaunty!

@Everyone:
Please note that this Bug only covers moz-icon://.ext uris.
moz-icon://stock/* works still fine!

** Changed in: ubuntu
   Status: New = Confirmed

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-12 Thread Ilja Sekler
This issue is specific to Humanity* icon sets (package humanity-icon-
theme), possibly due to limitations of the moz-icon:// protocol in
Firefox and in Thunderbird 3.

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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 466567] Re: Firefox moz-icon://.ext not working

2009-11-08 Thread flying sheep
filed same bug at bugzilla:
https://bugzilla.mozilla.org/show_bug.cgi?id=521495

** Bug watch added: Mozilla Bugzilla #521495
   https://bugzilla.mozilla.org/show_bug.cgi?id=521495

-- 
Firefox moz-icon://.ext not working
https://bugs.launchpad.net/bugs/466567
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