[Zeitgeist] [Bug 491646] Re: Delete unused stuff from DB

2009-12-03 Thread Mikkel Kamstrup Erlandsen
Until we see evidence that our DB indeed clutters up in lots of unused
URIs and whatnot (after some DeleteEvents), then I don't think the added
complexity is worth it.

A more pressing issue is to delete unused URIs after a DeleteEvents
because of privacy reasons - it's fine that we delete all events about
http://example.com/explicit_content, but we still have the URI in the
'uri' table. However, we have to make sure that the URI is not reffed by
any other existing event before pruning it. But this seems to be another
bug, although heavily related to this issue.

-- 
Delete unused stuff from DB
https://bugs.launchpad.net/bugs/491646
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: New

Bug description:
 RainCT, I used REFERENCES table(column) ON DELETE CASCADE everywhere

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 489262] Re: Interpretation conventions

2009-12-03 Thread Mikkel Kamstrup Erlandsen
** Changed in: zeitgeist
Milestone: 0.3.0 => 0.3.1

-- 
Interpretation conventions
https://bugs.launchpad.net/bugs/489262
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Triaged

Bug description:
I think using
visit/modified is non-sense
I would push for replacing it with open/close/saved
THIS IS CRITICAL FOR THE DATAPROVIDERS AS WELL AS CLIENT APPS


___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 490110] Re: bug in client.py

2009-12-03 Thread Mikkel Kamstrup Erlandsen
Seif has not been able to reproduce afaik, so marking as invalid

** Changed in: zeitgeist
   Status: New => Invalid

-- 
bug in client.py
https://bugs.launchpad.net/bugs/490110
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Invalid

Bug description:
Fiddling with the client.py i found this error 

i will write down the code first so u might understand where the problem is
--
def insert_events(self):
self.event_dict.clear()
event = Event()
event.set_interpretation(Interpretation.VISIT_EVENT.uri)
event2 = Event()
event2.set_interpretation(Interpretation.MODIFY_EVENT.uri)

self.zg.find_event_ids_for_templates([event], self.handle_events1, 
[self.time*1000, (self.time+86399)*1000], num_events=5)

#HERE I GET 9 items

self.zg.find_event_ids_for_templates([event2], self.handle_events2, 
[self.time*1000, (self.time+86399)*1000], num_events=5) 

#HERE I GET 13 items

self.zg.find_event_ids_for_templates([event, event2], 
self.handle_events, [self.time*1000, (self.time+86399)*1000], num_events=5)

#HERE I GET 126

def handle_events1(self, x):
print len(x)

def handle_events2(self, x):
print len(x)

def handle_events(self, x=None):
print "*", len(x)


here the output again:
9
13
* 126


AFAIK 9+13=22 and not 126!
somthing is wrong combining 2 event templates

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 406054] Re: Export extensions and dataproviders into a new package

2009-12-03 Thread Mikkel Kamstrup Erlandsen
** Changed in: zeitgeist
Milestone: 0.3.0 => 0.3.1

-- 
Export extensions and dataproviders into a new package
https://bugs.launchpad.net/bugs/406054
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Incomplete

Bug description:
We should take everything thath as nothing to do with the the engine itself or 
anything that communicates via dbus with the engine outside the package and 
create a new one or even a project called zeitgeist-dataproviders and 
zeitgeist-extensions. What do you think?

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 397715] Re: I18N of zeitgeist

2009-12-03 Thread Mikkel Kamstrup Erlandsen
I agree with Siegfried. It will be very convenient for apps if the
display_name of Categories (Interp. and Manif.) af translated

** Changed in: zeitgeist
Milestone: 0.3.0 => 0.3.1

-- 
I18N of zeitgeist
https://bugs.launchpad.net/bugs/397715
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Confirmed

Bug description:
zeitgeist is using gettext for I18N in various places, but its usage is 
inconsistent. A quick grep with `grep -R -E "[^\_]\_{1}\(" .` shows we are 
using gettext for:
 - some logging messages
 - the name and description of the FF DataProvider
 - display name of Content and Source objects in our datamodel (real gettext 
support is not implemented yet)

Thinking about this three items a bit I think none of them make sense at all. 
Logging is for debugging purposes, in the future we will ask our user to add a 
log file to a bugreport. If the logging messages are translated to a random 
language we will hardly understand the content. Translating the display name of 
Content and Source object also makes no sense, instead of this it should be 
done by the client. This way one database can be accessed with different 
language settings. And if we agree on the last two arguments, it also makes 
less sense for the last item.

