Re: [Nepomuk] [RFC] Avoid communicating through the Nepomuk Storage

2013-05-27 Thread Sebastian Trüg
On 05/26/2013 12:58 AM, Vishesh Handa wrote: Hey guys I have made a very important discovery - The Storage service is a big bottleneck! Running a query such as - 'select * where { graph ?g { ?r ?p ?o. } } LIMIT 5' by directly connecting to virtuoso via ODBC takes about 2.65 seconds. In

Re: [Nepomuk] Modifying nco:emailAddress

2013-05-24 Thread Sebastian Trüg
On 05/23/2013 04:14 PM, Vishesh Handa wrote: Hey guys We seem to have run into a situation where we need to fetch some identifier of a nco:ContactMedium, and we noticed that nco:emailAddress does not derive from nao:identifier. whereas nco:imID does. If no one object, I can add the required

Re: [Nepomuk] DataManagementModel protected types

2013-05-21 Thread Sebastian Trüg
On 05/14/2013 03:34 PM, Vishesh Handa wrote: Hey Sebastian I just made a patch to remove the DataManagementModel::containsResourceWithProtectedType function. This function is a little slow and in my benchmarks it takes about 8% of the total execution time. The only reason this is there is to

Re: [Nepomuk] [RFC] Better Full text search

2013-05-09 Thread Sebastian Trüg
Virtuoso actually has support for indexing plug-ins. I did not look into this in depth yet but it would even be possible to plug in an external index like clucene and use it from within the query engine. This, however, is a bit more involved. As a first step it might be worthwhile to look

Re: [Nepomuk] Nepomuk Service2

2013-03-25 Thread Sebastian Trüg
Check if anyone stars the server manually like I think Akonadi did or maybe they still do... On 03/21/2013 04:33 PM, Vishesh Handa wrote: On Thu, Mar 21, 2013 at 9:50 AM, Simeon Bird bla...@gmail.com mailto:bla...@gmail.com wrote: What happens if it is different? I guess the

Re: [Nepomuk] Nepomukcontroller rewritten in QML

2013-03-21 Thread Sebastian Trüg
Hi Jörg, nice work. But could it be that you are doing synchronous dbus calls? All of plasma hangs a lot when using your applet and I suspect it is due to some dbus timeouts. Cheers, Sebastian On 03/19/2013 07:01 PM, Jörg Ehrichs wrote: Hello everyone, i like to announce a replacement for

Re: [Nepomuk] Nepomukcontroller rewritten in QML

2013-03-21 Thread Sebastian Trüg
Hm, Plasma still hangs once I add the applet to a panel... On 03/21/2013 12:34 PM, Jörg Ehrichs wrote: nice work. But could it be that you are doing synchronous dbus calls? All of plasma hangs a lot when using your applet and I suspect it is due to some dbus timeouts. yes i did :/ wasn't

Re: [Nepomuk] Nepomukcontroller rewritten in QML

2013-03-21 Thread Sebastian Trüg
ah, that could be it On 03/21/2013 03:46 PM, Jörg Ehrichs wrote: Hm, Plasma still hangs once I add the applet to a panel... Are you sure the new code is executed? The DataEngine will stay in memory as long as someone is using it. I always kill plasma-desktop (kquitapp plasma-desktop) and

[Nepomuk] Fwd: WebSchemas, Schema.org and W3C

2013-01-23 Thread Sebastian Trüg
Maybe of interest? On 1/22/13 11:45 AM, Bernard Vatant wrote: ACTION Make a list of globally adopted schemas (vocabularies) and put a *responsible* agent name/email/URI whatever Web identifier in front of it

Re: [Nepomuk] Search Problems cause of annoying ontologies

2013-01-03 Thread Sebastian Trüg
well, one hacky solution would be to introduce a new property which stores email addresses directly on the personcontact. This would be added automatically for every EmailAddress resource. On 12/18/2012 08:30 PM, Vishesh Handa wrote: On Tue, Dec 18, 2012 at 9:30 PM, Sebastian Trüg sebast

Re: [Nepomuk] Search Problems cause of annoying ontologies

2012-12-18 Thread Sebastian Trüg
Maybe one: use mailto: addresses for the EmailAddress resources and let Akonadi use those instead of the additional properties. On 12/18/2012 12:45 PM, Vishesh Handa wrote: Hey everyone In Akonadi, they have a very common problem where they need to do a full text search across a number of

Re: [Nepomuk] Why store file urls?

2012-12-10 Thread Sebastian Trüg
- Right now the plan is to implement this for 4.11. On Tue, Nov 27, 2012 at 1:53 AM, Sebastian Trüg tr...@kde.org mailto:tr...@kde.org wrote: On 11/23/2012 11:17 AM, Vishesh Handa wrote: On Fri, Nov 23, 2012 at 3:30 PM, Jörg Ehrichs joerg.ehri...@gmx.de mailto:joerg.ehri

Re: [Nepomuk] Query for resource for exactly one known file

2012-08-10 Thread Sebastian Trüg
well, getting one resource from the URL you can just use Nepomuk2::Resource like so: Nepomuk2::Resource res(url); and you have your resource. res.uri() will get you the resource URI. On 08/10/2012 05:55 PM, Dean Perry wrote: Hi all, more noob questions: I'm trying to write something that

