[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2013-05-01 Thread Thomas Hotz
No response and starting with Precise this package is not shipped any more with Ubuntu. ** Changed in: deskbar-applet (Ubuntu) Status: Incomplete = Invalid ** Changed in: deskbar-applet (Ubuntu) Assignee: Ubuntu Desktop Bugs (desktop-bugs) = (unassigned) -- You received this bug

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2012-11-10 Thread Thomas Hotz
Can you reproduce this error with Ubuntu 10.04 or 12.04? ** Changed in: deskbar-applet (Ubuntu) Status: Confirmed = Incomplete -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug assignee. https://bugs.launchpad.net/bugs/205018 Title:

Re: [Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2009-02-07 Thread Ohad Lutzky
OK, Searches are finally implemented. On Sat, Jan 31, 2009 at 7:43 PM, Sebastian Pölsterl s...@k-d-w.org wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ohad Lutzky schrieb: Which UI changes are blockers? Because the new bookmark system is rather complex, and I'm not sure when I'll

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2009-02-07 Thread Sebastian Pölsterl
Thanks a lot Ohad. I had a quick look at your code. I noticed that you use json to retrieve the search engines. However, I don't have a search.json file in my profile directory, only search.sqlite which seems to include the data. In addition, the json module is part of python since 2.6 only, but

Re: [Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2009-01-31 Thread Ohad Lutzky
Which UI changes are blockers? Because the new bookmark system is rather complex, and I'm not sure when I'll have time to get around it. On Fri, Jan 30, 2009 at 12:31 PM, Sebastian Pölsterl s...@k-d-w.org wrote: I just realized that UI freeze starts next Monday. Do you think you can get it

Re: [Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2009-01-31 Thread Sebastian Pölsterl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ohad Lutzky schrieb: Which UI changes are blockers? Because the new bookmark system is rather complex, and I'm not sure when I'll have time to get around it. On Fri, Jan 30, 2009 at 12:31 PM, Sebastian Pölsterl s...@k-d-w.org wrote: I just

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2009-01-30 Thread Sebastian Pölsterl
I just realized that UI freeze starts next Monday. Do you think you can get it ready until Monday? Doesn't have to be perfect, but the UI changes must be completed. -- Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks https://bugs.launchpad.net/bugs/205018 You received this bug

Re: [Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2009-01-04 Thread Ohad Lutzky
On Sat, Jan 3, 2009 at 10:46 PM, Sebastian Pölsterl s...@k-d-w.org wrote: That's fine. Just set is_history to True on the BrowserMatch if it's an history item. Done. I'll try and add search sometime this week. (Fortunately, search.sqlite doesn't seem to be locked!) -- Man is the only animal

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2009-01-03 Thread Sebastian Pölsterl
I tried out the latest version and I must say it works great. However, I was wondering if it was possible to split the module in 3 modules like the FF2 version? One for querying bookmarks, one for querying history, and one for querying search engines. Search engines doesn't seem to get retrieved

Re: [Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2009-01-03 Thread Ohad Lutzky
Well, History and Bookmarks have been joined together in Firefox 3 - the only difference between a history item and a bookmark seems to be an extra flag on the bookmark. Splitting this functionality would create code duplication. Also, implementing searches engines will probably be very similar as

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2009-01-03 Thread Sebastian Pölsterl
That's fine. Just set is_history to True on the BrowserMatch if it's an history item. -- Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks https://bugs.launchpad.net/bugs/205018 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-12-03 Thread Mikkel Kamstrup Erlandsen
I think Ohad's solution is pretty much as clean as one can hope for without an extension needed on the Firefox side... I am a bit worried about copying the entire DB though. On my system the places db is about 1mb and I clean my data almost daily. Moreover as far as I can see the db is updated

Re: [Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-12-03 Thread Ohad Lutzky
On Wed, Dec 3, 2008 at 3:36 PM, Mikkel Kamstrup Erlandsen [EMAIL PROTECTED] wrote: I think Ohad's solution is pretty much as clean as one can hope for without an extension needed on the Firefox side... I am a bit worried about copying the entire DB though. On my system the places db is about

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-12-03 Thread Srdan Dukic
Just to add to Nexus' workaround (https://bugs.launchpad.net/ubuntu/+source/deskbar- applet/+bug/205018/comments/3) there is a preference in the Firefox 'about:config' called 'browser.bookmarks.autoExportHTML' which, when set to true, exports the bookmarks from SQLite to the bookmarks.html file

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-12-03 Thread Mikkel Kamstrup Erlandsen
Ohad: Ok, I see. While a fix in FF would definitely be optimal I don't see that as blocking it from entering deskbar (of course this is ultimately Sebastian's decision, I'm just an old deskbar-hacker with an opinion :-D). And if FF is changed to use non-exclusive locks in the future deskbar should

Re: [Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-12-03 Thread Ohad Lutzky
There's another difference: My applet shows all places, attempting to emulate the AwesomeBar - not just bookmarks. (This can be tweaked, of course) On Thu, Dec 4, 2008 at 12:41 AM, Mikkel Kamstrup Erlandsen [EMAIL PROTECTED] wrote: Ohad: Ok, I see. While a fix in FF would definitely be optimal

Re: [Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-10-11 Thread Ohad Lutzky
On Thu, Oct 9, 2008 at 2:29 PM, Sebastian Pölsterl [EMAIL PROTECTED] wrote: I can see how you solved the problem of firefox locking the DB. But how do you guarantee that the copy of the sqlite db stays up-to-date? One solution would be to monitor firefox's sqlite db for changes and copy and

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-10-09 Thread Sebastian Pölsterl
I can see how you solved the problem of firefox locking the DB. But how do you guarantee that the copy of the sqlite db stays up-to-date? One solution would be to monitor firefox's sqlite db for changes and copy and parse the file each time. -- Hardy - Doesn't detect Firefox 3.0 for web searches

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-10-04 Thread Ohad Lutzky
Sebastian, using OpenSearch will only solve the issue for searches, not for bookmarks and history. I have created a deskbar module that provides history searching for Firefox 3 using sqlite, you can find it here: http://github.com/lutzky/deskbar_ff3 -- Hardy - Doesn't detect Firefox 3.0 for

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-06-21 Thread Sebastian Pölsterl
@nexus: The workaround most likely works, because the files firefox 2 created are still there. However, an OpenSearch module is currently in the works [1]. The search engines in firefox are all OpenSearch compatible, so you can add them to Deskbar, too. [1]:

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-06-09 Thread Danilo Penna Queiroz
https://bugs.launchpad.net/ubuntu/+source/deskbar-applet/+bug/205018/comments/3 does it works? -- Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks https://bugs.launchpad.net/bugs/205018 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-05-28 Thread nexus
Do you mean that you can't access this format now or you will not be able to access it in future? Maybe you should think about releasing a version which just uses the search engines from firefox. At least for me this would be enough. :-) The workaround I posted above works for the search

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-05-28 Thread nexus
Sorry, I forgot something: @Sebastian: Thanks for the information why firefox 3 is not (yet) supported. -- Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks https://bugs.launchpad.net/bugs/205018 You received this bug notification because you are a member of Ubuntu Desktop Bugs,

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-05-28 Thread Sebastian Pölsterl
There's a good reason that only firefox 3 is allowed, because we're unable to parse history and bookmarks of Firefox 3. It's stored in a different format (Sqlite) we can't access. -- Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks https://bugs.launchpad.net/bugs/205018 You

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-05-09 Thread nexus
If you don't want to downgrade Firefox you can simply change the allowed versions by editing the following file: /usr/lib/deskbar-applet/modules-2.20-compatible/mozilla.py Change the max ff version in line 36 to MAX_FF_VERSION = [3, 1, 0, 0] # exclusively for example -- Hardy - Doesn't detect

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-05-03 Thread Steve Moser
I have a workaround. Go here http://ubuntuforums.org/showthread.php?t=767012 to uninstall ff3 and install ff2. Once that is done you still have to change your preferred application from firefox %s to firefox-2 %s Once that is done deskbar should work -- Hardy - Doesn't detect Firefox 3.0 for

[Bug 205018] Re: Hardy - Doesn't detect Firefox 3.0 for web searches and bookmarks

2008-03-23 Thread Sebastien Bacher
thank you for your bug report; as indicated in the message that's a known issue ** Changed in: deskbar-applet (Ubuntu) Importance: Undecided = Wishlist Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs) Status: New = Confirmed -- Hardy - Doesn't detect Firefox 3.0 for