But just in case I'm missing the point here, and we decide to have I18N support 
in zeitgeist we should decide which parts we would exactly like to translate, 
and dig trough the code to add language support to related elements 
consistently.

Markus

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 489186] Re: GetHighestTimestampForActor is superfluous

2009-12-03 Thread Mikkel Kamstrup Erlandsen
I removed this method some time before we released 0.3.0. Marking as Fix
Released

** Changed in: zeitgeist
   Status: Triaged => Fix Released

-- 
GetHighestTimestampForActor is superfluous
https://bugs.launchpad.net/bugs/489186
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Fix Released

Bug description:
The method GetHighestTimestampForActor is superfluous as far as I can tell. It 
can be simply done fully client side by using FindEventIds like so:

template = Event.new_for_values(actor="gedit")
ids = FindEventIds(TimeRange.until_now(), [template], StorageState.Any, 1, 
ResultType.MostRecentEvents)
highest_timestamp_for_gedit = GetEvents(ids)[0].timestamp

If I am right about this then I think we should remove it from the DBus API an 
simply implement a convenience method in ZeitgeistClient.

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 483550] Re: [lp:~zeitgeist/zeitgeist/zeitgeist-resonance] make test/remote-test.py proper unittests

2009-12-03 Thread Mikkel Kamstrup Erlandsen
** Changed in: zeitgeist
   Status: Fix Committed => Fix Released

-- 
[lp:~zeitgeist/zeitgeist/zeitgeist-resonance] make test/remote-test.py proper 
unittests
https://bugs.launchpad.net/bugs/483550
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Fix Released

Bug description:
I know mikkel had a hard time at the hackfest trying to make this dbus API 
tests unittests, but I think I found a solution for it.
Having this test in unittests too would allow us to create one big testsuite 
for zeitgeist easily.
I will add a branch with unittests for the remote API soonish

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 489194] Re: Implement storage monitor (devices and connectivity)

2009-12-03 Thread Mikkel Kamstrup Erlandsen
Ok, let me jot some thoughts donw on this so we have it

 * All monitoring should be done async, without polling. Ie. using signals and 
callback, not sleep(5); check_drives();
 * I think we can use gio.VolumeMonitor() to listen for connect/disconnect of 
volumes. Then we use gio.Volume.get_uuid() as the key in the 'storage' table.
 * I have not checked NetworkManager or ConnMan, but I am pretty sure that both 
provide some DBus API to get async  notifications when the connection goes away 
and comes up. We should use the key 'inet' to store the connectivity state in 
the 'storage' table.
 * All online subjects requiring a connection to be available, should have 
their storage attribute set to 'inet'

-- 
Implement storage monitor (devices and connectivity)
https://bugs.launchpad.net/bugs/489194
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Confirmed

Bug description:
This is a reminder bug.

We need to write a "storage monitor" that manage the various storage mediums we 
can have event subjects stored on. The storage monitor should write any changes 
back to the 'storage' table in the DB.

What we need to track is connection and disconnections of storage volumes 
(probably using gio) - ie. track whether or not files on USB thumb drives are 
available or not etc.  Also the network connection state should be updated in 
the storage table so that we can filter out remote files and website on request.

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 488790] Re: What value should event.actor have?

2009-12-03 Thread Mikkel Kamstrup Erlandsen
** Summary changed:

- What value should "actor" have?
+ What value should event.actor have?

** Changed in: zeitgeist
 Assignee: (unassigned) => Mikkel Kamstrup Erlandsen (kamstrup)

** Changed in: zeitgeist
   Importance: Undecided => High

** Changed in: zeitgeist
   Status: New => Triaged

-- 
What value should event.actor have?
https://bugs.launchpad.net/bugs/488790
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Triaged

Bug description:
Our DB has some inconsistency  when we insert applications:
recently used inserts something like /path/to/app.desktop
while the other loggers use application://app.desktop
WHICH ONE SHOULD IT BE

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 489262] Re: Interpretation conventions

2009-12-03 Thread Mikkel Kamstrup Erlandsen
This is very related to the whole events ontology thing, and must also
be meticulously documented in our API docs. Since I am knee deep in
both, I'll assign this bug to myself.

** Changed in: zeitgeist
 Assignee: (unassigned) => Mikkel Kamstrup Erlandsen (kamstrup)