Re: [Nepomuk] word lists - strigi? nepomuk?

2012-07-18 Thread Sebastian Trüg
the word list is internal to Virtuoso. You have access to the plain text content of files via the nie:plainTextContent property. On 07/18/2012 02:42 PM, Dean Perry wrote: Hi, I originally posted this here : http://forum.kde.org/viewtopic.php?f=43t=106919 but the forum admin said I should try

Re: [Nepomuk] RFC: Use Bugzilla for coordinating development

2012-07-12 Thread Sebastian Trüg
+1 On 07/11/2012 12:13 AM, Vishesh Handa wrote: Hey everyone I've been thinking a lot about opening up Nepomuk development. Right now it's mainly just Sebastian and I working on their own private list of things. Quite often we do not even know what the other person is working on. This

Re: [Nepomuk] Can virtuoso requests be cancelled?

2012-07-09 Thread Sebastian Trüg
On 07/09/2012 04:56 PM, David Faure wrote: So, I have these completion queries running for 27 minutes, even after I type another string to complete. Can virtuoso queries be cancelled while they're running? Looking at nepomukqueryservice I see that it's doing a blocking wait for ready read for

Re: [Nepomuk] Nepomuk2::Resource backward compatibility

2012-07-02 Thread Sebastian Trüg
yes, yes, and yes. On 07/01/2012 01:09 PM, Vishesh Handa wrote: Hey Sebastian I still have around 3 more weeks during which I'm allowed to break ABI and API compatibility. I was thinking of changing - * Resource::resourceUri() - Resource::uri() * Resource::resourceType() - Resource::type()

Re: [Nepomuk] Nepomuk2::Resource backward compatibility

2012-07-02 Thread Sebastian Trüg
I don't think the pimo code being very complicated. And it is very separate from the rest. I would not remove it but if you really want to it would be fine with me. On 07/01/2012 03:08 PM, Vishesh Handa wrote: Oh yeah. Also, can we get rid of all the pimo stuff from the Resource class? AFAIK,

Re: [Nepomuk] Avoid using the query service to run queries in the kioslave

2012-06-26 Thread Sebastian Trüg
On 06/25/2012 10:50 AM, Vishesh Handa wrote: Hey Sebastian The reviewboard has gone insane and it refuses to let me upload my patch - The file 'nepomuk/kioslaves/search/kio_nepomuksearch.cpp' (r2311b7a) could not be found in the repository. The auto updates donot seem to work any more, so that

Re: [Nepomuk] Music issues I want to fix

2012-06-14 Thread Sebastian Trüg
On 06/13/2012 10:59 PM, Vishesh Handa wrote: On Thu, Jun 14, 2012 at 2:08 AM, Sebastian Trüg tr...@kde.org mailto:tr...@kde.org wrote: better add the ticket. Even if there will be no more discussion. Back in the beginning we decided to let every change go through a ticket... Btw

Re: [Nepomuk] Music issues I want to fix

2012-06-13 Thread Sebastian Trüg
for nmm:albumProducer and nmm:albumArtist. On Wed, Jun 13, 2012 at 12:18 PM, Ignacio Serantes k...@aynoa.net mailto:k...@aynoa.net wrote: On Wed, Jun 13, 2012 at 11:27 AM, Sebastian Trüg sebast...@trueg.de mailto:sebast...@trueg.de wrote: On 06/13/2012 11:04 AM, Ignacio Serantes wrote

Re: [Nepomuk] Music issues I want to fix

2012-06-13 Thread Sebastian Trüg
and nmm:albumProducer or it's unnecessary as you are the maintainer? On Wed, Jun 13, 2012 at 10:23 PM, Sebastian Trüg tr...@kde.org mailto:tr...@kde.org wrote: On 06/13/2012 04:00 PM, Ignacio Serantes wrote: Well, I forgot classic music so I was wrong :P. nmm:albumPerformer

Re: [Nepomuk] Some issues on current master

2012-06-01 Thread Sebastian Trüg
On 06/01/2012 11:02 AM, Marco Martin wrote: On Thursday 31 May 2012, Sebastian Trüg wrote: yeah, that is a 6.1.5 bug. You have to downgrade to 6.1.4 or go on to use the git version from gitbug.com/openlink/virtuoso-opensource branch develop/6.0. Actually we have to tell packagers

Re: [Nepomuk] Some issues on current master

