You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sis.apache.org by sebb AT ASF <se...@apache.org> on 2014/02/18 12:57:36 UTC

Fwd: svn commit: r1469037 - /infrastructure/site-tools/trunk/projects/files.xml

Reminder: please update your DOAP location; thanks!


---------- Forwarded message ----------
From: sebb AT ASF <se...@apache.org>
Date: 17 April 2013 20:30
Subject: Fwd: svn commit: r1469037 -
/infrastructure/site-tools/trunk/projects/files.xml
To: dev@sis.apache.org


The SIS doap has disappeared; could not find it anywhere so it has
been disabled.


---------- Forwarded message ----------
From: <se...@apache.org>
Date: 17 April 2013 20:27
Subject: svn commit: r1469037 -
/infrastructure/site-tools/trunk/projects/files.xml
To: site-cvs@apache.org


Author: sebb
Date: Wed Apr 17 19:27:47 2013
New Revision: 1469037

URL: http://svn.apache.org/r1469037
Log:
SIS DOP disappeared

Modified:
    infrastructure/site-tools/trunk/projects/files.xml

Modified: infrastructure/site-tools/trunk/projects/files.xml
URL: http://svn.apache.org/viewvc/infrastructure/site-tools/trunk/projects/files.xml?rev=1469037&r1=1469036&r2=1469037&view=diff
==============================================================================
--- infrastructure/site-tools/trunk/projects/files.xml (original)
+++ infrastructure/site-tools/trunk/projects/files.xml Wed Apr 17 19:27:47 2013
@@ -170,7 +170,7 @@
   <location>http://svn.apache.org/repos/asf/shale/framework/trunk/src/site/resources/doap_Shale.rdf</location>
   <location>http://svn.apache.org/repos/asf/shindig/trunk/doap_shindig.rdf</location>
   <location>http://svn.apache.org/repos/asf/shiro/trunk/shiro.doap.rdf</location>
-  <location>http://svn.apache.org/repos/asf/sis/site/src/site/resources/doap.rdf</location>
+  <!-- Vanished 2013-04-17
location>http://svn.apache.org/repos/asf/sis/site/src/site/resources/doap.rdf</location-->
   <location>http://svn.apache.org/repos/asf/sling/site/doap/sling-doap.rdf</location>
   <location>http://spamassassin.apache.org/doap.rdf</location>
   <location>http://stanbol.apache.org/doap.rdf</location>

Re: Fwd: svn commit: r1469037 - /infrastructure/site-tools/trunk/projects/files.xml

Posted by Travis L Pinney <tr...@gmail.com>.
Cool. I am new to it also. I would add the xml header ( <?xml
version="1.0"?> ) to the beginning of the file also.

You can validate it here: http://www.w3.org/RDF/Validator/

<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:doap="http://usefulinc.com/ns/doap#">
  <doap:Project>
   <doap:name>Apache SIS</doap:name>
   <doap:homepage rdf:resource="http://sis.apache.org/" />
   <doap:programming-language>java</doap:programming-language>
   <doap:license rdf:resource="http://www.apache.org/licenses/LICENSE-2.0"/>
  </doap:Project>
</rdf:RDF>

Thanks,
Travis

On Tue, Feb 18, 2014 at 7:34 AM, Martin Desruisseaux
<ma...@geomatys.fr> wrote:
> Thanks, I will use your RDF as a starting point and follow the link in the
> wikipedia page for more information. I didn't knew about DOAP, I'm just
> discovering it. Its close relationship with semantic web seems an
> opportunity to learn some notion about that :-)
>
>     Martin
>
>
> Le 18/02/14 13:27, Travis L Pinney a écrit :
>
>> http://en.wikipedia.org/wiki/DOAP
>>
>> Not sure. Maybe it should be this?
>>
>> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>> xmlns:doap="http://usefulinc.com/ns/doap#">
>>    <doap:Project>
>>     <doap:name>Apache SIS</doap:name>
>>     <doap:homepage rdf:resource="http://sis.apache.org/" />
>>     <doap:programming-language>java</doap:programming-language>
>>     <doap:license
>> rdf:resource="http://www.apache.org/licenses/LICENSE-2.0"/>
>>    </doap:Project>
>>   </rdf:RDF>
>
>

Re: Fwd: svn commit: r1469037 - /infrastructure/site-tools/trunk/projects/files.xml

Posted by Martin Desruisseaux <ma...@geomatys.fr>.
Thanks, I will use your RDF as a starting point and follow the link in 
the wikipedia page for more information. I didn't knew about DOAP, I'm 
just discovering it. Its close relationship with semantic web seems an 
opportunity to learn some notion about that :-)

     Martin


Le 18/02/14 13:27, Travis L Pinney a écrit :
> http://en.wikipedia.org/wiki/DOAP
>
> Not sure. Maybe it should be this?
>
> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
> xmlns:doap="http://usefulinc.com/ns/doap#">
>    <doap:Project>
>     <doap:name>Apache SIS</doap:name>
>     <doap:homepage rdf:resource="http://sis.apache.org/" />
>     <doap:programming-language>java</doap:programming-language>
>     <doap:license rdf:resource="http://www.apache.org/licenses/LICENSE-2.0"/>
>    </doap:Project>
>   </rdf:RDF>


Re: Fwd: svn commit: r1469037 - /infrastructure/site-tools/trunk/projects/files.xml

Posted by Travis L Pinney <tr...@gmail.com>.
http://en.wikipedia.org/wiki/DOAP

Not sure. Maybe it should be this?

<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:doap="http://usefulinc.com/ns/doap#">
  <doap:Project>
   <doap:name>Apache SIS</doap:name>
   <doap:homepage rdf:resource="http://sis.apache.org/" />
   <doap:programming-language>java</doap:programming-language>
   <doap:license rdf:resource="http://www.apache.org/licenses/LICENSE-2.0"/>
  </doap:Project>
 </rdf:RDF>

On Tue, Feb 18, 2014 at 7:06 AM, Martin Desruisseaux
<ma...@geomatys.fr> wrote:
> Hello all
>
> Le 18/02/14 12:57, sebb AT ASF a écrit :
>
>> -
>> <location>http://svn.apache.org/repos/asf/sis/site/src/site/resources/doap.rdf</location>
>> +  <!-- Vanished 2013-04-17
>
>
> I did a quick search on the site repository and couldn't find doap.rdf. Does
> anyone know what is the purpose of this file and what its content should be?
>
>     Martin
>

Re: Fwd: svn commit: r1469037 - /infrastructure/site-tools/trunk/projects/files.xml

Posted by Martin Desruisseaux <ma...@geomatys.fr>.
Hello all

Le 18/02/14 12:57, sebb AT ASF a écrit :
> -  <location>http://svn.apache.org/repos/asf/sis/site/src/site/resources/doap.rdf</location>
> +  <!-- Vanished 2013-04-17

I did a quick search on the site repository and couldn't find doap.rdf. 
Does anyone know what is the purpose of this file and what its content 
should be?

     Martin