-- 
Interpretation conventions
https://bugs.launchpad.net/bugs/489262
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Triaged

Bug description:
I think using
visit/modified is non-sense
I would push for replacing it with open/close/saved
THIS IS CRITICAL FOR THE DATAPROVIDERS AS WELL AS CLIENT APPS


___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 487321] Re: What value should subject.origin have?

2009-12-03 Thread Mikkel Kamstrup Erlandsen
** Summary changed:

- Origin
+ What value should subject.origin have?

** Changed in: zeitgeist
 Assignee: (unassigned) => Mikkel Kamstrup Erlandsen (kamstrup)

** Changed in: zeitgeist
   Importance: Undecided => High

** Changed in: zeitgeist
   Status: New => Triaged

-- 
What value should subject.origin have?
https://bugs.launchpad.net/bugs/487321
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Triaged

Bug description:
>> +   origin = 
>> info.get_uri().rpartition("/")[0]

WHY?

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 447417] Re: Zeitgeist should have any kind of system to protect users privacy

2009-12-03 Thread Mikkel Kamstrup Erlandsen
See also bug #491646

** Tags added: privacy

-- 
Zeitgeist should have any kind of system to protect users privacy
https://bugs.launchpad.net/bugs/447417
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Confirmed

Bug description:
Zeitgeist should respect the following use cases:
 * Tim has a directory ~/Videos/pr0n, he does not want zeitgeist to track any 
events regarding this directory
 * Tina played a card game at work and found out that this event is shown in 
her zeitgeist client, she would like to remove this  event to hide it from her 
boss

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


Re: [Zeitgeist] Planning for Zeitgeist 0.3.1

2009-12-03 Thread Mikkel Kamstrup Erlandsen
2009/12/3 Seif Lotfy :
> I think a 3 week period for our next release is more than enough
> As for a plan and set of features to be released we should keep it minimal.
> From the top of my head this is the TODO list:
>
> notification and subscribtions (kamstrup)
> enabling/disabling extensions using a conf file (maybe we should do it the
> same way we do it with the external dataproviders, where we just dump the
> stuff into a folder). This will come in handy for new releases. (thekorn)
> solve issues with external dataproviders that are also logged by recently
> used. I think having duplicate entries is no solution since its manipulates
> the "most used" (RainCT)
> implemnt the "most used with" idea we use to have (seif)
>
> Also i think at the moment we should also release an extension with the
> 0.3.1
> To hype up the extension feature we need to keep it under the
> Zeitgeist-Framework umbrella for now. I was thinking of the libchamplain
> extension for locations of events (I dont think we need a full fledged repo
> for that)
> I will make sure the UI is released within a week from now at max. This
> could push up our hype again. Also I think RainCT should look into Shell
> again.
> Other things i would suggest for the engine 0.3.x would be:
>
> Add the focus shit as an extension
> Add more dataproviders (telepathy and evolution)
> Finish an ontology

Ok, I just defered all incomplete bugs and blueprints from 0.3.0 to
0.3.1. There's quite a lot on the table for 0.3.1, so we should
probably defer some of it to 0.3.2.

@Seif - I think we need some bugs or blueprints to track progress of
your items 1 and 2 ("Add the focus shit as an extension" and "Add more
dataproviders")

-- 
Cheers,
Mikkel

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 491646] Re: Delete unused stuff from DB

2009-12-03 Thread Mikkel Kamstrup Erlandsen
** Tags added: privacy

-- 
Delete unused stuff from DB
https://bugs.launchpad.net/bugs/491646
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: New

Bug description:
 RainCT, I used REFERENCES table(column) ON DELETE CASCADE everywhere

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 487321] Re: What value should subject.origin have?

2009-12-03 Thread Seif Lotfy
IMHO we should stick to using the origin as the domain of the subject

/path/to/file ==> /path/to
youtube.com/aflkasflkasjf ==> aflkasflkasjf

It will give us the option of knowing which are the most used documents
in a folder or most watched videos on youtube.com

-- 
What value should subject.origin have?
https://bugs.launchpad.net/bugs/487321
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Triaged

Bug description:
>> +   origin = 
>> info.get_uri().rpartition("/")[0]

WHY?

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


Re: [Zeitgeist] [Bug 491646] Re: Delete unused stuff from DB