2012-05-31 Thread Sebastian Trüg
which version of virtuoso are you using? And, yes, the virtuoso branch needs to be merged in kdelibs indeed. On 05/30/2012 05:16 PM, Marco Martin wrote: Hi all, I have found some problems with the current master status of the combination nepomuk-core/kdelibs/kde-runtime (briefly talked

Re: [Nepomuk] [BUG] with filex files

2012-05-31 Thread Sebastian Trüg
character with issues, like ? or +. On Wed, May 30, 2012 at 2:55 PM, Sebastian Trüg sebast...@trueg.de mailto:sebast...@trueg.de wrote: Indeed, the translation to filex URLs in queries is pretty dumb. It only looks for the file:// prefix and continues from

Re: [Nepomuk] Some issues on current master

2012-05-31 Thread Sebastian Trüg
please see if this patch fixes the issue. On 05/31/2012 10:24 AM, Marco Martin wrote: On Thursday 31 May 2012, Marco Martin wrote: On Thursday 31 May 2012, Sebastian Trüg wrote: which version of virtuoso are you using? And, yes, the virtuoso branch needs to be merged in kdelibs indeed. i

Re: [Nepomuk] Some issues on current master

2012-05-31 Thread Sebastian Trüg
On 05/31/2012 10:56 AM, Marco Martin wrote: On Thursday 31 May 2012, Sebastian Trüg wrote: please see if this patch fixes the issue. On 05/31/2012 10:24 AM, Marco Martin wrote: On Thursday 31 May 2012, Marco Martin wrote: On Thursday 31 May 2012, Sebastian Trüg wrote: which version

Re: [Nepomuk] Some issues on current master

2012-05-31 Thread Sebastian Trüg
On 05/31/2012 11:13 AM, Marco Martin wrote: On Thursday 31 May 2012, you wrote: On Thursday 31 May 2012, Sebastian Trüg wrote: please see if this patch fixes the issue. On 05/31/2012 10:24 AM, Marco Martin wrote: On Thursday 31 May 2012, Marco Martin wrote: On Thursday 31 May 2012

Re: [Nepomuk] Some issues on current master

2012-05-31 Thread Sebastian Trüg
support for FILTER [NOT] EXISTS has been in Virtuoso since 6.1.3. I never had any problems here. I suspect an installation problem on your end. Maybe an old installation in /usr/local or somewhere else? Try virtuoso-t --version On 05/31/2012 02:54 PM, Marco Martin wrote: On Thursday 31 May

Re: [Nepomuk] Some issues on current master

2012-05-31 Thread Sebastian Trüg
2012, Sebastian Trüg wrote: support for FILTER [NOT] EXISTS has been in Virtuoso since 6.1.3. I never had any problems here. I suspect an installation problem on your end. Maybe an old installation in /usr/local or somewhere else? Try virtuoso-t --version yeah, was a double installation

Re: [Nepomuk] [BUG] with filex files

2012-05-30 Thread Sebastian Trüg
Indeed, the translation to filex URLs in queries is pretty dumb. It only looks for the file:// prefix and continues from there. However, query 3 should always work and I found the bug. The parenthesis get percent-encoded. :( I will try to fix that. On 05/24/2012 03:56 PM, Ignacio Serantes wrote:

Re: [Nepomuk] Nepomuk - Moving out of kde-runtime

2012-05-29 Thread Sebastian Trüg
kram...@kde.org mailto:kram...@kde.org wrote: On Thursday, 2012-05-17, Sebastian Trüg wrote: I think we can manage BC. The only thing that would be hard are the DBus interfaces. But since nepomuk-core contains client libs which are supposed

Re: [Nepomuk] The Nepomuk Situation

2012-05-17 Thread Sebastian Trüg
On 05/16/2012 10:40 PM, Stephen Kelly wrote: Sebastian Trüg wrote: On 05/16/2012 08:23 PM, Vishesh Handa wrote: What about kdelibs/nepomuk/utils/* and the other ui stuff? Or since those are just APIs they can wait. I say let's postpone them, they are still in kdelibs. Just so

Re: [Nepomuk] Nepomuk - Moving out of kde-runtime

2012-05-17 Thread Sebastian Trüg
I think we can manage BC. The only thing that would be hard are the DBus interfaces. But since nepomuk-core contains client libs which are supposed to be used instead of the dbus interfaces... On 05/17/2012 09:19 PM, Sune Vuorela wrote: On 2012-05-17, Vishesh Handa m...@vhanda.in wrote:

Re: [Nepomuk] The Nepomuk Situation

2012-05-16 Thread Sebastian Trüg
On 05/16/2012 08:37 PM, Vishesh Handa wrote: On Thu, May 17, 2012 at 12:02 AM, Sebastian Trüg tr...@kde.org mailto:tr...@kde.org wrote: On 05/16/2012 08:23 PM, Vishesh Handa wrote: What about kdelibs/nepomuk/utils/* and the other ui stuff? Or since those are just

Re: [Nepomuk] The Nepomuk Situation

2012-05-16 Thread Sebastian Trüg
On 05/16/2012 08:37 PM, Vishesh Handa wrote: On Thu, May 17, 2012 at 12:02 AM, Sebastian Trüg tr...@kde.org mailto:tr...@kde.org wrote: On 05/16/2012 08:23 PM, Vishesh Handa wrote: What about kdelibs/nepomuk/utils/* and the other ui stuff? Or since those are just APIs

Re: [Nepomuk] The Nepomuk Situation

2012-05-11 Thread Sebastian Trüg
Sounds great. However, it requires one more step: Create the new repositories we decided on a while ago for the kcm, the kio slaves and such. This basically means to do git filter-branch[1] as I did for nepomuk-core. [1]

Re: [Nepomuk] Live Queries

2012-05-11 Thread Sebastian Trüg
On 05/11/2012 09:23 AM, Vishesh Handa wrote: On Fri, May 11, 2012 at 12:49 PM, Sebastian Trüg tr...@kde.org mailto:tr...@kde.org wrote: I thought about that before. I actually figured we could try some very simple heuristics in the query service to analyze the query

Re: [Nepomuk] The Nepomuk Situation

2012-05-11 Thread Sebastian Trüg
Just as a reminder: most of the issues were already discussed and decided on: http://community.kde.org/Projects/Nepomuk/Irc_meeting_nepomuk_frameworks On 05/11/2012 09:35 AM, Vishesh Handa wrote: On Fri, May 11, 2012 at 12:55 PM, Sebastian Trüg tr...@kde.org mailto:tr...@kde.org wrote

Re: [Nepomuk] The Nepomuk Situation

2012-05-07 Thread Sebastian Trüg
On 05/07/2012 12:09 PM, Vishesh Handa wrote: On Mon, May 7, 2012 at 3:12 PM, David Faure fa...@kde.org mailto:fa...@kde.org wrote: On Monday 07 May 2012 13:06:15 Vishesh Handa wrote: On Mon, May 7, 2012 at 12:44 PM, Sune Vuorela nos...@vuorela.dk mailto:nos...@vuorela.dk

Re: [Nepomuk] The Nepomuk Situation

2012-05-07 Thread Sebastian Trüg
On 05/07/2012 02:35 PM, Vishesh Handa wrote: On Mon, May 7, 2012 at 5:54 PM, Sebastian Trüg tr...@kde.org mailto:tr...@kde.org wrote: On 05/07/2012 12:09 PM, Vishesh Handa wrote: So, we're down to 3 options - *1.* nepomuk-core become a dependency of kdelibs

Re: [Nepomuk] The Nepomuk Situation

2012-05-07 Thread Sebastian Trüg
NepomukCore; Sorry for being a bit vague, I'm writing from my phone. Cheerio, IvanOn 7.5.12. 14.49 Vishesh Handa wrote: On Mon, May 7, 2012 at 6:13 PM, Sebastian Trüg tr...@kde.org wrote: On 05/07/2012 02:35 PM, Vishesh Handa wrote: On Mon, May 7, 2012 at 5:54 PM, Sebastian Trüg tr

Re: [Nepomuk] The Nepomuk Situation

2012-05-03 Thread Sebastian Trüg
On 05/02/2012 11:39 PM, Christian Mollekopf wrote: On Thursday 03 May 2012 00.32:37 Vishesh Handa wrote: Hey everyone! Hey Vishesh, Glad your tackling this, it's indeed a rather painful situation. So, we need a solution. The first solution - * Remove nepomuk from kdelibs and

Re: [Nepomuk] The Nepomuk Situation

2012-05-03 Thread Sebastian Trüg
nepomuk-core depends on kdelibs. So kdelibs cannot depend on nepomuk-core. We would have to get rid of those dependencies in kdelibs. But that should not be too hard. On 05/03/2012 11:21 AM, Vishesh Handa wrote: I just noticed that this discussion is no longer cced to kcd. On Thu, May 3, 2012

Re: [Nepomuk] NAO::Symbols and ResourceWatcher

2012-05-03 Thread Sebastian Trüg
On 05/01/2012 02:11 PM, David Narvaez wrote: On Mon, Apr 30, 2012 at 7:05 AM, Sebastian Trüg sebast...@trueg.de wrote: If there is still code not going through the Nepomuk frontend it must be treated as a bug. All data manipulation has to go through Nepomuk::Resource or the Nepomuk

Re: [Nepomuk] Nepoogle, ssh and Segmentation fault

2012-04-30 Thread Sebastian Trüg
can you provide a backtrace for the crash? On 04/30/2012 12:54 PM, Ignacio Serantes wrote: Hi, Since KDE 4.8.1 the call to Nepomuk.Resource() over a ssh connection is crashing with a segmentation fault, a D-Bus issue?. This is a problem to me because Nepoogle it's not working anymore in ssh

Re: [Nepomuk] NAO::Symbols and ResourceWatcher

2012-04-30 Thread Sebastian Trüg
On 04/27/2012 01:51 PM, David Narvaez wrote: On Wed, Apr 25, 2012 at 1:38 PM, David Narvaez david.narv...@computer.org wrote: so I guess it is very possible that properties are loaded by parts. The question then was how to know when to query again for symbols, so I tried setting up a

Re: [Nepomuk] Indexer

2012-04-16 Thread Sebastian Trüg
as always: stability. it was introduced in 4.7 I think since strigi had so many crash bugs... On 04/16/2012 07:07 PM, Ivan Čukić wrote: Hi all, Am I correct to assume (been browsing through the code of Nepomuk::Indexer) that nepomuk spawns a new process (nepomukindex executable) for each

Re: [Nepomuk] Nepomuk::ResourceWatcher: Performance issues

2012-04-15 Thread Sebastian Trüg
, Sebastian Trüg wrote: On 04/06/2012 02:48 PM, Peter Penz wrote: [...] - Invoking ResourceWatcher::addResource() after invoking ResourceWatcher::start() has no effect. As workaround before adding a resource I needed to invoke ResourceWatcher::stop(), add the resource and invoke ResourceWatcher::start

Re: [Nepomuk] Nepomuk::ResourceWatcher: Performance issues

2012-04-15 Thread Sebastian Trüg
I just saw that you only copied the header and link to nepomukdatamanagement. In that case there is no need for the header since you depend on kde-runtime anyway. :) On 04/14/2012 10:21 PM, Peter Penz wrote: On 04/14/2012 10:02 PM, Sebastian Trüg wrote: On 04/06/2012 02:48 PM, Peter Penz wrote

Re: [Nepomuk] Nepomuk::ResourceWatcher: Performance issues

2012-04-14 Thread Sebastian Trüg
On 04/06/2012 02:48 PM, Peter Penz wrote: Hi, As mentioned in my mail 2 days ago I'm using Nepomuk's ResourceWatcher to be able to reflect resource/property-changes in Dolphin's view. It works quite fine already but I observed a few implementation issues in ResourceWatcher that affect the

Re: [Nepomuk] Location of NepSAK Releases

2012-04-14 Thread Sebastian Trüg
they can be found on download.kde.org in unstable/nepomuk On 04/09/2012 03:34 AM, David Narvaez wrote: Hello people, quick question: I see there are tags for NepSAK 0.7.0 and 0.8.0 releases. Are these tags the official distribution method for them? Or are there tarballs hidden elsewhere in

Re: [Nepomuk] Cannot set values for abstract property 'diff.stats.hunk_count'

2012-04-05 Thread Sebastian Trüg
i think you are right. :) On 04/05/2012 03:15 PM, Vishesh Handa wrote: On Thu, Apr 5, 2012 at 6:31 PM, Sebastian Trüg sebast...@trueg.de mailto:sebast...@trueg.de wrote: the question is: does anyone need diff metadata? People don't need a lot of things. It's still nice to have

Re: [Nepomuk] Query Generator Problem

2012-04-04 Thread Sebastian Trüg
I tried this query. While it is of course pointless to have the additional hasTag without a FILTER(?v2!=?v3) it does not seem to pose a problem to virtuoso here. What exactly do you mean by screwing up? On 03/20/2012 08:25 PM, Vishesh Handa wrote: Hey Sebastian If you get a chance please

Re: [Nepomuk] OSCAF and music live and videoclips

2012-04-04 Thread Sebastian Trüg
. This is a very uncommon case but there is a few music video clips related to more than on song. I'm assuming a 0:n cardinality because I have several live performances related to a nmm:MusicPiece I don't own. On Wed, Apr 4, 2012 at 10:40 AM, Sebastian Trüg sebast...@trueg.de wrote: Hi guys, I

Re: [Nepomuk] OSCAF and music live and videoclips

2012-04-04 Thread Sebastian Trüg
types. Hope this helps, Andrew On Wed, Apr 4, 2012 at 10:49 AM, Sebastian Trüg sebast...@trueg.de wrote: looks very nice indeed. Would you thus propose to double-type live performance videos with nmm:MusicVideo and nmm:LivePerformance? How about the attached layout instead. We simply

Re: [Nepomuk] OSCAF and music live and videoclips

2012-04-04 Thread Sebastian Trüg
the same concepts. agreed. So maybe also StudioMusicVideo instead of MusicVideoVideo. :P Cheers, Sebastian On Wed, Apr 4, 2012 at 7:49 PM, Sebastian Trüg sebast...@trueg.de mailto:sebast...@trueg.de wrote: looks very nice indeed. Would you thus propose to double-type live performance

Re: [Nepomuk] OSCAF and music live and videoclips

2012-04-04 Thread Sebastian Trüg
to be updated again. I really think we can get all the benefits we need without introducing media-specific live performance types. Hope this helps, Andrew On Wed, Apr 4, 2012 at 10:49 AM, Sebastian Trüg sebast...@trueg.de mailto:sebast...@trueg.de wrote: looks very nice

Re: [Nepomuk] OSCAF and music live and videoclips

2012-04-04 Thread Sebastian Trüg
On 04/04/2012 09:00 PM, Ignacio Serantes wrote: On Wed, Apr 4, 2012 at 8:50 PM, Sebastian Trüg sebast...@trueg.de mailto:sebast...@trueg.de wrote: On 04/04/2012 08:16 PM, Ignacio Serantes wrote: Looks more near reality and more 3 normal form but seems a little bit complex

Re: [Nepomuk] OSCAF and music live and videoclips

2012-04-04 Thread Sebastian Trüg
performance types. Hope this helps, Andrew On Wed, Apr 4, 2012 at 10:49 AM, Sebastian Trüg sebast...@trueg.de wrote: looks very nice indeed. Would you thus propose to double-type live performance videos with nmm:MusicVideo and nmm:LivePerformance? How about the attached layout instead. We

Re: [Nepomuk] OSCAF and music live and videoclips

2012-03-23 Thread Sebastian Trüg
On 03/22/2012 09:29 PM, Ignacio Serantes wrote: Hi, On Thu, Mar 22, 2012 at 6:59 PM, Sebastian Trüg sebast...@trueg.de mailto:sebast...@trueg.de wrote: On 03/22/2012 02:24 PM, Ignacio Serantes wrote: Hi, I want to add to Nepomuk information from my library of music

Re: [Nepomuk] Indexing encrypted filesystems

2012-03-23 Thread Sebastian Trüg
and what about storing private content remotely? On 03/22/2012 08:53 PM, Ivan Čukić wrote: then why dont you just encrypt everything? What would be wrong with that? In order for nepomuk and plasma active to work, the encrypted stuff would need to be mounted on boot - not everything is

Re: [Nepomuk] Indexing encrypted filesystems

2012-03-23 Thread Sebastian Trüg
On 03/23/2012 11:32 AM, Ivan Cukic wrote: On Friday, 23. March 2012. 11.03.39 Sebastian Trüg wrote: and what about storing private content remotely? Can you elaborate? well, I mean a cloud service which stores the data rather than the device. Apparently your concern is theft. So the most

Re: [Nepomuk] OSCAF and music live and videoclips

2012-03-23 Thread Sebastian Trüg
On 03/23/2012 05:48 PM, Andrew Lake wrote: On Thu, Mar 22, 2012 at 11:56 PM, Sebastian Trüg sebast...@trueg.de wrote: nmm:LiveMusicVideo, nmm:ConcertMusicVideo and, maybe, nmm:VideoMusicVideo :?. I'm not strong in English names so for me is good if I could store the information I want

Re: [Nepomuk] Nepomuk without the KDE Desktop?

2012-03-23 Thread Sebastian Trüg
Well, that is actually the plan for KDE 5 which will be very modularized. Then Nepomuk will only use a very small part of the classical KDE. So far it would be quite a lot of work to remove the dependancy on kdelibs. But it should be simple to run it without the rest of kde. On 03/23/2012 08:16

Re: [Nepomuk] Indexing encrypted filesystems

2012-03-22 Thread Sebastian Trüg
then why dont you just encrypt everything? What would be wrong with that? On 03/22/2012 09:13 AM, Ivan Čukić wrote: we did a prototype on indexing encrypted email a few years ago, using a second Virtuoso instance which had its database in a crypto container. While that That was one of the

Re: [Nepomuk] OSCAF and music live and videoclips

2012-03-22 Thread Sebastian Trüg
On 03/22/2012 02:24 PM, Ignacio Serantes wrote: Hi, I want to add to Nepomuk information from my library of music videos, lives and concerts and I wonder how I could do this. This is the basic information for a music video stored in the file name: [MV] Artist(s) - Song(s) (year).ext so

Re: [Nepomuk] Old Branches in nepomuk-core

2012-03-20 Thread Sebastian Trüg
On 03/20/2012 06:51 PM, Vishesh Handa wrote: Hey Sebastian There are a lot of old branches in nepomuk-core. I was planning to delete some of them, could you let me know if that's okay? remotes/origin/actionservice remotes/origin/dms/forceNfoFileDataObject

Re: [Nepomuk] Query API - method return types

2012-03-12 Thread Sebastian Trüg
I agree. :) On 03/10/2012 11:01 AM, Ivan Čukić wrote: Hi, A RFC regarding the query API for Nepomuk in KF5. Proposal: Methods that modify a Term and currently return void should return a reference to (*this) that is Term . Reasoning: Database query languages are functional in

[Nepomuk] Soprano 2.7.5 released

2012-03-03 Thread Sebastian Trüg
packages. Soprano (formerly known as QRDF) is a library which provides a highly usable object-oriented C++/Qt4 framework for RDF data. It uses different RDF storage solutions as backends through a simple plugin system. Soprano is targetted at desktop applications. Regards, Sebastian Trüg

Re: [Nepomuk] Weird problem with queries

2012-02-17 Thread Sebastian Trüg
Check the metadata of the tagged files to see what is missing. On 02/16/2012 02:57 PM, Ignacio Serantes wrote: Hi, I have a really weird problem with my database and I can't imagine what is happening. When I display a folder I can read file tags but, when I do a query I obtained 0

Re: [Nepomuk] Some questions regarding the DMS API

2012-02-14 Thread Sebastian Trüg
On 02/11/2012 11:23 PM, Jörg Ehrichs wrote: Hi everyone, as I've adopted my program Conquirere to the new Nepomuk DMS system, I've came across a few questions. 1. Ontology Member Wrapper classes As the new API relies on the new SimpleResource also the automatically generated ontology

[Nepomuk] Shared-Desktop-Ontologies 0.9.0 released

2012-02-10 Thread Sebastian Trüg
I am proud to announce the release of SDO 0.9.0 which brings the following additions over 0.8: * Added properties nfo:depicts and nfo:depiction * Made nmm:artwork a subproperty of nfo:depiction * Added nrl:DefiningProperty and nrl:NonDefiningProperty * Set nao:userVisible on the following classes

Re: [Nepomuk] nmm:artwork, nie:hasLogicalPart

2012-01-29 Thread Sebastian Trüg
imho hasLogicalPart is simply wrong. That is why I introduced nie:depiction and nie:depicts. nmm:artwork is a sub-property but maybe we could even deprecate that... Cheers, Sebastian On 01/29/2012 01:19 AM, Andrew Lake wrote: I would like to start using nmm:artwork instead of

Re: [Nepomuk] KMail/Akonadi searching

2012-01-19 Thread Sebastian Trüg
On 01/19/2012 03:34 PM, Ignacio Serantes wrote: On Thu, Jan 19, 2012 at 3:07 PM, Sebastian Trüg tr...@kde.org wrote: Hi Christian, as most of the code is rather akonadi-specific I can only comment on small parts. Please tell me if I can help with any additional information or questions

Re: [Nepomuk] [Kde-pim] Nepomuk feeder queuing problem

2012-01-18 Thread Sebastian Trüg
performance, but I'm not aware of a problem that overloads nepomuk. Thanks for looking into this. Cheers, Christian On Mon, Jan 16, 2012, at 06:01 PM, Sebastian Trüg wrote: Hi Christian, there seems to be a problem with the Nepomuk feeder in KDEpim. The reports about virtuoso going crazy pile

[Nepomuk] Nepomuk feeder queuing problem

2012-01-16 Thread Sebastian Trüg
Hi Christian, there seems to be a problem with the Nepomuk feeder in KDEpim. The reports about virtuoso going crazy pile up and now I ran into the same problem. Thus, I had a look at the feeder and found a potential problem: You use a single shot timer to continue the indexing. This timer tells

Re: [Nepomuk] File indexer-related questions

2012-01-07 Thread Sebastian Trüg
On 01/07/2012 11:59 AM, Ivan Čukić wrote: Hi all, We are planning to introduce activity encryption for SC4.9 and PA3 and it raises a couple of questions regarding our usage of nepomuk. The idea is as follows: - there will be unencrypted activities, behaving like they do now - there will

Re: [Nepomuk] Viewing Nepomuk tasks and associations

2012-01-07 Thread Sebastian Trüg
There are a few things in the playground like a stupid and slow task manager and then there is the nepomukshell... On 01/06/2012 10:08 PM, gree...@greenrd.org wrote: I have now managed to successfully install the GSoC project fancybookmarking. I can create an association with a task on a web

Re: [Nepomuk] Is it possible to trigger the streamanalyzer on my own?

2012-01-02 Thread Sebastian Trüg
Did you see this: http://trueg.wordpress.com/2011/12/05/manually-forcing-the-re-indexing-of-folders-is-easy/ Cheers, Sebastian On 12/25/2011 10:46 PM, Jörg Ehrichs wrote: Hi all and merry christmas :) I have a small question regarding the stream analyzers. Is it possible to trigger them on

Re: [Nepomuk] Want to contribute-Help Needed

2011-12-19 Thread Sebastian Trüg
Sure, what are you interested in? On 12/18/2011 07:59 PM, Janardhan Reddy wrote: Hi, I want to contribute to nepomuk and would like to work on any project(like the projects which were left out from last year gsoc idea's page). I was wondering if i could get a mentor.

Re: [Nepomuk] Resource clouds

2011-12-13 Thread Sebastian Trüg
Sorry for the late reply. Sadly grouping is not possible with the C++ API. But it might be added I suppose... On 10/18/2011 02:36 PM, Marco Martin wrote: Hi all, a thing i'm experimenting with for the resource browser of active is being able to have informations from nepomuk as clouds of

Re: [Nepomuk] find [Filename] in Dolphin always matches all my accented file names

2011-12-05 Thread Sebastian Trüg
The problem is that the broken data is still in your database. I am not sure yet on how to fix that but I will investigate. One solution is to re-index the files. Actually creating a context menu entry in Dolphin should be fairly simple. done. Attached. Copy this file into

Re: [Nepomuk] Resource Browser - First update

2011-12-05 Thread Sebastian Trüg
sounds good. :) Did you also look at nepoogle which is a python Nepomuk search tool. Sadly it does create its own sparql queries instead of going through the query api On 12/01/2011 07:58 PM, Phaneendra Hegde wrote: Hi, Last week I started a nepomuk based project called *resourcebrowser*.

Re: [Nepomuk] index archive contents for metadata

2011-12-05 Thread Sebastian Trüg
Does your indexer depend on the zip indexer? Because the only thing Nepomuk disables is indexing of files with depth1, ie. files in archives. If your analyzer does the extraction and then creates values with depth=1 then there should not be a problem. Try running nepomukindexer manually on one of

Re: [Nepomuk] indexing errors in Nepomuk output, indexing crashes

2011-12-02 Thread Sebastian Trüg
On 12/02/2011 02:02 AM, S Page wrote: On Wed, Nov 30, 2011 at 09:01, Sebastian Trüg tr...@kde.org wrote: (filewatch service) KInotify::slotEvent: /. EventIgnored ^^ another line for each of dozens of special characters. I get these, too. I did not investigate that further yet

Re: [Nepomuk] user documentation for Nepomuk/Strigi

2011-11-30 Thread Sebastian Trüg
This is great work. I did not find the time to read it in detail yet but after a first skim it looks good. Cheers, Sebastian On 11/29/2011 05:16 AM, S Page wrote: In solving my problem with Strigi not indexing[1] I learned a few things about Nepomuk that seem worth sharing, so I added them to

Re: [Nepomuk] indexing errors in Nepomuk output, indexing crashes

2011-11-30 Thread Sebastian Trüg
On 11/29/2011 06:31 AM, S Page wrote: I followed http://kdeatopensuse.wordpress.com/2011/11/09/debugging-nepomukvirtuosos-cpu-usage/ to run nepomukserver in a console When I updated Strigi's index folders to index some NTFS directories, I got some odd debug output and two crashes. 1.

Re: [Nepomuk] Some PDF files not content indexed

2011-11-30 Thread Sebastian Trüg
This has been addressed in KDE 4.7.3 recently. Sorry, but I will not backport to 4.6. However, I will bug the Mandriva maintainer to update the packages. Cheers, Sebastian On 11/28/2011 03:09 AM, Rick Kunath wrote: This is Mandriva 2011.0 and KDE 4.6.5 I do have some pdf files that have

[Nepomuk] Shared-desktop-ontologies 0.8.1 released

2011-11-25 Thread Sebastian Trüg
I am happy to announce the availability of SDO 0.8.1 which is the first bugfix release in the 0.8 series and actually the first release without a minor version number bump ever. :) This version only contains a small fix for the domain of nmm:setSize but it fixes indexing of certain mp3 files in

Re: [Nepomuk] KDE 4.8 Nepomuk Package requirements.

2011-11-24 Thread Sebastian Trüg
Use the latest of everything. I will try to make Jos do a new release of strigi soon. Cheers, Sebastian On 11/24/2011 07:00 AM, Weng Xuetian wrote: On Thursday 24 November 2011 13:49:19 you wrote: Hi, I failed to get KDE 4.8 file index work properly it seems. The indexer would scan the

Re: [Nepomuk] Duplicates merging in DataManagementModel::storeResources

2011-10-31 Thread Sebastian Trüg
Hi Christian, let's meet up this week to discuss the problem and hopefully fix it. So far I stayed clean of the storeResources code but with Vishesh not having much time I will dive into it. Cheers, Sebastian On 10/31/2011 12:42 PM, Christian Mollekopf wrote: Hey, This issue starts to get

[Nepomuk] Soprano 2.7.2 released

2011-10-21 Thread Sebastian Trüg
Hi folks, I hereby announce the release of Soprano 2.7.2, the second bugfix release in the Soprano 2.7 series. It comes with the following fixes: * Reverted the fix from 2.7.1 which resulted in the Soprano server DBus interface not working at all. * Fixed a threading issue in NRLModel which

Re: [Nepomuk] Query result count

2011-10-19 Thread Sebastian Trüg
First thing to do might be this: stop the query service (I use the aliases defined below): nsstop nepomukqueryservice then start it manually: nepomukservicestub nepomukqueryservice (this reminds me: we need better handling of the debug output). Then perform your query and check the

Re: [Nepomuk] general questions: virtuoso-t nepomukstorage, desktopsearch

2011-10-18 Thread Sebastian Trüg
sure. get the pid of the process, then call: gdb nepomukservicestub PID Cheers, Sebastian On 10/18/2011 10:37 AM, Matthias Lechner wrote: Could you maybe debug into the storage service to see what it does via thread apply all bt. Could you please give me some more hints how to do that? I

Re: [Nepomuk] general questions: virtuoso-t nepomukstorage, desktopsearch

2011-10-17 Thread Sebastian Trüg
... curious. On Fri, Oct 14, 2011 at 2:40 PM, Sebastian Trüg tr...@kde.org mailto:tr...@kde.org wrote: with isql from Virtuoso you do not need a DNS. On 10/14/2011 10:50 AM, Ignacio Serantes wrote: That's how I made it work: 1) ps aux | grep virtuoso 2) open

Re: [Nepomuk] Duplicate resources because of using different sources and creators/performers

2011-10-17 Thread Sebastian Trüg
was the same. On Fri, Oct 14, 2011 at 4:18 PM, Sebastian Trüg tr...@kde.org mailto:tr...@kde.org wrote: The change is in libstreamanalyzer. That is all you need for Nepomuk. You do not need Strigi. Cheers, Sebastian On 10/14/2011 04:15 PM, Ignacio Serantes wrote

Re: [Nepomuk] heavy duty query visualization

2011-10-17 Thread Sebastian Trüg
Hi Marco, On 10/14/2011 10:13 PM, Marco Martin wrote: in Plasma Active one things like the activity screen that shows all the nepomuk resources, the ui to search and add a new one, the image viewer (that lists all objects of type image) use the plasma metadata dataengine. this one is

Re: [Nepomuk] Query result count

2011-10-17 Thread Sebastian Trüg
On 10/03/2011 10:41 PM, François wrote: Hey, Sorry for the late answer, I've been kinda busy this last week-end. Allright, virtuoso-t --version gives me the following : Version 6.1.2.3127-pthreads as of Aug 3 2010 Could it be something related to python bindings ? I doubt that. No

Re: [Nepomuk] general questions: virtuoso-t nepomukstorage, desktopsearch

2011-10-14 Thread Sebastian Trüg
On 10/14/2011 10:00 AM, Matthias Lechner wrote: Hi Sebastian, It would be interesting to know if the indexing of all files has finished. If virtuoso is spiking we could debug the issue by logging into the db: isql localhost: dba dba As with Ignacio, this does not work for me either,

  1   2   3   4   >