[Zeitgeist] [Bug 566898] Re: Log DB file should be versioned

2010-06-11 Thread Markus Korn
** Changed in: zeitgeist Status: Fix Committed = Fix Released -- Log DB file should be versioned https://bugs.launchpad.net/bugs/566898 You received this bug notification because you are a member of Zeitgeist Framework Team, which is subscribed to Zeitgeist Framework. Status in Zeitgeist

[Zeitgeist] [Bug 591910] Re: Zeitgeist xdg autostart

2010-06-11 Thread Markus Korn
Hi Hans, as Siegfried said in his comment the zeitgeist daemon is designed to start upon request, so we don't need to autostart zeitgeist on session start. This is why I'm setting this bug to won't fix Markus ** Changed in: zeitgeist Status: New = Won't Fix -- Zeitgeist xdg autostart

[Zeitgeist] [Bug 592339] Re: Tracking recent directories

2010-06-11 Thread Markus Korn
Hi Conrad, thanks for your feature request. I'm not sure if I understood your request correctly, but can't your problem be solved by using this (pseudo-) code: recent_dirs = [dirname($subject.uri) for $subject in $recent_local_file_subjects] Markus ** Changed in: zeitgeist Status: New

[Zeitgeist] [Bug 538985] Re: [WIP bugreport][ontology branch] work on the performance of the ontology branch

2010-06-11 Thread Markus Korn
Since this bug was reported we changed the way of loading the symbols alot, and I don't think performance of loading datamodel.py is not an issue anymore, please reopen (and attach some timings) if you disagree. Markus ** Changed in: zeitgeist Status: New = Won't Fix -- [WIP

[Zeitgeist] [Bug 592599] [NEW] Hard to use exclusive queries

2010-06-11 Thread Mikkel Kamstrup Erlandsen
Public bug reported: (Canonical hat on) For Unity we want to try and group recent files into some categories like Documents, Images, Video, Presentations, etc, and I've discovered an unfortunate decision in our template matching algorithm, making this quite hard to get 100% right. The deal is

[Zeitgeist] [Bug 592600] [NEW] Autoload extensions

2010-06-11 Thread Mikkel Kamstrup Erlandsen
Public bug reported: (Canonical hat on) For packaging reasons it would be nice if Zeitgeist would automatically load all extensions found somewhere on the file system so that we could ship the FTS extension in a separate .deb for Unity. In theory it's possible to use the env vars there are, but

[Zeitgeist] [Bug 592599] Re: Hard to use exclusive queries

2010-06-11 Thread Markus Korn
I agree with you here, the combinator for subjects should be AND, but the one for events should stay OR - that makes the most sense. ** Changed in: zeitgeist Status: New = Confirmed -- Hard to use exclusive queries https://bugs.launchpad.net/bugs/592599 You received this bug notification

[Zeitgeist] [Bug 592600] Re: Autoload extensions

2010-06-11 Thread Mikkel Kamstrup Erlandsen
From IRC: thekorn kamstrup, for the other bug, would you be happy with a --load_all_extensions commandline switch for the daemon? I am not sure that is good enough, unless we package ZG to always launch with that. My idea was that simply installing/removing .debs determined which extensions

[Zeitgeist] [Bug 592600] Re: Autoload extensions

2010-06-11 Thread Mikkel Kamstrup Erlandsen
Tagetting for 0.4.1 as it seems everyone is more or less on the same page ** Changed in: zeitgeist Importance: Undecided = High ** Changed in: zeitgeist Status: New = Triaged ** Changed in: zeitgeist Milestone: None = 0.4.1 -- Autoload extensions

Re: [Zeitgeist] [Bug 592599] Re: Hard to use exclusive queries

2010-06-11 Thread Seif Lotfy
We can solve Others by having a root interpretation it will look like this su1 = Subject.new_for_values(interpretation=ROOT) su2 = Subject.new_for_values(interpretation=!+DOCUMENT) su2 = Subject.new_for_values(interpretation=!+AUDIO) ... ev = Event() ev.subjects.append(su1)

[Zeitgeist] [Bug 592339] Re: Tracking recent directories

2010-06-11 Thread Conrad Steenberg
I guess this is more of a GUI issue then. Is there anybody else on the notification list who would care to comment on whether this could be added to e.g. the new File dialog? -- Tracking recent directories https://bugs.launchpad.net/bugs/592339 You received this bug notification because you are

[Zeitgeist] [Bug 592599] Re: Hard to use exclusive queries

2010-06-11 Thread Mikkel Kamstrup Erlandsen
Seif: No. Since all the subject templates are ORed together you end up matching everything. In fact just these two lines match everything: su1 = Subject.new_for_values(interpretation=!+DOCUMENT) su2 = Subject.new_for_values(interpretation=!+AUDIO) So the only way to construct Others would be

[Zeitgeist] [Bug 592339] Re: Tracking recent directories

2010-06-11 Thread Mikkel Kamstrup Erlandsen
Markus: That could be an idea... But we could also add new ResultTypes called MostRecentOrigin and LeastRecentOrigin? Then restricting the query to match only Manifestation.FILE_DATA_OBJECT should also do what you want. Not a huge deal though, as your suggestion would also work well... The only

Re: [Zeitgeist] [Bug 592599] Re: Hard to use exclusive queries

2010-06-11 Thread Seif Lotfy
Oh you got me wrong the subject templates shoudl be changed to AND like u suggested then use the queries... On Fri, Jun 11, 2010 at 7:06 PM, Mikkel Kamstrup Erlandsen mikkel.kamst...@gmail.com wrote: Seif: No. Since all the subject templates are ORed together you end up matching everything.

Re: [Zeitgeist] [Bug 592339] Re: Tracking recent directories

2010-06-11 Thread Seif Lotfy
It seems like a good idea to me though... I would say lets go for it And btw if u sort most_used_dir and set a limit 100 u will get the 100 latest events with unique origins of the subjects sorted my most used ... On Fri, Jun 11, 2010 at 7:11 PM, Mikkel Kamstrup Erlandsen