2009-12-03 Thread Siegfried Gevatter
2009/12/3 Mikkel Kamstrup Erlandsen :
> A more pressing issue is to delete unused URIs after a DeleteEvents
> because of privacy reasons

Deleting stuff that becomes unliked because of a DeleteEvents call is
the whole point of this bug.

-- 
Siegfried-Angel Gevatter Pujals (RainCT)
Free Software Developer   363DEAE3

-- 
Delete unused stuff from DB
https://bugs.launchpad.net/bugs/491646
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: New

Bug description:
 RainCT, I used REFERENCES table(column) ON DELETE CASCADE everywhere

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


Re: [Zeitgeist] [Bug 489194] Re: Implement storage monitor (devices and connectivity)

2009-12-03 Thread Siegfried Gevatter
2009/12/3 Mikkel Kamstrup Erlandsen :
>  * All online subjects requiring a connection to be available, should have 
> their storage attribute set to 'inet'

Doesn't really matter as it's only a minor detail, but why "inet" and
not "internet"/"online"/whatever?

-- 
Implement storage monitor (devices and connectivity)
https://bugs.launchpad.net/bugs/489194
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Confirmed

Bug description:
This is a reminder bug.

We need to write a "storage monitor" that manage the various storage mediums we 
can have event subjects stored on. The storage monitor should write any changes 
back to the 'storage' table in the DB.

What we need to track is connection and disconnections of storage volumes 
(probably using gio) - ie. track whether or not files on USB thumb drives are 
available or not etc.  Also the network connection state should be updated in 
the storage table so that we can filter out remote files and website on request.

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 489194] Re: Implement storage monitor (devices and connectivity)

2009-12-03 Thread Mikkel Kamstrup Erlandsen
> but why "inet" and not "internet"/"online"/whatever?

Because the wind was in the west and it was a full moon when I wrote it
:-) Or perhaps I don't have a good reason.

One thing though, I don't know if we should take into consideration or
not is tunneling or VPN-like setups. So fx. some resources are only
available when I am online via my company's VPN... This might get a bit
tricky to handle gracefully, and I am not sure it is really convenient
anyway...

-- 
Implement storage monitor (devices and connectivity)
https://bugs.launchpad.net/bugs/489194
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Confirmed

Bug description:
This is a reminder bug.

We need to write a "storage monitor" that manage the various storage mediums we 
can have event subjects stored on. The storage monitor should write any changes 
back to the 'storage' table in the DB.

What we need to track is connection and disconnections of storage volumes 
(probably using gio) - ie. track whether or not files on USB thumb drives are 
available or not etc.  Also the network connection state should be updated in 
the storage table so that we can filter out remote files and website on request.

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


Re: [Zeitgeist] [Bug 489194] Re: Implement storage monitor (devices and connectivity)

2009-12-03 Thread Seif Lotfy
guys i think this goes into ontologies again
basically u have "local" data and "network" data
whereareas each one of thus has its sub categories such as LAN/WAN,
reomvable storage, etc
I will look if nepomuk covers this aspect

2009/12/3 Mikkel Kamstrup Erlandsen 

> > but why "inet" and not "internet"/"online"/whatever?
>
> Because the wind was in the west and it was a full moon when I wrote it
> :-) Or perhaps I don't have a good reason.
>
> One thing though, I don't know if we should take into consideration or
> not is tunneling or VPN-like setups. So fx. some resources are only
> available when I am online via my company's VPN... This might get a bit
> tricky to handle gracefully, and I am not sure it is really convenient
> anyway...
>
> --
> Implement storage monitor (devices and connectivity)
> https://bugs.launchpad.net/bugs/489194
> You received this bug notification because you are subscribed to The
> Zeitgeist Project.
>
> Status in Zeitgeist Framework: Confirmed
>
> Bug description:
> This is a reminder bug.
>
> We need to write a "storage monitor" that manage the various storage
> mediums we can have event subjects stored on. The storage monitor should
> write any changes back to the 'storage' table in the DB.
>
> What we need to track is connection and disconnections of storage volumes
> (probably using gio) - ie. track whether or not files on USB thumb drives
> are available or not etc.  Also the network connection state should be
> updated in the storage table so that we can filter out remote files and
> website on request.
>
>

-- 
Implement storage monitor (devices and connectivity)
https://bugs.launchpad.net/bugs/489194
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Confirmed

Bug description:
This is a reminder bug.

We need to write a "storage monitor" that manage the various storage mediums we 
can have event subjects stored on. The storage monitor should write any changes 
back to the 'storage' table in the DB.

