One more issue - compaing &#39;identifying properties&#39;. For GMail <a href="mailto:v.for.vandal@gmail.com">v.for.vandal@gmail.com</a> and <a href="mailto:vforvandal@gmail.com">vforvandal@gmail.com</a> are the same email addresses, but this may not be true for some other mailing systems. <br>

It is easy when we can pass extra parameters to the storeResource ( e.g. ..., Comparator c, ... ) and may  be a little bit harder if we try to predict all this in ontology.<br><br><div class="gmail_quote">2011/7/28 Christian Mollekopf <span dir="ltr">&lt;<a href="mailto:chrigi_1@fastmail.fm">chrigi_1@fastmail.fm</a>&gt;</span><br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">On Wed, 27 Jul 2011 23:42:50 +0200, Vishesh Handa &lt;<a href="mailto:handa.vish@gmail.com">handa.vish@gmail.com</a>&gt;<br>


wrote:<br>
<div class="im"><br>
&gt; On Thu, Jul 28, 2011 at 12:46 AM, Sebastian Trüg &lt;<a href="mailto:trueg@kde.org">trueg@kde.org</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; How about another parameter instead which specifies these kind of<br>
&gt;&gt; properties in a list. Then a client can define what makes sense.<br>
&gt;&gt;<br>
&gt;<br>
&gt; That would increase the complexity of storeResources from a clients<br>
&gt; point of<br>
&gt; view. But I suppose we should provide overloaded variants of<br>
&gt; storeResources.<br>
&gt;<br>
&gt; The reason I want to specify this in the ontology is that I can&#39;t think<br>
&gt; of a<br>
&gt; single use case where any of these properties would not be globally<br>
&gt; identifying. Here is an idea : Maybe we could mark these properties as<br>
&gt; InverseFunctionProperties ( inverse cardinality = 1 ), that way we know<br>
&gt; for<br>
&gt; a fact that they are globally identifying.<br>
&gt;<br>
<br>
</div>The akonadi item uris are something which is not really globally unique,<br>
but unique on a single system.<br>
So, they could really be used for identification, but not accross several<br>
systems, and should therefore not be marked in the ontology directly.<br>
Still, we could mark the ones that really are globally unique.<br>
<div><div></div><div class="h5"><br>
&gt;<br>
&gt;&gt;<br>
&gt;&gt; Just an idea...<br>
&gt;&gt;<br>
&gt;&gt; Cheers,<br>
&gt;&gt; Sebastian<br>
&gt;&gt;<br>
&gt;&gt; On 07/27/2011 04:53 PM, Vishesh Handa wrote:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; On Wed, Jul 27, 2011 at 8:13 PM, Sebastian Trüg &lt;<a href="mailto:trueg@kde.org">trueg@kde.org</a><br>
&gt;&gt; &gt; &lt;mailto:<a href="mailto:trueg@kde.org">trueg@kde.org</a>&gt;&gt; wrote:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;     could you please elaborate on the need of a primary key type of<br>
&gt;&gt; &gt;     property. Give an example maybe...<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Of course<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Imagine I already have a contact in my repo -<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; &lt;nepomuk:/res/somecontact&gt;<br>
&gt;&gt; &gt;     a nco:PersonContact ;<br>
&gt;&gt; &gt;     nco:fullName &quot;Some name&quot; ;<br>
&gt;&gt; &gt;     nco:hasEmailAddress &lt;someEmailRes&gt; .<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Now I decide to push some data using storeResources<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; SimpleResource res;<br>
&gt;&gt; &gt; res.addType( NCO::PersonContact() );<br>
&gt;&gt; &gt; res.addProperty( NCO::hasEmailAddress(), QUrl(&quot;someEmailRes&quot;) );<br>
&gt;&gt; &gt; res.addProperty( NCO::fullName(), QLatin1String(&quot;Some other name&quot;) );<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; This contact would normally not get identified as<br>
&gt;&gt; &gt; &lt;nepomuk:/res/somecontact&gt; as it has a different first name. However,<br>
&gt;&gt; &gt; two people can never have the same email address, so in this case it<br>
&gt;&gt; &gt; *should* get identified as &lt;nepomuk:/res/somecontact&gt;. ( Merging would<br>
&gt;&gt; &gt; obviously fail, but that is another issue, we could be using<br>
&gt;&gt; &gt; OverwriteProperties )<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; If we marked nco:hasEmailAddress as Globally Unique, then the<br>
&gt;&gt; SimpleRes<br>
&gt;&gt; &gt; would get mapped to &lt;nepomuk:/res/somecontact&gt; as the email matches.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Same is the case for nfo:hashValue<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;     On 07/27/2011 04:26 PM, Vishesh Handa wrote:<br>
&gt;&gt; &gt;     &gt; Hey Everyone<br>
&gt;&gt; &gt;     &gt;<br>
&gt;&gt; &gt;     &gt; Martin and I were discussing storeResources yesterday, and we<br>
&gt;&gt; stumbled<br>
&gt;&gt; &gt;     &gt; on the need to have certain properties act as Primary Keys for<br>
&gt;&gt; &gt;     &gt; Resources. Currently, storeResources treats the nie:url as a<br>
&gt;&gt; Primary<br>
&gt;&gt; &gt;     &gt; Key, only if the nie:url is not present does it use the literal<br>
&gt;&gt; &gt;     &gt; identification scheme ( read datamanagement.h for more info )<br>
&gt;&gt; &gt;     &gt;<br>
&gt;&gt; &gt;     &gt; With Martin working on pimo:Person and nco:PersonContact<br>
&gt;&gt; &gt;     aggregation, he<br>
&gt;&gt; &gt;     &gt; requires the nco:hasEmailAddress to act as a Primary Key.<br>
&gt;&gt; &gt;     Additionally I<br>
&gt;&gt; &gt;     &gt; would like nfo:hashValue to act as one. So now that we have 3<br>
&gt;&gt; &gt;     &gt; contenders, it makes sense to mark these properties in the<br>
&gt;&gt; &gt;     ontologies as<br>
&gt;&gt; &gt;     &gt; globally identifying or something.<br>
&gt;&gt; &gt;     &gt;<br>
&gt;&gt; &gt;     &gt; What do you guys think? If you approve, can you suggest a way to<br>
&gt;&gt; mark<br>
&gt;&gt; &gt;     &gt; these properties?<br>
&gt;&gt; &gt;     &gt;<br>
&gt;&gt; &gt;     &gt; One option is that we have a nxx:globalIdentifyingProperty, and<br>
&gt;&gt; make<br>
&gt;&gt; &gt;     &gt; nie:url, nco:hasEmailAddress, and nfo:hashValue subclasses of<br>
&gt;&gt; it.<br>
&gt;&gt; &gt;     &gt;<br>
&gt;&gt; &gt;     &gt; --<br>
&gt;&gt; &gt;     &gt; Vishesh Handa<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; --<br>
&gt;&gt; &gt; Vishesh Handa<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
<br>
<br>
--<br>
</div></div>Using Opera&#39;s revolutionary email client: <a href="http://www.opera.com/mail/" target="_blank">http://www.opera.com/mail/</a><br>
<div><div></div><div class="h5">_______________________________________________<br>
Nepomuk mailing list<br>
<a href="mailto:Nepomuk@kde.org">Nepomuk@kde.org</a><br>
<a href="https://mail.kde.org/mailman/listinfo/nepomuk" target="_blank">https://mail.kde.org/mailman/listinfo/nepomuk</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Sincerely yours,<br>Artem Serebriyskiy<br>