root/xmlfr/archives/websemantique/websemantique.2007-05

Révision 1622, 10.2 ko (déposé par apache, 9 mois auparavant)

Ajout des archives des listes de discussions

Line 
1 From nobody Sat May 19 17:12:54 2007
2 Received: with ECARTIS (v1.0.0; list websemantique); Sat, 19 May 2007 17:12:59 +0200 (CEST)
3 MIME-Version: 1.0
4 Return-Path: <karl@la-grange.net>
5 X-Original-To: websemantique@gwparis.dyomedea.com
6 Delivered-To: websemantique@gwparis.dyomedea.com
7 Received: from localhost (acer [127.0.0.1])
8         by gwparis.dyomedea.com (Postfix) with ESMTP id 7F03893C1D8
9         for <websemantique@gwparis.dyomedea.com>;
10         Sat, 19 May 2007 17:12:53 +0200 (CEST)
11 Received: from localhost (acer [127.0.0.1])
12         by gwparis.dyomedea.com (Postfix) with ESMTP id 7F03893C1D8
13         for <websemantique@gwparis.dyomedea.com>;
14         Sat, 19 May 2007 17:12:53 +0200 (CEST)
15 X-Greylist: delayed 1651 seconds by postgrey-1.21 at gwparis.dyomedea.com;
16         Sat, 19 May 2007 17:12:52 CEST
17 Received: from localhost (acer [127.0.0.1])
18         by gwparis.dyomedea.com (Postfix) with ESMTP id 7F03893C1D8
19         for <websemantique@gwparis.dyomedea.com>;
20         Sat, 19 May 2007 17:12:53 +0200 (CEST)
21 Received: from localhost (acer [127.0.0.1])
22         by gwparis.dyomedea.com (Postfix) with ESMTP id 7F03893C1D8
23         for <websemantique@gwparis.dyomedea.com>;
24         Sat, 19 May 2007 17:12:53 +0200 (CEST)
25 Mime-Version: 1.0 (Apple Message framework v752.3)
26 In-Reply-To: <7f55e5450703031435l5df5ac61k97cf03e819807dd0@mail.gmail.com>
27 References: <7f55e5450703031435l5df5ac61k97cf03e819807dd0@mail.gmail.com>
28 Message-Id: <600A07A9-D163-4DA2-808E-7948BF232908@la-grange.net>
29 From: Karl Dubost <karl@la-grange.net>
30 Subject: [websemantique] Re: Ontologie GTD, la suite
31 Date: Sat, 19 May 2007 16:45:10 +0200
32 To: websemantique@xmlfr.org
33 X-Mailer: Apple Mail (2.752.3)
34 X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at dyomedea.com
35 Content-type: text/plain; charset=iso-8859-1
36 Content-Transfer-Encoding: 8bit
37 X-Spambayes-Classification: ham; 0.00
38 X-archive-position: 12099
39 X-ecartis-version: Ecartis v1.0.0
40 Sender: websemantique-bounce@xmlfr.org
41 Errors-to: websemantique-bounce@xmlfr.org
42 X-original-sender: karl@la-grange.net
43 Precedence: list
44 Reply-to: websemantique@xmlfr.org
45 X-list: websemantique
46
47
48 Le 3 mars 2007 à 23:35, Simon Rozet a écrit :
49 > L'ontologie :
50
51 cool!
52 Peux-tu donner quelques exemples d'accompagnements?
53 De préférence couvrant tous les termes que tu as définis, ce serait 
54 bien :)
55
56
57
58 > [[[
59 > @prefix : <#> .
60 > @prefix rdfs: <http://www.w3.org/TR/rdf-schema/> .
61 > @prefix owl: <http://www.w3.org/2002/07/owl#> .
62 > @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
63 > @prefix dc: <http://purl.org/dc/elements/1.1/> .
64 > #@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
65 >
66 > <>  a owl:Ontology;
67 >   dc:title "Geting Things Done Ontology";
68 >   <http://purl.org/dc/terms/creator> "Simon Rozet";
69 >   <http://xmlns.com/foaf/0.1/maker> <http://atonie.org/sr/card#sr>;
70 >   dc:description "An Ontology to describe the Getting Thing Done
71 > organisation methodology"@en;
72 >   rdf:seeAlso <http://en.wikipedia.org/wiki/GTD>;
73 >   rdf:seeAlso <http://www.davidco.com/what_is_gtd.php> .
74 >
75 > ## Classes
76 >
77 > :Task   a owl:Class;
78 >   rdfs:label "a task"@en .
79 >
80 > :TaskSomedayMaybe   a owl:Class;
81 >   rdfs:subClassOf :Task;
82 >   rdf:label "a someday/maybe task"@en .
83 >
84 > :Project  a owl:Class;
85 >   rdfs:label "a projet"@en .
86 >
87 > # Status
88 >
89 > # is this class really necessary ?
90 > :Status a owl:Class .
91 >
92 > :StatusUndone a owl:Class;
93 >   rdfs:subClassOf :Status;
94 >   rdfs:label "status undone"@en .
95 >
96 > :StatusDone a owl:Class;
97 >   rdfs:subClassOf :Status;
98 >   rdfs:label "status done"@en .
99 >
100 > :StatusDelegated a owl:Class;
101 >   rdfs:subClassOf :Status;
102 >   rdfs:label "status delegated"@en .
103 >
104 > :StatusFlushed a owl:Class;
105 >   rdfs:subClassOf :Status;
106 >   rdfs:label "status flushed"@en .
107 >
108 > ## Properties
109 >
110 > :status a owl:DataTypeProperty;
111 >   rdfs:label "status"@en;
112 >   rdfs:domain :Task, :TaskSomedayMaybe;
113 >   
114 > rdfs:range :StatusUndone, :StatusDone, :StatusDelegated, :StatusFlushe
115 > d .
116 >
117 > :delegatedTo a owl:DataTypeProperty;
118 >   rdfs:label "delegated to"@en;
119 >   rdfs:domain :StatusDelegated;
120 >   rdfs:range <http://xmlns.com/foaf/0.1/Agent> .
121 >
122 > :hasTask a owl:ObjectProperty;
123 >   rdfs:label "has task"@en;
124 >   rdfs:comment "Associate a project with a task"@en;
125 >   rdfs:domain :Project;
126 >   rdfs:range :Task .
127 > ]]]
128 >
129 > Merci d'avance,
130 >
131 > --
132 > Simon Rozet, http://atonie.org/sr/
133 >
134 > --
135 > Liste de diffusion "websemantique@xmlfr.org"
136 > (http://xmlfr.org/communautes/websemantique/listes/websemantique).
137 >
138 > Contribuez au developpement du Web Semantique francophone
139 > (http://websemantique.org) !
140 >
141 > Pour resilier votre abonnement, envoyez un message contenant
142 > la commande "unsubscribe" a websemantique-request@xmlfr.org
143 > (mailto:websemantique-request@xmlfr.org?Subject=unsubscribe)
144
145 --
146 Karl Dubost - http://www.la-grange.net/karl/
147 Près de vous, madame, oubliant les cieux,
148 L'astronome étonné se trouble ;
149 C'est dans l'éclat caressant de vos yeux,
150 Qu'il avait cru trouver l'étoile double.
151
152
153
154 --
155 Liste de diffusion "websemantique@xmlfr.org"
156 (http://xmlfr.org/communautes/websemantique/listes/websemantique).
157
158 Contribuez au developpement du Web Semantique francophone
159 (http://websemantique.org) !
160
161 Pour resilier votre abonnement, envoyez un message contenant
162 la commande "unsubscribe" a websemantique-request@xmlfr.org
163 (mailto:websemantique-request@xmlfr.org?Subject=unsubscribe)
164
165 From nobody Sun May 27 10:47:17 2007
166 Received: with ECARTIS (v1.0.0; list websemantique); Sun, 27 May 2007 10:47:21 +0200 (CEST)
167 MIME-Version: 1.0
168 Return-Path: <simon.rozet@gmail.com>
169 X-Original-To: websemantique@gwparis.dyomedea.com
170 Delivered-To: websemantique@gwparis.dyomedea.com
171 Received: from localhost (acer [127.0.0.1])
172         by gwparis.dyomedea.com (Postfix) with ESMTP id 0429B93C169
173         for <websemantique@gwparis.dyomedea.com>;
174         Sun, 27 May 2007 10:47:16 +0200 (CEST)
175 Received: from localhost (acer [127.0.0.1])
176         by gwparis.dyomedea.com (Postfix) with ESMTP id 0429B93C169
177         for <websemantique@gwparis.dyomedea.com>;
178         Sun, 27 May 2007 10:47:16 +0200 (CEST)
179 Received: from localhost (acer [127.0.0.1])
180         by gwparis.dyomedea.com (Postfix) with ESMTP id 0429B93C169
181         for <websemantique@gwparis.dyomedea.com>;
182         Sun, 27 May 2007 10:47:16 +0200 (CEST)
183 Received: from localhost (acer [127.0.0.1])
184         by gwparis.dyomedea.com (Postfix) with ESMTP id 0429B93C169
185         for <websemantique@gwparis.dyomedea.com>;
186         Sun, 27 May 2007 10:47:16 +0200 (CEST)
187 DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta;
188         h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references;
189         b=SrH86oZwBBT4tGH3v2jhKC1LDRMt7w8dHJTZ3xlHd48QCL9+UMkJOLutbBZYMP/iyRIzeQ+xEYeaUGnv/SgqMQz8fefLReIKOpB71GHetrFqafG8HMq9KibMpZQNHBjkjNUGO7mVgz7mII/K+XX+gijnoRwm7k89cCjwTxEmx84=
190 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta;
191         h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references;
192         b=SRPk5w0P3KOiZ0yLL2YBMrWFIDVbRidTx5vIq1j7Pt3eEN2FIyfpJQKchgybXAyYs1O0BFm1vsmLNV4+RzbD1ddDCtOPaEzI7x5gbL3QMW+tvxFPKeE0exJKL3PWmVIRc0GT6ye2MQS5/xQ1Kur49LPEnIKcFfx7tyODxvhluHY=
193 Received: from localhost (acer [127.0.0.1])
194         by gwparis.dyomedea.com (Postfix) with ESMTP id 0429B93C169
195         for <websemantique@gwparis.dyomedea.com>;
196         Sun, 27 May 2007 10:47:16 +0200 (CEST)
197 Received: from localhost (acer [127.0.0.1])
198         by gwparis.dyomedea.com (Postfix) with ESMTP id 0429B93C169
199         for <websemantique@gwparis.dyomedea.com>;
200         Sun, 27 May 2007 10:47:16 +0200 (CEST)
201 Message-ID: <7f55e5450705270147l2605d6e5p9dbb2ed8caaefd92@mail.gmail.com>
202 Date: Sun, 27 May 2007 10:47:13 +0200
203 From: "Simon Rozet" <simon.rozet@gmail.com>
204 To: websemantique@xmlfr.org
205 Subject: [websemantique] Re: Ontologie GTD, la suite
206 In-Reply-To: <600A07A9-D163-4DA2-808E-7948BF232908@la-grange.net>
207 MIME-Version: 1.0
208 References: <7f55e5450703031435l5df5ac61k97cf03e819807dd0@mail.gmail.com>
209         <600A07A9-D163-4DA2-808E-7948BF232908@la-grange.net>
210 X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at dyomedea.com
211 Content-type: text/plain; charset=utf-8
212 Content-Transfer-Encoding: 8bit
213 X-Spambayes-Classification: ham; 0.00
214 X-archive-position: 12100
215 X-ecartis-version: Ecartis v1.0.0
216 Sender: websemantique-bounce@xmlfr.org
217 Errors-to: websemantique-bounce@xmlfr.org
218 X-original-sender: simon.rozet@gmail.com
219 Precedence: list
220 Reply-to: websemantique@xmlfr.org
221 X-list: websemantique
222
223 2007/5/19, Karl Dubost <karl@la-grange.net>:
224 >
225 > Le 3 mars 2007 à 23:35, Simon Rozet a écrit :
226 > > L'ontologie :
227 >
228 > cool!
229 > Peux-tu donner quelques exemples d'accompagnements?
230 > De préférence couvrant tous les termes que tu as définis, ce serait
231 > bien :)
232
233 Voilà pour donner une idée :
234
235 [[[
236 @prefix : <#> .
237 @prefix gtd: <http://example.org/ns/gtd> .
238 @prefix foaf: <http://xmlns.com/foaf/0.1/> /
239
240 :mum a foaf:Person;
241         foaf:name "Isabelle Devaux" .
242
243 :foo a gtd:Task;
244         # :foo a gtd:Task, gtd:StatusDelegated ?
245         gtd:status gtd:StatusDelegated;
246         dc:description "bake eggs and bacon for the breakfast";
247         gtd:delegatedTo :mum . 
248
249 :world a gtd:SomeDayMaybe;
250         dc:description "Take over the world!" .
251
252 :paint a gtd:Project;
253         dc:description "Re-paint my sleeping room";
254         gtd:hasTask :choose, :buy .
255
256 :choose a gtd:Task;
257         dc:description "Choose which colors I'll use";
258         gtd:status gtd:StatusDone .
259
260 :buy a gtd:Task;
261         dc:description "Go to a paint store and buy what I need" .
262 ]]]
263
264 Mais à vrai dire, je vois déjà quelques erreurs... Pour ce qui est du
265 status, je ferai plutÃŽt quelque chose comme :
266
267 [[[
268 :choose a gtd:Task;
269         gtd:status :choosestatus .
270
271 :choosestatus a gtd:StatusDelegated, gtd:StatusUndone;
272         dc:created "2007-05-07"; # date de delegation
273         gtd:delegatedTo :mum .
274
275 :foo a gtd:Task .
276 :foo gtd:status :foostat .
277 :foostat a gtd:StatusDone;
278         dc:created "2007-04-07" . # date à laquelle la tache a été accomplie
279 ]]]
280
281 Mais entre temps, j'ai découvert qu'il y a une classe VTODO, dans la
282 spec iCal et http://dannyayers.com:88/xmlns/project/. Il y a surement
283 quelque chose à récupérer de ces vocabulaires mais jusqu'à présent, je
284 n'ai pas pris le temps de le faire.
285
286 --
287 Simon Rozet, http://atonie.org/sr/
288
289 --
290 Liste de diffusion "websemantique@xmlfr.org"
291 (http://xmlfr.org/communautes/websemantique/listes/websemantique).
292
293 Contribuez au developpement du Web Semantique francophone
294 (http://websemantique.org) !
295
296 Pour resilier votre abonnement, envoyez un message contenant
297 la commande "unsubscribe" a websemantique-request@xmlfr.org
298 (mailto:websemantique-request@xmlfr.org?Subject=unsubscribe)
299
Remarque : Consulter la page TracBrowser pour plus d'informations sur l'utilisation du Navigateur.