What we need to track is connection and disconnections of storage volumes 
(probably using gio) - ie. track whether or not files on USB thumb drives are 
available or not etc.  Also the network connection state should be updated in 
the storage table so that we can filter out remote files and website on request.

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 489194] Re: Implement storage monitor (devices and connectivity)

2009-12-03 Thread Mikkel Kamstrup Erlandsen
Seif; I am not sure we need an ontology here. What We really care about
is the storage ids. Zeitgeist should not care about what is what. Just
that we have "some storage medium" that can be available or not.

Going into the realm of semantics brings a lot of complexity with it,
and I think we should only do that where it makes absolute sense. And I
think that we can prolly avoid it here... I am not 100% sure though..?

-- 
Implement storage monitor (devices and connectivity)
https://bugs.launchpad.net/bugs/489194
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.

Status in Zeitgeist Framework: Confirmed

Bug description:
This is a reminder bug.

We need to write a "storage monitor" that manage the various storage mediums we 
can have event subjects stored on. The storage monitor should write any changes 
back to the 'storage' table in the DB.

What we need to track is connection and disconnections of storage volumes 
(probably using gio) - ie. track whether or not files on USB thumb drives are 
available or not etc.  Also the network connection state should be updated in 
the storage table so that we can filter out remote files and website on request.

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 492129] [NEW] Need content for team page

2009-12-03 Thread Jamal Fanaian
Public bug reported:

Please provide me with what information (picture, bio, contact info?)
you want to display in the Team page. You can email it to me if you'd
like.

Thanks!

** Affects: zeitgeist-project-website
 Importance: Undecided
 Assignee: Zeitgeist-Engine (zeitgeist)
 Status: New

** Changed in: zeitgeist-project-website
 Assignee: (unassigned) => Zeitgeist-Engine (zeitgeist)

-- 
Need content for team page
https://bugs.launchpad.net/bugs/492129
You received this bug notification because you are a member of
Zeitgeist-Engine, which is a bug assignee.

Status in The Zeitgeist Project Website: New

Bug description:
Please provide me with what information (picture, bio, contact info?) you want 
to display in the Team page. You can email it to me if you'd like.

Thanks!



___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


Re: [Zeitgeist] [Bug 492129] [NEW] Need content for team page

2009-12-03 Thread Seif Lotfy
I put the titles of the core team and i will get into details later
but i hope the core team is ok with that
this is how i see them from my point of view
we should avoid using such titles as founders etc since its an initiative
I cant really say my role but i hope i did not exagerate my position.

You have the core Team who are:

Markus Korn   Core-dev and Maintainer ( Brilliant eye for quality )
Mikkel Kamstrup Core-dev and Maintainer  ( Semantic and Technical lead)
Siegfried GevatterCore-dev and Maintainer ( Optimization and Performance
addict)
Seif LotfyInitiator,  Developer  ( Pretty much keeping
every1 in mood if possible)

Then you have the Contributors:

Alex Gabriel
Federico Mena
Jason Smith
Natan Yellin
Sumana Harihareswara
Youness Alaoui

I will get into details later :)

2009/12/4 Jamal Fanaian 

> Public bug reported:
>
> Please provide me with what information (picture, bio, contact info?)
> you want to display in the Team page. You can email it to me if you'd
> like.
>
> Thanks!
>
> ** Affects: zeitgeist-project-website
> Importance: Undecided
> Assignee: Zeitgeist-Engine (zeitgeist)
> Status: New
>
> ** Changed in: zeitgeist-project-website
> Assignee: (unassigned) => Zeitgeist-Engine (zeitgeist)
>
> --
> Need content for team page
> https://bugs.launchpad.net/bugs/492129
> You received this bug notification because you are subscribed to The
> Zeitgeist Project.
>
> Status in The Zeitgeist Project Website: New
>
> Bug description:
> Please provide me with what information (picture, bio, contact info?) you
> want to display in the Team page. You can email it to me if you'd like.
>
> Thanks!
>
>
>
>

-- 
Need content for team page
https://bugs.launchpad.net/bugs/492129
You received this bug notification because you are a member of
Zeitgeist-Engine, which is a bug assignee.

Status in The Zeitgeist Project Website: New

Bug description:
Please provide me with what information (picture, bio, contact info?) you want 
to display in the Team page. You can email it to me if you'd like.

Thanks!



___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp