<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ontology Web &#187; Software</title>
	<atom:link href="http://www.ontologyweb.com/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ontologyweb.com</link>
	<description>Become a triple in the web!</description>
	<lastBuildDate>Sun, 31 Jul 2011 13:10:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Triple store</title>
		<link>http://www.ontologyweb.com/2010/02/triple-store/</link>
		<comments>http://www.ontologyweb.com/2010/02/triple-store/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 08:52:09 +0000</pubDate>
		<dc:creator>Working Ontologist</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[SPARQL]]></category>
		<category><![CDATA[triple store]]></category>

		<guid isPermaLink="false">http://www.ontologyweb.com/2010/02/triple-store/</guid>
		<description><![CDATA[Creating à triple store based on mysql. From this triple store several websites are feeded.]]></description>
			<content:encoded><![CDATA[<p>Creating à triple store based on mysql. From this triple store several websites are feeded.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ontologyweb.com/2010/02/triple-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RDF stands for Resource Description Framework</title>
		<link>http://www.ontologyweb.com/2009/12/rdf-stands-for-resource-description-framework/</link>
		<comments>http://www.ontologyweb.com/2009/12/rdf-stands-for-resource-description-framework/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 08:17:57 +0000</pubDate>
		<dc:creator>Working Ontologist</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Ontology]]></category>
		<category><![CDATA[Semantics]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[description]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[rdf]]></category>
		<category><![CDATA[resource]]></category>

		<guid isPermaLink="false">http://www.ontologyweb.com/?p=173</guid>
		<description><![CDATA[RDF is short for Resource Description Framework. RDF is the language for describing resources and contents in the semantic web. In the semantic web RDF is used to describe resources on the web. Resources are addressed by a unique URI. A URI looks like a normal Internet URL. Look at the following fragment of a RDF file: &#60;?xml version=&#34;1.0&#34;?&#62; &#60;rdf:RDF &#160;&#160;&#160; xmlns:rdf=&#34;http://www.w3.org/1999/02/22-rdf-syntax-ns#&#34; &#160;&#160;&#160; xmlns:owl=&#34;http://www.w3.org/2002/07/owl#&#34; &#160;&#160;&#160; xmlns:xsd=&#34;http://www.w3.org/2001/XMLSchema#&#34; &#160;&#160;&#160; xmlns=&#34;http://example.org/pets#&#34; &#160;&#160;&#160; xmlns:rdfs=&#34;http://www.w3.org/2000/01/rdf-schema#&#34; &#160; xml:base=&#34;http://example.org/pets&#34;&#62; &#160; &#60;owl:Class rdf:ID=&#34;Goldfish&#34;&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>RDF is short for Resource Description Framework. RDF is the language for describing resources and contents in the semantic web. In the semantic web RDF is used to describe resources on the web. Resources are addressed by a unique URI. A URI looks like a normal Internet URL.</p>
<p>Look at the following fragment of a RDF file:</p>
<p><code>&lt;?xml version=&quot;1.0&quot;?&gt;<br />
	&lt;rdf:RDF<br />
	&nbsp;&nbsp;&nbsp; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;<br />
	&nbsp;&nbsp;&nbsp; xmlns:owl=&quot;http://www.w3.org/2002/07/owl#&quot;<br />
	&nbsp;&nbsp;&nbsp; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema#&quot;<br />
	&nbsp;&nbsp;&nbsp; xmlns=&quot;http://example.org/pets#&quot;<br />
	&nbsp;&nbsp;&nbsp; xmlns:rdfs=&quot;http://www.w3.org/2000/01/rdf-schema#&quot;<br />
	&nbsp; xml:base=&quot;http://example.org/pets&quot;&gt;<br />
	&nbsp; &lt;owl:Class rdf:ID=&quot;Goldfish&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;owl:Class rdf:ID=&quot;Pet&quot;/&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;/rdfs:subClassOf&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:ID=&quot;Cat&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;owl:Class rdf:about=&quot;#Pet&quot;/&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;/rdfs:subClassOf&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:ID=&quot;Dog&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;owl:Class rdf:about=&quot;#Pet&quot;/&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;/rdfs:subClassOf&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:ID=&quot;Elephant&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;owl:Class rdf:ID=&quot;Wild&quot;/&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;/rdfs:subClassOf&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:about=&quot;#Pet&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;owl:Class rdf:ID=&quot;Animal&quot;/&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;/rdfs:subClassOf&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:about=&quot;#Wild&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf rdf:resource=&quot;#Animal&quot;/&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:ID=&quot;Leopard&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf rdf:resource=&quot;#Wild&quot;/&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:ID=&quot;Tiger&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf rdf:resource=&quot;#Wild&quot;/&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&lt;/rdf:RDF&gt;<br />
	</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ontologyweb.com/2009/12/rdf-stands-for-resource-description-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protege 4.0 released</title>
		<link>http://www.ontologyweb.com/2009/12/protege-4-0-released/</link>
		<comments>http://www.ontologyweb.com/2009/12/protege-4-0-released/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 13:55:50 +0000</pubDate>
		<dc:creator>Working Ontologist</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.ontologyweb.com/?p=147</guid>
		<description><![CDATA[December 3rd Protege 4.0 was released. So, what is new in this version? First of all it supports the OWL 2.0 specification, which is approaching approval. Other new features in this release are: support for editing multiple ontologies, menu drag and drop user interface elements, the ability to import from repositories on the web and more. Anyway, you can download it here.]]></description>
			<content:encoded><![CDATA[<p>December 3rd Protege 4.0 was released. So, what is new in this version? First of all it supports the OWL 2.0 specification, which is approaching approval. Other new features in this release are: support for editing multiple ontologies, menu drag and drop user interface elements, the ability to import from repositories on the web and <a href="http://protegewiki.stanford.edu/index.php/Protege4DevDocs">more</a>. Anyway, you can <a href="http://protege.stanford.edu/download/registered.html">download </a>it <a href="http://protege.stanford.edu/download/registered.html">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ontologyweb.com/2009/12/protege-4-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using SVN in Eclipse with a proxy</title>
		<link>http://www.ontologyweb.com/2009/12/using-svn-in-eclipse-with-a-proxy/</link>
		<comments>http://www.ontologyweb.com/2009/12/using-svn-in-eclipse-with-a-proxy/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 13:15:06 +0000</pubDate>
		<dc:creator>Working Ontologist</dc:creator>
				<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.ontologyweb.com/?p=141</guid>
		<description><![CDATA[Are you getting errors about the &#8220;RA layer request failed&#8221; and &#8220;svn: PROPFIND request failed on ..&#8221;, followed by an error about not being able to connect to the SVN server? Well, here is what to do: Install the latest Subclipse plugin for Eclipse. Read the manual at Subclipse Set the right proxy settings at the Subversive-config-file (usuallylocated at C:\Documents and Settings\MyUserId\Application Data\Subversion\servers). At the bottom of the file you&#8217;ll find http-proxy-host and http-proxy-port. Uncomment [...]]]></description>
			<content:encoded><![CDATA[<p>Are you getting errors about the &#8220;RA layer request failed&#8221; and &#8220;svn: PROPFIND request failed on ..&#8221;, followed by an error about not being able to connect to the SVN server? Well, here is what to do:</p>
<ul>
<li>Install the latest Subclipse plugin for Eclipse. Read the manual at <a href="http://subclipse.tigris.org/servlets/ProjectProcess?pageID=p4wYuA">Subclipse</a></li>
<li>Set the right proxy settings at the Subversive-config-file (usuallylocated at <em>C:\Documents and Settings\MyUserId\Application Data\Subversion\servers</em>). At the bottom of the file you&#8217;ll find <em>http-proxy-host</em> and <em>http-proxy-port</em>. Uncomment these lines and set the right values. Save this file and restart your Eclipse environment.</li>
</ul>
<p>For me it worked perfectly. Hope this will be useful for you too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ontologyweb.com/2009/12/using-svn-in-eclipse-with-a-proxy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Swoop, Semantic Web Ontology Editor</title>
		<link>http://www.ontologyweb.com/2009/09/swoop-semantic-web-ontology-editor/</link>
		<comments>http://www.ontologyweb.com/2009/09/swoop-semantic-web-ontology-editor/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 17:42:32 +0000</pubDate>
		<dc:creator>Working Ontologist</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.ontologyweb.com/?p=13</guid>
		<description><![CDATA[SWOOP is a tool for creating, editing, and debugging OWL ontologies. It was produced by the MIND lab at University of Maryland, College Park, but is now an open source project with contributers from all over. Visit website]]></description>
			<content:encoded><![CDATA[<p>SWOOP is a tool for creating, editing, and debugging OWL ontologies. It was produced by the MIND lab at University of Maryland, College Park, but is now an open source project with contributers from all over.</p>
<p><a href="http://code.google.com/p/swoop/" target="_self">Visit website</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ontologyweb.com/2009/09/swoop-semantic-web-ontology-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protégé</title>
		<link>http://www.ontologyweb.com/2009/09/protege/</link>
		<comments>http://www.ontologyweb.com/2009/09/protege/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 20:23:07 +0000</pubDate>
		<dc:creator>Working Ontologist</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.ontologyweb.com/?p=8</guid>
		<description><![CDATA[Protégé is a free, open source ontology editor and knowledge-base framework. The Protégé platform supports two main ways of modeling ontologies via the Protégé-Frames and Protégé-OWL editors. Protégé ontologies can be exported into a variety of formats including RDF(S), OWL, and XML Schema. Visit website]]></description>
			<content:encoded><![CDATA[<p>Protégé is a  	free,  	open source ontology editor and knowledge-base framework.</p>
<p>The Protégé platform supports two main ways of modeling ontologies via the  	<a href="http://protege.stanford.edu/overview/protege-frames.html">Protégé-Frames</a> and  	<a href="http://protege.stanford.edu/overview/protege-owl.html">Protégé-OWL</a> editors.   	Protégé ontologies can be exported into a variety of formats including  	RDF(S), OWL, and XML Schema.</p>
<p><a href="http://protege.stanford.edu/" target="_blank">Visit website</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ontologyweb.com/2009/09/protege/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

