<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-11614</id>
	<title>Nabble - w3.org - rdf</title>
	<updated>2009-11-27T09:18:05Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/w3.org---rdf-f11614.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/w3.org---rdf-f11614.html" />
	<subtitle type="html">The Resource Description Framework (RDF) integrates a variety of applications from library catalogs and world-wide directories to syndication and aggregation of news, software, and content to personal collections of music, photos, and events using XML as an interchange syntax. The RDF specifications provide a lightweight ontology system to support the exchange of knowledge on the Web. w3.org - rdf home is &lt;a href=&quot;http://www.w3.org/RDF/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26545333</id>
	<title>Re: Proposal for 'URIs everywhere'</title>
	<published>2009-11-27T09:18:05Z</published>
	<updated>2009-11-27T09:18:05Z</updated>
	<author>
		<name>Ivan Herman-2</name>
	</author>
	<content type="html">I redid the relevant part of my distiller, too, and it is much nicer and
&lt;br&gt;simpler. It is one single method that has some internal branches, but
&lt;br&gt;can still handle @rel/@rev/@about/@resource/@typeof in one place. An
&lt;br&gt;this is nice. What it does with 'value':
&lt;br&gt;&lt;br&gt;1. Get the possible safe curie signs out of the way at the start, ie, if
&lt;br&gt;the value is of the form '[...]' then remove the [ and ] signs. Ie, the
&lt;br&gt;safe curie is there for backward compatibility only. (And yes, that
&lt;br&gt;means that I do allow unsafe curies for @about and @resource)
&lt;br&gt;&lt;br&gt;2. Get the possible blank node management out of the way, ie return the
&lt;br&gt;right blank node for things like '_:a'. Note that if this is called for
&lt;br&gt;a @rel/@property/@ref, then return None (with possible error message)
&lt;br&gt;because you cannot have a blank node for a predicate
&lt;br&gt;&lt;br&gt;3. If it is called on @rel/@rev and the value is a keyword then return
&lt;br&gt;the corresponding URI
&lt;br&gt;&lt;br&gt;4. Try to match the value against a CURIE definition (ie, see if it is
&lt;br&gt;of the form a:b and 'a' is defined as a namespace, oops, local name). If
&lt;br&gt;yes, return the corresponding URI
&lt;br&gt;&lt;br&gt;5. If we get here, this is a real URI (absolute or relative), and fall
&lt;br&gt;back to the usual URI management to get the final URI (there are python
&lt;br&gt;tools to do that with all the quirks of relative uris and the like).
&lt;br&gt;&lt;br&gt;I think this is in line with what Mark describes. I have written it down
&lt;br&gt;here to see if it is what Mark had in mind (until we have relevant test
&lt;br&gt;cases...)
&lt;br&gt;&lt;br&gt;I plan to test a bit more and put up a test version of the distiller
&lt;br&gt;service on line with an extra &amp;quot;1.1&amp;quot; flag to trigger this behaviour.
&lt;br&gt;Hopefully on the week end or early next week.
&lt;br&gt;&lt;br&gt;Ivan
&lt;br&gt;&lt;br&gt;&lt;br&gt;Toby Inkster wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Wed, 2009-11-25 at 22:06 +0000, Mark Birbeck wrote:
&lt;br&gt;&amp;gt;&amp;gt; Anyway, below you'll find a series of minor changes that I feel would
&lt;br&gt;&amp;gt;&amp;gt; need to be made to various parts of the syntax document, in order to
&lt;br&gt;&amp;gt;&amp;gt; support URIs and CURIEs in all RDFa-related attributes (except @src
&lt;br&gt;&amp;gt;&amp;gt; and @href).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The following describes the behaviour of the unreleased
&lt;br&gt;&amp;gt; RDF::RDFa::Parser 0.21 package for Perl. (Latest released version is
&lt;br&gt;&amp;gt; 0.20.)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; If the parser is instantiated with the option &amp;quot;full_uris&amp;quot; set to true,
&lt;br&gt;&amp;gt; then, it uses the following behaviour for these attributes:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; @about/@resource: Safe CURIE, falling back to URIs.
&lt;br&gt;&amp;gt; @src/@href: URIs only.
&lt;br&gt;&amp;gt; @rel/@rev: Keywords, falling back to safe CURIEs, CURIEs then URIs.
&lt;br&gt;&amp;gt; @property/@typeof/@datatype: Safe CURIEs, CURIEs then URIs.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I think this is more or less the same as your proposal, except that
&lt;br&gt;&amp;gt; unsafe CURIEs are disallowed in @about/@resource.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; By default, i.e. when &amp;quot;full_uris&amp;quot; is not true, it uses:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; @about/@resource: Safe CURIE, falling back to URIs.
&lt;br&gt;&amp;gt; @src/@href: URIs only.
&lt;br&gt;&amp;gt; @rel/@rev: Keywords, falling back to safe CURIEs, then CURIEs.
&lt;br&gt;&amp;gt; @property/@typeof/@datatype: Safe CURIEs, falling back to CURIEs.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; And as of 0.21 it's now passing all 107 approved tests in the XHTML+RDFa
&lt;br&gt;&amp;gt; test suite. (Yay!)
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;/div&gt;-- 
&lt;br&gt;&lt;br&gt;Ivan Herman, W3C Semantic Web Activity Lead
&lt;br&gt;Home: &lt;a href=&quot;http://www.w3.org/People/Ivan/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/People/Ivan/&lt;/a&gt;&lt;br&gt;mobile: +31-641044153
&lt;br&gt;PGP Key: &lt;a href=&quot;http://www.ivan-herman.net/pgpkey.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ivan-herman.net/pgpkey.html&lt;/a&gt;&lt;br&gt;FOAF: &lt;a href=&quot;http://www.ivan-herman.net/foaf.rdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ivan-herman.net/foaf.rdf&lt;/a&gt;&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (5K) &lt;a href=&quot;http://old.nabble.com/attachment/26545333/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Proposal-for-%27URIs-everywhere%27-tp26521107p26545333.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531005</id>
	<title>Re: Proposal for 'URIs everywhere'</title>
	<published>2009-11-26T07:25:23Z</published>
	<updated>2009-11-26T07:25:23Z</updated>
	<author>
		<name>Toby Inkster-4</name>
	</author>
	<content type="html">On Wed, 2009-11-25 at 22:06 +0000, Mark Birbeck wrote:
&lt;br&gt;&amp;gt; Anyway, below you'll find a series of minor changes that I feel would
&lt;br&gt;&amp;gt; need to be made to various parts of the syntax document, in order to
&lt;br&gt;&amp;gt; support URIs and CURIEs in all RDFa-related attributes (except @src
&lt;br&gt;&amp;gt; and @href).
&lt;br&gt;&lt;br&gt;The following describes the behaviour of the unreleased
&lt;br&gt;RDF::RDFa::Parser 0.21 package for Perl. (Latest released version is
&lt;br&gt;0.20.)
&lt;br&gt;&lt;br&gt;If the parser is instantiated with the option &amp;quot;full_uris&amp;quot; set to true,
&lt;br&gt;then, it uses the following behaviour for these attributes:
&lt;br&gt;&lt;br&gt;@about/@resource: Safe CURIE, falling back to URIs.
&lt;br&gt;@src/@href: URIs only.
&lt;br&gt;@rel/@rev: Keywords, falling back to safe CURIEs, CURIEs then URIs.
&lt;br&gt;@property/@typeof/@datatype: Safe CURIEs, CURIEs then URIs.
&lt;br&gt;&lt;br&gt;I think this is more or less the same as your proposal, except that
&lt;br&gt;unsafe CURIEs are disallowed in @about/@resource.
&lt;br&gt;&lt;br&gt;By default, i.e. when &amp;quot;full_uris&amp;quot; is not true, it uses:
&lt;br&gt;&lt;br&gt;@about/@resource: Safe CURIE, falling back to URIs.
&lt;br&gt;@src/@href: URIs only.
&lt;br&gt;@rel/@rev: Keywords, falling back to safe CURIEs, then CURIEs.
&lt;br&gt;@property/@typeof/@datatype: Safe CURIEs, falling back to CURIEs.
&lt;br&gt;&lt;br&gt;And as of 0.21 it's now passing all 107 approved tests in the XHTML+RDFa
&lt;br&gt;test suite. (Yay!)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Toby A Inkster
&lt;br&gt;&amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26531005&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mail@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://tobyinkster.co.uk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tobyinkster.co.uk&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Proposal-for-%27URIs-everywhere%27-tp26521107p26531005.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531004</id>
	<title>Re: Default and empty CURIE prefixes in a non-XHTML host language</title>
	<published>2009-11-26T07:25:19Z</published>
	<updated>2009-11-26T07:25:19Z</updated>
	<author>
		<name>ChristophLange</name>
	</author>
	<content type="html">Hi Toby,
&lt;br&gt;&lt;br&gt;&amp;nbsp; thanks for your helpful comments!
&lt;br&gt;&lt;br&gt;2009-11-26 12:25 Toby Inkster &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26531004&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tai@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt; Hmmm... this is a good point. I've tried to make my Perl RDFa parser as
&lt;br&gt;&amp;gt; generic as possible, and allow XHTML-specific features (like treating
&lt;br&gt;&amp;gt; &amp;lt;head&amp;gt; and &amp;lt;body&amp;gt; specially; understanding &amp;lt;base href&amp;gt;; etc) to be
&lt;br&gt;&amp;gt; switched off. But I don't currently provide a way to change the default
&lt;br&gt;&amp;gt; CURIE prefix from &amp;lt;&lt;a href=&quot;http://www.w3.org/1999/xhtml/vocab#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml/vocab#&lt;/a&gt;&amp;gt;.
&lt;br&gt;&lt;br&gt;Not sure if would already be urgent for you to extend your processor
&lt;br&gt;accordingly. &amp;nbsp;AFAIK, RDFa has been integrated into XHTML, SVG Tiny,
&lt;br&gt;OpenDocument is in progress, any other language (besides mine)? &amp;nbsp;Not sure what
&lt;br&gt;requirements OpenDocument has w.r.t. prefixes. &amp;nbsp;BTW, it seems that on the RDFa
&lt;br&gt;wiki there is currently no collection of host languages that embed RDFa; maybe
&lt;br&gt;it would make sense to start such a list.
&lt;br&gt;&lt;br&gt;&amp;gt; Nor do I provide a way to define additional keywords. If I were to add
&lt;br&gt;&amp;gt; such a feature, what do you think would be more useful - allow
&lt;br&gt;&amp;gt; additional keywords in @rel/@rev; or allow them to be used in any
&lt;br&gt;&amp;gt; attribute?
&lt;br&gt;&lt;br&gt;Allowing such keywords only in @rel/@rev is IMHO too much of an HTML legacy.
&lt;br&gt;I think it would keep the specs cleaner and thus easier to understand and
&lt;br&gt;implement if those keywords were instead implemented as prefixless CURIEs --
&lt;br&gt;and thus also usable in other RDFa attributes. &amp;nbsp;Why not also have
&lt;br&gt;@typeof=&amp;quot;StartPage&amp;quot; (just made up this HTML-like example) where we can have
&lt;br&gt;@rel=&amp;quot;next&amp;quot;?
&lt;br&gt;&lt;br&gt;&amp;gt; @rel and @rev are not new attributes defined by RDFa, but have existed since
&lt;br&gt;&amp;gt; HTML 2.0 was published 14 years ago. These keywords have been &amp;quot;grandfathered
&lt;br&gt;&amp;gt; in&amp;quot; to RDFa and require slightly different handling to real CURIEs - for
&lt;br&gt;&amp;gt; instance, they should be handled case-insensitively, as previous versions of
&lt;br&gt;&amp;gt; HTML and XHTML have defined @rel and @rev as case-insensitive.
&lt;br&gt;&lt;br&gt;Oh, I see, I was not aware of that case-insensitivity. &amp;nbsp;(Is that really the
&lt;br&gt;case? &amp;nbsp;I don't see any remark on that in the RDFa syntax spec.) &amp;nbsp;But still,
&lt;br&gt;why that fuss? &amp;nbsp;The _element_ names in XHTML are not case sensitive either.
&lt;br&gt;&lt;br&gt;&amp;gt; It does seem a little redundant, yes, but there doesn't seem to be a
&lt;br&gt;&amp;gt; better vocabulary to point the empty prefix at.
&lt;br&gt;&lt;br&gt;Indeed, I agree. &amp;nbsp;Particularly not in XHTML, where the usual _XML_ default
&lt;br&gt;namespace is the one of XHTML, which doesn't make sense to use in RDF
&lt;br&gt;expressions.
&lt;br&gt;&lt;br&gt;But, apropos, that makes me remember XSLT and XPath. &amp;nbsp;In XSLT 2, one can
&lt;br&gt;specify a default namespace to be used inside XPath expressions, and that
&lt;br&gt;default namespace is independent from the XML default namespace. &amp;nbsp;This is done
&lt;br&gt;by the @xpath-default-namespace attribute that can occur on any XSLT element
&lt;br&gt;(see &lt;a href=&quot;http://www.w3.org/TR/xslt20/#standard-attributes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/xslt20/#standard-attributes&lt;/a&gt;). &amp;nbsp;Analogous to this
&lt;br&gt;would be introducing an additional RDFa attribute @curie-default-namespace;
&lt;br&gt;how about that?
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Christoph
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Christoph Lange, Jacobs Univ. Bremen, &lt;a href=&quot;http://kwarc.info/clange&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://kwarc.info/clange&lt;/a&gt;, Skype duke4701
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (205 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26531004/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Default-and-empty-CURIE-prefixes-in-a-non-XHTML-host-language-tp26522625p26531004.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26529953</id>
	<title>Re: Proposal for 'URIs everywhere'</title>
	<published>2009-11-26T06:07:35Z</published>
	<updated>2009-11-26T06:07:35Z</updated>
	<author>
		<name>Julian Reschke</name>
	</author>
	<content type="html">Julian Reschke wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Mark Birbeck wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi Julian,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks for this.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The changes I'm proposing do actually give us 'URIorCURIEorSafeCURIE'
&lt;br&gt;&amp;gt;&amp;gt; everywhere.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Ah, I missed the &amp;quot;...orSafeCURIE&amp;quot;.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; :)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; It's just that since a CURIE is /either/ a [CURIE] or a [safe CURIE],
&lt;br&gt;&amp;gt;&amp;gt; I figured that using the name 'URIorCURIE' rather than
&lt;br&gt;&amp;gt;&amp;gt; 'URIorCURIEorSafeCURIE', to represent this in the prose, would be
&lt;br&gt;&amp;gt;&amp;gt; acceptable.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In other words, the functionality is definitely as you describe --
&lt;br&gt;&amp;gt;&amp;gt; i.e., it is backwards-compatible -- it's just that the short name I've
&lt;br&gt;&amp;gt;&amp;gt; used collapses the two types of CURIE into one, more general notion,
&lt;br&gt;&amp;gt;&amp;gt; of a CURIE.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; But if there's a feeling that this might confuse people, and that we
&lt;br&gt;&amp;gt;&amp;gt; should use the longer term, then I don't have a problem with that
&lt;br&gt;&amp;gt;&amp;gt; either.
&lt;br&gt;&amp;gt;&amp;gt; ...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I was confused, so my assumption would be that others will be confused 
&lt;br&gt;&amp;gt; as well.
&lt;br&gt;&amp;gt; ...
&lt;/div&gt;&lt;br&gt;Having said that... URIs and CURIEs use the same lexical space. On the 
&lt;br&gt;other hand, Safe-CURIEs have been designed to they never conflict with URIs.
&lt;br&gt;&lt;br&gt;If you are going to allow all three notations in the same place, you may 
&lt;br&gt;want to give advice which to use. I *think* the best advice would be to 
&lt;br&gt;use either URIs or Safe-CURIEs, and to avoid CURIEs.
&lt;br&gt;&lt;br&gt;Best regards, Julian
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Proposal-for-%27URIs-everywhere%27-tp26521107p26529953.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26529916</id>
	<title>Re: Proposal for 'URIs everywhere'</title>
	<published>2009-11-26T06:05:28Z</published>
	<updated>2009-11-26T06:05:28Z</updated>
	<author>
		<name>Julian Reschke</name>
	</author>
	<content type="html">Mark Birbeck wrote:
&lt;br&gt;&amp;gt; Hi Julian,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks for this.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The changes I'm proposing do actually give us 'URIorCURIEorSafeCURIE'
&lt;br&gt;&amp;gt; everywhere.
&lt;br&gt;&lt;br&gt;Ah, I missed the &amp;quot;...orSafeCURIE&amp;quot;.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; :)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It's just that since a CURIE is /either/ a [CURIE] or a [safe CURIE],
&lt;br&gt;&amp;gt; I figured that using the name 'URIorCURIE' rather than
&lt;br&gt;&amp;gt; 'URIorCURIEorSafeCURIE', to represent this in the prose, would be
&lt;br&gt;&amp;gt; acceptable.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In other words, the functionality is definitely as you describe --
&lt;br&gt;&amp;gt; i.e., it is backwards-compatible -- it's just that the short name I've
&lt;br&gt;&amp;gt; used collapses the two types of CURIE into one, more general notion,
&lt;br&gt;&amp;gt; of a CURIE.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; But if there's a feeling that this might confuse people, and that we
&lt;br&gt;&amp;gt; should use the longer term, then I don't have a problem with that
&lt;br&gt;&amp;gt; either.
&lt;br&gt;&amp;gt; ...
&lt;/div&gt;&lt;br&gt;I was confused, so my assumption would be that others will be confused 
&lt;br&gt;as well.
&lt;br&gt;&lt;br&gt;Best regards, Julian
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Proposal-for-%27URIs-everywhere%27-tp26521107p26529916.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26529662</id>
	<title>Re: Proposal for 'URIs everywhere'</title>
	<published>2009-11-26T05:46:52Z</published>
	<updated>2009-11-26T05:46:52Z</updated>
	<author>
		<name>Mark Birbeck-4</name>
	</author>
	<content type="html">Hi Julian,
&lt;br&gt;&lt;br&gt;Thanks for this.
&lt;br&gt;&lt;br&gt;The changes I'm proposing do actually give us 'URIorCURIEorSafeCURIE'
&lt;br&gt;everywhere.
&lt;br&gt;&lt;br&gt;:)
&lt;br&gt;&lt;br&gt;It's just that since a CURIE is /either/ a [CURIE] or a [safe CURIE],
&lt;br&gt;I figured that using the name 'URIorCURIE' rather than
&lt;br&gt;'URIorCURIEorSafeCURIE', to represent this in the prose, would be
&lt;br&gt;acceptable.
&lt;br&gt;&lt;br&gt;In other words, the functionality is definitely as you describe --
&lt;br&gt;i.e., it is backwards-compatible -- it's just that the short name I've
&lt;br&gt;used collapses the two types of CURIE into one, more general notion,
&lt;br&gt;of a CURIE.
&lt;br&gt;&lt;br&gt;But if there's a feeling that this might confuse people, and that we
&lt;br&gt;should use the longer term, then I don't have a problem with that
&lt;br&gt;either.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Mark
&lt;br&gt;&lt;br&gt;On Thu, Nov 26, 2009 at 12:30 PM, Julian Reschke &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26529662&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;julian.reschke@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; here's a high-level comment without looking at the details.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I appreciate the attempt to make progress. As far as I can tell, the change
&lt;br&gt;&amp;gt; being proposed actually will not be backwards-compatible in all cases (for
&lt;br&gt;&amp;gt; instance, when changing from URIorSafeCURIE to URIorCURIE). In which case
&lt;br&gt;&amp;gt; you really should consider making a change that at least avoids confusion
&lt;br&gt;&amp;gt; and potential ambiguity, by making everything URIorSafeCURIE. That would
&lt;br&gt;&amp;gt; also align (as far as I recall) with the TAG advice not to use CURIEs where
&lt;br&gt;&amp;gt; they might be confused with URIs.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Best regards, Julian
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Mark Birbeck wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hello all,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'd hoped to get the following proposal to the group at the beginning
&lt;br&gt;&amp;gt;&amp;gt; of the week, but it wasn't possible.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Anyway, below you'll find a series of minor changes that I feel would
&lt;br&gt;&amp;gt;&amp;gt; need to be made to various parts of the syntax document, in order to
&lt;br&gt;&amp;gt;&amp;gt; support URIs and CURIEs in all RDFa-related attributes (except @src
&lt;br&gt;&amp;gt;&amp;gt; and @href).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; To recap, whilst most of our attributes support URIs and CURIEs
&lt;br&gt;&amp;gt;&amp;gt; already, @property, @rel and @rev only supported URIs. This means that
&lt;br&gt;&amp;gt;&amp;gt; authors must declare prefix mappings for all predicates, even though
&lt;br&gt;&amp;gt;&amp;gt; they are not required to use prefix mappings for subjects or objects.
&lt;br&gt;&amp;gt;&amp;gt; We've agreed to try to address this, and I had an action item to come
&lt;br&gt;&amp;gt;&amp;gt; up with some proposed text.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; APPROACH
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The first step in sorting this out, is to remove the separation where
&lt;br&gt;&amp;gt;&amp;gt; in some places we allow a CURIE, and in others we allow a
&lt;br&gt;&amp;gt;&amp;gt; URIorSafeCURIE.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Both situations will now use the same type, which I've called
&lt;br&gt;&amp;gt;&amp;gt; 'URIorCURIE'. (This type did used to exist in previous drafts, but I
&lt;br&gt;&amp;gt;&amp;gt; think that's ok. Of course, if anyone can spot a reason why we should
&lt;br&gt;&amp;gt;&amp;gt; use a different name, then please mention it.)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; After making the data type consistent throughout, we then need to
&lt;br&gt;&amp;gt;&amp;gt; clarify the processing rules.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; And finally, we need to add one or more examples of using a full URI
&lt;br&gt;&amp;gt;&amp;gt; for a predicate.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; DATATYPE
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The datatype changes affect section 2.1, as follows:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 1. On @rel, @rev, @property, @datatype, and @typeof, replace 'CURIE'
&lt;br&gt;&amp;gt;&amp;gt; with 'URIorCURIE'.
&lt;br&gt;&amp;gt;&amp;gt; 2. On @about and @resource, replace 'URIorSafeCURIE' with 'URIorCURIE'.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Also, in section 5.4.4, the bullet-points listing the attributes
&lt;br&gt;&amp;gt;&amp;gt; should change to this:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  * @about, @datatype, @property, @resource and @typeof support either a
&lt;br&gt;&amp;gt;&amp;gt; URI or
&lt;br&gt;&amp;gt;&amp;gt;    a CURIE.
&lt;br&gt;&amp;gt;&amp;gt;  * @href and @src support only a URI.
&lt;br&gt;&amp;gt;&amp;gt;  * @rel and @rev support XHTML link types, URIs and CURIEs.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; PROCESSING
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In section 5.4.2, after the three steps, but before the note, we should
&lt;br&gt;&amp;gt;&amp;gt; add:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  Note that this algorithm assumes that its input is a CURIE, but in
&lt;br&gt;&amp;gt;&amp;gt; practice it
&lt;br&gt;&amp;gt;&amp;gt;  won't be possible to definitively establish this until step 2; if
&lt;br&gt;&amp;gt;&amp;gt; there is no in-scope
&lt;br&gt;&amp;gt;&amp;gt;  mapping that matches the prefix, then the algorithm should terminate, and
&lt;br&gt;&amp;gt;&amp;gt; the
&lt;br&gt;&amp;gt;&amp;gt;  input regarded as a URI.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In section 5.4.3, the first point should be removed, and in the second
&lt;br&gt;&amp;gt;&amp;gt; point, the sentence:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  In this case any value that is not surrounded by square brackets, as
&lt;br&gt;&amp;gt;&amp;gt; defined
&lt;br&gt;&amp;gt;&amp;gt;  by 'safe_curie' in the section CURIE Syntax Definition, will be
&lt;br&gt;&amp;gt;&amp;gt; processed as if
&lt;br&gt;&amp;gt;&amp;gt;  it was a URI.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; should be changed to:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  In this case any value that is not a CURIE, as outlined in section 5.4.2,
&lt;br&gt;&amp;gt;&amp;gt; will
&lt;br&gt;&amp;gt;&amp;gt;  be processed as a URI.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Note that I've left the prose about square brackets intact, because
&lt;br&gt;&amp;gt;&amp;gt; there are probably use-cases where people want to say 'safe CURIE or
&lt;br&gt;&amp;gt;&amp;gt; nothing'. (I.e., don't fall back to a URI if there is no prefix
&lt;br&gt;&amp;gt;&amp;gt; mapping.)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In the sentence after the two (now one) sentences, we should change this:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  An example of an attribute that can contain CURIE and non-CURIE values is
&lt;br&gt;&amp;gt;&amp;gt;  @about. As described, any CURIEs expressed in the attribute must follow
&lt;br&gt;&amp;gt;&amp;gt; the
&lt;br&gt;&amp;gt;&amp;gt;  format of a [safe CURIE]. So to express a URI directly, an author
&lt;br&gt;&amp;gt;&amp;gt; might do this:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; to this:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  An example of an attribute that can contain a URIorCURIE is @about. To
&lt;br&gt;&amp;gt;&amp;gt;  express a URI directly, an author might do this:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; After the example, the next sentence/example combination can be
&lt;br&gt;&amp;gt;&amp;gt; duplicated, to give us an extra example, like this:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  whilst to express a CURIE they could do this:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;    &amp;lt;div about=&amp;quot;dbr:Albert_Einstein&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;      ...
&lt;br&gt;&amp;gt;&amp;gt;    &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  The author could also use a safe CURIE, as follows:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;    &amp;lt;div about=&amp;quot;[dbr:Albert_Einstein]&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;      ...
&lt;br&gt;&amp;gt;&amp;gt;    &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In the next example, we just need to clarify that we're now only
&lt;br&gt;&amp;gt;&amp;gt; referring to safe CURIEs; this:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  Since non-CURIE values MUST be ignored, ...
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; becomes this:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  Since non-CURIE values MUST be ignored when they appear in safe CURIEs,
&lt;br&gt;&amp;gt;&amp;gt; ...
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In section 5.4.4, after the bullet-points, the entire sentence reading:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  Note that unlike @about and @resource, @rel and @rev do not
&lt;br&gt;&amp;gt;&amp;gt; differentiate their two
&lt;br&gt;&amp;gt;&amp;gt;  types of data by using [safe CURIE]s.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; should be removed. The next sentence, which reads:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  Instead, any value that matches an entry in the list of link types
&lt;br&gt;&amp;gt;&amp;gt; in the section
&lt;br&gt;&amp;gt;&amp;gt;  The rel attribute, MUST be treated as if it was a URI within the
&lt;br&gt;&amp;gt;&amp;gt; XHTML vocabulary,
&lt;br&gt;&amp;gt;&amp;gt;  and all other values must be CURIEs.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; should be changed to:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  Any value that matches an entry in the list of link types in the
&lt;br&gt;&amp;gt;&amp;gt; section The rel
&lt;br&gt;&amp;gt;&amp;gt;  attribute, MUST be treated as if it was a URI within the XHTML
&lt;br&gt;&amp;gt;&amp;gt; vocabulary. All
&lt;br&gt;&amp;gt;&amp;gt;  other values will be processed as URIorCURIEs.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The next paragraph and its associated example, beginning:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  Note that only values in the link type list have this special behaviour,
&lt;br&gt;&amp;gt;&amp;gt; ...
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; can be deleted.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In the section 5.4.5, the example can have its square brackets removed.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In section 7, the sentence:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  Since it is difficult to distinguish between CURIEs and URIs, the CURIE
&lt;br&gt;&amp;gt;&amp;gt;  syntax adds the notion of a [safe CURIE].
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; should be changed to:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  A URI that uses a scheme that is not an in-scope mapping cannot be
&lt;br&gt;&amp;gt;&amp;gt;  confused with a CURIE. However, since there may be situations where
&lt;br&gt;&amp;gt;&amp;gt;  authors would like to make it explicit that they are using a CURIE, the
&lt;br&gt;&amp;gt;&amp;gt;  CURIE syntax adds the notion of a [safe CURIE].
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; EXAMPLES
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; At the end of section 2.2, we can add:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  When dealing with small amounts of mark-up, it is sometimes easier
&lt;br&gt;&amp;gt;&amp;gt; to use full URIs,
&lt;br&gt;&amp;gt;&amp;gt;  rather than CURIEs. The previous example can also be written as follows:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  &amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;    &amp;lt;head&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;      &amp;lt;title&amp;gt;Books by Marco Pierre White&amp;lt;/title&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;    &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;    &amp;lt;body&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;      I think White's book
&lt;br&gt;&amp;gt;&amp;gt;      '&amp;lt;span
&lt;br&gt;&amp;gt;&amp;gt;       about=&amp;quot;urn:ISBN:0091808189&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;       typeof=&amp;quot;&lt;a href=&quot;http://example.org/book&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://example.org/book&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;       property=&amp;quot;&lt;a href=&quot;http://purl.org/dc/elements/1.1/title&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://purl.org/dc/elements/1.1/title&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;       &amp;gt;Canteen Cuisine&amp;lt;/span&amp;gt;'
&lt;br&gt;&amp;gt;&amp;gt;      is well worth getting since although it's quite advanced stuff, he
&lt;br&gt;&amp;gt;&amp;gt;      makes it pretty easy to follow. You might also like
&lt;br&gt;&amp;gt;&amp;gt;      &amp;lt;span
&lt;br&gt;&amp;gt;&amp;gt;       about=&amp;quot;urn:ISBN:1596913614&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;       typeof=&amp;quot;&lt;a href=&quot;http://example.org/book&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://example.org/book&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;       property=&amp;quot;&lt;a href=&quot;http://purl.org/dc/elements/1.1/description&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://purl.org/dc/elements/1.1/description&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;       &amp;gt;White's autobiography&amp;lt;/span&amp;gt;.
&lt;br&gt;&amp;gt;&amp;gt;    &amp;lt;/body&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;  &amp;lt;/html&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Mark
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Mark Birbeck, webBackplane
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26529662&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mark.birbeck@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://webBackplane.com/mark-birbeck&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://webBackplane.com/mark-birbeck&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; webBackplane is a trading name of Backplane Ltd. (company number
&lt;br&gt;&amp;gt;&amp;gt; 05972288, registered office: 2nd Floor, 69/85 Tabernacle Street,
&lt;br&gt;&amp;gt;&amp;gt; London, EC2A 4RR)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Proposal-for-%27URIs-everywhere%27-tp26521107p26529662.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26528773</id>
	<title>Re: Proposal for 'URIs everywhere'</title>
	<published>2009-11-26T04:30:45Z</published>
	<updated>2009-11-26T04:30:45Z</updated>
	<author>
		<name>Julian Reschke</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;here's a high-level comment without looking at the details.
&lt;br&gt;&lt;br&gt;I appreciate the attempt to make progress. As far as I can tell, the 
&lt;br&gt;change being proposed actually will not be backwards-compatible in all 
&lt;br&gt;cases (for instance, when changing from URIorSafeCURIE to URIorCURIE). 
&lt;br&gt;In which case you really should consider making a change that at least 
&lt;br&gt;avoids confusion and potential ambiguity, by making everything 
&lt;br&gt;URIorSafeCURIE. That would also align (as far as I recall) with the TAG 
&lt;br&gt;advice not to use CURIEs where they might be confused with URIs.
&lt;br&gt;&lt;br&gt;Best regards, Julian
&lt;br&gt;&lt;br&gt;&lt;br&gt;Mark Birbeck wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello all,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'd hoped to get the following proposal to the group at the beginning
&lt;br&gt;&amp;gt; of the week, but it wasn't possible.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Anyway, below you'll find a series of minor changes that I feel would
&lt;br&gt;&amp;gt; need to be made to various parts of the syntax document, in order to
&lt;br&gt;&amp;gt; support URIs and CURIEs in all RDFa-related attributes (except @src
&lt;br&gt;&amp;gt; and @href).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; To recap, whilst most of our attributes support URIs and CURIEs
&lt;br&gt;&amp;gt; already, @property, @rel and @rev only supported URIs. This means that
&lt;br&gt;&amp;gt; authors must declare prefix mappings for all predicates, even though
&lt;br&gt;&amp;gt; they are not required to use prefix mappings for subjects or objects.
&lt;br&gt;&amp;gt; We've agreed to try to address this, and I had an action item to come
&lt;br&gt;&amp;gt; up with some proposed text.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; APPROACH
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The first step in sorting this out, is to remove the separation where
&lt;br&gt;&amp;gt; in some places we allow a CURIE, and in others we allow a
&lt;br&gt;&amp;gt; URIorSafeCURIE.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Both situations will now use the same type, which I've called
&lt;br&gt;&amp;gt; 'URIorCURIE'. (This type did used to exist in previous drafts, but I
&lt;br&gt;&amp;gt; think that's ok. Of course, if anyone can spot a reason why we should
&lt;br&gt;&amp;gt; use a different name, then please mention it.)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; After making the data type consistent throughout, we then need to
&lt;br&gt;&amp;gt; clarify the processing rules.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; And finally, we need to add one or more examples of using a full URI
&lt;br&gt;&amp;gt; for a predicate.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; DATATYPE
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The datatype changes affect section 2.1, as follows:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 1. On @rel, @rev, @property, @datatype, and @typeof, replace 'CURIE'
&lt;br&gt;&amp;gt; with 'URIorCURIE'.
&lt;br&gt;&amp;gt; 2. On @about and @resource, replace 'URIorSafeCURIE' with 'URIorCURIE'.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Also, in section 5.4.4, the bullet-points listing the attributes
&lt;br&gt;&amp;gt; should change to this:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; * @about, @datatype, @property, @resource and @typeof support either a URI or
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; a CURIE.
&lt;br&gt;&amp;gt; &amp;nbsp; * @href and @src support only a URI.
&lt;br&gt;&amp;gt; &amp;nbsp; * @rel and @rev support XHTML link types, URIs and CURIEs.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; PROCESSING
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In section 5.4.2, after the three steps, but before the note, we should add:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; Note that this algorithm assumes that its input is a CURIE, but in practice it
&lt;br&gt;&amp;gt; &amp;nbsp; won't be possible to definitively establish this until step 2; if
&lt;br&gt;&amp;gt; there is no in-scope
&lt;br&gt;&amp;gt; &amp;nbsp; mapping that matches the prefix, then the algorithm should terminate, and the
&lt;br&gt;&amp;gt; &amp;nbsp; input regarded as a URI.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In section 5.4.3, the first point should be removed, and in the second
&lt;br&gt;&amp;gt; point, the sentence:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; In this case any value that is not surrounded by square brackets, as defined
&lt;br&gt;&amp;gt; &amp;nbsp; by 'safe_curie' in the section CURIE Syntax Definition, will be
&lt;br&gt;&amp;gt; processed as if
&lt;br&gt;&amp;gt; &amp;nbsp; it was a URI.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; should be changed to:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; In this case any value that is not a CURIE, as outlined in section 5.4.2, will
&lt;br&gt;&amp;gt; &amp;nbsp; be processed as a URI.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Note that I've left the prose about square brackets intact, because
&lt;br&gt;&amp;gt; there are probably use-cases where people want to say 'safe CURIE or
&lt;br&gt;&amp;gt; nothing'. (I.e., don't fall back to a URI if there is no prefix
&lt;br&gt;&amp;gt; mapping.)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In the sentence after the two (now one) sentences, we should change this:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; An example of an attribute that can contain CURIE and non-CURIE values is
&lt;br&gt;&amp;gt; &amp;nbsp; @about. As described, any CURIEs expressed in the attribute must follow the
&lt;br&gt;&amp;gt; &amp;nbsp; format of a [safe CURIE]. So to express a URI directly, an author
&lt;br&gt;&amp;gt; might do this:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; to this:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; An example of an attribute that can contain a URIorCURIE is @about. To
&lt;br&gt;&amp;gt; &amp;nbsp; express a URI directly, an author might do this:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; After the example, the next sentence/example combination can be
&lt;br&gt;&amp;gt; duplicated, to give us an extra example, like this:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; whilst to express a CURIE they could do this:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;div about=&amp;quot;dbr:Albert_Einstein&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; The author could also use a safe CURIE, as follows:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;div about=&amp;quot;[dbr:Albert_Einstein]&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In the next example, we just need to clarify that we're now only
&lt;br&gt;&amp;gt; referring to safe CURIEs; this:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; Since non-CURIE values MUST be ignored, ...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; becomes this:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; Since non-CURIE values MUST be ignored when they appear in safe CURIEs, ...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In section 5.4.4, after the bullet-points, the entire sentence reading:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; Note that unlike @about and @resource, @rel and @rev do not
&lt;br&gt;&amp;gt; differentiate their two
&lt;br&gt;&amp;gt; &amp;nbsp; types of data by using [safe CURIE]s.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; should be removed. The next sentence, which reads:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; Instead, any value that matches an entry in the list of link types
&lt;br&gt;&amp;gt; in the section
&lt;br&gt;&amp;gt; &amp;nbsp; The rel attribute, MUST be treated as if it was a URI within the
&lt;br&gt;&amp;gt; XHTML vocabulary,
&lt;br&gt;&amp;gt; &amp;nbsp; and all other values must be CURIEs.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; should be changed to:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; Any value that matches an entry in the list of link types in the
&lt;br&gt;&amp;gt; section The rel
&lt;br&gt;&amp;gt; &amp;nbsp; attribute, MUST be treated as if it was a URI within the XHTML vocabulary. All
&lt;br&gt;&amp;gt; &amp;nbsp; other values will be processed as URIorCURIEs.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The next paragraph and its associated example, beginning:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; Note that only values in the link type list have this special behaviour, ...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; can be deleted.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In the section 5.4.5, the example can have its square brackets removed.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In section 7, the sentence:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; Since it is difficult to distinguish between CURIEs and URIs, the CURIE
&lt;br&gt;&amp;gt; &amp;nbsp; syntax adds the notion of a [safe CURIE].
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; should be changed to:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; A URI that uses a scheme that is not an in-scope mapping cannot be
&lt;br&gt;&amp;gt; &amp;nbsp; confused with a CURIE. However, since there may be situations where
&lt;br&gt;&amp;gt; &amp;nbsp; authors would like to make it explicit that they are using a CURIE, the
&lt;br&gt;&amp;gt; &amp;nbsp; CURIE syntax adds the notion of a [safe CURIE].
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; EXAMPLES
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; At the end of section 2.2, we can add:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; When dealing with small amounts of mark-up, it is sometimes easier
&lt;br&gt;&amp;gt; to use full URIs,
&lt;br&gt;&amp;gt; &amp;nbsp; rather than CURIEs. The previous example can also be written as follows:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;head&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt;Books by Marco Pierre White&amp;lt;/title&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;body&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; I think White's book
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; '&amp;lt;span
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;about=&amp;quot;urn:ISBN:0091808189&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;typeof=&amp;quot;&lt;a href=&quot;http://example.org/book&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://example.org/book&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;property=&amp;quot;&lt;a href=&quot;http://purl.org/dc/elements/1.1/title&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://purl.org/dc/elements/1.1/title&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;gt;Canteen Cuisine&amp;lt;/span&amp;gt;'
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; is well worth getting since although it's quite advanced stuff, he
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; makes it pretty easy to follow. You might also like
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;about=&amp;quot;urn:ISBN:1596913614&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;typeof=&amp;quot;&lt;a href=&quot;http://example.org/book&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://example.org/book&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;property=&amp;quot;&lt;a href=&quot;http://purl.org/dc/elements/1.1/description&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://purl.org/dc/elements/1.1/description&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;gt;White's autobiography&amp;lt;/span&amp;gt;.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/body&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;lt;/html&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Mark
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Mark Birbeck, webBackplane
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26528773&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mark.birbeck@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://webBackplane.com/mark-birbeck&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://webBackplane.com/mark-birbeck&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; webBackplane is a trading name of Backplane Ltd. (company number
&lt;br&gt;&amp;gt; 05972288, registered office: 2nd Floor, 69/85 Tabernacle Street,
&lt;br&gt;&amp;gt; London, EC2A 4RR)
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Proposal-for-%27URIs-everywhere%27-tp26521107p26528773.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26528012</id>
	<title>Re: Default and empty CURIE prefixes in a non-XHTML host language</title>
	<published>2009-11-26T03:25:58Z</published>
	<updated>2009-11-26T03:25:58Z</updated>
	<author>
		<name>Toby Inkster-4</name>
	</author>
	<content type="html">On Thu, 2009-11-26 at 01:17 +0100, Christoph LANGE wrote:
&lt;br&gt;&amp;gt; I suppose both is possible, because the RDFa recommendation says that
&lt;br&gt;&amp;gt; for CURIE processing mappings for (1) and (2) have to be provided [by
&lt;br&gt;&amp;gt; way of the specification of the host language]. &amp;nbsp;I think I will do
&lt;br&gt;&amp;gt; that, but not particularly endorse its usage, as general-purpose RDFa
&lt;br&gt;&amp;gt; processors would not understand it.
&lt;br&gt;&lt;br&gt;Hmmm... this is a good point. I've tried to make my Perl RDFa parser as
&lt;br&gt;generic as possible, and allow XHTML-specific features (like treating
&lt;br&gt;&amp;lt;head&amp;gt; and &amp;lt;body&amp;gt; specially; understanding &amp;lt;base href&amp;gt;; etc) to be
&lt;br&gt;switched off. But I don't currently provide a way to change the default
&lt;br&gt;CURIE prefix from &amp;lt;&lt;a href=&quot;http://www.w3.org/1999/xhtml/vocab#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml/vocab#&lt;/a&gt;&amp;gt;.
&lt;br&gt;&lt;br&gt;Nor do I provide a way to define additional keywords. If I were to add
&lt;br&gt;such a feature, what do you think would be more useful - allow
&lt;br&gt;additional keywords in @rel/@rev; or allow them to be used in any
&lt;br&gt;attribute?
&lt;br&gt;&lt;br&gt;&amp;gt; Now I'm just wondering why this is done in such a strange way for RDFa
&lt;br&gt;&amp;gt; in XHTML. &amp;nbsp;Why are the bare words that _are_ allowed in @rel and @rev
&lt;br&gt;&amp;gt; attributes not specified as prefixless CURIEs (mapping to the
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.w3.org/1999/xhtml/vocab#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml/vocab#&lt;/a&gt;&amp;nbsp;namespace) but as special reserved
&lt;br&gt;&amp;gt; words? Is this for historical reasons? &amp;nbsp;
&lt;br&gt;&lt;br&gt;Indeed - it's for hysterical raisins. @rel and @rev are not new
&lt;br&gt;attributes defined by RDFa, but have existed since HTML 2.0 was
&lt;br&gt;published 14 years ago. These keywords have been &amp;quot;grandfathered in&amp;quot; to
&lt;br&gt;RDFa and require slightly different handling to real CURIEs - for
&lt;br&gt;instance, they should be handled case-insensitively, as previous
&lt;br&gt;versions of HTML and XHTML have defined @rel and @rev as
&lt;br&gt;case-insensitive.
&lt;br&gt;&lt;br&gt;&amp;gt; And why is there, in addition, a default
&lt;br&gt;&amp;gt; namespace &lt;a href=&quot;http://www.w3.org/1999/xhtml/vocab#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml/vocab#&lt;/a&gt;&amp;nbsp;for use with the empty
&lt;br&gt;&amp;gt; prefix? That makes @rel=&amp;quot;next&amp;quot; redundantly equal to @rel=&amp;quot;:next&amp;quot;.
&lt;br&gt;&lt;br&gt;It does seem a little redundant, yes, but there doesn't seem to be a
&lt;br&gt;better vocabulary to point the empty prefix at.
&lt;br&gt;&lt;br&gt;&amp;gt; There is additionally a separate CURIE spec at
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.w3.org/TR/curie/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/curie/&lt;/a&gt;.
&lt;br&gt;&amp;gt; Which one is more reliable, RDFa or CURIE? 
&lt;br&gt;&lt;br&gt;The CURIE spec is a spin-off of the RDFa spec, intended to allow CURIEs
&lt;br&gt;to be easily used by other specifications, like the XHTML role
&lt;br&gt;attribute. The XHTML+RDFa recommendation does not normativly reference
&lt;br&gt;it, so when there are differences between them, the behaviour described
&lt;br&gt;by the XHTML+RDFa recommendation is what RDFa processors should follow.
&lt;br&gt;&lt;br&gt;With the imminent closure of the XHTML2 working group it seems unlikely
&lt;br&gt;that the CURIE spec will ever become a W3C Recommendation, unless it's
&lt;br&gt;taken over by another working group.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Toby A Inkster
&lt;br&gt;&amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26528012&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mail@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://tobyinkster.co.uk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tobyinkster.co.uk&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Default-and-empty-CURIE-prefixes-in-a-non-XHTML-host-language-tp26522625p26528012.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26522625</id>
	<title>Default and empty CURIE prefixes in a non-XHTML host language</title>
	<published>2009-11-25T16:17:41Z</published>
	<updated>2009-11-25T16:17:41Z</updated>
	<author>
		<name>ChristophLange</name>
	</author>
	<content type="html">Dear RDFa developers,
&lt;br&gt;&lt;br&gt;&amp;nbsp; I am currently specifying the usage of RDFa inside a new host language
&lt;br&gt;(OMDoc, a semantic markup language for mathematical documents;
&lt;br&gt;&lt;a href=&quot;http://omdoc.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://omdoc.org&lt;/a&gt;). &amp;nbsp;I would like to simplify the explanations on CURIEs a bit,
&lt;br&gt;compared to the RDFa syntax recommendation. &amp;nbsp;In OMDoc as a host language, we'd
&lt;br&gt;like to
&lt;br&gt;1. allow for using the XML default namespace for CURIEs in the default
&lt;br&gt;&amp;nbsp; &amp;nbsp;namespace, such as :name.
&lt;br&gt;2. define our own vocabulary for CURIEs without prefix and colon.
&lt;br&gt;&lt;br&gt;I suppose both is possible, because the RDFa recommendation says that for
&lt;br&gt;CURIE processing mappings for (1) and (2) have to be provided [by way of the
&lt;br&gt;specification of the host language]. &amp;nbsp;I think I will do that, but not
&lt;br&gt;particularly endorse its usage, as general-purpose RDFa processors would not
&lt;br&gt;understand it.
&lt;br&gt;&lt;br&gt;Now I'm just wondering why this is done in such a strange way for RDFa in
&lt;br&gt;XHTML. &amp;nbsp;Why are the bare words that _are_ allowed in @rel and @rev
&lt;br&gt;attributes not specified as prefixless CURIEs (mapping to the
&lt;br&gt;&lt;a href=&quot;http://www.w3.org/1999/xhtml/vocab#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml/vocab#&lt;/a&gt;&amp;nbsp;namespace) but as special reserved words?
&lt;br&gt;Is this for historical reasons? &amp;nbsp;And why is there, in addition, a default
&lt;br&gt;namespace &lt;a href=&quot;http://www.w3.org/1999/xhtml/vocab#&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml/vocab#&lt;/a&gt;&amp;nbsp;for use with the empty prefix?
&lt;br&gt;That makes @rel=&amp;quot;next&amp;quot; redundantly equal to @rel=&amp;quot;:next&amp;quot;.
&lt;br&gt;&lt;br&gt;There is additionally a separate CURIE spec at &lt;a href=&quot;http://www.w3.org/TR/curie/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/curie/&lt;/a&gt;.
&lt;br&gt;Which one is more reliable, RDFa or CURIE?
&lt;br&gt;&lt;br&gt;Thanks in advance,
&lt;br&gt;&lt;br&gt;Christoph
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Christoph Lange, Jacobs Univ. Bremen, &lt;a href=&quot;http://kwarc.info/clange&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://kwarc.info/clange&lt;/a&gt;, Skype duke4701
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (205 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26522625/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Default-and-empty-CURIE-prefixes-in-a-non-XHTML-host-language-tp26522625p26522625.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26521107</id>
	<title>Proposal for 'URIs everywhere'</title>
	<published>2009-11-25T14:06:20Z</published>
	<updated>2009-11-25T14:06:20Z</updated>
	<author>
		<name>Mark Birbeck-4</name>
	</author>
	<content type="html">Hello all,
&lt;br&gt;&lt;br&gt;I'd hoped to get the following proposal to the group at the beginning
&lt;br&gt;of the week, but it wasn't possible.
&lt;br&gt;&lt;br&gt;Anyway, below you'll find a series of minor changes that I feel would
&lt;br&gt;need to be made to various parts of the syntax document, in order to
&lt;br&gt;support URIs and CURIEs in all RDFa-related attributes (except @src
&lt;br&gt;and @href).
&lt;br&gt;&lt;br&gt;To recap, whilst most of our attributes support URIs and CURIEs
&lt;br&gt;already, @property, @rel and @rev only supported URIs. This means that
&lt;br&gt;authors must declare prefix mappings for all predicates, even though
&lt;br&gt;they are not required to use prefix mappings for subjects or objects.
&lt;br&gt;We've agreed to try to address this, and I had an action item to come
&lt;br&gt;up with some proposed text.
&lt;br&gt;&lt;br&gt;&lt;br&gt;APPROACH
&lt;br&gt;&lt;br&gt;The first step in sorting this out, is to remove the separation where
&lt;br&gt;in some places we allow a CURIE, and in others we allow a
&lt;br&gt;URIorSafeCURIE.
&lt;br&gt;&lt;br&gt;Both situations will now use the same type, which I've called
&lt;br&gt;'URIorCURIE'. (This type did used to exist in previous drafts, but I
&lt;br&gt;think that's ok. Of course, if anyone can spot a reason why we should
&lt;br&gt;use a different name, then please mention it.)
&lt;br&gt;&lt;br&gt;After making the data type consistent throughout, we then need to
&lt;br&gt;clarify the processing rules.
&lt;br&gt;&lt;br&gt;And finally, we need to add one or more examples of using a full URI
&lt;br&gt;for a predicate.
&lt;br&gt;&lt;br&gt;&lt;br&gt;DATATYPE
&lt;br&gt;&lt;br&gt;The datatype changes affect section 2.1, as follows:
&lt;br&gt;&lt;br&gt;1. On @rel, @rev, @property, @datatype, and @typeof, replace 'CURIE'
&lt;br&gt;with 'URIorCURIE'.
&lt;br&gt;2. On @about and @resource, replace 'URIorSafeCURIE' with 'URIorCURIE'.
&lt;br&gt;&lt;br&gt;Also, in section 5.4.4, the bullet-points listing the attributes
&lt;br&gt;should change to this:
&lt;br&gt;&lt;br&gt;&amp;nbsp; * @about, @datatype, @property, @resource and @typeof support either a URI or
&lt;br&gt;&amp;nbsp; &amp;nbsp; a CURIE.
&lt;br&gt;&amp;nbsp; * @href and @src support only a URI.
&lt;br&gt;&amp;nbsp; * @rel and @rev support XHTML link types, URIs and CURIEs.
&lt;br&gt;&lt;br&gt;&lt;br&gt;PROCESSING
&lt;br&gt;&lt;br&gt;In section 5.4.2, after the three steps, but before the note, we should add:
&lt;br&gt;&lt;br&gt;&amp;nbsp; Note that this algorithm assumes that its input is a CURIE, but in practice it
&lt;br&gt;&amp;nbsp; won't be possible to definitively establish this until step 2; if
&lt;br&gt;there is no in-scope
&lt;br&gt;&amp;nbsp; mapping that matches the prefix, then the algorithm should terminate, and the
&lt;br&gt;&amp;nbsp; input regarded as a URI.
&lt;br&gt;&lt;br&gt;In section 5.4.3, the first point should be removed, and in the second
&lt;br&gt;point, the sentence:
&lt;br&gt;&lt;br&gt;&amp;nbsp; In this case any value that is not surrounded by square brackets, as defined
&lt;br&gt;&amp;nbsp; by 'safe_curie' in the section CURIE Syntax Definition, will be
&lt;br&gt;processed as if
&lt;br&gt;&amp;nbsp; it was a URI.
&lt;br&gt;&lt;br&gt;should be changed to:
&lt;br&gt;&lt;br&gt;&amp;nbsp; In this case any value that is not a CURIE, as outlined in section 5.4.2, will
&lt;br&gt;&amp;nbsp; be processed as a URI.
&lt;br&gt;&lt;br&gt;Note that I've left the prose about square brackets intact, because
&lt;br&gt;there are probably use-cases where people want to say 'safe CURIE or
&lt;br&gt;nothing'. (I.e., don't fall back to a URI if there is no prefix
&lt;br&gt;mapping.)
&lt;br&gt;&lt;br&gt;In the sentence after the two (now one) sentences, we should change this:
&lt;br&gt;&lt;br&gt;&amp;nbsp; An example of an attribute that can contain CURIE and non-CURIE values is
&lt;br&gt;&amp;nbsp; @about. As described, any CURIEs expressed in the attribute must follow the
&lt;br&gt;&amp;nbsp; format of a [safe CURIE]. So to express a URI directly, an author
&lt;br&gt;might do this:
&lt;br&gt;&lt;br&gt;to this:
&lt;br&gt;&lt;br&gt;&amp;nbsp; An example of an attribute that can contain a URIorCURIE is @about. To
&lt;br&gt;&amp;nbsp; express a URI directly, an author might do this:
&lt;br&gt;&lt;br&gt;After the example, the next sentence/example combination can be
&lt;br&gt;duplicated, to give us an extra example, like this:
&lt;br&gt;&lt;br&gt;&amp;nbsp; whilst to express a CURIE they could do this:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;div about=&amp;quot;dbr:Albert_Einstein&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; The author could also use a safe CURIE, as follows:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;div about=&amp;quot;[dbr:Albert_Einstein]&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&lt;br&gt;&lt;br&gt;In the next example, we just need to clarify that we're now only
&lt;br&gt;referring to safe CURIEs; this:
&lt;br&gt;&lt;br&gt;&amp;nbsp; Since non-CURIE values MUST be ignored, ...
&lt;br&gt;&lt;br&gt;becomes this:
&lt;br&gt;&lt;br&gt;&amp;nbsp; Since non-CURIE values MUST be ignored when they appear in safe CURIEs, ...
&lt;br&gt;&lt;br&gt;In section 5.4.4, after the bullet-points, the entire sentence reading:
&lt;br&gt;&lt;br&gt;&amp;nbsp; Note that unlike @about and @resource, @rel and @rev do not
&lt;br&gt;differentiate their two
&lt;br&gt;&amp;nbsp; types of data by using [safe CURIE]s.
&lt;br&gt;&lt;br&gt;should be removed. The next sentence, which reads:
&lt;br&gt;&lt;br&gt;&amp;nbsp; Instead, any value that matches an entry in the list of link types
&lt;br&gt;in the section
&lt;br&gt;&amp;nbsp; The rel attribute, MUST be treated as if it was a URI within the
&lt;br&gt;XHTML vocabulary,
&lt;br&gt;&amp;nbsp; and all other values must be CURIEs.
&lt;br&gt;&lt;br&gt;should be changed to:
&lt;br&gt;&lt;br&gt;&amp;nbsp; Any value that matches an entry in the list of link types in the
&lt;br&gt;section The rel
&lt;br&gt;&amp;nbsp; attribute, MUST be treated as if it was a URI within the XHTML vocabulary. All
&lt;br&gt;&amp;nbsp; other values will be processed as URIorCURIEs.
&lt;br&gt;&lt;br&gt;The next paragraph and its associated example, beginning:
&lt;br&gt;&lt;br&gt;&amp;nbsp; Note that only values in the link type list have this special behaviour, ...
&lt;br&gt;&lt;br&gt;can be deleted.
&lt;br&gt;&lt;br&gt;In the section 5.4.5, the example can have its square brackets removed.
&lt;br&gt;&lt;br&gt;In section 7, the sentence:
&lt;br&gt;&lt;br&gt;&amp;nbsp; Since it is difficult to distinguish between CURIEs and URIs, the CURIE
&lt;br&gt;&amp;nbsp; syntax adds the notion of a [safe CURIE].
&lt;br&gt;&lt;br&gt;should be changed to:
&lt;br&gt;&lt;br&gt;&amp;nbsp; A URI that uses a scheme that is not an in-scope mapping cannot be
&lt;br&gt;&amp;nbsp; confused with a CURIE. However, since there may be situations where
&lt;br&gt;&amp;nbsp; authors would like to make it explicit that they are using a CURIE, the
&lt;br&gt;&amp;nbsp; CURIE syntax adds the notion of a [safe CURIE].
&lt;br&gt;&lt;br&gt;&lt;br&gt;EXAMPLES
&lt;br&gt;&lt;br&gt;At the end of section 2.2, we can add:
&lt;br&gt;&lt;br&gt;&amp;nbsp; When dealing with small amounts of mark-up, it is sometimes easier
&lt;br&gt;to use full URIs,
&lt;br&gt;&amp;nbsp; rather than CURIEs. The previous example can also be written as follows:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;head&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt;Books by Marco Pierre White&amp;lt;/title&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;body&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; I think White's book
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; '&amp;lt;span
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;about=&amp;quot;urn:ISBN:0091808189&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;typeof=&amp;quot;&lt;a href=&quot;http://example.org/book&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://example.org/book&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;property=&amp;quot;&lt;a href=&quot;http://purl.org/dc/elements/1.1/title&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://purl.org/dc/elements/1.1/title&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;gt;Canteen Cuisine&amp;lt;/span&amp;gt;'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; is well worth getting since although it's quite advanced stuff, he
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; makes it pretty easy to follow. You might also like
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;about=&amp;quot;urn:ISBN:1596913614&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;typeof=&amp;quot;&lt;a href=&quot;http://example.org/book&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://example.org/book&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;property=&amp;quot;&lt;a href=&quot;http://purl.org/dc/elements/1.1/description&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://purl.org/dc/elements/1.1/description&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;gt;White's autobiography&amp;lt;/span&amp;gt;.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/body&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/html&amp;gt;
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Mark
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Mark Birbeck, webBackplane
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26521107&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mark.birbeck@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://webBackplane.com/mark-birbeck&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://webBackplane.com/mark-birbeck&lt;/a&gt;&lt;br&gt;&lt;br&gt;webBackplane is a trading name of Backplane Ltd. (company number
&lt;br&gt;05972288, registered office: 2nd Floor, 69/85 Tabernacle Street,
&lt;br&gt;London, EC2A 4RR)
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Proposal-for-%27URIs-everywhere%27-tp26521107p26521107.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26485466</id>
	<title>WCCM / APCOM2010 Mini-Symposium on Computational Methods in Image Processing and Analysis</title>
	<published>2009-11-23T12:42:01Z</published>
	<updated>2009-11-23T12:42:01Z</updated>
	<author>
		<name>João Manuel R. S. Tavares</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:ns0=&quot;urn:schemas:contacts&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;
&lt;title&gt;Image Processing and Visualization&lt;/title&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=PT link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;-------------------------------------------------------------------------------------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;(Apologies for cross-posting)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Mini-Symposium on Computational Methods in
Image Processing and Analysis&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;WCCM / APCOM2010 - 9th World Congress on
Computational Mechanics &amp;amp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;4th Asian Pacific Congress on Computational
Mechanics in 2010&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;19-23 July, 2010&lt;/span&gt;&lt;span lang=EN-GB&gt;, Sydney,
Australia&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;a href=&quot;http://wccm2010.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wccm2010.com&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;We would appreciate if you could distribute
this information by your colleagues and co-workers.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;-------------------------------------------------------------------------------------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Dear Colleague,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Within the WCCM / APCOM2010 - 9th World
Congress on Computational Mechanics and 4th Asian Pacific Congress on Computational
Mechanics in 2010 (&lt;a href=&quot;http://wccm2010.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wccm2010.com&lt;/a&gt;), to
be held in Sydney, Australia&lt;/span&gt;&lt;span lang=EN-US&gt;, on 19-23 July, 2010&lt;/span&gt;&lt;span lang=EN-GB&gt;, we are organizing the Mini-Symposium on &amp;#8220;Computational
Methods in Image Processing and Analysis - MS9031&amp;#8221;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Due to your research activities in the related
fields, we would like to invite you to submit an invited abstract to our
mini-symposium. Your contribution is mostly welcomed, and we would be honoured
if you could accept this invitation.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;TOPICS OF INTEREST (not restricted to):&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Image Processing and Analysis;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Image Restoration, Compression,
Segmentation and Description;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Object Modelling, Tracking, Matching,
Recognition and Reconstruction;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Visual Inspection;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- 3D Vision;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Medical Imaging;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Simulation and Animation;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Software Development for Image Processing
and Analysis;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- High Performance Computing in Image
Processing and Analysis;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Applications of Image Processing and Analysis.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;IMPORTANT DATES:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB style='background:yellow;mso-highlight:
yellow'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Deadline for one page abstracts: December
15, 2009;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Acceptance of abstracts: January 30, 2010;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Deadline for draft papers for review:
February 28, 2010;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Deadline for final papers: March 31, 2010.&lt;span style='background:yellow;mso-highlight:yellow'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB style='background:yellow;mso-highlight:
yellow'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;ABSTRACT SUBMISSION:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Please go to the abstract submission page (&lt;a href=&quot;http://wccm2010.com/authors.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wccm2010.com/authors.htm&lt;/a&gt;) and
select the Mini-Symposium on &amp;#8220;Computational Methods in Image Processing
and Analysis - MS9031&amp;#8221;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;With kind regards,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;João Manuel R. S. Tavares, University of
Porto, Portugal, &lt;/span&gt;&lt;span lang=EN-US&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26485466&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tavares@...&lt;/a&gt;&lt;/span&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Renato Natal Jorge, University of Porto,
Portugal, &lt;/span&gt;&lt;span lang=EN-US&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26485466&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rnatal@...&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Yongjie Zhang, Carnegie Mellon University,
USA, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26485466&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jessicaz@...&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Dinggang Shen, UNC-CH School of Medicine,
USA, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26485466&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dgshen@...&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;(Organizers of the Mini-Symposium on
&amp;#8220;Computational Methods in Image Processing and Analysis - MS9031&amp;#8221;)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-rules-f11724.html&quot; embed=&quot;fixTarget[11724]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-rules&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/WCCM---APCOM2010-Mini-Symposium-on-Computational-Methods-in-Image-Processing-and-Analysis-tp26485466p26485466.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26485467</id>
	<title>WCCM / APCOM2010 Mini-Symposium on Computational Methods in Image Processing and Analysis</title>
	<published>2009-11-23T12:42:00Z</published>
	<updated>2009-11-23T12:42:00Z</updated>
	<author>
		<name>João Manuel R. S. Tavares</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:ns0=&quot;urn:schemas:contacts&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;
&lt;title&gt;Image Processing and Visualization&lt;/title&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=PT link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;-------------------------------------------------------------------------------------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;(Apologies for cross-posting)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Mini-Symposium on Computational Methods in
Image Processing and Analysis&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;WCCM / APCOM2010 - 9th World Congress on
Computational Mechanics &amp;amp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;4th Asian Pacific Congress on Computational
Mechanics in 2010&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;19-23 July, 2010&lt;/span&gt;&lt;span lang=EN-GB&gt;, Sydney,
Australia&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;a href=&quot;http://wccm2010.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wccm2010.com&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;We would appreciate if you could distribute
this information by your colleagues and co-workers.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;-------------------------------------------------------------------------------------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Dear Colleague,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Within the WCCM / APCOM2010 - 9th World
Congress on Computational Mechanics and 4th Asian Pacific Congress on Computational
Mechanics in 2010 (&lt;a href=&quot;http://wccm2010.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wccm2010.com&lt;/a&gt;), to
be held in Sydney, Australia&lt;/span&gt;&lt;span lang=EN-US&gt;, on 19-23 July, 2010&lt;/span&gt;&lt;span lang=EN-GB&gt;, we are organizing the Mini-Symposium on &amp;#8220;Computational
Methods in Image Processing and Analysis - MS9031&amp;#8221;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Due to your research activities in the related
fields, we would like to invite you to submit an invited abstract to our
mini-symposium. Your contribution is mostly welcomed, and we would be honoured
if you could accept this invitation.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;TOPICS OF INTEREST (not restricted to):&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Image Processing and Analysis;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Image Restoration, Compression,
Segmentation and Description;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Object Modelling, Tracking, Matching,
Recognition and Reconstruction;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Visual Inspection;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- 3D Vision;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Medical Imaging;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Simulation and Animation;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Software Development for Image Processing
and Analysis;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- High Performance Computing in Image
Processing and Analysis;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Applications of Image Processing and Analysis.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;IMPORTANT DATES:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB style='background:yellow;mso-highlight:
yellow'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Deadline for one page abstracts: December
15, 2009;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Acceptance of abstracts: January 30, 2010;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Deadline for draft papers for review:
February 28, 2010;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Deadline for final papers: March 31, 2010.&lt;span style='background:yellow;mso-highlight:yellow'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB style='background:yellow;mso-highlight:
yellow'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;ABSTRACT SUBMISSION:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Please go to the abstract submission page (&lt;a href=&quot;http://wccm2010.com/authors.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wccm2010.com/authors.htm&lt;/a&gt;) and
select the Mini-Symposium on &amp;#8220;Computational Methods in Image Processing
and Analysis - MS9031&amp;#8221;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;With kind regards,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;João Manuel R. S. Tavares, University of
Porto, Portugal, &lt;/span&gt;&lt;span lang=EN-US&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26485467&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tavares@...&lt;/a&gt;&lt;/span&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Renato Natal Jorge, University of Porto,
Portugal, &lt;/span&gt;&lt;span lang=EN-US&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26485467&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rnatal@...&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Yongjie Zhang, Carnegie Mellon University,
USA, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26485467&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jessicaz@...&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Dinggang Shen, UNC-CH School of Medicine,
USA, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26485467&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dgshen@...&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;(Organizers of the Mini-Symposium on
&amp;#8220;Computational Methods in Image Processing and Analysis - MS9031&amp;#8221;)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-logic-f11722.html&quot; embed=&quot;fixTarget[11722]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-logic&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/WCCM---APCOM2010-Mini-Symposium-on-Computational-Methods-in-Image-Processing-and-Analysis-tp26485467p26485467.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26485493</id>
	<title>WCCM / APCOM2010 Mini-Symposium on Computational Methods in Image Processing and Analysis</title>
	<published>2009-11-23T12:42:00Z</published>
	<updated>2009-11-23T12:42:00Z</updated>
	<author>
		<name>João Manuel R. S. Tavares</name>
	</author>
	<content type="html">&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot; xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns:m=&quot;http://schemas.microsoft.com/office/2004/12/omml&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot; xmlns:ns0=&quot;urn:schemas:contacts&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 12 (filtered medium)&quot;&gt;
&lt;title&gt;Image Processing and Visualization&lt;/title&gt;

&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapedefaults v:ext=&quot;edit&quot; spidmax=&quot;1026&quot; /&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;o:shapelayout v:ext=&quot;edit&quot;&gt;
  &lt;o:idmap v:ext=&quot;edit&quot; data=&quot;1&quot; /&gt;
 &lt;/o:shapelayout&gt;&lt;/xml&gt;&lt;![endif]--&gt;
&lt;/head&gt;

&lt;body lang=PT link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;-------------------------------------------------------------------------------------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;(Apologies for cross-posting)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Mini-Symposium on Computational Methods in
Image Processing and Analysis&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;WCCM / APCOM2010 - 9th World Congress on
Computational Mechanics &amp;amp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;4th Asian Pacific Congress on Computational
Mechanics in 2010&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;19-23 July, 2010&lt;/span&gt;&lt;span lang=EN-GB&gt;, Sydney,
Australia&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;a href=&quot;http://wccm2010.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wccm2010.com&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;We would appreciate if you could distribute
this information by your colleagues and co-workers.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;-------------------------------------------------------------------------------------------------------------------------------&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Dear Colleague,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Within the WCCM / APCOM2010 - 9th World
Congress on Computational Mechanics and 4th Asian Pacific Congress on Computational
Mechanics in 2010 (&lt;a href=&quot;http://wccm2010.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wccm2010.com&lt;/a&gt;), to
be held in Sydney, Australia&lt;/span&gt;&lt;span lang=EN-US&gt;, on 19-23 July, 2010&lt;/span&gt;&lt;span lang=EN-GB&gt;, we are organizing the Mini-Symposium on &amp;#8220;Computational
Methods in Image Processing and Analysis - MS9031&amp;#8221;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Due to your research activities in the related
fields, we would like to invite you to submit an invited abstract to our
mini-symposium. Your contribution is mostly welcomed, and we would be honoured
if you could accept this invitation.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;TOPICS OF INTEREST (not restricted to):&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Image Processing and Analysis;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Image Restoration, Compression,
Segmentation and Description;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Object Modelling, Tracking, Matching,
Recognition and Reconstruction;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Visual Inspection;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- 3D Vision;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Medical Imaging;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Simulation and Animation;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Software Development for Image Processing
and Analysis;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- High Performance Computing in Image
Processing and Analysis;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;- Applications of Image Processing and Analysis.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;IMPORTANT DATES:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB style='background:yellow;mso-highlight:
yellow'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Deadline for one page abstracts: December
15, 2009;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Acceptance of abstracts: January 30, 2010;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Deadline for draft papers for review:
February 28, 2010;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Deadline for final papers: March 31, 2010.&lt;span style='background:yellow;mso-highlight:yellow'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB style='background:yellow;mso-highlight:
yellow'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;ABSTRACT SUBMISSION:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Please go to the abstract submission page (&lt;a href=&quot;http://wccm2010.com/authors.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wccm2010.com/authors.htm&lt;/a&gt;) and
select the Mini-Symposium on &amp;#8220;Computational Methods in Image Processing
and Analysis - MS9031&amp;#8221;.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;With kind regards,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-US&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;João Manuel R. S. Tavares, University of
Porto, Portugal, &lt;/span&gt;&lt;span lang=EN-US&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26485493&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tavares@...&lt;/a&gt;&lt;/span&gt;&lt;span lang=EN-GB&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Renato Natal Jorge, University of Porto,
Portugal, &lt;/span&gt;&lt;span lang=EN-US&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26485493&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rnatal@...&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Yongjie Zhang, Carnegie Mellon University,
USA, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26485493&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jessicaz@...&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;Dinggang Shen, UNC-CH School of Medicine,
USA, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26485493&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dgshen@...&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;span lang=EN-GB&gt;(Organizers of the Mini-Symposium on
&amp;#8220;Computational Methods in Image Processing and Analysis - MS9031&amp;#8221;)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-interest-f11721.html&quot; embed=&quot;fixTarget[11721]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-interest&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/WCCM---APCOM2010-Mini-Symposium-on-Computational-Methods-in-Image-Processing-and-Analysis-tp26485493p26485493.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26475624</id>
	<title>CFP Special Issue of the Journal of Web Semantics on Semantic Web  Dynamics</title>
	<published>2009-11-23T02:27:43Z</published>
	<updated>2009-11-23T02:27:43Z</updated>
	<author>
		<name>Pan, Dr Jeff Z.</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;meta content=&quot;MSHTML 6.00.6002.18124&quot; name=&quot;GENERATOR&quot;&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div&gt;&lt;font face=&quot;Arial&quot;&gt;&lt;span lang=&quot;EN-GB&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;&amp;nbsp;&lt;/font&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Apologies for the inevitable multiple receptions.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;========================================&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;PRELIMINARY CALL FOR PAPERS&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Journal of Web Semantics&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Special Issue on Semantic Web Dynamics&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;========================================&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Description&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;-----------&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Recent years have witnessed the arrival of more and more semantically annotated data and related ontologies in the Semantic Web. For example, the linked data initiative has been very successful in making datasets available online, with
 a total of about 5 billion triples all together so far. While existing semantic tools and reasoning engines are year after year getting better in dealing with time invariant domain of ontological knowledge, supporting rapidly changing information has not yet
 attracted sufficient attention.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;There are more and more heterogeneous and/or dynamic data types being created and which integration could lead to interesting applications and models (e.g. sensor data streams, geospatial information and imagery, financial transactions,
 news feeds, 3D models, engineering data, information for policy intelligence etc.). Current Stream Database Management Systems provide on the fly analysis of data streams, but they suffer several limitations: they cannot handle heterogeneous data streams originating
 from a variety of already deployed sensors; they cannot combine data streams with slowly evolving knowledge at query time; and they cannot perform reasoning tasks. And in the area of reasoning, while the problem of classical, time invariant domain of ontological
 knowledge has been extensively studied, the task of reasoning with rapidly changing information has been mostly neglected and constitutes a new challenge.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Furthermore, ontologies, just like any structure holding knowledge and information, need to be updated too: changes could be initiated because of a change in the world being modelled; or by a change in the users&amp;#8217; needs which would require
 a different conceptualization; or by the acquisition of knowledge previously unknown, unclassified or otherwise unavailable; or by the noticing of a design flaw in the original conceptualization. In all these cases, the representation of knowledge in the ontology
 should be modified so as to form a more accurate or adequate conceptualization of the domain.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;This general issue of Semantic Web Dynamics includes difficulties from both practical and theoretical points of view, raising a variety of research questions and development challenges, such as how to support the ontology and data publishers
 in maintaining up-to-date, adequate representations; how to detect the need for evolution and changes; how to facilitate the integration of new, dynamic sources in existing datasets and ontologies; how to validate and evaluate the impact of the changes on
 semantic information; how to handle changes triggered from multiple sources and collaborative updates; and how to keep track of (possibly&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;concurrent) versions of and ensure the delivery of up-to-date and valid knowledge.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Topics of Interest&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;------------------&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;For this special issue, we seek articles describing foundational and theoretical work as well as technological solutions to these challenges.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;More specifically, we expect submission on (but not restricted to) the following topics:&lt;/font&gt;&lt;/p&gt;
&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Foundational and formal aspects of Semantic Web dynamics&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Language extensions for Semantic Web dynamics&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Reasoning with dynamic data and ontologies&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Engineering dynamic data and ontologies&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Requirements and practical issues for Semantic Web dynamics&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Applications of dynamic data and ontologies&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Theory for stream reasoning&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Logic language for stream reasoning&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Scalability issues in stream reasoning&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Ontologies for dynamic environments&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Dynamic knowledge building, and (re-)use&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Ontology evolution and versioning&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Language extensions for evolution&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Belief revision for ontologies&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Change propagation in ontologies dynamic datasets and ontologies&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Inconsistency in evolving semantic information&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Incremental reasoning&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Case studies and applications of ontology and knowledge evolution&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Tools to support dynamic data and ontologies&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Important Dates&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;---------------&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;31 May 2010: Submission deadline&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;31 August 2010: First-round reviews complete&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;31 October 2010: Revised papers submitted&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;23 December 2010: Final acceptance decisions&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Method of Submission&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;--------------------&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Only electronic submissions will be considered. The precise method will be announced later. Any question can be addressed to the guest editors.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Guest Editors&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;-------------&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Grigoris Antoniou (FORTH, Greece)&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Mathieu d&amp;#8217;Aquin (The Open University, United Kingdom) &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Jeff Z. Pan (University of Aberdeen, United Kingdom)&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;br&gt;
&lt;font face=&quot;Arial&quot; color=&quot;Maroon&quot; size=&quot;2&quot;&gt;&lt;br&gt;
The University of Aberdeen is a charity registered in Scotland, No SC013683.&lt;br&gt;
&lt;/font&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-rules-f11724.html&quot; embed=&quot;fixTarget[11724]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-rules&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CFP-Special-Issue-of-the-Journal-of-Web-Semantics-on-Semantic-Web--Dynamics-tp26475624p26475624.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26475557</id>
	<title>CFP Special Issue of the Journal of Web Semantics on Semantic Web  Dynamics</title>
	<published>2009-11-23T02:23:17Z</published>
	<updated>2009-11-23T02:23:17Z</updated>
	<author>
		<name>Pan, Dr Jeff Z.</name>
	</author>
	<content type="html">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
&lt;meta content=&quot;MSHTML 6.00.6002.18124&quot; name=&quot;GENERATOR&quot;&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div&gt;&lt;font face=&quot;Arial&quot;&gt;&lt;span lang=&quot;EN-GB&quot;&gt;&lt;font face=&quot;Times New Roman&quot;&gt;&amp;nbsp;&lt;/font&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Apologies for the inevitable multiple receptions.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;========================================&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;PRELIMINARY CALL FOR PAPERS&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Journal of Web Semantics&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Special Issue on Semantic Web Dynamics&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;========================================&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Description&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;-----------&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Recent years have witnessed the arrival of more and more semantically annotated data and related ontologies in the Semantic Web. For example, the linked data initiative has been very successful in making datasets available online, with
 a total of about 5 billion triples all together so far. While existing semantic tools and reasoning engines are year after year getting better in dealing with time invariant domain of ontological knowledge, supporting rapidly changing information has not yet
 attracted sufficient attention.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;There are more and more heterogeneous and/or dynamic data types being created and which integration could lead to interesting applications and models (e.g. sensor data streams, geospatial information and imagery, financial transactions,
 news feeds, 3D models, engineering data, information for policy intelligence etc.). Current Stream Database Management Systems provide on the fly analysis of data streams, but they suffer several limitations: they cannot handle heterogeneous data streams originating
 from a variety of already deployed sensors; they cannot combine data streams with slowly evolving knowledge at query time; and they cannot perform reasoning tasks. And in the area of reasoning, while the problem of classical, time invariant domain of ontological
 knowledge has been extensively studied, the task of reasoning with rapidly changing information has been mostly neglected and constitutes a new challenge.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Furthermore, ontologies, just like any structure holding knowledge and information, need to be updated too: changes could be initiated because of a change in the world being modelled; or by a change in the users&amp;#8217; needs which would require
 a different conceptualization; or by the acquisition of knowledge previously unknown, unclassified or otherwise unavailable; or by the noticing of a design flaw in the original conceptualization. In all these cases, the representation of knowledge in the ontology
 should be modified so as to form a more accurate or adequate conceptualization of the domain.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;This general issue of Semantic Web Dynamics includes difficulties from both practical and theoretical points of view, raising a variety of research questions and development challenges, such as how to support the ontology and data publishers
 in maintaining up-to-date, adequate representations; how to detect the need for evolution and changes; how to facilitate the integration of new, dynamic sources in existing datasets and ontologies; how to validate and evaluate the impact of the changes on
 semantic information; how to handle changes triggered from multiple sources and collaborative updates; and how to keep track of (possibly&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;concurrent) versions of and ensure the delivery of up-to-date and valid knowledge.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Topics of Interest&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;------------------&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;For this special issue, we seek articles describing foundational and theoretical work as well as technological solutions to these challenges.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;More specifically, we expect submission on (but not restricted to) the following topics:&lt;/font&gt;&lt;/p&gt;
&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Foundational and formal aspects of Semantic Web dynamics&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Language extensions for Semantic Web dynamics&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Reasoning with dynamic data and ontologies&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Engineering dynamic data and ontologies&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Requirements and practical issues for Semantic Web dynamics&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Applications of dynamic data and ontologies&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Theory for stream reasoning&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Logic language for stream reasoning&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Scalability issues in stream reasoning&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Ontologies for dynamic environments&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Dynamic knowledge building, and (re-)use&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Ontology evolution and versioning&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Language extensions for evolution&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Belief revision for ontologies&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Change propagation in ontologies dynamic datasets and ontologies&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Inconsistency in evolving semantic information&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Incremental reasoning&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Case studies and applications of ontology and knowledge evolution&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font size=&quot;3&quot;&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&amp;#8226;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size=&quot;3&quot;&gt;&lt;font face=&quot;Arial&quot;&gt; Tools to support dynamic data and ontologies&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Important Dates&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;---------------&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;31 May 2010: Submission deadline&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;31 August 2010: First-round reviews complete&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;31 October 2010: Revised papers submitted&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;23 December 2010: Final acceptance decisions&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Method of Submission&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;--------------------&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Only electronic submissions will be considered. The precise method will be announced later. Any question can be addressed to the guest editors.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Guest Editors&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;-------------&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Grigoris Antoniou (FORTH, Greece)&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Mathieu d&amp;#8217;Aquin (The Open University, United Kingdom) &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;Jeff Z. Pan (University of Aberdeen, United Kingdom)&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face=&quot;Arial&quot;&gt;&lt;/font&gt;&lt;/p&gt;
&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;br&gt;
&lt;font face=&quot;Arial&quot; color=&quot;Maroon&quot; size=&quot;2&quot;&gt;&lt;br&gt;
The University of Aberdeen is a charity registered in Scotland, No SC013683.&lt;br&gt;
&lt;/font&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-logic-f11722.html&quot; embed=&quot;fixTarget[11722]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-logic&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CFP-Special-Issue-of-the-Journal-of-Web-Semantics-on-Semantic-Web--Dynamics-tp26475557p26475557.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26461294</id>
	<title>ICML 2010 Call for Tutorial Proposals</title>
	<published>2009-11-21T15:00:08Z</published>
	<updated>2009-11-21T15:00:08Z</updated>
	<author>
		<name>juffi</name>
	</author>
	<content type="html">ICML-2010 Call for Tutorials
&lt;br&gt;&lt;br&gt;The ICML-2010 Organizing Committee invites proposals for tutorials to
&lt;br&gt;be held at the 27th International Conference on Machine Learning, on
&lt;br&gt;Monday, June 21, 2010 in Haifa, Israel (&lt;a href=&quot;http://www.icml2010.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.icml2010.org&lt;/a&gt;).
&lt;br&gt;&lt;br&gt;We seek proposals for tutorials on core techniques and areas of
&lt;br&gt;knowledge that enjoy broad interest within the machine learning
&lt;br&gt;community. We are interested in tutorials on established or emerging
&lt;br&gt;research topics within the field itself, but we also welcome tutorials
&lt;br&gt;from related research fields or application areas provided that they
&lt;br&gt;are of sufficient interest to the machine learning community. The
&lt;br&gt;ideal tutorial should attract a wide audience. It should be broad
&lt;br&gt;enough to provide a gentle introduction to the chosen research area,
&lt;br&gt;but it should also cover the most important contributions in depth.
&lt;br&gt;Proposals that exclusively focus on the presenters' own work or
&lt;br&gt;commercial presentations are not eligible.
&lt;br&gt;&lt;br&gt;Guidelines for preparing a proposal can be found at:
&lt;br&gt;&lt;a href=&quot;http://www.icml2010.org/tutorials.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.icml2010.org/tutorials.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Tutorial proposals should be submitted via email in PDF format to
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26461294&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tutorials@...&lt;/a&gt; . Soon after submission, proposers should
&lt;br&gt;expect to receive a verification of receipt.
&lt;br&gt;&lt;br&gt;The timeline is as follows:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;* Tutorial proposals due: February 13, 2010
&lt;br&gt;&amp;nbsp; &amp;nbsp;* Acceptance notification: February 28, 2010
&lt;br&gt;&amp;nbsp; &amp;nbsp;* Website due: March 15, 2010
&lt;br&gt;&amp;nbsp; &amp;nbsp;* Tutorial material due: May 30, 2010
&lt;br&gt;&amp;nbsp; &amp;nbsp;* Tutorials date: June 21, 2010
&lt;br&gt;&lt;br&gt;Contact: Ben Taskar
&lt;br&gt;Tutorials Chair ICML 2010
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-logic-f11722.html&quot; embed=&quot;fixTarget[11722]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-logic&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ICML-2010-Call-for-Tutorial-Proposals-tp26461294p26461294.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26461293</id>
	<title>ICML/COLT 2010 Call for Workshop Proposals</title>
	<published>2009-11-21T15:00:06Z</published>
	<updated>2009-11-21T15:00:06Z</updated>
	<author>
		<name>juffi</name>
	</author>
	<content type="html">CALL FOR ICML/COLT 2010 WORKSHOP PROPOSALS
&lt;br&gt;&lt;br&gt;This is a call for workshop proposals for ICML &amp; COLT 2010 in Haifa,
&lt;br&gt;Israel (&lt;a href=&quot;http://www.icml2010.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.icml2010.org&lt;/a&gt;&amp;nbsp;and &lt;a href=&quot;http://www.colt2010.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.colt2010.org&lt;/a&gt;). 
&lt;br&gt;The workshop will take place on June 25, in between ICML June 21-24
&lt;br&gt;and COLT June 27-29. This two day slot presents an excellent
&lt;br&gt;opportunity for you to organize a workshop on the machine
&lt;br&gt;learning-related topic of your choice.
&lt;br&gt;&lt;br&gt;Workshop day: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; June 25, 2010, Haifa, Israel
&lt;br&gt;Proposal deadline: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Monday, January 18, 2010
&lt;br&gt;Acceptance notification: &amp;nbsp;Monday, February 8, 2010
&lt;br&gt;&lt;br&gt;Workshops are a great format for active research on new topics. The
&lt;br&gt;ideal workshop covers a compelling subject of current or upcoming
&lt;br&gt;research, and includes an impressive set of speakers with diverse
&lt;br&gt;backgrounds to discuss the subject. Discussion via panels,
&lt;br&gt;identification of open problems, or a &amp;quot;discussant&amp;quot; are all great
&lt;br&gt;components to include.
&lt;br&gt;&lt;br&gt;Organization
&lt;br&gt;&lt;br&gt;The format, style, and content of accepted workshops is under the
&lt;br&gt;control of the workshop organizers and largely autonomous from the main
&lt;br&gt;conferences. The workshops can be up to seven hours long, split into
&lt;br&gt;morning and afternoon sessions. Workshop organizers are expected to
&lt;br&gt;manage the workshop content, specify the workshop format, be present to
&lt;br&gt;moderate the discussion and panels, invite experts in the domain, and
&lt;br&gt;maintain a website for the workshop. Workshop registration will be
&lt;br&gt;handled centrally by the main conference with a single uniform
&lt;br&gt;registration fee and with registrants allowed to attend workshops other
&lt;br&gt;than the one they register for.
&lt;br&gt;&lt;br&gt;Submission Instructions
&lt;br&gt;&lt;br&gt;Proposals should specify clearly all of the following:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; * Workshop title (what is it called?)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Topic (what is it about?)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Motivation (why a workshop on this topic?)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Impact and expected outcomes (what will having the workshop do?)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Potential list of invited speakers (who might come?)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * List of related publications (where can we learn more?)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Main workshop organizer (who is making it happen?)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Other organizers (who else is making it happen?)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Bio for each organizer (who are you?)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Workshop URL (where will interested parties get more information?)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Relevant conferences (which of ICML and COLT would it appeal to?)
&lt;br&gt;&lt;br&gt;This information should be sent by email (in plain text or pdf format)
&lt;br&gt;to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26461293&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;workshops@...&lt;/a&gt; by January 18.
&lt;br&gt;&lt;br&gt;John Langford
&lt;br&gt;Workshop Chair ICML 2010
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-logic-f11722.html&quot; embed=&quot;fixTarget[11722]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-logic&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ICML-COLT-2010-Call-for-Workshop-Proposals-tp26461293p26461293.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26453152</id>
	<title>Last CFP Agent-Directed Simulation, April 12-14, 2010, Orlando,  Florida</title>
	<published>2009-11-20T17:46:25Z</published>
	<updated>2009-11-20T17:46:25Z</updated>
	<author>
		<name>Yu Zhang-4</name>
	</author>
	<content type="html">===============================================================
&lt;br&gt;CALL FOR PAPERS and POSTERS
&lt;br&gt;Agent-Directed Simulation Symposium (ADS'10)
&lt;br&gt;Orlando, Florida, USA
&lt;br&gt;April 12-14, 2010
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.site.uottawa.ca/~oren/conf-org/ADS_2010/ADS-CFP.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.site.uottawa.ca/~oren/conf-org/ADS_2010/ADS-CFP.htm&lt;/a&gt;&lt;br&gt;Manuscript Submission: November 30, 2009.
&lt;br&gt;&lt;br&gt;Sponsored by The Society for Modeling and Simulation
&lt;br&gt;International (SCS) in collaboration with ACM/SIGSIM.
&lt;br&gt;==============================================================
&lt;br&gt;&lt;br&gt;As part of the 2010 Spring Simulation Multi-conference (SpringSim'10) 
&lt;br&gt;&lt;a href=&quot;http://www.scs.org/confernc/springsim/springsim10/springsim10.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.scs.org/confernc/springsim/springsim10/springsim10.htm&lt;/a&gt;&lt;br&gt;&lt;br&gt;the 2010 Agent-Directed Simulation Symposium is a premier platform to
&lt;br&gt;explore all three aspects of the synergy of simulation and agent
&lt;br&gt;technologies. Hence, it has a special place within simulation and
&lt;br&gt;agent conferences, including agent-based (social) simulation
&lt;br&gt;conferences. Therefore the ADS symposium fills a gap in the agent
&lt;br&gt;community as well as the simulation community.
&lt;br&gt;&lt;br&gt;The purpose of the ADS symposium is to facilitate dissemination of the
&lt;br&gt;most recent advancements in the theory, methodology, application, and
&lt;br&gt;toolkits of agent-directed simulation. Agent-directed simulation is
&lt;br&gt;comprehensive in the integration of agent and simulation technologies,
&lt;br&gt;by including models that use agents to develop domain-specific
&lt;br&gt;simulations, i.e., agent simulation (this is often referred to as
&lt;br&gt;agent-based simulation -when other two important aspects are not
&lt;br&gt;considered), and by also including the use of agent technology to
&lt;br&gt;develop simulation techniques and toolkits that are subsequently
&lt;br&gt;applied, either with or without agents.
&lt;br&gt;&lt;br&gt;Hence, agent-directed simulation consists of three distinct, yet
&lt;br&gt;related areas that can be grouped under two categories as follows:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;1. Simulation for Agents (agent simulation): simulation of agent
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; systems in engineering, human and social dynamics, military
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; applications etc.
&lt;br&gt;&amp;nbsp; &amp;nbsp;2. Agents for Simulation (which has two aspects): agent-supported
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; simulation deals with the use of agents as a support facility to
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; enable computer assistance in problem solving or enhancing
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; cognitive capabilities; and agent-based simulation that focuses
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; on the use of agents for the generation of model behavior in a
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; simulation study.
&lt;br&gt;&lt;br&gt;Through the theme of agent-directed simulation, the symposium will
&lt;br&gt;bring together agent technologies, tools, toolkits, platforms,
&lt;br&gt;languages, methodologies, and applications in a pragmatic manner. In
&lt;br&gt;this symposium, established researchers, educators, and students are
&lt;br&gt;encouraged to come together and discuss the benefits of agent
&lt;br&gt;technology in their use and application for simulation. It is a way
&lt;br&gt;for people to discuss why and how they have used agent technology in
&lt;br&gt;their simulations, and describe the benefit of having done so.
&lt;br&gt;&lt;br&gt;&lt;br&gt;The theme of ADS'10 is based on the observation of the following
&lt;br&gt;premises.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;* The growth of new advanced distributed computing standards along
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;with the rapid rise of e-commerce are providing a new context that
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;acts as a critical driver for the development of next generation
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;systems. These standards revolve around service-oriented
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;technologies, pervasive computing, web-services, Grid, autonomic
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;computing, ambient intelligence etc. The supporting role that
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;intelligent agents play in the development of such systems is
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;becoming pervasive, and simulation plays a critical role in the
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;analysis and design of such systems.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;* The use of emergent agent technologies at the organization,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;interaction (e.g., coordination, negotiation, communication) and
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;agent levels (i.e. reasoning, autonomy) are expected to advance
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;the state of the art in various application technologies is
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;difficult. Using agent-supported simulation techniques for
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;testing complex agent systems is up and coming field.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;* To facilitate bridging the gap between research and application,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;there is a need for tools, agent programming languages, and
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;methodologies to analyze, design, and implement complex,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;non-trivial agent-based simulations. Existing agent-based
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;simulation tools are still not mature enough to enable developing
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;agents with varying degrees cognitive and reasoning capabilities.
&lt;br&gt;&lt;br&gt;ADS'10 will provide a leading forum to bring together researchers and
&lt;br&gt;practitioners from diverse simulation societies within computer science,
&lt;br&gt;social sciences, engineering, business, education, human factors, and
&lt;br&gt;systems engineering. The involvement of various agent-directed
&lt;br&gt;simulation groups will enable the cross-fertilization of ideas and
&lt;br&gt;development of new perspectives by fostering novel advanced solutions,
&lt;br&gt;as well as enabling technologies for agent-directed simulation
&lt;br&gt;&lt;br&gt;AUTHOR GUIDE
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;* Technical papers provide a longer format for presenting experience
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;reports, research results, or descriptions of &amp;nbsp;&amp;quot;work in progress&amp;quot;.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;They are limited to 8 pages.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;* Short position papers are targeted at raising a question or framing
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;an issue for discussion during the symposium. Position papers are
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;limited to 3 pages.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;* Poster presentations present an opportunity to present work in
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;progress and receive feedback from colleagues. A one page write-up
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;of the poster presentations will be included in the proceedings.
&lt;br&gt;&lt;br&gt;(For all, required font sizes are: min 10 pt for text and min 9 pt for
&lt;br&gt;figures or references).
&lt;br&gt;&lt;br&gt;Papers should be submitted electronically to
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.softconf.com/scs/ADS10/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.softconf.com/scs/ADS10/&lt;/a&gt;&amp;nbsp;.
&lt;br&gt;All papers will be subject to a peer-reviewing process by three program
&lt;br&gt;committee members. (Please see the key dates listed below.)
&lt;br&gt;&lt;br&gt;&lt;br&gt;FINAL PAPER SUBMISSION GUIDELINES
&lt;br&gt;&lt;br&gt;All prospective authors, whose papers are accepted for inclusion in the
&lt;br&gt;program, will be invited to submit their position or technical &amp;nbsp;papers
&lt;br&gt;to ADS'10. Accepted and registered papers will be published in the
&lt;br&gt;conference proceedings by the SCS. In addition, the committee will
&lt;br&gt;select a set of best papers. Authors of these papers will be encouraged to 
&lt;br&gt;submit appropriately expanded versions of these papers for journal
&lt;br&gt;publication.
&lt;br&gt;&lt;br&gt;&lt;br&gt;KEY DATES
&lt;br&gt;&amp;nbsp; &amp;nbsp;Nov 30, 2009: Manuscript submission
&lt;br&gt;&amp;nbsp; &amp;nbsp;Dec 30, 2009: Notification of acceptance
&lt;br&gt;&amp;nbsp; &amp;nbsp;Jan 20, 2010: Full Camera-ready papers
&lt;br&gt;&amp;nbsp; &amp;nbsp;Apr 12-14, 2010: ADS'10 Symposium
&lt;br&gt;&lt;br&gt;&lt;br&gt;General Co-Chair
&lt;br&gt;&amp;nbsp; &amp;nbsp;Levent Yilmaz, Auburn University
&lt;br&gt;&amp;nbsp; &amp;nbsp;Tuncer Ören, University of Ottawa
&lt;br&gt;Program Co-Chair
&lt;br&gt;&amp;nbsp; &amp;nbsp;Gregory Madey, University of Notre Dame
&lt;br&gt;&amp;nbsp; &amp;nbsp;Maarten Sierhuis, Carnegie Mellon University, NASA Ames Research Center
&lt;br&gt;&amp;nbsp; &amp;nbsp;Yu Zhang, Trinity University&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-interest-f11721.html&quot; embed=&quot;fixTarget[11721]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-interest&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Last-CFP-Agent-Directed-Simulation%2C-April-12-14%2C-2010%2C-Orlando%2C--Florida-tp26453152p26453152.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26442160</id>
	<title>Filling the Gap between Semantic Web and Model Driven Engineering:  The TwoUse Toolkit</title>
	<published>2009-11-20T03:54:50Z</published>
	<updated>2009-11-20T03:54:50Z</updated>
	<author>
		<name>Fernando Silva Parreiras-2</name>
	</author>
	<content type="html">&lt;a href=&quot;http://west.uni-koblenz.de/twouse&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://west.uni-koblenz.de/twouse&lt;/a&gt;&lt;br&gt;&lt;br&gt;TwoUse Toolkit is an implementation of current OMG and W3C standards for developing ontology-based
&lt;br&gt;software models and model-based OWL2 ontologies.
&lt;br&gt;&lt;br&gt;&lt;br&gt;*For Model Driven Developers*
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Describe your UML Classes using OWL2 class descriptions.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Semantically search for classes, properties and instances in your UML model.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Model variability using OWL2 classes
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Extent software design patterns with OWL2 class descriptions
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Transform your graphical models to OWL2 functional syntax
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Make sense of your modeling by inference explanations
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Browse classes, subclasses, properties and individuals using the Class Hierarchy Viewer and
&lt;br&gt;the Entity Browser.
&lt;br&gt;&lt;br&gt;&lt;br&gt;*For OWL Ontology Engineers*
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Graphically model OWL2 ontologies and OWL2 safe rules using OMG UML Profile for OWL and UML
&lt;br&gt;Profile for SWRL.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Graphically model OWL2 ontologies and OWL2 Safe Rules using the OWL2 Graphical Editor.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Graphically model and store ontology design patterns as templates.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Transform your graphical models to OWL2 functional syntax
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Write and safe SPARQL queries using the SPARQL Editor with syntax highlight.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Specify and safe OWL2 ontologies using the OWL2 functional syntax with syntax highlight.
&lt;br&gt;&lt;br&gt;&lt;br&gt;And coming soon:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Validate UML Class Diagrams
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Validate BPMN model refinements
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Design Domain Specific Languages
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Extent your metamodels with OWL2 class descriptions
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Specify ontology APIs using the Agogo Editor.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Specify ontology data translations using the MBOTL Editor.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Write queries using:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;o the SAIQL plug-in
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;o SPARQL-DL Functional Syntax
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Try it today*
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Get Eclipse Classic on &lt;a href=&quot;http://www.eclipse.org/downloads/packages/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.eclipse.org/downloads/packages/&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Install TwoUse Toolkit from Update Site on
&lt;br&gt;&lt;a href=&quot;http://twouse.googlecode.com/svn/trunk/de.uniko.isweb.updatesite/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://twouse.googlecode.com/svn/trunk/de.uniko.isweb.updatesite/&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Install the TopCased UML Editor from Update Site on
&lt;br&gt;&lt;a href=&quot;http://topcased-mm.gforge.enseeiht.fr/release/update-site3.5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://topcased-mm.gforge.enseeiht.fr/release/update-site3.5/&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* Try the installed examples
&lt;br&gt;&lt;br&gt;&lt;br&gt;*Examples, Documentation and More Information*
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://west.uni-koblenz.de/twouse&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://west.uni-koblenz.de/twouse&lt;/a&gt;&lt;br&gt;&lt;br&gt;If you are interest in testing some of the coming soon functionalities, please contact us.
&lt;br&gt;&lt;br&gt;Fernando Silva Parreiras
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26442160&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;parreiras@...&lt;/a&gt;
&lt;br&gt;SIG Software Web
&lt;br&gt;Institute for Web Science Technologies
&lt;br&gt;University of Koblenz-Landau
&lt;br&gt;Universitaetstrasse 1, B114
&lt;br&gt;56070 Koblenz
&lt;br&gt;+49 (0)261 287 2786
&lt;br&gt;&lt;a href=&quot;http://west.uni-koblenz.de&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://west.uni-koblenz.de&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;*Related Publications*
&lt;br&gt;&lt;br&gt;2009
&lt;br&gt;&lt;br&gt;Walter, Tobias; Ebert, Jürgen (2009): Combining DSLs and Ontologies using Metamodel Integration. In:
&lt;br&gt;Domain-Specific Languages. Springer. Bd. 5658. S. 148-169.
&lt;br&gt;&lt;br&gt;Silva Parreiras, Fernando; Walter, Tobias; Staab, Steffen; Saathoff, Carsten; Franz, Thomas (2009):
&lt;br&gt;APIs agogo: Automatic Generation of Ontology APIs. In: Poster &amp; Demo Session, ESWC 2009.
&lt;br&gt;&lt;br&gt;Silva Parreiras, Fernando; Walter, Tobias; Staab, Steffen; Saathoff, Carsten; Franz, Thomas (2009):
&lt;br&gt;APIs agogo: Automatic Generation of Ontology APIs. In: Proceedings of the 3rd IEEE International
&lt;br&gt;Conference on Semantic Computing (ICSC 2009), September 14-16, 2009, Santa Clara, California, USA.
&lt;br&gt;IEEE Computer Society.
&lt;br&gt;&lt;br&gt;Ren, Yuan; Gröner, Gerd; Lemcke, Jens; Rahmani, Tirdad; Friesen, Andreas; Zhao, Yuting; Pan, Jeff
&lt;br&gt;Z.; Staab, Steffen (2009): Validating Process Refinement with Ontologies. In: Poster &amp; Demo Session
&lt;br&gt;ESWC 2009.
&lt;br&gt;&lt;br&gt;Ren, Yuan; Gröner, Gerd; Lemcke, Jens; Rahmani, Tirdad; Friesen, Andreas; Zhao, Yuting; Pan, Jeff
&lt;br&gt;Z.; Staab, Steffen (2009): Validating Process Refinement with Ontologies. In: Int. Workshop on
&lt;br&gt;Description Logics (DL).
&lt;br&gt;&lt;br&gt;Walter, Tobias; Silva Parreiras, Fernando; Staab, Steffen (2009): OntoDSL: An Ontology-Based
&lt;br&gt;Framework for Domain-Specific Languages. In: ACM/IEEE 12th International Conference on Model Driven
&lt;br&gt;Engineering Languages and Systems, 12th International Conference, MODELS 2009. Springer. Bd. 5795.
&lt;br&gt;S. 408-422.
&lt;br&gt;&lt;br&gt;Silva Parreiras, Fernando; Pan, Jeff. Z.; Assmann, Uwe (2009): Second Workshop on Transforming and
&lt;br&gt;Weaving Ontologies and Model Driven Engineering (TWOMDE 2009) at MoDELS 2009, October 4th, Denver,
&lt;br&gt;Colorado, USA. In: TWOMDE.
&lt;br&gt;&lt;br&gt;Silva Parreiras, Fernando; Pan, Jeff. Z.; Assmann, Uwe; Wende, Christian (2009): Model-Driven
&lt;br&gt;Software Development with Ontologies. In: Tutorial at ACM/IEEE 12th International Conference on
&lt;br&gt;Model Driven Engineering Languages and Systems (MoDELS 2009, October 4-9, 2009, Denver, Colorado, USA..
&lt;br&gt;&lt;br&gt;Gröner, Gerd; Staab, Steffen (2009): Modeling and Query Pattern for Process Retrieval in OWL. In:
&lt;br&gt;Poster &amp; Demo Session K-CAP 2009.
&lt;br&gt;&lt;br&gt;Walter, Tobias (2009): Combining Domain-Specific Languages and Ontology Technologies. In: MoDELS
&lt;br&gt;Doctoral Symposium 2009.
&lt;br&gt;&lt;br&gt;Walter, Tobias; Ebert, Jürgen (2009): Combining ontology-enriched Domain-Specific Languages. In:
&lt;br&gt;Proceedings of the of the Second Workshop on Transforming and Weaving Ontologies in Model Driven
&lt;br&gt;Engineering (TWOMDE) at MoDELS.
&lt;br&gt;&lt;br&gt;Walter, Tobias; Miksa, Krzysztof; Kasztelnik, Marek; Sabina , Pawel (2009): Towards semantic
&lt;br&gt;modelling of network physical devices. In: Proceedings of the of the Second Workshop on Transforming
&lt;br&gt;and Weaving Ontologies in Model Driven Engineering (TWOMDE) at MoDELS.
&lt;br&gt;&lt;br&gt;Groener, Gerd; Staab, Steffen (2009): Modeling and Query Pattern for Process Retrieval in OWL. In:
&lt;br&gt;Proceedings of 8th International Semantic Web Conference (ISWC). Nr. 5823.
&lt;br&gt;&lt;br&gt;Ren, Yuan; Groener, Gerd; Lemcke, Jens; Rahmani, Tirdad; Friesen, Andreas; Zhao, Yuting; Pan, Jeff
&lt;br&gt;Z.; Staab, Steffen (2009): Validating Process Refinement with Ontologies. In: 5th International
&lt;br&gt;Workshop on Semantic Web Enabled Software Engineering (SWESE).
&lt;br&gt;&lt;br&gt;Jekjantuk, Nophadol; Groener, Gerd; Pan, Jeff Z. (2009): Reasoning in Metamodeling Enabled
&lt;br&gt;Ontologies. In: Proc. of 6th Int. Workshop OWL: Experiences and Directions (OWLED).
&lt;br&gt;&lt;br&gt;2008
&lt;br&gt;&lt;br&gt;Silva Parreiras, Fernando; Staab, Steffen; Schenk, Simon; Winter, Andreas (2008): Model Driven
&lt;br&gt;Specification of Ontology Translations. In: Lia, Qing; Spaccapietra, Stefano; Yu, Eric: Conceptual
&lt;br&gt;Modeling - ER 2008, 27th International Conference on Conceptual Modeling, Barcelona, Spain, October
&lt;br&gt;23-26, 2008, Proceedings. Springer. Nr. 5231. S. 484-497.
&lt;br&gt;&lt;br&gt;Silva Parreiras, Fernando; Staab, Steffen; Pan, Jeff. Z.; Miksa, Krzysztof ; Kühn, Harald; Zivkovic,
&lt;br&gt;Srdjan; Tinella, Stefano; Assmann, Uwe; Henriksson, Jakob (2008): Semantics for Software Modeling.
&lt;br&gt;In: Sheu, Phillip ; Yu, Heather; Ramamoorthy, C. V.; Joshi, Arvind K.; Zadeh, Lotfi A.: Semantic
&lt;br&gt;Computing. IEEE Press/Wiley. S. 25.
&lt;br&gt;&lt;br&gt;Silva Parreiras, Fernando; Pan, Jeff. Z.; Assmann, Uwe; Henriksson, Jakob (2008): First Workshop on
&lt;br&gt;Transforming and Weaving Ontologies and Model Driven Engineering (TWOMDE 2008) at MoDELS 2008, 28
&lt;br&gt;September, Toulouse, France. In: TWOMDE.
&lt;br&gt;&lt;br&gt;Silva Parreiras, Fernando; Staab, Steffen; Winter, Andreas (2008): Improving Design Patterns by
&lt;br&gt;Description Logics: A Use Case with Abstract Factory and Strategy. In: Kühne, Thomas; Reisig ,
&lt;br&gt;Wolfgang; Steimann, Friedrich: Modellierung 2008, 12.-14. März 2008, Berlin. GI. Nr. 127.
&lt;br&gt;&lt;br&gt;Gröner, Gerd; Staab, Steffen; Winter, Andreas (2008): Graph Technology and Semantic Web in Reverse
&lt;br&gt;Engineering - A Comparison -. In: Proceedings of ICPC 2008 Workshop: Semantic Technologies in System
&lt;br&gt;Maintenance.
&lt;br&gt;&lt;br&gt;2007
&lt;br&gt;&lt;br&gt;Silva Parreiras, Fernando; Staab, Steffen; Winter, Andreas (2007): TwoUse: Integrating UML Models
&lt;br&gt;and OWL Ontologies. Institut für Informatik, Universität Koblenz-Landau. Nr. 16/2007.
&lt;br&gt;Arbeitsberichte aus dem Fachbereich Informatik.
&lt;br&gt;&lt;br&gt;Silva Parreiras, Fernando; Staab, Steffen; Winter, Andreas (2007): On Marrying Ontological and
&lt;br&gt;Metamodeling Technical Spaces. In: Proceedings of the 6th joint meeting of the European Software
&lt;br&gt;Engineering Conference and the ACM SIGSOFT International Symposium on Foundations of Software
&lt;br&gt;Engineering, 2007, Dubrovnik, Croatia, September 3-7. ACM Press.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-interest-f11721.html&quot; embed=&quot;fixTarget[11721]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-interest&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Filling-the-Gap-between-Semantic-Web-and-Model-Driven-Engineering%3A--The-TwoUse-Toolkit-tp26442160p26442160.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26441964</id>
	<title>Call for Papers/Workshop Proposals Participantion (GPC-10, UIC-10, MTPP-10, ICA3PP-10, FC-10, SMPE-10, FutureTech-10, BodyNets-10)</title>
	<published>2009-11-20T03:40:38Z</published>
	<updated>2009-11-20T03:40:38Z</updated>
	<author>
		<name>Robert C. Hsu</name>
	</author>
	<content type="html">====================================================================&lt;br /&gt;
** Apologies if you receive multiple copies of this announcement. **&lt;br /&gt;
====================================================================&lt;br /&gt;
&lt;br /&gt;
Dear Colleague:&lt;br /&gt;
&lt;br /&gt;
Please disseminate this message in your networks / subscribed lists.&lt;br /&gt;
We also take this chance to invite you contribute a paper / proposal &lt;br /&gt;
to these events.  Thanks in advance.&lt;br /&gt;
&lt;br /&gt;
-------------------------&lt;br /&gt;
Call for Participation:&lt;br /&gt;
-------------------------&lt;br /&gt;
&lt;br /&gt;
1. Conference: IEEE SOCA 2009 (The IEEE International Conference on Service-Oriented Computing and Applications)&lt;br /&gt;
   Web: http://www.iis.sinica.edu.tw/soca09&lt;br /&gt;
   Place/Date: Taipei, Taiwan / December 14-15, 2009&lt;br /&gt;
&lt;br /&gt;
---------------------------------&lt;br /&gt;
Call for Workshop Proposals&lt;br /&gt;
---------------------------------&lt;br /&gt;
&lt;br /&gt;
1. Conference: GPC 2010 (The 5th International Conference on Grid and Pervasive Computing)&lt;br /&gt;
   Web: http://gpc2010.ndhu.edu.tw/&lt;br /&gt;
   Place/Date: Hualien, Taiwan / May 10-14, 2010&lt;br /&gt;
   Publication: LNCS, Springer&lt;br /&gt;
   Proposal Due: 10 December, 2009&lt;br /&gt;
   Contact: Prof. Shi-Jim Yen (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441964&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sjyen@...&lt;/a&gt; ); Prof. Robert C. Hsu (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441964&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chh@...&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
2. Conference: UIC 2010 (The 6th International Conference on Ubiquitous Intelligence Computing)&lt;br /&gt;
   Place/Date: Xian, China / October 26-29, 2010&lt;br /&gt;
   Publication: IEEE CS (EI indexed, IEEE Digital library)&lt;br /&gt;
   Proposal Due: January 31, 2010&lt;br /&gt;
   Contact: Prof. Robert C. Hsu (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441964&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chh@...&lt;/a&gt;); Prof. Mieso Denko (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441964&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;denko@...&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
-----------------------------&lt;br /&gt;
Call for Research Papers&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
1. Conference: SMPE 2010 (The Fourth International Symposium on Security and Multimodality in Pervasive Environments)&lt;br /&gt;
   Web: http://www.ftrg.org/smpe2010/&lt;br /&gt;
   Place/Date: Perth, Australia / April 20-23, 2010 &lt;br /&gt;
   Publication: IEEE CS (EI indexed, IEEE Digital library)&lt;br /&gt;
   Submission Due: November 25, 2009&lt;br /&gt;
&lt;br /&gt;
2. Conference: ICA3PP 2010 (The 10th International Conference on Algorithms and Architecture for Parallel Processing)&lt;br /&gt;
   Web: http://cse.stfx.ca/~ica3pp2010/&lt;br /&gt;
   Place/Date:  Busan, Korea / May 21-23, 2010&lt;br /&gt;
   Publication: LNCS, Springer (EI Indexed, DBLP)&lt;br /&gt;
   Submission Due: November 30, 2009&lt;br /&gt;
&lt;br /&gt;
3. Conference: FutureTech 2010 (The 5th International Cnoference on Future Information Technology)&lt;br /&gt;
   Web: http://www.ftrg.org/futuretech2010/&lt;br /&gt;
   Place/Date: Busan, Korea / May 21-23, 2010&lt;br /&gt;
   Publication: IEEE CS (EI indexed, IEEE Digital library)&lt;br /&gt;
   Submission Due: November 30, 2009&lt;br /&gt;
&lt;br /&gt;
4. Conference: ISA 2010 (The 4th International Conference on Information Security and Assurance)&lt;br /&gt;
               UCMA 2010 (The 1st International Conference on Ubiquitous Computing and Multimedia Applications)&lt;br /&gt;
               ACN 2010 (The 2nd International Conference on Advanced Communication and Networking)&lt;br /&gt;
               AST 2010 (The 2nd International Conference on Advanced Science and Technology)&lt;br /&gt;
   Web: http://www.sersc.org/ISA2010/&lt;br /&gt;
        http://www.sersc.org/UCMA2010/&lt;br /&gt;
        http://www.sersc.org/ACN2010/&lt;br /&gt;
        http://www.sersc.org/AST2010/&lt;br /&gt;
   Place/Date: Hyatt Regency Kolkata, Kolkata, India/ June 3-5, 2010&lt;br /&gt;
   Publication: LNCS/CCIS, Springer (EI Indexed)&lt;br /&gt;
   Submission Due: December 10, 2009&lt;br /&gt;
&lt;br /&gt;
5. Conference: IET FC 2010 (The IET International Conference on Frontier Computing)&lt;br /&gt;
   Web: http://fc2010.cs.pu.edu.tw/&lt;br /&gt;
   Place/Date: Taichung, Taiwan / July 19-21, 2010&lt;br /&gt;
   Publication: IET Press (EI Indexed, IEEE Digital library)&lt;br /&gt;
   Submission Due: December 25, 2009&lt;br /&gt;
&lt;br /&gt;
6. Conference: MTPP 2010 (The 2nd Russia-Taiwan Symposium on Methods and Tools of Parallel Programming Multicomputers)&lt;br /&gt;
   Web: http://grid.chu.edu.tw/mtpp2010/&lt;br /&gt;
   Place/Date: Vladivostok, Russia / May 17-19, 2010&lt;br /&gt;
   Publication: LNCS, Springer (EI Indexed, DBLP)&lt;br /&gt;
   Submission Due: January 10, 2010&lt;br /&gt;
&lt;br /&gt;
7. Conference: BodyNets 2010 (The Fifth International Conference on Body Area Networks)&lt;br /&gt;
   Web: http://www.bodynets.org/&lt;br /&gt;
   Place/Date: Corfu Island, Greece / Spetember 10-12, 2010&lt;br /&gt;
   Publication: LNICST (EI indexed, DBLP)&lt;br /&gt;
   Submission Due: March 22, 2010&lt;br /&gt;
&lt;br /&gt;
-------------------------&lt;br /&gt;
Journal Special Issues:&lt;br /&gt;
-------------------------&lt;br /&gt;
&lt;br /&gt;
1. Journal: IEEE Transactions on CI and AI in Games&lt;br /&gt;
   Theme: Computational Intelligence and AI in Economic and Financial Games&lt;br /&gt;
   Guest editors:  Han La Poutre, Edward Tsang,  Athanasios V.Vasilakos&lt;br /&gt;
   Submission Due: December 15 2009&lt;br /&gt;
   Publication: Summer/Autumn 2010&lt;br /&gt;
&lt;br /&gt;
2. Journal: International Journal of Ad Hoc and Ubiquitous Computing&lt;br /&gt;
   Theme: Cloud Computing: Technologies and Services&lt;br /&gt;
   Guest editors:  Manish Parashar, Chung-Ming Huang, Jiannong Cao, Rajkumar Buyya, Robert C. H. Hsu&lt;br /&gt;
   Submission Due: 31 January, 2010&lt;br /&gt;


&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-rules-f11724.html&quot; embed=&quot;fixTarget[11724]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-rules&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Call-for-Papers-Workshop-Proposals-Participantion-%28GPC-10%2C-UIC-10%2C-MTPP-10%2C-ICA3PP-10%2C-FC-10%2C-SMPE-10%2C-FutureTech-10%2C-BodyNets-10%29-tp26441964p26441964.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26441963</id>
	<title>Call for Papers/Workshop Proposals Participantion (GPC-10, UIC-10, MTPP-10, ICA3PP-10, FC-10, SMPE-10, FutureTech-10, BodyNets-10)</title>
	<published>2009-11-20T03:40:36Z</published>
	<updated>2009-11-20T03:40:36Z</updated>
	<author>
		<name>Robert C. Hsu</name>
	</author>
	<content type="html">====================================================================&lt;br /&gt;
** Apologies if you receive multiple copies of this announcement. **&lt;br /&gt;
====================================================================&lt;br /&gt;
&lt;br /&gt;
Dear Colleague:&lt;br /&gt;
&lt;br /&gt;
Please disseminate this message in your networks / subscribed lists.&lt;br /&gt;
We also take this chance to invite you contribute a paper / proposal &lt;br /&gt;
to these events.  Thanks in advance.&lt;br /&gt;
&lt;br /&gt;
-------------------------&lt;br /&gt;
Call for Participation:&lt;br /&gt;
-------------------------&lt;br /&gt;
&lt;br /&gt;
1. Conference: IEEE SOCA 2009 (The IEEE International Conference on Service-Oriented Computing and Applications)&lt;br /&gt;
   Web: http://www.iis.sinica.edu.tw/soca09&lt;br /&gt;
   Place/Date: Taipei, Taiwan / December 14-15, 2009&lt;br /&gt;
&lt;br /&gt;
---------------------------------&lt;br /&gt;
Call for Workshop Proposals&lt;br /&gt;
---------------------------------&lt;br /&gt;
&lt;br /&gt;
1. Conference: GPC 2010 (The 5th International Conference on Grid and Pervasive Computing)&lt;br /&gt;
   Web: http://gpc2010.ndhu.edu.tw/&lt;br /&gt;
   Place/Date: Hualien, Taiwan / May 10-14, 2010&lt;br /&gt;
   Publication: LNCS, Springer&lt;br /&gt;
   Proposal Due: 10 December, 2009&lt;br /&gt;
   Contact: Prof. Shi-Jim Yen (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441963&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sjyen@...&lt;/a&gt; ); Prof. Robert C. Hsu (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441963&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chh@...&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
2. Conference: UIC 2010 (The 6th International Conference on Ubiquitous Intelligence Computing)&lt;br /&gt;
   Place/Date: Xian, China / October 26-29, 2010&lt;br /&gt;
   Publication: IEEE CS (EI indexed, IEEE Digital library)&lt;br /&gt;
   Proposal Due: January 31, 2010&lt;br /&gt;
   Contact: Prof. Robert C. Hsu (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441963&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chh@...&lt;/a&gt;); Prof. Mieso Denko (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441963&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;denko@...&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
-----------------------------&lt;br /&gt;
Call for Research Papers&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
1. Conference: SMPE 2010 (The Fourth International Symposium on Security and Multimodality in Pervasive Environments)&lt;br /&gt;
   Web: http://www.ftrg.org/smpe2010/&lt;br /&gt;
   Place/Date: Perth, Australia / April 20-23, 2010 &lt;br /&gt;
   Publication: IEEE CS (EI indexed, IEEE Digital library)&lt;br /&gt;
   Submission Due: November 25, 2009&lt;br /&gt;
&lt;br /&gt;
2. Conference: ICA3PP 2010 (The 10th International Conference on Algorithms and Architecture for Parallel Processing)&lt;br /&gt;
   Web: http://cse.stfx.ca/~ica3pp2010/&lt;br /&gt;
   Place/Date:  Busan, Korea / May 21-23, 2010&lt;br /&gt;
   Publication: LNCS, Springer (EI Indexed, DBLP)&lt;br /&gt;
   Submission Due: November 30, 2009&lt;br /&gt;
&lt;br /&gt;
3. Conference: FutureTech 2010 (The 5th International Cnoference on Future Information Technology)&lt;br /&gt;
   Web: http://www.ftrg.org/futuretech2010/&lt;br /&gt;
   Place/Date: Busan, Korea / May 21-23, 2010&lt;br /&gt;
   Publication: IEEE CS (EI indexed, IEEE Digital library)&lt;br /&gt;
   Submission Due: November 30, 2009&lt;br /&gt;
&lt;br /&gt;
4. Conference: ISA 2010 (The 4th International Conference on Information Security and Assurance)&lt;br /&gt;
               UCMA 2010 (The 1st International Conference on Ubiquitous Computing and Multimedia Applications)&lt;br /&gt;
               ACN 2010 (The 2nd International Conference on Advanced Communication and Networking)&lt;br /&gt;
               AST 2010 (The 2nd International Conference on Advanced Science and Technology)&lt;br /&gt;
   Web: http://www.sersc.org/ISA2010/&lt;br /&gt;
        http://www.sersc.org/UCMA2010/&lt;br /&gt;
        http://www.sersc.org/ACN2010/&lt;br /&gt;
        http://www.sersc.org/AST2010/&lt;br /&gt;
   Place/Date: Hyatt Regency Kolkata, Kolkata, India/ June 3-5, 2010&lt;br /&gt;
   Publication: LNCS/CCIS, Springer (EI Indexed)&lt;br /&gt;
   Submission Due: December 10, 2009&lt;br /&gt;
&lt;br /&gt;
5. Conference: IET FC 2010 (The IET International Conference on Frontier Computing)&lt;br /&gt;
   Web: http://fc2010.cs.pu.edu.tw/&lt;br /&gt;
   Place/Date: Taichung, Taiwan / July 19-21, 2010&lt;br /&gt;
   Publication: IET Press (EI Indexed, IEEE Digital library)&lt;br /&gt;
   Submission Due: December 25, 2009&lt;br /&gt;
&lt;br /&gt;
6. Conference: MTPP 2010 (The 2nd Russia-Taiwan Symposium on Methods and Tools of Parallel Programming Multicomputers)&lt;br /&gt;
   Web: http://grid.chu.edu.tw/mtpp2010/&lt;br /&gt;
   Place/Date: Vladivostok, Russia / May 17-19, 2010&lt;br /&gt;
   Publication: LNCS, Springer (EI Indexed, DBLP)&lt;br /&gt;
   Submission Due: January 10, 2010&lt;br /&gt;
&lt;br /&gt;
7. Conference: BodyNets 2010 (The Fifth International Conference on Body Area Networks)&lt;br /&gt;
   Web: http://www.bodynets.org/&lt;br /&gt;
   Place/Date: Corfu Island, Greece / Spetember 10-12, 2010&lt;br /&gt;
   Publication: LNICST (EI indexed, DBLP)&lt;br /&gt;
   Submission Due: March 22, 2010&lt;br /&gt;
&lt;br /&gt;
-------------------------&lt;br /&gt;
Journal Special Issues:&lt;br /&gt;
-------------------------&lt;br /&gt;
&lt;br /&gt;
1. Journal: IEEE Transactions on CI and AI in Games&lt;br /&gt;
   Theme: Computational Intelligence and AI in Economic and Financial Games&lt;br /&gt;
   Guest editors:  Han La Poutre, Edward Tsang,  Athanasios V.Vasilakos&lt;br /&gt;
   Submission Due: December 15 2009&lt;br /&gt;
   Publication: Summer/Autumn 2010&lt;br /&gt;
&lt;br /&gt;
2. Journal: International Journal of Ad Hoc and Ubiquitous Computing&lt;br /&gt;
   Theme: Cloud Computing: Technologies and Services&lt;br /&gt;
   Guest editors:  Manish Parashar, Chung-Ming Huang, Jiannong Cao, Rajkumar Buyya, Robert C. H. Hsu&lt;br /&gt;
   Submission Due: 31 January, 2010&lt;br /&gt;


&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-logic-f11722.html&quot; embed=&quot;fixTarget[11722]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-logic&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Call-for-Papers-Workshop-Proposals-Participantion-%28GPC-10%2C-UIC-10%2C-MTPP-10%2C-ICA3PP-10%2C-FC-10%2C-SMPE-10%2C-FutureTech-10%2C-BodyNets-10%29-tp26441963p26441963.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26441980</id>
	<title>Call for Papers/Workshop Proposals Participantion (GPC-10, UIC-10, MTPP-10, ICA3PP-10, FC-10, SMPE-10, FutureTech-10, BodyNets-10)</title>
	<published>2009-11-20T03:40:24Z</published>
	<updated>2009-11-20T03:40:24Z</updated>
	<author>
		<name>Robert C. Hsu</name>
	</author>
	<content type="html">====================================================================&lt;br /&gt;
** Apologies if you receive multiple copies of this announcement. **&lt;br /&gt;
====================================================================&lt;br /&gt;
&lt;br /&gt;
Dear Colleague:&lt;br /&gt;
&lt;br /&gt;
Please disseminate this message in your networks / subscribed lists.&lt;br /&gt;
We also take this chance to invite you contribute a paper / proposal &lt;br /&gt;
to these events.  Thanks in advance.&lt;br /&gt;
&lt;br /&gt;
-------------------------&lt;br /&gt;
Call for Participation:&lt;br /&gt;
-------------------------&lt;br /&gt;
&lt;br /&gt;
1. Conference: IEEE SOCA 2009 (The IEEE International Conference on Service-Oriented Computing and Applications)&lt;br /&gt;
   Web: http://www.iis.sinica.edu.tw/soca09&lt;br /&gt;
   Place/Date: Taipei, Taiwan / December 14-15, 2009&lt;br /&gt;
&lt;br /&gt;
---------------------------------&lt;br /&gt;
Call for Workshop Proposals&lt;br /&gt;
---------------------------------&lt;br /&gt;
&lt;br /&gt;
1. Conference: GPC 2010 (The 5th International Conference on Grid and Pervasive Computing)&lt;br /&gt;
   Web: http://gpc2010.ndhu.edu.tw/&lt;br /&gt;
   Place/Date: Hualien, Taiwan / May 10-14, 2010&lt;br /&gt;
   Publication: LNCS, Springer&lt;br /&gt;
   Proposal Due: 10 December, 2009&lt;br /&gt;
   Contact: Prof. Shi-Jim Yen (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441980&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sjyen@...&lt;/a&gt; ); Prof. Robert C. Hsu (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441980&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chh@...&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
2. Conference: UIC 2010 (The 6th International Conference on Ubiquitous Intelligence Computing)&lt;br /&gt;
   Place/Date: Xian, China / October 26-29, 2010&lt;br /&gt;
   Publication: IEEE CS (EI indexed, IEEE Digital library)&lt;br /&gt;
   Proposal Due: January 31, 2010&lt;br /&gt;
   Contact: Prof. Robert C. Hsu (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441980&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chh@...&lt;/a&gt;); Prof. Mieso Denko (&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26441980&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;denko@...&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
-----------------------------&lt;br /&gt;
Call for Research Papers&lt;br /&gt;
-----------------------------&lt;br /&gt;
&lt;br /&gt;
1. Conference: SMPE 2010 (The Fourth International Symposium on Security and Multimodality in Pervasive Environments)&lt;br /&gt;
   Web: http://www.ftrg.org/smpe2010/&lt;br /&gt;
   Place/Date: Perth, Australia / April 20-23, 2010 &lt;br /&gt;
   Publication: IEEE CS (EI indexed, IEEE Digital library)&lt;br /&gt;
   Submission Due: November 25, 2009&lt;br /&gt;
&lt;br /&gt;
2. Conference: ICA3PP 2010 (The 10th International Conference on Algorithms and Architecture for Parallel Processing)&lt;br /&gt;
   Web: http://cse.stfx.ca/~ica3pp2010/&lt;br /&gt;
   Place/Date:  Busan, Korea / May 21-23, 2010&lt;br /&gt;
   Publication: LNCS, Springer (EI Indexed, DBLP)&lt;br /&gt;
   Submission Due: November 30, 2009&lt;br /&gt;
&lt;br /&gt;
3. Conference: FutureTech 2010 (The 5th International Cnoference on Future Information Technology)&lt;br /&gt;
   Web: http://www.ftrg.org/futuretech2010/&lt;br /&gt;
   Place/Date: Busan, Korea / May 21-23, 2010&lt;br /&gt;
   Publication: IEEE CS (EI indexed, IEEE Digital library)&lt;br /&gt;
   Submission Due: November 30, 2009&lt;br /&gt;
&lt;br /&gt;
4. Conference: ISA 2010 (The 4th International Conference on Information Security and Assurance)&lt;br /&gt;
               UCMA 2010 (The 1st International Conference on Ubiquitous Computing and Multimedia Applications)&lt;br /&gt;
               ACN 2010 (The 2nd International Conference on Advanced Communication and Networking)&lt;br /&gt;
               AST 2010 (The 2nd International Conference on Advanced Science and Technology)&lt;br /&gt;
   Web: http://www.sersc.org/ISA2010/&lt;br /&gt;
        http://www.sersc.org/UCMA2010/&lt;br /&gt;
        http://www.sersc.org/ACN2010/&lt;br /&gt;
        http://www.sersc.org/AST2010/&lt;br /&gt;
   Place/Date: Hyatt Regency Kolkata, Kolkata, India/ June 3-5, 2010&lt;br /&gt;
   Publication: LNCS/CCIS, Springer (EI Indexed)&lt;br /&gt;
   Submission Due: December 10, 2009&lt;br /&gt;
&lt;br /&gt;
5. Conference: IET FC 2010 (The IET International Conference on Frontier Computing)&lt;br /&gt;
   Web: http://fc2010.cs.pu.edu.tw/&lt;br /&gt;
   Place/Date: Taichung, Taiwan / July 19-21, 2010&lt;br /&gt;
   Publication: IET Press (EI Indexed, IEEE Digital library)&lt;br /&gt;
   Submission Due: December 25, 2009&lt;br /&gt;
&lt;br /&gt;
6. Conference: MTPP 2010 (The 2nd Russia-Taiwan Symposium on Methods and Tools of Parallel Programming Multicomputers)&lt;br /&gt;
   Web: http://grid.chu.edu.tw/mtpp2010/&lt;br /&gt;
   Place/Date: Vladivostok, Russia / May 17-19, 2010&lt;br /&gt;
   Publication: LNCS, Springer (EI Indexed, DBLP)&lt;br /&gt;
   Submission Due: January 10, 2010&lt;br /&gt;
&lt;br /&gt;
7. Conference: BodyNets 2010 (The Fifth International Conference on Body Area Networks)&lt;br /&gt;
   Web: http://www.bodynets.org/&lt;br /&gt;
   Place/Date: Corfu Island, Greece / Spetember 10-12, 2010&lt;br /&gt;
   Publication: LNICST (EI indexed, DBLP)&lt;br /&gt;
   Submission Due: March 22, 2010&lt;br /&gt;
&lt;br /&gt;
-------------------------&lt;br /&gt;
Journal Special Issues:&lt;br /&gt;
-------------------------&lt;br /&gt;
&lt;br /&gt;
1. Journal: IEEE Transactions on CI and AI in Games&lt;br /&gt;
   Theme: Computational Intelligence and AI in Economic and Financial Games&lt;br /&gt;
   Guest editors:  Han La Poutre, Edward Tsang,  Athanasios V.Vasilakos&lt;br /&gt;
   Submission Due: December 15 2009&lt;br /&gt;
   Publication: Summer/Autumn 2010&lt;br /&gt;
&lt;br /&gt;
2. Journal: International Journal of Ad Hoc and Ubiquitous Computing&lt;br /&gt;
   Theme: Cloud Computing: Technologies and Services&lt;br /&gt;
   Guest editors:  Manish Parashar, Chung-Ming Huang, Jiannong Cao, Rajkumar Buyya, Robert C. H. Hsu&lt;br /&gt;
   Submission Due: 31 January, 2010&lt;br /&gt;


&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-interest-f11721.html&quot; embed=&quot;fixTarget[11721]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-interest&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Call-for-Papers-Workshop-Proposals-Participantion-%28GPC-10%2C-UIC-10%2C-MTPP-10%2C-ICA3PP-10%2C-FC-10%2C-SMPE-10%2C-FutureTech-10%2C-BodyNets-10%29-tp26441980p26441980.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26441146</id>
	<title>Meeting minutes, 2009-11-29</title>
	<published>2009-11-20T02:29:06Z</published>
	<updated>2009-11-20T02:29:06Z</updated>
	<author>
		<name>Ivan Herman-2</name>
	</author>
	<content type="html">Minutes are at:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.w3.org/2009/11/19-rdfa-minutes.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/19-rdfa-minutes.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Text version below.
&lt;br&gt;&lt;br&gt;Ivan
&lt;br&gt;&lt;br&gt;----------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;[1]W3C
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [1] &lt;a href=&quot;http://www.w3.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; RDF in XHTML Task Force
&lt;br&gt;&lt;br&gt;19 Nov 2009
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;[2]Agenda
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [2]
&lt;br&gt;&lt;a href=&quot;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009Nov/0078.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009Nov/0078.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;See also: [3]IRC log
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [3] &lt;a href=&quot;http://www.w3.org/2009/11/19-rdfa-irc&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/19-rdfa-irc&lt;/a&gt;&lt;br&gt;&lt;br&gt;Attendees
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Present
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Manu_Sporny, Ivan_Herman, Mark_Birbeck, Ben_Adida,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Shane_McCarron, Steven_Pemberton
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Regrets
&lt;br&gt;&amp;nbsp; &amp;nbsp;Chair
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Ben Adida
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Scribe
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ShaneM
&lt;br&gt;&lt;br&gt;Contents
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* [4]Topics
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1. [5]Test Cases
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2. [6]Action Items
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3. [7]Working Group Charter
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;* [8]Summary of Action Items
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;_________________________________________________________
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Test Cases
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;we are doing these via e-mail, but there is a general topic.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;Steven&amp;gt; put that in the record manu
&lt;br&gt;&lt;br&gt;Action Items
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Manu's action to confert the charter to HTML format is complete.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;benadida&amp;gt; --&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;[9]&lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#ActionSummary&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#ActionSummary&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [9] &lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#ActionSummary&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#ActionSummary&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;benadida&amp;gt; ACTION: Manu to convert WG Charter page to W3C charter
&lt;br&gt;&amp;nbsp; &amp;nbsp;format [recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[10]&lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#action08&lt;/a&gt;] [DONE]
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[10] &lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#action08&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;scribe&amp;gt; ACTION: Mark to author URIs in @about, @rel, @rev, @typeof
&lt;br&gt;&amp;nbsp; &amp;nbsp;and @datatype spec text [recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[11]&lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#action09&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#action09&lt;/a&gt;]
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[11] &lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#action09&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#action09&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;scribe&amp;gt; --continues - nearly done
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; we should accept the test cases based on the current
&lt;br&gt;&amp;nbsp; &amp;nbsp;published rules and then change the test cases if we change the
&lt;br&gt;&amp;nbsp; &amp;nbsp;rules in the future.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;markbirbeck: original proposal said we should advise people to use
&lt;br&gt;&amp;nbsp; &amp;nbsp;safe curies.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan and shane said why bother? It gets handled automatically.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Ben seems to have opened the question again. So there seems to be an
&lt;br&gt;&amp;nbsp; &amp;nbsp;open issue. Should we encourage people to use safe curies or not?
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Also, what if a prefix name is used that collides with a scheme
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Steven says this is not a problem since if I meant it to be a
&lt;br&gt;&amp;nbsp; &amp;nbsp;prefix, it will always remain a prefix
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;markbirbeck: if I edit that document later and am inserting a link
&lt;br&gt;&amp;nbsp; &amp;nbsp;that now uses some new scheme that collides with prefixes I declared
&lt;br&gt;&amp;nbsp; &amp;nbsp;ages ago, that could be an issue.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;benadida: As long as the document doesnt change meaning if the
&lt;br&gt;&amp;nbsp; &amp;nbsp;document is not edited later, it is not an issue
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: the chances for something like this to occur are non-zero,
&lt;br&gt;&amp;nbsp; &amp;nbsp;but it is so rare as to be uninteresting
&lt;br&gt;&amp;nbsp; &amp;nbsp;... we should put in some warning
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;markbirbeck: we could plug all holes if we insist on a safe curie.
&lt;br&gt;&amp;nbsp; &amp;nbsp;But if we are happy these edge cases are not a real issue, then
&lt;br&gt;&amp;nbsp; &amp;nbsp;let's leave it
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; I don't think we should ever depend on people correctly
&lt;br&gt;&amp;nbsp; &amp;nbsp;using Safe CURIEs
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; yes, I was in agreement with this direction.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: if we keep to the priority in processing that we look to see
&lt;br&gt;&amp;nbsp; &amp;nbsp;if something is a CURIE or not, then this is backward compatible
&lt;br&gt;&amp;nbsp; &amp;nbsp;... if we go one step further, we could have relative URIs in
&lt;br&gt;&amp;nbsp; &amp;nbsp;@typeof
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; I don't know if we should have relative URIs in @property
&lt;br&gt;&amp;nbsp; &amp;nbsp;- I realize the use case, but it's very uncommon.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;benadida: feels the use case is very rare.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; I think the reason to forbid it is because it
&lt;br&gt;&amp;nbsp; &amp;nbsp;overcomplicates RDF.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: agrees but doesn't seem to find a reason to forbid it.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; s/RDFa\./RDFa./
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;benadida: RDF/XML is an example of having many ways to write the
&lt;br&gt;&amp;nbsp; &amp;nbsp;same thing, and this makes it complicated to learn.
&lt;br&gt;&amp;nbsp; &amp;nbsp;... if we have CURIEs and SafeCURIEs in the same datatype this is
&lt;br&gt;&amp;nbsp; &amp;nbsp;complicated
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: thinks that we have inconsistency in our rules today between
&lt;br&gt;&amp;nbsp; &amp;nbsp;@rel and @rev vs. @about and @resource
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; That said, I would be in favor of playing down Safe
&lt;br&gt;&amp;nbsp; &amp;nbsp;CURIEs...
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;markbirbeck: points out that we could downplay SafeCURIEs if we
&lt;br&gt;&amp;nbsp; &amp;nbsp;wanted too
&lt;br&gt;&amp;nbsp; &amp;nbsp;... remarks that lately we have realized that if there is no defined
&lt;br&gt;&amp;nbsp; &amp;nbsp;prefix, it can be easily interpreted as a URI. that means there is
&lt;br&gt;&amp;nbsp; &amp;nbsp;less possibility for confusion.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; I haven't seen Safe CURIEs used in the wild...
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;benadida: if we are going this route, we should downplay the
&lt;br&gt;&amp;nbsp; &amp;nbsp;importance of SafeCURIEs
&lt;br&gt;&amp;nbsp; &amp;nbsp;... Wants to wait to see Mark's proposed spec text before making a
&lt;br&gt;&amp;nbsp; &amp;nbsp;decision
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; other than through somebody in this task force.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;Zakim&amp;gt; ShaneM, you wanted to discuss tag objections
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; we might want to revisit this with the TAG based on our
&lt;br&gt;&amp;nbsp; &amp;nbsp;new findings.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ShaneM: points out that the reason we have SafeCURIEs is that the
&lt;br&gt;&amp;nbsp; &amp;nbsp;TAG said we cannot put CURIEs and URIs in the same attribute
&lt;br&gt;&amp;nbsp; &amp;nbsp;... the TAG didn't want the possibility for confusion on the part of
&lt;br&gt;&amp;nbsp; &amp;nbsp;humans, not software.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: for many people this is a stumbling block (using full URIs
&lt;br&gt;&amp;nbsp; &amp;nbsp;instead of CURIEs)
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ShaneM: we are conflating two issues
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;benadida: yes, but the one flows into the other
&lt;br&gt;&amp;nbsp; &amp;nbsp;... proposes we wait for Mark's wording on this (but admits Ben is
&lt;br&gt;&amp;nbsp; &amp;nbsp;the hold up!)
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: make it clear to everyone (including the TAG) that we do not
&lt;br&gt;&amp;nbsp; &amp;nbsp;intend to introduce this behavior for non-RDFa attributes such as
&lt;br&gt;&amp;nbsp; &amp;nbsp;@href and @src
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;markbirbeck: we can consider this as an RDF interpretation of
&lt;br&gt;&amp;nbsp; &amp;nbsp;existing markup
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Steven: w.r.t. Ivan's remark Steven thinks if we do this people are
&lt;br&gt;&amp;nbsp; &amp;nbsp;going to expect it to work in @href and @src. The advantage of
&lt;br&gt;&amp;nbsp; &amp;nbsp;having two different notations
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; We're going to get severe push-back from HTML WG if we
&lt;br&gt;&amp;nbsp; &amp;nbsp;change @href and @src
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;is that you KNOW it was not allowed in @href. Validation might spot
&lt;br&gt;&amp;nbsp; &amp;nbsp;an error today. Going forward there is no way that validation would
&lt;br&gt;&amp;nbsp; &amp;nbsp;catch the use of a CURIE in @href and @src
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;benadida: But the browsers would not do it right... so page authors
&lt;br&gt;&amp;nbsp; &amp;nbsp;would notice immediately that their links didn't work
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ShaneM: at least if there is a SafeCURIE in @resource I would not be
&lt;br&gt;&amp;nbsp; &amp;nbsp;confused into thinking it was a URI.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;markbirbeck: That's not the point. The point is that a consumer
&lt;br&gt;&amp;nbsp; &amp;nbsp;might think that @href=SafeCURIE should woirk. and going forward
&lt;br&gt;&amp;nbsp; &amp;nbsp;@href=CURIE should work. And they won't!
&lt;br&gt;&amp;nbsp; &amp;nbsp;... perhaps we should cross this bridge when we come to it.
&lt;br&gt;&amp;nbsp; &amp;nbsp;... the reason this is back on the agenda is because of HTML5. And
&lt;br&gt;&amp;nbsp; &amp;nbsp;this change (full URIs just work) will help us get past the
&lt;br&gt;&amp;nbsp; &amp;nbsp;technical objection that some in the HTML5 community have raised.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Steven: The issue isn't that we can say &amp;quot;we won't apply this to
&lt;br&gt;&amp;nbsp; &amp;nbsp;@href and @src&amp;quot; but that might not be compelling
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;benadida: I dont see browser manufacturers implementing
&lt;br&gt;&amp;nbsp; &amp;nbsp;interpretation of CURIEs in @href and @src
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; We should ask the TAG directly.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; I also think that the danger that Steven has outlined does
&lt;br&gt;&amp;nbsp; &amp;nbsp;exist...
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; If there is a chance of surprising somebody with this
&lt;br&gt;&amp;nbsp; &amp;nbsp;change, I think it would be best to point it out.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: we should ensure that if we are moving in this direction we
&lt;br&gt;&amp;nbsp; &amp;nbsp;inform the objectors to CURIEs that there will be this option in the
&lt;br&gt;&amp;nbsp; &amp;nbsp;next version.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ShaneM: I personally would object to a change that permits CURIEs in
&lt;br&gt;&amp;nbsp; &amp;nbsp;places where we only permits SafeCURIEs
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;benadida: thinks we ar econverging
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;scribe&amp;gt; ACTION: Manu to ask somebody to draft errata text,
&lt;br&gt;&amp;nbsp; &amp;nbsp;clarifying that prefixes cannot be '_' character [recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[12]&lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#action10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#action10&lt;/a&gt;]
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[12] &lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#action10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#action10&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; I haven't done that yet
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;I did this.
&lt;br&gt;&amp;nbsp; &amp;nbsp;[13]&lt;a href=&quot;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009N&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009N&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ov/0043.html
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[13]
&lt;br&gt;&lt;a href=&quot;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009Nov/0043.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009Nov/0043.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;scribe&amp;gt; --done
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;msporny&amp;gt; Thanks Shane :)
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;scribe&amp;gt; ACTION: Ben to finish authoring RDFa WG charter. [recorded
&lt;br&gt;&amp;nbsp; &amp;nbsp;in [14]&lt;a href=&quot;http://www.w3.org/2009/10/22-rdfa-minutes.html#action07&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/22-rdfa-minutes.html#action07&lt;/a&gt;]
&lt;br&gt;&amp;nbsp; &amp;nbsp;[DONE]
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[14] &lt;a href=&quot;http://www.w3.org/2009/10/22-rdfa-minutes.html#action07&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/22-rdfa-minutes.html#action07&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;scribe&amp;gt; ACTION: Manu to aggressively push review of test cases via
&lt;br&gt;&amp;nbsp; &amp;nbsp;mailing list [recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[15]&lt;a href=&quot;http://www.w3.org/2009/10/29-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/29-rdfa-minutes.html#action08&lt;/a&gt;]
&lt;br&gt;&amp;nbsp; &amp;nbsp;[CONTINUES] [CONTINUES]
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[15] &lt;a href=&quot;http://www.w3.org/2009/10/29-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/29-rdfa-minutes.html#action08&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;scribe&amp;gt; ACTION: Manu to try and find other interested parties in
&lt;br&gt;&amp;nbsp; &amp;nbsp;RDFa WG. [recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[16]&lt;a href=&quot;http://www.w3.org/2009/10/22-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/22-rdfa-minutes.html#action08&lt;/a&gt;]
&lt;br&gt;&amp;nbsp; &amp;nbsp;[CONTINUES]
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[16] &lt;a href=&quot;http://www.w3.org/2009/10/22-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/22-rdfa-minutes.html#action08&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;scribe&amp;gt; ACTION: Shane to re-draft XMLLiteral errata text [recorded
&lt;br&gt;&amp;nbsp; &amp;nbsp;in [17]&lt;a href=&quot;http://www.w3.org/2009/10/15-rdfa-minutes.html#action04&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/15-rdfa-minutes.html#action04&lt;/a&gt;]
&lt;br&gt;&amp;nbsp; &amp;nbsp;[DONE]
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[17] &lt;a href=&quot;http://www.w3.org/2009/10/15-rdfa-minutes.html#action04&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/15-rdfa-minutes.html#action04&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;benadida&amp;gt; consider thew new XMLLiteral errata text:
&lt;br&gt;&amp;nbsp; &amp;nbsp;[18]&lt;a href=&quot;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009N&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009N&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ov/0044.html
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[18]
&lt;br&gt;&lt;a href=&quot;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009Nov/0044.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009Nov/0044.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;benadida&amp;gt; +1
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;markbirbeck&amp;gt; +1
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;+1 (obviously)
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;Steven&amp;gt; +1
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;benadida&amp;gt; RESOLVED to accept the XMLLiteral errata text
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;benadida&amp;gt; consider the _ prefix errata text:
&lt;br&gt;&amp;nbsp; &amp;nbsp;[19]&lt;a href=&quot;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009N&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009N&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ov/0043.html
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[19]
&lt;br&gt;&lt;a href=&quot;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009Nov/0043.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/2009Nov/0043.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;benadida&amp;gt; +1
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;Steven&amp;gt; +1
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;+1
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: why &amp;quot;SHOULD NOT&amp;quot; instead of &amp;quot;MUST NOT&amp;quot; for authors
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;ivan1&amp;gt; +1
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ShaneM: I have never seen a spec where we said &amp;quot;MUST NOT&amp;quot; to a spec
&lt;br&gt;&amp;nbsp; &amp;nbsp;author
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;benadida&amp;gt; RESOLVED to accept the _ prefix errata text
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;markbirbeck&amp;gt; Abstaining. :)
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;markbirbeck&amp;gt; I have use-cases for redefining '_', but they're a
&lt;br&gt;&amp;nbsp; &amp;nbsp;little esoteric.
&lt;br&gt;&lt;br&gt;Working Group Charter
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: I made some edits and initiated some discussion within the
&lt;br&gt;&amp;nbsp; &amp;nbsp;W3C (management team etc.)
&lt;br&gt;&amp;nbsp; &amp;nbsp;... for the time being it seems fine. Mike Smith suggested we make
&lt;br&gt;&amp;nbsp; &amp;nbsp;the Javascript API a higher priority.
&lt;br&gt;&amp;nbsp; &amp;nbsp;... If everything goes well this week or monday we will let the AC
&lt;br&gt;&amp;nbsp; &amp;nbsp;know we are planning to move ahead with this charter.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;ivan1&amp;gt; [20]&lt;a href=&quot;http://www.w3.org/2009/11/rdfa-wg-charter.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/rdfa-wg-charter.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[20] &lt;a href=&quot;http://www.w3.org/2009/11/rdfa-wg-charter.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/rdfa-wg-charter.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: ... removed text that would cause people to be concerned
&lt;br&gt;&amp;nbsp; &amp;nbsp;about the open-endedness of the charter. The charter has specific
&lt;br&gt;&amp;nbsp; &amp;nbsp;deliverables. That should help assuage concerns about open-endedness
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;scribe&amp;gt; ACTION: Someone let Ivan know what Open Document Format
&lt;br&gt;&amp;nbsp; &amp;nbsp;reference to use in the charter [recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[21]&lt;a href=&quot;http://www.w3.org/2009/11/19-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/19-rdfa-minutes.html#action08&lt;/a&gt;]
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Steven: notes that we list coordination with external groups when
&lt;br&gt;&amp;nbsp; &amp;nbsp;they are outside of W3C.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;Steven&amp;gt; Here is the ODF TC link -
&lt;br&gt;&amp;nbsp; &amp;nbsp;[22]&lt;a href=&quot;http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=offic&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=offic&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;e
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[22] &lt;a href=&quot;http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=office&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=office&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: pushed out milestones by a month because it assumed we would
&lt;br&gt;&amp;nbsp; &amp;nbsp;start in January, and that was not going to happen
&lt;br&gt;&amp;nbsp; &amp;nbsp;... we could stretch the deliverables out to make it easier.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;benadida: the draft plans for slack time by having the schedule
&lt;br&gt;&amp;nbsp; &amp;nbsp;tight, but has the end of the charter out a little bit
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: we can extend the charter if we need to when deadlines are
&lt;br&gt;&amp;nbsp; &amp;nbsp;missed. dont' need to build in slack in this way.
&lt;br&gt;&amp;nbsp; &amp;nbsp;... some deliverables in the charter look like software development.
&lt;br&gt;&amp;nbsp; &amp;nbsp;W3C working groups do not develop software. also, it looks like that
&lt;br&gt;&amp;nbsp; &amp;nbsp;is what the group would be doing in its last 8 months. that might be
&lt;br&gt;&amp;nbsp; &amp;nbsp;bad.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Steven: discussed the charter with the Interaction Domain team
&lt;br&gt;&amp;nbsp; &amp;nbsp;group. They felt we should be doing work on some basic set of
&lt;br&gt;&amp;nbsp; &amp;nbsp;advised vocabularies as a way to help people start using RDFa more
&lt;br&gt;&amp;nbsp; &amp;nbsp;quickly.
&lt;br&gt;&amp;nbsp; &amp;nbsp;... Suggests we say we will produce a cookbook or produce standard
&lt;br&gt;&amp;nbsp; &amp;nbsp;vocabularies
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: vocabularies is not an RDFa issue. it is a semweb issue. this
&lt;br&gt;&amp;nbsp; &amp;nbsp;group should not pick it up.
&lt;br&gt;&amp;nbsp; &amp;nbsp;... having something that is richer than the Primer (e.g., a
&lt;br&gt;&amp;nbsp; &amp;nbsp;Cookbook) that uses some of the vocabs out there as examples might
&lt;br&gt;&amp;nbsp; &amp;nbsp;be a real benefit. We should not be blessing vocabs.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;markbirbeck&amp;gt; +1 to Ivan
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Steven: I think a cookbook / examples is just fine and will help
&lt;br&gt;&amp;nbsp; &amp;nbsp;address their problem.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ShaneM: +1 to Ivan
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: RDFa is a serialization syntax - vocab to use is a general
&lt;br&gt;&amp;nbsp; &amp;nbsp;sem web issue.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;re: software development...
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;benadida: understands w3c is not in the software implementation
&lt;br&gt;&amp;nbsp; &amp;nbsp;business. However, when we started building prototypes of RDFa
&lt;br&gt;&amp;nbsp; &amp;nbsp;things really moved ahead.
&lt;br&gt;&amp;nbsp; &amp;nbsp;... if we shouldn't put them in the charter that's one thing. but we
&lt;br&gt;&amp;nbsp; &amp;nbsp;should still prototype to ensure that things work!
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;markbirbeck: not convinced things took off when we started
&lt;br&gt;&amp;nbsp; &amp;nbsp;prototyping. The problem is that mentioning specific libraries like
&lt;br&gt;&amp;nbsp; &amp;nbsp;jQuery or Dojo might be limiting. we should not be pushing a
&lt;br&gt;&amp;nbsp; &amp;nbsp;specific library set. We should have something more abstract but we
&lt;br&gt;&amp;nbsp; &amp;nbsp;should not lock ourselves in and therefore miss whatever is going to
&lt;br&gt;&amp;nbsp; &amp;nbsp;be happening two years from now.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: +1 to Mark. moreover, saying we are adapting to jQuery or
&lt;br&gt;&amp;nbsp; &amp;nbsp;Dojo or whatever, that is something individuals are doing to ensure
&lt;br&gt;&amp;nbsp; &amp;nbsp;that the ideas work. It should not be a deliverable of the working
&lt;br&gt;&amp;nbsp; &amp;nbsp;group though.
&lt;br&gt;&amp;nbsp; &amp;nbsp;... should have in the scope and deliverables more detailed text
&lt;br&gt;&amp;nbsp; &amp;nbsp;about community building. We have the Primer. We could do a note
&lt;br&gt;&amp;nbsp; &amp;nbsp;about triple store. There could be a cookbook. But we could also say
&lt;br&gt;&amp;nbsp; &amp;nbsp;that at the end of the working group we have a deliverable that is a
&lt;br&gt;&amp;nbsp; &amp;nbsp;Note about how RDfa is used in practice and what libraries are
&lt;br&gt;&amp;nbsp; &amp;nbsp;around at the time and how RDFa is used in the wild. This is the
&lt;br&gt;&amp;nbsp; &amp;nbsp;'start of the art' at the time.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;benadida: feels there should be implementation work, but if there is
&lt;br&gt;&amp;nbsp; &amp;nbsp;no room for it in the charter so be it
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ShaneM: is concerned that a Note at the end becomes some 'iconic
&lt;br&gt;&amp;nbsp; &amp;nbsp;thing' that gets referred to forever even though it is immediately
&lt;br&gt;&amp;nbsp; &amp;nbsp;out of date
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;ivan1: What I try to do is set up wikis for groups so that it can be
&lt;br&gt;&amp;nbsp; &amp;nbsp;maintained over time, rather than just producing a Note. Make it
&lt;br&gt;&amp;nbsp; &amp;nbsp;explciit that there is also a wiki so the community can keep it up
&lt;br&gt;&amp;nbsp; &amp;nbsp;once the group ends
&lt;br&gt;&amp;nbsp; &amp;nbsp;... knows there is already a wiki outside of w3c space.
&lt;br&gt;&amp;nbsp; &amp;nbsp;... sem web wiki was just set up by Ivan. For the time being, in the
&lt;br&gt;&amp;nbsp; &amp;nbsp;sem web wiki there is apointer to the existing RDFa wiki.
&lt;br&gt;&amp;nbsp; &amp;nbsp;... 'I am not in the business of trying to rule the world'.
&lt;br&gt;&lt;br&gt;Summary of Action Items
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;[NEW] ACTION: Manu to ask somebody to draft errata text, clarifying
&lt;br&gt;&amp;nbsp; &amp;nbsp;that prefixes cannot be '_' character [recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[23]&lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#action10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#action10&lt;/a&gt;]
&lt;br&gt;&amp;nbsp; &amp;nbsp;[NEW] ACTION: Mark to author URIs in @about, @rel, @rev, @typeof and
&lt;br&gt;&amp;nbsp; &amp;nbsp;@datatype spec text [recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[24]&lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#action09&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#action09&lt;/a&gt;]
&lt;br&gt;&amp;nbsp; &amp;nbsp;[NEW] ACTION: Someone let Ivan know what Open Document Format
&lt;br&gt;&amp;nbsp; &amp;nbsp;reference to use in the charter [recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[25]&lt;a href=&quot;http://www.w3.org/2009/11/19-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/19-rdfa-minutes.html#action08&lt;/a&gt;]
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[23] &lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#action10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#action10&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[24] &lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#action09&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#action09&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;[PENDING] ACTION: Manu to aggressively push review of test cases via
&lt;br&gt;&amp;nbsp; &amp;nbsp;mailing list [recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[26]&lt;a href=&quot;http://www.w3.org/2009/10/29-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/29-rdfa-minutes.html#action08&lt;/a&gt;]
&lt;br&gt;&amp;nbsp; &amp;nbsp;[PENDING] ACTION: Manu to try and find other interested parties in
&lt;br&gt;&amp;nbsp; &amp;nbsp;RDFa WG. [recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[27]&lt;a href=&quot;http://www.w3.org/2009/10/22-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/22-rdfa-minutes.html#action08&lt;/a&gt;]
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[26] &lt;a href=&quot;http://www.w3.org/2009/10/29-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/29-rdfa-minutes.html#action08&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[27] &lt;a href=&quot;http://www.w3.org/2009/10/22-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/22-rdfa-minutes.html#action08&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;[DONE] ACTION: Ben to finish authoring RDFa WG charter. [recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[28]&lt;a href=&quot;http://www.w3.org/2009/10/22-rdfa-minutes.html#action07&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/22-rdfa-minutes.html#action07&lt;/a&gt;]
&lt;br&gt;&amp;nbsp; &amp;nbsp;[DONE] ACTION: Manu to convert WG Charter page to W3C charter format
&lt;br&gt;&amp;nbsp; &amp;nbsp;[recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[29]&lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#action08&lt;/a&gt;]
&lt;br&gt;&amp;nbsp; &amp;nbsp;[DONE] ACTION: Shane to re-draft XMLLiteral errata text [recorded in
&lt;br&gt;&amp;nbsp; &amp;nbsp;[30]&lt;a href=&quot;http://www.w3.org/2009/10/15-rdfa-minutes.html#action04&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/15-rdfa-minutes.html#action04&lt;/a&gt;]
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[28] &lt;a href=&quot;http://www.w3.org/2009/10/22-rdfa-minutes.html#action07&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/22-rdfa-minutes.html#action07&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[29] &lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#action08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#action08&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[30] &lt;a href=&quot;http://www.w3.org/2009/10/15-rdfa-minutes.html#action04&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/10/15-rdfa-minutes.html#action04&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;[End of minutes]
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;_________________________________________________________
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Minutes formatted by David Booth's [31]scribe.perl version 1.135
&lt;br&gt;&amp;nbsp; &amp;nbsp; ([32]CVS log)
&lt;br&gt;&amp;nbsp; &amp;nbsp; $Date: 2009/11/20 10:27:15 $
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;_________________________________________________________
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[31] &lt;a href=&quot;http://dev.w3.org/cvsweb/~checkout~/2002/scribe/scribedoc.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dev.w3.org/cvsweb/~checkout~/2002/scribe/scribedoc.htm&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[32] &lt;a href=&quot;http://dev.w3.org/cvsweb/2002/scribe/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dev.w3.org/cvsweb/2002/scribe/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;Ivan Herman, W3C Semantic Web Activity Lead
&lt;br&gt;Home: &lt;a href=&quot;http://www.w3.org/People/Ivan/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/People/Ivan/&lt;/a&gt;&lt;br&gt;mobile: +31-641044153
&lt;br&gt;PGP Key: &lt;a href=&quot;http://www.ivan-herman.net/pgpkey.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ivan-herman.net/pgpkey.html&lt;/a&gt;&lt;br&gt;FOAF: &lt;a href=&quot;http://www.ivan-herman.net/foaf.rdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ivan-herman.net/foaf.rdf&lt;/a&gt;&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (5K) &lt;a href=&quot;http://old.nabble.com/attachment/26441146/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Meeting-minutes%2C-2009-11-29-tp26441146p26441146.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26437549</id>
	<title>Re: Inferencing on graph patterns</title>
	<published>2009-11-19T18:28:27Z</published>
	<updated>2009-11-19T18:28:27Z</updated>
	<author>
		<name>Enrico Franconi</name>
	</author>
	<content type="html">Ooops, sorry: I realise just now that you were talking about OWL2 *RL*.
&lt;br&gt;I don't have a full picture of OWL2 RL, but: if OWL2 RL allows for &amp;nbsp;
&lt;br&gt;recursive rules, then again SPARQL can not encode it due to a data &amp;nbsp;
&lt;br&gt;complexity argument - linear time lower bound for recursive rules as &amp;nbsp;
&lt;br&gt;opposed to AC0 (sub-linear and sub-logspace) upper bound for SPARQL.
&lt;br&gt;cheers
&lt;br&gt;--e.
&lt;br&gt;&lt;br&gt;On 20 Nov 2009, at 02:20, Enrico Franconi wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On 14 Nov 2009, at 11:41, Simon Reinhardt wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Note, however, that you may get what you want with a different &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; query.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; For &amp;nbsp;example, in this case, the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; SELECT ?type WHERE { ex:C1 rdfs:subclass ?type. }
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; will return all possible types.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Ok. Querying for inferred types was just an example, the initial &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; use case that brought me to this was actually a bit more complex &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; (property restrictions). For this that kind of inferencing would &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; have made the query a lot simpler. But it should still be possible &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; to cover a lot of the inferencing &amp;quot;rules&amp;quot; with SPARQL, especially &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; with property paths. Maybe it's worth investigating at some point &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; how much of OWL 2 RL could be implemented with pure SPARQL - and &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; what extensions would be needed to add the missing bits. But that's &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; just something to keep in mind for the future. :-)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you fix the entailment regime to RDFS, then very little of OWL2 &amp;nbsp;
&lt;br&gt;&amp;gt; can be encoded in SPARQL, since it is has been shown that the &amp;nbsp;
&lt;br&gt;&amp;gt; computational complexities diverge too much. There are also simple &amp;nbsp;
&lt;br&gt;&amp;gt; counter-examples showing that it does not make sense to have an OWL2 &amp;nbsp;
&lt;br&gt;&amp;gt; entailment regime in SPARQL, since you would get unsound results &amp;nbsp;
&lt;br&gt;&amp;gt; (wrt OWL2 semantics) very easily. So, really, SPARQL can hardly go &amp;nbsp;
&lt;br&gt;&amp;gt; beyond RDFS.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; cheers
&lt;br&gt;&amp;gt; --e.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [1] Enrico Franconi. The logic of RDF and SPARQL: a tutorial. &amp;nbsp;
&lt;br&gt;&amp;gt; Invited talk at the 25th ACM Symposium on Principles of Database &amp;nbsp;
&lt;br&gt;&amp;gt; Systems (PODS-2006), in Chicago IL, on 26-28 June 2006. &amp;lt;&lt;a href=&quot;http://www.inf.unibz.it/~franconi/papers/franconi-slides-pods-2006.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.inf.unibz.it/~franconi/papers/franconi-slides-pods-2006.pdf&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (3K) &lt;a href=&quot;http://old.nabble.com/attachment/26437549/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-dawg-comments-f11615.html&quot; embed=&quot;fixTarget[11615]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-dawg-comments&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Inferencing-on-graph-patterns-tp26265355p26437549.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26437492</id>
	<title>Re: Inferencing on graph patterns</title>
	<published>2009-11-19T18:20:35Z</published>
	<updated>2009-11-19T18:20:35Z</updated>
	<author>
		<name>Enrico Franconi</name>
	</author>
	<content type="html">On 14 Nov 2009, at 11:41, Simon Reinhardt wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; Note, however, that you may get what you want with a different query.
&lt;br&gt;&amp;gt;&amp;gt; For &amp;nbsp;example, in this case, the
&lt;br&gt;&amp;gt;&amp;gt; SELECT ?type WHERE { ex:C1 rdfs:subclass ?type. }
&lt;br&gt;&amp;gt;&amp;gt; will return all possible types.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Ok. Querying for inferred types was just an example, the initial use &amp;nbsp;
&lt;br&gt;&amp;gt; case that brought me to this was actually a bit more complex &amp;nbsp;
&lt;br&gt;&amp;gt; (property restrictions). For this that kind of inferencing would &amp;nbsp;
&lt;br&gt;&amp;gt; have made the query a lot simpler. But it should still be possible &amp;nbsp;
&lt;br&gt;&amp;gt; to cover a lot of the inferencing &amp;quot;rules&amp;quot; with SPARQL, especially &amp;nbsp;
&lt;br&gt;&amp;gt; with property paths. Maybe it's worth investigating at some point &amp;nbsp;
&lt;br&gt;&amp;gt; how much of OWL 2 RL could be implemented with pure SPARQL - and &amp;nbsp;
&lt;br&gt;&amp;gt; what extensions would be needed to add the missing bits. But that's &amp;nbsp;
&lt;br&gt;&amp;gt; just something to keep in mind for the future. :-)
&lt;/div&gt;&lt;/div&gt;If you fix the entailment regime to RDFS, then very little of OWL2 can &amp;nbsp;
&lt;br&gt;be encoded in SPARQL, since it is has been shown that the &amp;nbsp;
&lt;br&gt;computational complexities diverge too much. There are also simple &amp;nbsp;
&lt;br&gt;counter-examples showing that it does not make sense to have an OWL2 &amp;nbsp;
&lt;br&gt;entailment regime in SPARQL, since you would get unsound results (wrt &amp;nbsp;
&lt;br&gt;OWL2 semantics) very easily. So, really, SPARQL can hardly go beyond &amp;nbsp;
&lt;br&gt;RDFS.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;--e.
&lt;br&gt;&lt;br&gt;[1] Enrico Franconi. The logic of RDF and SPARQL: a tutorial. Invited &amp;nbsp;
&lt;br&gt;talk at the 25th ACM Symposium on Principles of Database Systems &amp;nbsp;
&lt;br&gt;(PODS-2006), in Chicago IL, on 26-28 June 2006. &amp;lt;&lt;a href=&quot;http://www.inf.unibz.it/~franconi/papers/franconi-slides-pods-2006.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.inf.unibz.it/~franconi/papers/franconi-slides-pods-2006.pdf&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (3K) &lt;a href=&quot;http://old.nabble.com/attachment/26437492/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-dawg-comments-f11615.html&quot; embed=&quot;fixTarget[11615]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-dawg-comments&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Inferencing-on-graph-patterns-tp26265355p26437492.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26437407</id>
	<title>Re: Inferencing on graph patterns</title>
	<published>2009-11-19T18:09:01Z</published>
	<updated>2009-11-19T18:09:01Z</updated>
	<author>
		<name>Enrico Franconi</name>
	</author>
	<content type="html">&lt;br&gt;On 14 Nov 2009, at 05:30, Ivan Herman wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; Consider the following data in a store:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; (1) ex:C1 rdfs:subClassOf ex:C2 .
&lt;br&gt;&amp;gt;&amp;gt; (2) :myC1 a ex:C1 .
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Now when you do the following query at the endpoint for the store:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; SELECT ?type WHERE { ?x a ex:C1 , ?type }
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; and it supports the RDFS entailment regime the result would be &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; ex:C1 and
&lt;br&gt;&amp;gt;&amp;gt; ex:C2 because the store would infer :myC1 to be of type ex:C2, either
&lt;br&gt;&amp;gt;&amp;gt; when the data got added or on-the-fly.
&lt;br&gt;&amp;gt;&amp;gt; But what if the store didn't contain triple (2) and so no data &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; about any
&lt;br&gt;&amp;gt;&amp;gt; instances of those two classes? Is there any way that it could make
&lt;br&gt;&amp;gt;&amp;gt; inferences about the data in the WHERE clause and therefore infer &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; that
&lt;br&gt;&amp;gt;&amp;gt; ?x would be of type ex:C2 as well? I guess not since this is &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; querying by
&lt;br&gt;&amp;gt;&amp;gt; matching patterns rather than &amp;quot;query by example&amp;quot;. But I can see &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; various
&lt;br&gt;&amp;gt;&amp;gt; uses for this. So if this is not how it's currently defined to work,
&lt;br&gt;&amp;gt;&amp;gt; have you considered this?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The inference regime is defined on possible solution. That indeed &amp;nbsp;
&lt;br&gt;&amp;gt; means
&lt;br&gt;&amp;gt; that no inference is made on variables which means, as you say, that
&lt;br&gt;&amp;gt; without &amp;nbsp;the triple (2) the required results will not be returned. And
&lt;br&gt;&amp;gt; there is &amp;nbsp;no mechanism envisioned in SPARQL to achieve that.
&lt;/div&gt;&lt;/div&gt;The real &amp;quot;logical&amp;quot; reason why the answer is empty is that the ?x &amp;nbsp;
&lt;br&gt;variable is understood to be existential, so you are actually asking &amp;nbsp;
&lt;br&gt;&amp;quot;all the types of an object ?x if such object ?x *exists* and it is of &amp;nbsp;
&lt;br&gt;type ex:C1&amp;quot;. But without (2) it is not guaranteed that such an object &amp;nbsp;
&lt;br&gt;*necessarily* exists, therefore the answer is empty.
&lt;br&gt;&lt;br&gt;&amp;gt; Note, however, that you may get what you want with a different query.
&lt;br&gt;&amp;gt; For &amp;nbsp;example, in this case, the
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; SELECT ?type WHERE { ex:C1 rdfs:subclass ?type. }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; will return all possible types.
&lt;br&gt;&lt;br&gt;Well, only the one that can be inferred by the transitive closure of &amp;nbsp;
&lt;br&gt;rdfs:subClassOf. Indeed rdfs will never return any other type which &amp;nbsp;
&lt;br&gt;could be inferred by other means -- look at some examples of &amp;nbsp;
&lt;br&gt;inferences that will never be drawn by RDFS in the attachment.
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;--e.
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;rdfs-incompleteness.png&lt;/strong&gt; (71K) &lt;a href=&quot;http://old.nabble.com/attachment/26437407/0/rdfs-incompleteness.png&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (3K) &lt;a href=&quot;http://old.nabble.com/attachment/26437407/1/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-dawg-comments-f11615.html&quot; embed=&quot;fixTarget[11615]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-dawg-comments&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Inferencing-on-graph-patterns-tp26265355p26437407.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26427497</id>
	<title>Re: Job ad: Scientific Employee</title>
	<published>2009-11-19T06:23:20Z</published>
	<updated>2009-11-19T06:23:20Z</updated>
	<author>
		<name>HR-33</name>
	</author>
	<content type="html">Dear All,
&lt;br&gt;&lt;br&gt;the Semantic Technology Institute at the University of Innsbruck
&lt;br&gt;(Austria) is currently seeking candidates for the following positions:
&lt;br&gt;&lt;br&gt;PhD Researcher
&lt;br&gt;Post-Doc/Senior Researcher
&lt;br&gt;&lt;br&gt;More Information on the job an application procedure can be found at
&lt;br&gt;&lt;a href=&quot;http://www.sti-innsbruck.at/about/jobs/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sti-innsbruck.at/about/jobs/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;&lt;br&gt;Human Resources
&lt;br&gt;&lt;br&gt;STI Innsbruck
&lt;br&gt;Technikerstraß1 21a
&lt;br&gt;6020 Innsbruck
&lt;br&gt;Austria
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-logic-f11722.html&quot; embed=&quot;fixTarget[11722]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-logic&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Job-ad%3A-PhD-position-tp12367413p26427497.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26427506</id>
	<title>Re: Job ad: Scientific Employee</title>
	<published>2009-11-19T06:23:20Z</published>
	<updated>2009-11-19T06:23:20Z</updated>
	<author>
		<name>HR-33</name>
	</author>
	<content type="html">Dear All,
&lt;br&gt;&lt;br&gt;the Semantic Technology Institute at the University of Innsbruck
&lt;br&gt;(Austria) is currently seeking candidates for the following positions:
&lt;br&gt;&lt;br&gt;PhD Researcher
&lt;br&gt;Post-Doc/Senior Researcher
&lt;br&gt;&lt;br&gt;More Information on the job an application procedure can be found at
&lt;br&gt;&lt;a href=&quot;http://www.sti-innsbruck.at/about/jobs/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sti-innsbruck.at/about/jobs/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;&lt;br&gt;Human Resources
&lt;br&gt;&lt;br&gt;STI Innsbruck
&lt;br&gt;Technikerstraß1 21a
&lt;br&gt;6020 Innsbruck
&lt;br&gt;Austria
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-interest-f11721.html&quot; embed=&quot;fixTarget[11721]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-interest&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Job-ad%3A-PhD-position-tp12367469p26427506.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26427496</id>
	<title>Re: Job ad: Scientific Employee</title>
	<published>2009-11-19T06:23:20Z</published>
	<updated>2009-11-19T06:23:20Z</updated>
	<author>
		<name>HR-33</name>
	</author>
	<content type="html">Dear All,
&lt;br&gt;&lt;br&gt;the Semantic Technology Institute at the University of Innsbruck
&lt;br&gt;(Austria) is currently seeking candidates for the following positions:
&lt;br&gt;&lt;br&gt;PhD Researcher
&lt;br&gt;Post-Doc/Senior Researcher
&lt;br&gt;&lt;br&gt;More Information on the job an application procedure can be found at
&lt;br&gt;&lt;a href=&quot;http://www.sti-innsbruck.at/about/jobs/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sti-innsbruck.at/about/jobs/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Best Regards,
&lt;br&gt;&lt;br&gt;Human Resources
&lt;br&gt;&lt;br&gt;STI Innsbruck
&lt;br&gt;Technikerstraß1 21a
&lt;br&gt;6020 Innsbruck
&lt;br&gt;Austria
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---www-rdf-rules-f11724.html&quot; embed=&quot;fixTarget[11724]&quot; target=&quot;_top&quot; &gt;w3.org - www-rdf-rules&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Job-ad%3A-PhD-position-tp12367421p26427496.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26426250</id>
	<title>Re: Comments on SPARQL 1.1 WD 20091022</title>
	<published>2009-11-19T05:28:58Z</published>
	<updated>2009-11-19T05:28:58Z</updated>
	<author>
		<name>Andy Seaborne</name>
	</author>
	<content type="html">&lt;br&gt;On 24/10/2009 14:09, Leigh Dodds wrote:
&lt;br&gt;Leigh,
&lt;br&gt;&lt;br&gt;Thank you for your comments.
&lt;br&gt;&lt;br&gt;This first published working draft contains the new areas for query that 
&lt;br&gt;the working group is progressing. &amp;nbsp;The material will be integrated with 
&lt;br&gt;the the previous version of the query language to produce a single, new 
&lt;br&gt;document for SPARQL 1.1 Query.
&lt;br&gt;&lt;br&gt;Things may be a little rough in this first draft ...
&lt;br&gt;&lt;br&gt;Leigh Dodds wrote:
&lt;br&gt;&amp;nbsp; &amp;gt; Hi,
&lt;br&gt;&amp;nbsp; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;gt; Here are some personal comments/questions on the 22/10/2009 WD of 
&lt;br&gt;SPARQL 1.1.
&lt;br&gt;&amp;nbsp; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;gt; * Example in Section 2. I don't think the project expression conforms
&lt;br&gt;&amp;nbsp; &amp;gt; with grammar shown latter in the doc; missing brackets? I know this is
&lt;br&gt;&amp;nbsp; &amp;gt; still up for discussion, but thought I'd point it out
&lt;br&gt;&lt;br&gt;Yes - it's not consistent. &amp;nbsp;The WG had not reached a conclusion on the
&lt;br&gt;exact syntax at the time of publication.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;gt; * Section 2, Syntax. re: the note about using FILTER instead of
&lt;br&gt;&amp;nbsp; &amp;gt; HAVING. Assuming I'm reading the comment correctly, I think for
&lt;br&gt;&amp;nbsp; &amp;gt; readability purposes its better to have a separate keyword (HAVING)
&lt;br&gt;&amp;nbsp; &amp;gt; rather than re-use the FILTER keyword. I think its clearer that there
&lt;br&gt;&amp;nbsp; &amp;gt; are different constraints (i.e. aggregates allowed or not) on the
&lt;br&gt;&amp;nbsp; &amp;gt; expression, and retains similarity with SQL.
&lt;br&gt;&amp;nbsp; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;gt; * Section 3. Text above example query is wrong, I think it should
&lt;br&gt;&amp;nbsp; &amp;gt; ready &amp;quot;from all the people that Alice knows&amp;quot;, not &amp;quot;that know Alice&amp;quot;.
&lt;br&gt;&lt;br&gt;Agreed.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;gt; * Section 4. What is the rationale for including both a FILTER and a
&lt;br&gt;&amp;nbsp; &amp;gt; graph pattern operator for EXISTS/NOT EXISTS? If there are benefits in
&lt;br&gt;&amp;nbsp; &amp;gt; terms of expressivity or ease of implementation it would be good to be
&lt;br&gt;&amp;nbsp; &amp;gt; able to call these out in the specification.
&lt;br&gt;&lt;br&gt;If the working group decides to allow EXISTS/NOT EXISTS in FILTERs, then 
&lt;br&gt;there will be a example to illustrate the point.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;gt; * Section 4. The NOT EXISTS and EXISTS graph pattern operators are
&lt;br&gt;&amp;nbsp; &amp;gt; described as &amp;quot;applying only to variables defined earlier in the
&lt;br&gt;&amp;nbsp; &amp;gt; pattern&amp;quot;. What does &amp;quot;earlier&amp;quot; mean if a SPARQL processor can re-order
&lt;br&gt;&amp;nbsp; &amp;gt; the statements for optimization purposes? Does use of those operators
&lt;br&gt;&amp;nbsp; &amp;gt; have some impact on an implementations ability to do that?
&lt;br&gt;&lt;br&gt;It's loose wording to discuss the scoping of variables. &amp;nbsp;&amp;quot;earlier&amp;quot; means 
&lt;br&gt;the pattern to the left or above of the NOT EXISTS.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;gt; Cheers,
&lt;br&gt;&amp;nbsp; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;gt; L.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Andy
&lt;br&gt;&amp;nbsp; &amp;nbsp; on behalf of the SPARQL Working Group
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-dawg-comments-f11615.html&quot; embed=&quot;fixTarget[11615]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-dawg-comments&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Comments-on-SPARQL-1.1-WD-20091022-tp26038959p26426250.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26426033</id>
	<title>Re: Telecon Agenda - 19 November 2009, 1600 UTC</title>
	<published>2009-11-19T05:13:39Z</published>
	<updated>2009-11-19T05:13:39Z</updated>
	<author>
		<name>Steven Pemberton-3</name>
	</author>
	<content type="html">I will be present this week, though I may be a few minutes late.
&lt;br&gt;&lt;br&gt;Steven
&lt;br&gt;&lt;br&gt;On Wed, 18 Nov 2009 19:18:24 +0100, Ben Adida &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26426033&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ben@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm working to get these agendas out earlier, so here goes. Next week, &amp;nbsp;
&lt;br&gt;&amp;gt; it *might* even happen on Tuesday!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -Ben
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ==========
&lt;br&gt;&amp;gt; Thursday, November 19th 2009
&lt;br&gt;&amp;gt; 1500 UTC, W3C Zakim bridge
&lt;br&gt;&amp;gt; tel:+1.617.761.6200 conference code RDFA
&lt;br&gt;&amp;gt; irc://irc.w3.org:6665/#rdfa
&lt;br&gt;&amp;gt; Duration: 60 minutes
&lt;br&gt;&amp;gt; Scribe: Zakim, pick a victim
&lt;br&gt;&amp;gt; ==========
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Agenda
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1) Action Items:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#ActionSummary&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#ActionSummary&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2) Test Cases - conflicts with new recommendations? Quick discussion.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 3) WG charter
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 4) @vocab discussion
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Telecon-Agenda---19-November-2009%2C-1600-UTC-tp26412974p26426033.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26412974</id>
	<title>Telecon Agenda - 19 November 2009, 1600 UTC</title>
	<published>2009-11-18T10:18:24Z</published>
	<updated>2009-11-18T10:18:24Z</updated>
	<author>
		<name>Ben Adida-2</name>
	</author>
	<content type="html">&lt;br&gt;Hi all,
&lt;br&gt;&lt;br&gt;I'm working to get these agendas out earlier, so here goes. Next week, 
&lt;br&gt;it *might* even happen on Tuesday!
&lt;br&gt;&lt;br&gt;-Ben
&lt;br&gt;&lt;br&gt;==========
&lt;br&gt;Thursday, November 19th 2009
&lt;br&gt;1500 UTC, W3C Zakim bridge
&lt;br&gt;tel:+1.617.761.6200 conference code RDFA
&lt;br&gt;irc://irc.w3.org:6665/#rdfa
&lt;br&gt;Duration: 60 minutes
&lt;br&gt;Scribe: Zakim, pick a victim
&lt;br&gt;==========
&lt;br&gt;&lt;br&gt;&lt;br&gt;Agenda
&lt;br&gt;&lt;br&gt;1) Action Items:
&lt;br&gt;&lt;a href=&quot;http://www.w3.org/2009/11/12-rdfa-minutes.html#ActionSummary&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2009/11/12-rdfa-minutes.html#ActionSummary&lt;/a&gt;&lt;br&gt;&lt;br&gt;2) Test Cases - conflicts with new recommendations? Quick discussion.
&lt;br&gt;&lt;br&gt;3) WG charter
&lt;br&gt;&lt;br&gt;4) @vocab discussion
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Telecon-Agenda---19-November-2009%2C-1600-UTC-tp26412974p26412974.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26412375</id>
	<title>Re: re-PROPOSAL: Errata text about XMLLiteral values and canonical  XML</title>
	<published>2009-11-18T09:43:29Z</published>
	<updated>2009-11-18T09:43:29Z</updated>
	<author>
		<name>Ben Adida-2</name>
	</author>
	<content type="html">&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Section 5.5, step 9 reads in part &amp;quot;The value of the [XML literal] is a 
&lt;br&gt;&amp;gt; string created by serializing to text, all nodes that are descendants of 
&lt;br&gt;&amp;gt; the [current element], i.e., not including the element itself, and 
&lt;br&gt;&amp;gt; giving it a datatype of |rdf:XMLLiteral|.&amp;quot; &amp;nbsp;Unfortunately, the 
&lt;br&gt;&amp;gt; requirements for such a serialized string are not completely clear when 
&lt;br&gt;&amp;gt; it comes to XML Namespaces. &amp;nbsp;For the avoidance of doubt, in future 
&lt;br&gt;&amp;gt; versions of the RDFa Syntax Recommendation, we expect to indicate that 
&lt;br&gt;&amp;gt; the value of the XML literal SHOULD be serialized Exclusive Canonical 
&lt;br&gt;&amp;gt; XML as defined in [XMLEXC14N]. &amp;nbsp;We advise current implementations to 
&lt;br&gt;&amp;gt; start supporting this use model now, since other participants in their 
&lt;br&gt;&amp;gt; XML tool chain may expect consistent, canonical XML.
&lt;/div&gt;&lt;br&gt;+1
&lt;br&gt;&lt;br&gt;-Ben
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-re-PROPOSAL%3A-Errata-text-about-XMLLiteral-values-and-canonical--XML-tp26412375p26412375.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26412348</id>
	<title>Re: Call for Review of XHTML Test Cases 158, 160, 162, 164</title>
	<published>2009-11-18T09:42:06Z</published>
	<updated>2009-11-18T09:42:06Z</updated>
	<author>
		<name>Ben Adida-2</name>
	</author>
	<content type="html">&lt;br&gt;TC158: approved with discussion
&lt;br&gt;TC160: approved with discussion
&lt;br&gt;TC162: approved with discussion
&lt;br&gt;TC164: approved with discussion
&lt;br&gt;&lt;br&gt;The discussion is what Shane brought up: we're now writing test cases 
&lt;br&gt;that will explicitly fail our new proposal. That means we need to 
&lt;br&gt;carefully think about the &amp;quot;junk&amp;quot; triples that might be generated once we 
&lt;br&gt;enable our new proposal, and whether these are really test cases we want.
&lt;br&gt;&lt;br&gt;I don't mind test case duplication. A while back, we agreed on the 
&lt;br&gt;principle that we would accept test cases only on the criteria that 
&lt;br&gt;they're valid, otherwise combining them becomes an n^2 problem :)
&lt;br&gt;&lt;br&gt;But if everyone else wants to merge 158 and 164, I'm also not opposed.
&lt;br&gt;&lt;br&gt;-Ben
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Call-for-Review-of-XHTML-Test-Cases-158%2C-160%2C-162%2C-164-tp26367114p26412348.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26411847</id>
	<title>Re: URIs in @rel and @property...</title>
	<published>2009-11-18T09:15:43Z</published>
	<updated>2009-11-18T09:15:43Z</updated>
	<author>
		<name>Ben Adida-2</name>
	</author>
	<content type="html">&lt;br&gt;Many good comments and good elephant finding and hunting :)
&lt;br&gt;&lt;br&gt;I'm still concerned about the complexity we would be introducing in 
&lt;br&gt;@about and @resource when we already have safe CURIEs, meaning the use 
&lt;br&gt;cases are already addressed, I believe.
&lt;br&gt;&lt;br&gt;That said, I also see the benefit of applying the general rule of CURIE 
&lt;br&gt;falling back into URLS when the prefix isn't defined... that's kind of nice.
&lt;br&gt;&lt;br&gt;I'm not entirely sure which side I fall on right now, but if we have a 
&lt;br&gt;very clear algorithm that we all agree on, I guess I could be convinced 
&lt;br&gt;to go with this new URI-fallback mechanism.
&lt;br&gt;&lt;br&gt;-Ben
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/w3.org---public-rdf-in-xhtml-tf-f11616.html&quot; embed=&quot;fixTarget[11616]&quot; target=&quot;_top&quot; &gt;w3.org - public-rdf-in-xhtml-tf&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/URIs-in-%40rel-and-%40property...-tp26323325p26411847.html" />
</entry>

</feed>
