<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.w3.org/wiki/skins/common/feed.css?207"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>W3C Wiki - User contributions [en]</title>
		<link>http://www.w3.org/wiki/Special:Contributions/Charles</link>
		<description>From W3C Wiki</description>
		<language>en</language>
		<generator>MediaWiki 1.15.5</generator>
		<lastBuildDate>Sat, 25 May 2013 12:14:13 GMT</lastBuildDate>
		<item>
			<title>Webapps/AppCacheUseCases</title>
			<link>http://www.w3.org/wiki/Webapps/AppCacheUseCases</link>
			<description>&lt;p&gt;Charles:&amp;#32;Jonas' use cases&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== 1. Initial loading - Yandex ===&lt;br /&gt;
Our SERP (and Yandex main page www.yandex.ru) uses embedded styles and  &lt;br /&gt;
scripts for faster loading than with multiple requests for  &lt;br /&gt;
styles/scripts/...&lt;br /&gt;
&lt;br /&gt;
But users load them every time they visit the results page, because the  &lt;br /&gt;
browser doesn't cache it. It would be nice on the first visit to extract  &lt;br /&gt;
the styles and scripts and store them in the cache.&lt;br /&gt;
&lt;br /&gt;
=== 2. Bundles - Yandex ===&lt;br /&gt;
Sometimes we need to load several resources (js/css/json/...) before we  &lt;br /&gt;
can actually show something to user. Like a dialog, or another complex  &lt;br /&gt;
control. Or if it's a single page application before change &amp;quot;page&amp;quot;. Again,  &lt;br /&gt;
it's often faster to make one request than several, but it would be even  &lt;br /&gt;
faster if we could then cache them separately:&lt;br /&gt;
HttpCache.store(url1, content1);&lt;br /&gt;
HttpCache.store(url2, content2);&lt;br /&gt;
...&lt;br /&gt;
So that later we can use the files as usual (&amp;lt;script&amp;gt;, &amp;lt;link&amp;gt;...).&lt;br /&gt;
&lt;br /&gt;
=== 3. Diffs (delta updates) - Yandex ===&lt;br /&gt;
Every static file (js/css/...) has a version, e.g.  &lt;br /&gt;
http://yandex.st/mail/1.3.8/mail.js&lt;br /&gt;
Whan we release a new version our users have to download it. It could be  &lt;br /&gt;
hundreds of kilobytes (or more). But the difference between versions is  &lt;br /&gt;
often not very big. So we want to make delta updates.&lt;br /&gt;
&lt;br /&gt;
It would be nice if we could download the diff, apply it in the browser  &lt;br /&gt;
and store the update in cache e.g.:&lt;br /&gt;
&lt;br /&gt;
var oldVersion = '1.3.8';&lt;br /&gt;
var newVersion = '1.3.9';&lt;br /&gt;
var oldContent = HttpCache.get(oldUrl);&lt;br /&gt;
var newContent = applyPatch(oldContent, patch);&lt;br /&gt;
HttpCache.store(newUrl, newContent);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 4. Preloading - Yandex ===&lt;br /&gt;
Well, we can use normal xhr for that but maybe we can do more with  &lt;br /&gt;
HttpCache.&lt;br /&gt;
&lt;br /&gt;
Basically we want methods for loading resources, storing them in cache,  &lt;br /&gt;
fetching them from cache, checking if something is in the cache, ...&lt;br /&gt;
&lt;br /&gt;
=== Community-content site - Alec Flett ===&lt;br /&gt;
Logged-out users have content cached aggressively&lt;br /&gt;
offline - meaning every page visited should be cached until told otherwise.&lt;br /&gt;
Intermediate caches / proxies should be able to cache the latest version of&lt;br /&gt;
a URL. As soon as a user logs in, the same urls they just used should now&lt;br /&gt;
have editing controls. (note that actual page contents *may* not have not&lt;br /&gt;
changed, just the UI) Pages now need to be &amp;quot;fresh&amp;quot; meaning that users&lt;br /&gt;
should never edit stale content. In an ideal world, once a logged in user&lt;br /&gt;
has edited a page, that page is &amp;quot;pushed&amp;quot; to users or proxies who have&lt;br /&gt;
previously cached that page and will likely visit it again soon.&lt;br /&gt;
 &lt;br /&gt;
I know this example in particular seems like it could be accomplished with&lt;br /&gt;
a series of If-Modified-Since / 304's, but connection latency is the killer&lt;br /&gt;
here, especially for mobile - the fact that you have a white screen while&lt;br /&gt;
you wait to see if the page has changed. The idea that you could visit a&lt;br /&gt;
cached page, (i.e. avoid hitting the network) and then a few seconds later&lt;br /&gt;
be told &amp;quot;there is a newer version of this page available&amp;quot; after the fact,&lt;br /&gt;
(or even just silently update the page so the next visit delivers a fresh&lt;br /&gt;
but network-free page) would be pretty huge. Especially if you could then&lt;br /&gt;
proactively fetch a select set of pages - i.e. imagine an in-browser&lt;br /&gt;
process that says &amp;quot;for each link on this page, if I have a stale copy of&lt;br /&gt;
the url, go fetch it in the background so it is ready in the cache&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Small simple game - Jonas ===&lt;br /&gt;
The game consists of a set of static resources. A few HTML pages, like&lt;br /&gt;
high score page, start page, in-game page, etc. A larger number of&lt;br /&gt;
media resources. A few &amp;quot;data resources&amp;quot; which contain level metadata.&lt;br /&gt;
Small amount of dynamic data being generated, such as progress on each&lt;br /&gt;
level, high score, user info.&lt;br /&gt;
In-game performance is critical, all resources must be guaranteed to&lt;br /&gt;
be available locally once the game starts.&lt;br /&gt;
Little need for network connectivity other than to update game&lt;br /&gt;
resources whenever an update is available.&lt;br /&gt;
 &lt;br /&gt;
=== Advanced game - Jonas ===&lt;br /&gt;
Same as simple game, but also downloads additional levels dynamically.&lt;br /&gt;
Also wants to store game progress on servers so that it can be synced&lt;br /&gt;
across devices.&lt;br /&gt;
 &lt;br /&gt;
=== Wikipedia - Jonas ===&lt;br /&gt;
Top level page and its resources are made available offline.&lt;br /&gt;
Application logic can enable additional pages to be made available&lt;br /&gt;
offline. When such a page is made available offline both the page and&lt;br /&gt;
any media resources that it uses needs to be cached.&lt;br /&gt;
Doesn't need to be updated very aggressively, maybe only upon user request.&lt;br /&gt;
 &lt;br /&gt;
=== Twitter - Jonas ===&lt;br /&gt;
A set of HTML templates that are used to create a UI for a database of&lt;br /&gt;
tweets. The same data is visualized in several different ways, for&lt;br /&gt;
example in the user's default tweet stream, in the page for an&lt;br /&gt;
individual tweet, and in the conversation thread view.&lt;br /&gt;
Downloading the actual tweet contents and metadata shouldn't need to&lt;br /&gt;
happen multiple times in order to support the separate views.&lt;br /&gt;
The URLs for watching individual tweets needs to be the same whether&lt;br /&gt;
the user is using appcache or not so that linking to a tweet always&lt;br /&gt;
works.&lt;br /&gt;
It is very important that users are upgraded to the latest version of&lt;br /&gt;
scripts and templates very quickly after they become available. The&lt;br /&gt;
website likely will want to be able to check for updates on demand&lt;br /&gt;
rather than relying on implementation logic.&lt;br /&gt;
If the user is online but has appcached the website it should be able&lt;br /&gt;
to use the cached version. This should be the case even if the user&lt;br /&gt;
navigates to a tweet page for a tweet for which the user hasn't yet&lt;br /&gt;
cached the tweet content or metadata. In this case only the tweet&lt;br /&gt;
content and metadata should need to be downloaded and the cached&lt;br /&gt;
templates should be used.&lt;br /&gt;
If the user does not have twitter in the appcache and navigates to the&lt;br /&gt;
URL for an individual tweet the website needs to be able to send a&lt;br /&gt;
page which inlines resources such as CSS and JS files. This is&lt;br /&gt;
important in order to avoid additional round trips.&lt;br /&gt;
 &lt;br /&gt;
=== Webmail - Jonas ===&lt;br /&gt;
A lot of simularities with the twitter use case. The website is&lt;br /&gt;
basically a UI for the database of emails.&lt;br /&gt;
However its additionally important that the user can compose emails,&lt;br /&gt;
including attach attachments, which are saved and synchronized once&lt;br /&gt;
the user goes online.&lt;br /&gt;
There are also other actions that the user might have taken while&lt;br /&gt;
offline. This means that complicated conflict resolution might need to&lt;br /&gt;
be done in order to synchronize with changes that has happened on the&lt;br /&gt;
server.&lt;br /&gt;
 &lt;br /&gt;
=== Blog reading - Jonas ===&lt;br /&gt;
Store the last X days of blog posts locally. Each blog post consists&lt;br /&gt;
of the blog text as well as a few images. Other websites can link to&lt;br /&gt;
individual posts.&lt;br /&gt;
Each post contains a list of comments for the post.&lt;br /&gt;
Adding comments should be possible even while offline. Once the user&lt;br /&gt;
goes online it should be possible to submit these comments.&lt;br /&gt;
 &lt;br /&gt;
=== Blog authoring - jonas ===&lt;br /&gt;
Same as blog reading, but probably want to cache a larger set of&lt;br /&gt;
posts. Repository of unpublished posts should be available for editing&lt;br /&gt;
offline. Once the user goes online these edits are synced to server,&lt;br /&gt;
and any posts that were published while offline are automatically&lt;br /&gt;
published.&lt;br /&gt;
Both adding and removing comments should be possible while offline.&lt;br /&gt;
These changes too are published once user goes online.&lt;br /&gt;
 &lt;br /&gt;
=== News website - Jonas ===&lt;br /&gt;
Front page with links to various articles. Each article as well as&lt;br /&gt;
front page contains both text and images/media. Both front page and&lt;br /&gt;
articles contains ads. A set of &amp;quot;top&amp;quot; articles are automatically&lt;br /&gt;
cached and kept up-to-date. Potentially users can configure additional&lt;br /&gt;
areas of interest which would cause additional articles from those&lt;br /&gt;
areas to get cached.&lt;/div&gt;</description>
			<pubDate>Thu, 02 May 2013 14:57:15 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:Webapps/AppCacheUseCases</comments>		</item>
		<item>
			<title>Webapps/AppCacheUseCases</title>
			<link>http://www.w3.org/wiki/Webapps/AppCacheUseCases</link>
			<description>&lt;p&gt;Charles:&amp;#32;Added Alec's case&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== 1. Initial loading - Yandex ===&lt;br /&gt;
Our SERP (and Yandex main page www.yandex.ru) uses embedded styles and  &lt;br /&gt;
scripts for faster loading than with multiple requests for  &lt;br /&gt;
styles/scripts/...&lt;br /&gt;
&lt;br /&gt;
But users load them every time they visit the results page, because the  &lt;br /&gt;
browser doesn't cache it. It would be nice on the first visit to extract  &lt;br /&gt;
the styles and scripts and store them in the cache.&lt;br /&gt;
&lt;br /&gt;
=== 2. Bundles - Yandex ===&lt;br /&gt;
Sometimes we need to load several resources (js/css/json/...) before we  &lt;br /&gt;
can actually show something to user. Like a dialog, or another complex  &lt;br /&gt;
control. Or if it's a single page application before change &amp;quot;page&amp;quot;. Again,  &lt;br /&gt;
it's often faster to make one request than several, but it would be even  &lt;br /&gt;
faster if we could then cache them separately:&lt;br /&gt;
HttpCache.store(url1, content1);&lt;br /&gt;
HttpCache.store(url2, content2);&lt;br /&gt;
...&lt;br /&gt;
So that later we can use the files as usual (&amp;lt;script&amp;gt;, &amp;lt;link&amp;gt;...).&lt;br /&gt;
&lt;br /&gt;
=== 3. Diffs (delta updates) - Yandex ===&lt;br /&gt;
Every static file (js/css/...) has a version, e.g.  &lt;br /&gt;
http://yandex.st/mail/1.3.8/mail.js&lt;br /&gt;
Whan we release a new version our users have to download it. It could be  &lt;br /&gt;
hundreds of kilobytes (or more). But the difference between versions is  &lt;br /&gt;
often not very big. So we want to make delta updates.&lt;br /&gt;
&lt;br /&gt;
It would be nice if we could download the diff, apply it in the browser  &lt;br /&gt;
and store the update in cache e.g.:&lt;br /&gt;
&lt;br /&gt;
var oldVersion = '1.3.8';&lt;br /&gt;
var newVersion = '1.3.9';&lt;br /&gt;
var oldContent = HttpCache.get(oldUrl);&lt;br /&gt;
var newContent = applyPatch(oldContent, patch);&lt;br /&gt;
HttpCache.store(newUrl, newContent);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 4. Preloading - Yandex ===&lt;br /&gt;
Well, we can use normal xhr for that but maybe we can do more with  &lt;br /&gt;
HttpCache.&lt;br /&gt;
&lt;br /&gt;
Basically we want methods for loading resources, storing them in cache,  &lt;br /&gt;
fetching them from cache, checking if something is in the cache, ...&lt;br /&gt;
&lt;br /&gt;
=== Community-content site - Alec Flett ===&lt;br /&gt;
Logged-out users have content cached aggressively&lt;br /&gt;
offline - meaning every page visited should be cached until told otherwise.&lt;br /&gt;
Intermediate caches / proxies should be able to cache the latest version of&lt;br /&gt;
a URL. As soon as a user logs in, the same urls they just used should now&lt;br /&gt;
have editing controls. (note that actual page contents *may* not have not&lt;br /&gt;
changed, just the UI) Pages now need to be &amp;quot;fresh&amp;quot; meaning that users&lt;br /&gt;
should never edit stale content. In an ideal world, once a logged in user&lt;br /&gt;
has edited a page, that page is &amp;quot;pushed&amp;quot; to users or proxies who have&lt;br /&gt;
previously cached that page and will likely visit it again soon.&lt;br /&gt;
 &lt;br /&gt;
I know this example in particular seems like it could be accomplished with&lt;br /&gt;
a series of If-Modified-Since / 304's, but connection latency is the killer&lt;br /&gt;
here, especially for mobile - the fact that you have a white screen while&lt;br /&gt;
you wait to see if the page has changed. The idea that you could visit a&lt;br /&gt;
cached page, (i.e. avoid hitting the network) and then a few seconds later&lt;br /&gt;
be told &amp;quot;there is a newer version of this page available&amp;quot; after the fact,&lt;br /&gt;
(or even just silently update the page so the next visit delivers a fresh&lt;br /&gt;
but network-free page) would be pretty huge. Especially if you could then&lt;br /&gt;
proactively fetch a select set of pages - i.e. imagine an in-browser&lt;br /&gt;
process that says &amp;quot;for each link on this page, if I have a stale copy of&lt;br /&gt;
the url, go fetch it in the background so it is ready in the cache&amp;quot;&lt;/div&gt;</description>
			<pubDate>Thu, 02 May 2013 14:54:37 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:Webapps/AppCacheUseCases</comments>		</item>
		<item>
			<title>Webapps/AppCacheUseCases</title>
			<link>http://www.w3.org/wiki/Webapps/AppCacheUseCases</link>
			<description>&lt;p&gt;Charles:&amp;#32;added some cases yandex wants (with name of someone real who cares). First messy scribble&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== 1. Initial loading - Yandex ===&lt;br /&gt;
Our SERP (and Yandex main page www.yandex.ru) uses embedded styles and  &lt;br /&gt;
scripts for faster loading than with multiple requests for  &lt;br /&gt;
styles/scripts/...&lt;br /&gt;
&lt;br /&gt;
But users load them every time they visit the results page, because the  &lt;br /&gt;
browser doesn't cache it. It would be nice on the first visit to extract  &lt;br /&gt;
the styles and scripts and store them in the cache.&lt;br /&gt;
&lt;br /&gt;
=== 2. Bundles - Yandex ===&lt;br /&gt;
Sometimes we need to load several resources (js/css/json/...) before we  &lt;br /&gt;
can actually show something to user. Like a dialog, or another complex  &lt;br /&gt;
control. Or if it's a single page application before change &amp;quot;page&amp;quot;. Again,  &lt;br /&gt;
it's often faster to make one request than several, but it would be even  &lt;br /&gt;
faster if we could then cache them separately:&lt;br /&gt;
HttpCache.store(url1, content1);&lt;br /&gt;
HttpCache.store(url2, content2);&lt;br /&gt;
...&lt;br /&gt;
So that later we can use the files as usual (&amp;lt;script&amp;gt;, &amp;lt;link&amp;gt;...).&lt;br /&gt;
&lt;br /&gt;
=== 3. Diffs (delta updates) - Yandex ===&lt;br /&gt;
Every static file (js/css/...) has a version, e.g.  &lt;br /&gt;
http://yandex.st/mail/1.3.8/mail.js&lt;br /&gt;
Whan we release a new version our users have to download it. It could be  &lt;br /&gt;
hundreds of kilobytes (or more). But the difference between versions is  &lt;br /&gt;
often not very big. So we want to make delta updates.&lt;br /&gt;
&lt;br /&gt;
It would be nice if we could download the diff, apply it in the browser  &lt;br /&gt;
and store the update in cache e.g.:&lt;br /&gt;
&lt;br /&gt;
var oldVersion = '1.3.8';&lt;br /&gt;
var newVersion = '1.3.9';&lt;br /&gt;
var oldContent = HttpCache.get(oldUrl);&lt;br /&gt;
var newContent = applyPatch(oldContent, patch);&lt;br /&gt;
HttpCache.store(newUrl, newContent);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== 4. Preloading - Yandex ===&lt;br /&gt;
Well, we can use normal xhr for that but maybe we can do more with  &lt;br /&gt;
HttpCache.&lt;br /&gt;
&lt;br /&gt;
Basically we want methods for loading resources, storing them in cache,  &lt;br /&gt;
fetching them from cache, checking if something is in the cache, ...&lt;/div&gt;</description>
			<pubDate>Thu, 02 May 2013 14:53:19 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:Webapps/AppCacheUseCases</comments>		</item>
		<item>
			<title>Webapps/April2013Meeting</title>
			<link>http://www.w3.org/wiki/Webapps/April2013Meeting</link>
			<description>&lt;p&gt;Charles:&amp;#32;/* Potential Topics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the Meeting Page including Agenda for the Web Applications WG (WebApps) f2f meeting in the San Jose CA US on Thursday April 25 and Friday April 26 2013.&lt;br /&gt;
&lt;br /&gt;
This meeting follows the [http://www.w3.org/wiki/HTML/wg/2013-04-Agenda HTML WG's April 23 and April 24 f2f meeting] at the same location.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''Participants MUST [https://www.w3.org/2002/09/wbs/42538/webapps-april-2013/ register] for this meeting by 5-Apr-2012.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''This Meeting Page, in particular the Agenda, is a WorkInProgress and Will Change!'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Meeting Logistics ==&lt;br /&gt;
* Meeting Host = eBay/PayPal&lt;br /&gt;
* IRC channel = #webapps; irc.w3.org:6665&lt;br /&gt;
* Dates = April 25-26 2013&lt;br /&gt;
* Time = See below; all times are US West Coast time zone&lt;br /&gt;
* Location = [http://maps.yandex.com/?um=y46bSOUdqt_QA4Ubz21G3HBPzvumKu1N&amp;amp;ll=-121.922001%2C37.376000&amp;amp;spn=0.022831%2C0.011045&amp;amp;z=16&amp;amp;l=sat%2Cskl%2Csat eBay/PayPal, Building 12, 2211 N. First Street; San Jose, CA, 95131]&lt;br /&gt;
* Meeting Room = @TBD&lt;br /&gt;
&lt;br /&gt;
== Meeting Registration ==&lt;br /&gt;
&lt;br /&gt;
[https://www.w3.org/2002/09/wbs/42538/webapps-april-2013/ Registration]  for the meeting is '''required''' and ends 5 April 2014.&lt;br /&gt;
&lt;br /&gt;
== Specifications, Documents and References ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications Specification List including Publication Status]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode#CVS_and_Mercurial CVS and Mercurial repositories]&lt;br /&gt;
* [http://www.w3.org/Bugs/Public/describecomponents.cgi?product=WebAppsWG Bugzilla]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/track/products Tracker]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode Group's Work Mode]&lt;br /&gt;
&lt;br /&gt;
== Potential Topics ==&lt;br /&gt;
&lt;br /&gt;
Potential agenda topics (specs listed in alphabetical order). '''Comments and feedback on all of these topics before the meeting is welcomed and encouraged as that may eliminate the topic from f2f agenda''':&lt;br /&gt;
&lt;br /&gt;
* Admin&lt;br /&gt;
** F2F meeting @ TPAC 2013; Nov 11-15; Shenzhen, China. Do we have sufficient critical mass to have a productive meeting?&lt;br /&gt;
&lt;br /&gt;
* IME&lt;br /&gt;
** WAI PF would like a joint discussion. I threw them into a random empty slot for now.&lt;br /&gt;
&lt;br /&gt;
* Candidate Recommendation Interop status and plans - Test Facilitators to lead discussion&lt;br /&gt;
** &amp;lt;strike&amp;gt;[http://w3c-test.org/webapps/ProgressEvents/tests/ Progress Events Test Suite]; Test Facilitator is Jungkee Song; status; Interop plans; Issues blocking PR&amp;lt;/strike&amp;gt; see [http://www.w3.org/wiki/Webapps/Interop/ProgressEvents ProgressEvents Implementation Status wiki]&lt;br /&gt;
** [https://github.com/w3c/event-source Server-sent Events Test Suite]; Test Facilitator is Tina Zhao; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebMessaging/tests/ Web Messaging Test Suite]; Test Facilitator is Alex Kuang; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebSockets/tests/ Web Sockets Test Suite]; Test Facilitator is Kris Krueger; status; Interop plans; Issues blocking PR&lt;br /&gt;
** &amp;lt;strike&amp;gt;[http://w3c-test.org/webapps/WebStorage/tests/ Web Storage Test Suite]; Test Facilitator is Jong-Heun Lee status; Interop plans; Issues blocking PR&amp;lt;/strike&amp;gt; see [http://www.w3.org/wiki/Webapps/Interop/WebStorage Implementation Report]&lt;br /&gt;
** [http://w3c-test.org/webapps/Workers/tests/ Web Workers Test Suite]; Test Facilitator is Simon Pieters; status; Interop plans; Issues blocking PR&lt;br /&gt;
&lt;br /&gt;
* Testing&lt;br /&gt;
** [http://www.w3.org/wiki/Webapps/Testing New GH-based Testing Wiki by Odin]; missing info?&lt;br /&gt;
** How are reviews done with GH? RfRs still needed to get WG-wide review?&lt;br /&gt;
** Test Facilitator roles, responsibilities&lt;br /&gt;
** [https://github.com/w3c/web-platform-tests Organization]: tests for CR; tests for latest ED&lt;br /&gt;
** Interop results and Implementation Reports: format, depth&lt;br /&gt;
&lt;br /&gt;
* AppCache NG:  &lt;br /&gt;
** [http://lists.w3.org/Archives/Public/public-webapps/2013JanMar/0977.html Jonas' Fixing appcache: a proposal to get us started]&lt;br /&gt;
** Who can commit to leading and/or helping the work; what is the rough timeframe&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html DOM3 Events] - high priority issues; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html DOM4] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/FileAPI/ File API] - high priority issues/bugs for v1; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2009/dap/file-system/file-dir-sys.html File API: Directories and System] and [http://dev.w3.org/2009/dap/file-system/file-writer.html File API: Writer] - is there sufficient interest from implementors to keep these specs on the REC track?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html Fullscreen API] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/push/raw-file/default/index.html Push API] - is there sufficient commitment from Implementors to keep this spec in Charter? Should this spec be moved to the SysApps WG?&lt;br /&gt;
&lt;br /&gt;
* [https://dvcs.w3.org/hg/d4e/raw-file/tip/source_respec.htm UI Events] - what needs to be done before the spec is ready for FPWD?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/url/raw-file/tip/Overview.html URL] - should this be removed from the charter if no one commits to move it along the REC track?&lt;br /&gt;
&lt;br /&gt;
* WebIDL&lt;br /&gt;
** Status of test suite and what needs to be done to move the spec to PR; who is going to do what and when?&lt;br /&gt;
** How to improve coordination with TC39? [http://lists.w3.org/Archives/Public/public-script-coord/2013AprJun/0113.html Robin's proposal]&lt;br /&gt;
** Notifying TC39 about new APIs; [http://lists.w3.org/Archives/Public/public-script-coord/2013AprJun/0068.html Chaals' comments], [http://lists.w3.org/Archives/Public/public-script-coord/2013AprJun/0102.html Art's comments]&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html XHR] - status and plans for XHR.REC-track and XHR.Bleeding-edge&lt;br /&gt;
&lt;br /&gt;
== Agenda Thursday April 25 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Rearranging the room; Introductions&lt;br /&gt;
* 09:30 - 10:00 Tweak agenda à la an [http://en.wikipedia.org/wiki/Unconference unconference style meeting]&lt;br /&gt;
* 10:00 - 11: 00 Round the [http://www.w3.org/2012/webapps/charter/ charter] and [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications spec dashboard]&lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:30 [http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html Indexed Database] - high priority issues; plan to publish LCWD or CR; Joshua, Eliot, Jonas&lt;br /&gt;
* 12:30 - 13:30 Lunch&lt;br /&gt;
* 13:30 - 14:30 [http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html Web Components] - status and plans for the spec suite; Dimitri&lt;br /&gt;
* 14:30 - 15:00 Joint meeting with WebAppSec re Web Components; Dimitri and Brad Hill&lt;br /&gt;
** [http://lists.w3.org/Archives/Public/public-webapps/2013AprJun/0089.html CSP proposed by Dimitri]&lt;br /&gt;
* 15:00 - 15:30 IME jointly with PF?&lt;br /&gt;
* 15:30 - 16:00 Break&lt;br /&gt;
* 16:00 - 16:30 &lt;br /&gt;
* 16:30 - 17:00&lt;br /&gt;
* 17:00 - 17:30&lt;br /&gt;
&lt;br /&gt;
* Evening Activity: @TBA&lt;br /&gt;
&lt;br /&gt;
== Agenda Friday April 26 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Agenda update&lt;br /&gt;
* 09:30 - 10:00 &lt;br /&gt;
* 10:00 - 11:00 &lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:00&lt;br /&gt;
* 12:00 - 12:30 &lt;br /&gt;
* 12:30 - 13:30 Lunch and finish&lt;br /&gt;
&lt;br /&gt;
== Raw Minutes ==&lt;br /&gt;
&lt;br /&gt;
* [@TBD April 25]&lt;br /&gt;
* [@TBD April 26]&lt;/div&gt;</description>
			<pubDate>Tue, 16 Apr 2013 06:28:45 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:Webapps/April2013Meeting</comments>		</item>
		<item>
			<title>Webapps/April2013Meeting</title>
			<link>http://www.w3.org/wiki/Webapps/April2013Meeting</link>
			<description>&lt;p&gt;Charles:&amp;#32;/* Agenda Thursday April 25 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the Meeting Page including Agenda for the Web Applications WG (WebApps) f2f meeting in the San Jose CA US on Thursday April 25 and Friday April 26 2013.&lt;br /&gt;
&lt;br /&gt;
This meeting follows the [http://www.w3.org/wiki/HTML/wg/2013-04-Agenda HTML WG's April 23 and April 24 f2f meeting] at the same location.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''Participants MUST [https://www.w3.org/2002/09/wbs/42538/webapps-april-2013/ register] for this meeting by 5-Apr-2012.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''This Meeting Page, in particular the Agenda, is a WorkInProgress and Will Change!'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Meeting Logistics ==&lt;br /&gt;
* Meeting Host = eBay/PayPal&lt;br /&gt;
* IRC channel = #webapps; irc.w3.org:6665&lt;br /&gt;
* Dates = April 25-26 2013&lt;br /&gt;
* Time = See below; all times are US West Coast time zone&lt;br /&gt;
* Location = [http://maps.yandex.com/?um=y46bSOUdqt_QA4Ubz21G3HBPzvumKu1N&amp;amp;ll=-121.922001%2C37.376000&amp;amp;spn=0.022831%2C0.011045&amp;amp;z=16&amp;amp;l=sat%2Cskl%2Csat eBay/PayPal, Building 12, 2211 N. First Street; San Jose, CA, 95131]&lt;br /&gt;
* Meeting Room = @TBD&lt;br /&gt;
&lt;br /&gt;
== Meeting Registration ==&lt;br /&gt;
&lt;br /&gt;
[https://www.w3.org/2002/09/wbs/42538/webapps-april-2013/ Registration]  for the meeting is '''required''' and ends 5 April 2014.&lt;br /&gt;
&lt;br /&gt;
== Specifications, Documents and References ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications Specification List including Publication Status]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode#CVS_and_Mercurial CVS and Mercurial repositories]&lt;br /&gt;
* [http://www.w3.org/Bugs/Public/describecomponents.cgi?product=WebAppsWG Bugzilla]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/track/products Tracker]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode Group's Work Mode]&lt;br /&gt;
&lt;br /&gt;
== Potential Topics ==&lt;br /&gt;
&lt;br /&gt;
Potential agenda topics (specs listed in alphabetical order). '''Comments and feedback on all of these topics before the meeting is welcomed and encouraged as that may eliminate the topic from f2f agenda''':&lt;br /&gt;
&lt;br /&gt;
* Admin&lt;br /&gt;
** F2F meeting @ TPAC 2013; Nov 11-15; Shenzhen, China. Do we have sufficient critical mass to have a productive meeting?&lt;br /&gt;
&lt;br /&gt;
* Candidate Recommendation Interop status and plans - Test Facilitators to lead discussion&lt;br /&gt;
** &amp;lt;strike&amp;gt;[http://w3c-test.org/webapps/ProgressEvents/tests/ Progress Events Test Suite]; Test Facilitator is Jungkee Song; status; Interop plans; Issues blocking PR&amp;lt;/strike&amp;gt; see [http://www.w3.org/wiki/Webapps/Interop/ProgressEvents ProgressEvents Implementation Status wiki]&lt;br /&gt;
** [https://github.com/w3c/event-source Server-sent Events Test Suite]; Test Facilitator is Tina Zhao; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebMessaging/tests/ Web Messaging Test Suite]; Test Facilitator is Alex Kuang; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebSockets/tests/ Web Sockets Test Suite]; Test Facilitator is Kris Krueger; status; Interop plans; Issues blocking PR&lt;br /&gt;
** &amp;lt;strike&amp;gt;[http://w3c-test.org/webapps/WebStorage/tests/ Web Storage Test Suite]; Test Facilitator is Jong-Heun Lee status; Interop plans; Issues blocking PR&amp;lt;/strike&amp;gt; see [http://www.w3.org/wiki/Webapps/Interop/WebStorage Implementation Report]&lt;br /&gt;
** [http://w3c-test.org/webapps/Workers/tests/ Web Workers Test Suite]; Test Facilitator is Simon Pieters; status; Interop plans; Issues blocking PR&lt;br /&gt;
&lt;br /&gt;
* Testing&lt;br /&gt;
** [http://www.w3.org/wiki/Webapps/Testing New GH-based Testing Wiki by Odin]; missing info?&lt;br /&gt;
** How are reviews done with GH? RfRs still needed to get WG-wide review?&lt;br /&gt;
** Test Facilitator roles, responsibilities&lt;br /&gt;
** [https://github.com/w3c/web-platform-tests Organization]: tests for CR; tests for latest ED&lt;br /&gt;
** Interop results and Implementation Reports: format, depth&lt;br /&gt;
&lt;br /&gt;
* AppCache NG:  &lt;br /&gt;
** [http://lists.w3.org/Archives/Public/public-webapps/2013JanMar/0977.html Jonas' Fixing appcache: a proposal to get us started]&lt;br /&gt;
** Who can commit to leading and/or helping the work; what is the rough timeframe&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html DOM3 Events] - high priority issues; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html DOM4] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/FileAPI/ File API] - high priority issues/bugs for v1; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2009/dap/file-system/file-dir-sys.html File API: Directories and System] and [http://dev.w3.org/2009/dap/file-system/file-writer.html File API: Writer] - is there sufficient interest from implementors to keep these specs on the REC track?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html Fullscreen API] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/push/raw-file/default/index.html Push API] - is there sufficient commitment from Implementors to keep this spec in Charter? Should this spec be moved to the SysApps WG?&lt;br /&gt;
&lt;br /&gt;
* [https://dvcs.w3.org/hg/d4e/raw-file/tip/source_respec.htm UI Events] - what needs to be done before the spec is ready for FPWD?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/url/raw-file/tip/Overview.html URL] - should this be removed from the charter if no one commits to move it along the REC track?&lt;br /&gt;
&lt;br /&gt;
* WebIDL&lt;br /&gt;
** Status of test suite and what needs to be done to move the spec to PR; who is going to do what and when?&lt;br /&gt;
** How to improve coordination with TC39? [http://lists.w3.org/Archives/Public/public-script-coord/2013AprJun/0113.html Robin's proposal]&lt;br /&gt;
** Notifying TC39 about new APIs; [http://lists.w3.org/Archives/Public/public-script-coord/2013AprJun/0068.html Chaals' comments], [http://lists.w3.org/Archives/Public/public-script-coord/2013AprJun/0102.html Art's comments]&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html XHR] - status and plans for XHR.REC-track and XHR.Bleeding-edge&lt;br /&gt;
&lt;br /&gt;
== Agenda Thursday April 25 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Rearranging the room; Introductions&lt;br /&gt;
* 09:30 - 10:00 Tweak agenda à la an [http://en.wikipedia.org/wiki/Unconference unconference style meeting]&lt;br /&gt;
* 10:00 - 11: 00 Round the [http://www.w3.org/2012/webapps/charter/ charter] and [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications spec dashboard]&lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:30 [http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html Indexed Database] - high priority issues; plan to publish LCWD or CR; Joshua, Eliot, Jonas&lt;br /&gt;
* 12:30 - 13:30 Lunch&lt;br /&gt;
* 13:30 - 14:30 [http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html Web Components] - status and plans for the spec suite; Dimitri&lt;br /&gt;
* 14:30 - 15:00 Joint meeting with WebAppSec re Web Components; Dimitri and Brad Hill&lt;br /&gt;
** [http://lists.w3.org/Archives/Public/public-webapps/2013AprJun/0089.html CSP proposed by Dimitri]&lt;br /&gt;
* 15:00 - 15:30 IME jointly with PF?&lt;br /&gt;
* 15:30 - 16:00 Break&lt;br /&gt;
* 16:00 - 16:30 &lt;br /&gt;
* 16:30 - 17:00&lt;br /&gt;
* 17:00 - 17:30&lt;br /&gt;
&lt;br /&gt;
* Evening Activity: @TBA&lt;br /&gt;
&lt;br /&gt;
== Agenda Friday April 26 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Agenda update&lt;br /&gt;
* 09:30 - 10:00 &lt;br /&gt;
* 10:00 - 11:00 &lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:00&lt;br /&gt;
* 12:00 - 12:30 &lt;br /&gt;
* 12:30 - 13:30 Lunch and finish&lt;br /&gt;
&lt;br /&gt;
== Raw Minutes ==&lt;br /&gt;
&lt;br /&gt;
* [@TBD April 25]&lt;br /&gt;
* [@TBD April 26]&lt;/div&gt;</description>
			<pubDate>Tue, 16 Apr 2013 06:27:41 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:Webapps/April2013Meeting</comments>		</item>
		<item>
			<title>Webapps/April2013Meeting</title>
			<link>http://www.w3.org/wiki/Webapps/April2013Meeting</link>
			<description>&lt;p&gt;Charles:&amp;#32;/* Agenda Thursday April 25 */ PF want a joint IME discussion&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the Meeting Page including Agenda for the Web Applications WG (WebApps) f2f meeting in the San Jose CA US on Thursday April 25 and Friday April 26 2013.&lt;br /&gt;
&lt;br /&gt;
This meeting follows the [http://www.w3.org/wiki/HTML/wg/2013-04-Agenda HTML WG's April 23 and April 24 f2f meeting] at the same location.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''Participants MUST [https://www.w3.org/2002/09/wbs/42538/webapps-april-2013/ register] for this meeting by 5-Apr-2012.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''This Meeting Page, in particular the Agenda, is a WorkInProgress and Will Change!'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Meeting Logistics ==&lt;br /&gt;
* Meeting Host = eBay/PayPal&lt;br /&gt;
* IRC channel = #webapps; irc.w3.org:6665&lt;br /&gt;
* Dates = April 25-26 2013&lt;br /&gt;
* Time = See below; all times are US West Coast time zone&lt;br /&gt;
* Location = [http://maps.yandex.com/?um=y46bSOUdqt_QA4Ubz21G3HBPzvumKu1N&amp;amp;ll=-121.922001%2C37.376000&amp;amp;spn=0.022831%2C0.011045&amp;amp;z=16&amp;amp;l=sat%2Cskl%2Csat eBay/PayPal, Building 12, 2211 N. First Street; San Jose, CA, 95131]&lt;br /&gt;
* Meeting Room = @TBD&lt;br /&gt;
&lt;br /&gt;
== Meeting Registration ==&lt;br /&gt;
&lt;br /&gt;
[https://www.w3.org/2002/09/wbs/42538/webapps-april-2013/ Registration]  for the meeting is '''required''' and ends 5 April 2014.&lt;br /&gt;
&lt;br /&gt;
== Specifications, Documents and References ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications Specification List including Publication Status]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode#CVS_and_Mercurial CVS and Mercurial repositories]&lt;br /&gt;
* [http://www.w3.org/Bugs/Public/describecomponents.cgi?product=WebAppsWG Bugzilla]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/track/products Tracker]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode Group's Work Mode]&lt;br /&gt;
&lt;br /&gt;
== Potential Topics ==&lt;br /&gt;
&lt;br /&gt;
Potential agenda topics (specs listed in alphabetical order). '''Comments and feedback on all of these topics before the meeting is welcomed and encouraged as that may eliminate the topic from f2f agenda''':&lt;br /&gt;
&lt;br /&gt;
* Admin&lt;br /&gt;
** F2F meeting @ TPAC 2013; Nov 11-15; Shenzhen, China. Do we have sufficient critical mass to have a productive meeting?&lt;br /&gt;
&lt;br /&gt;
* Candidate Recommendation Interop status and plans - Test Facilitators to lead discussion&lt;br /&gt;
** &amp;lt;strike&amp;gt;[http://w3c-test.org/webapps/ProgressEvents/tests/ Progress Events Test Suite]; Test Facilitator is Jungkee Song; status; Interop plans; Issues blocking PR&amp;lt;/strike&amp;gt; see [http://www.w3.org/wiki/Webapps/Interop/ProgressEvents ProgressEvents Implementation Status wiki]&lt;br /&gt;
** [https://github.com/w3c/event-source Server-sent Events Test Suite]; Test Facilitator is Tina Zhao; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebMessaging/tests/ Web Messaging Test Suite]; Test Facilitator is Alex Kuang; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebSockets/tests/ Web Sockets Test Suite]; Test Facilitator is Kris Krueger; status; Interop plans; Issues blocking PR&lt;br /&gt;
** &amp;lt;strike&amp;gt;[http://w3c-test.org/webapps/WebStorage/tests/ Web Storage Test Suite]; Test Facilitator is Jong-Heun Lee status; Interop plans; Issues blocking PR&amp;lt;/strike&amp;gt; see [http://www.w3.org/wiki/Webapps/Interop/WebStorage Implementation Report]&lt;br /&gt;
** [http://w3c-test.org/webapps/Workers/tests/ Web Workers Test Suite]; Test Facilitator is Simon Pieters; status; Interop plans; Issues blocking PR&lt;br /&gt;
&lt;br /&gt;
* Testing&lt;br /&gt;
** [http://www.w3.org/wiki/Webapps/Testing New GH-based Testing Wiki by Odin]; missing info?&lt;br /&gt;
** How are reviews done with GH? RfRs still needed to get WG-wide review?&lt;br /&gt;
** Test Facilitator roles, responsibilities&lt;br /&gt;
** [https://github.com/w3c/web-platform-tests Organization]: tests for CR; tests for latest ED&lt;br /&gt;
** Interop results and Implementation Reports: format, depth&lt;br /&gt;
&lt;br /&gt;
* AppCache NG:  &lt;br /&gt;
** [http://lists.w3.org/Archives/Public/public-webapps/2013JanMar/0977.html Jonas' Fixing appcache: a proposal to get us started]&lt;br /&gt;
** Who can commit to leading and/or helping the work; what is the rough timeframe&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html DOM3 Events] - high priority issues; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html DOM4] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/FileAPI/ File API] - high priority issues/bugs for v1; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2009/dap/file-system/file-dir-sys.html File API: Directories and System] and [http://dev.w3.org/2009/dap/file-system/file-writer.html File API: Writer] - is there sufficient interest from implementors to keep these specs on the REC track?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html Fullscreen API] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/push/raw-file/default/index.html Push API] - is there sufficient commitment from Implementors to keep this spec in Charter? Should this spec be moved to the SysApps WG?&lt;br /&gt;
&lt;br /&gt;
* [https://dvcs.w3.org/hg/d4e/raw-file/tip/source_respec.htm UI Events] - what needs to be done before the spec is ready for FPWD?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/url/raw-file/tip/Overview.html URL] - should this be removed from the charter if no one commits to move it along the REC track?&lt;br /&gt;
&lt;br /&gt;
* WebIDL&lt;br /&gt;
** Status of test suite and what needs to be done to move the spec to PR; who is going to do what and when?&lt;br /&gt;
** How to improve coordination with TC39? [http://lists.w3.org/Archives/Public/public-script-coord/2013AprJun/0113.html Robin's proposal]&lt;br /&gt;
** Notifying TC39 about new APIs; [http://lists.w3.org/Archives/Public/public-script-coord/2013AprJun/0068.html Chaals' comments], [http://lists.w3.org/Archives/Public/public-script-coord/2013AprJun/0102.html Art's comments]&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html XHR] - status and plans for XHR.REC-track and XHR.Bleeding-edge&lt;br /&gt;
&lt;br /&gt;
== Agenda Thursday April 25 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Rearranging the room; Introductions&lt;br /&gt;
* 09:30 - 10:00 Tweak agenda à la an [http://en.wikipedia.org/wiki/Unconference unconference style meeting]&lt;br /&gt;
* 10:00 - 11: 00 Round the [http://www.w3.org/2012/webapps/charter/ charter] and [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications spec dashboard]&lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:30 [http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html Indexed Database] - high priority issues; plan to publish LCWD or CR; Joshua, Eliot, Jonas&lt;br /&gt;
* 12:30 - 13:30 Lunch&lt;br /&gt;
* 13:30 - 14:30 [http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html Web Components] - status and plans for the spec suite; Dimitri&lt;br /&gt;
* 14:30 - 15:00 Joint meeting with WebAppSec re Web Components; Dimitri and Brad Hill&lt;br /&gt;
** [http://lists.w3.org/Archives/Public/public-webapps/2013AprJun/0089.html CSP proposed by Dimitri]&lt;br /&gt;
* 15:00 - 15:30 IME jointly with PF?&lt;br /&gt;
* 15:30 - 16:00 Break&lt;br /&gt;
* 16:00 - 16:30 &lt;br /&gt;
* 16:30 - 17:00&lt;br /&gt;
* 17:00 - 17:30&lt;br /&gt;
&lt;br /&gt;
* Evening Activity: @TB&lt;br /&gt;
&lt;br /&gt;
== Agenda Friday April 26 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Agenda update&lt;br /&gt;
* 09:30 - 10:00 &lt;br /&gt;
* 10:00 - 11:00 &lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:00&lt;br /&gt;
* 12:00 - 12:30 &lt;br /&gt;
* 12:30 - 13:30 Lunch and finish&lt;br /&gt;
&lt;br /&gt;
== Raw Minutes ==&lt;br /&gt;
&lt;br /&gt;
* [@TBD April 25]&lt;br /&gt;
* [@TBD April 26]&lt;/div&gt;</description>
			<pubDate>Tue, 16 Apr 2013 06:27:29 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:Webapps/April2013Meeting</comments>		</item>
		<item>
			<title>Webapps/SpecEditing</title>
			<link>http://www.w3.org/wiki/Webapps/SpecEditing</link>
			<description>&lt;p&gt;Charles:&amp;#32;/* Tools for Authoring - removed Anolis (it is in the Editors' page now)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This document contains information and links that may be useful for Editors of [http://www.w3.org/2008/webapps/wiki/PubStatus WebApps' specs], including information about publishing a document as a [http://www.w3.org/TR/ W3C Technical Report], often called  '''TR''' (and the document is said to be ''published in'' '''/TR/''').&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''This document is a WorkInProgress and as such is subject to change. Members of the [http://www.w3.org/2008/webapps/wiki/WorkMode WebApps Working Group] as well as the W3C community are encouraged to update and maintain this document!'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Spec Editor Roles and Responsibilities ==&lt;br /&gt;
&lt;br /&gt;
Besides the mechanics of specification authoring, WebApps' specification Editors also have other roles and responsibilities including:&lt;br /&gt;
&lt;br /&gt;
* Making sure their specification(s) reflect consensus (see [http://www.w3.org/2008/webapps/wiki/WorkMode#Consensus_and_Call_for_Consensus WebApps' Consensus WorkMode] and [http://www.w3.org/2008/webapps/wiki/WorkMode#Editors WebApps' Editor WorkMode] for more information)&lt;br /&gt;
* Making sure someone in the WG (not necessarily the Editor) responds to all comments submitted to their specification(s)&lt;br /&gt;
* Tracking comments when a specification is in Last Call review (see ''Last Call Comment Tracking'' below)&lt;br /&gt;
* Making a specification ''[http://www.w3.org/2005/07/pubrules Pubrules] compliant'' before it can be published as a [http://www.w3.org/TR/ Technical Report] (see below for details)&lt;br /&gt;
* Assuring their specification(s) [http://www.w3.org/2008/webapps/wiki/PubStatus PubStatus] data is accurate and current&lt;br /&gt;
* Helping the Chairs and Team Contact find testing resources for the spec&lt;br /&gt;
&lt;br /&gt;
== TR Publication Rules ==&lt;br /&gt;
&lt;br /&gt;
The W3C's Publication Rules aka [http://www.w3.org/2005/07/pubrules Pubrules] defines all of the requirements for documents that will be published as a [http://www.w3.org/TR/ W3C Technical Reports] (TR). When a document meets all of the publication requirements it is referred to as &amp;quot;''PubReady'&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2005/07/pubrules PubRules] - defines the publication requirements for documents based on the maturity level of the document. For example, the requirements for a Working Draft are different than the requirements for a Candidate Recommendation as indicated in the [http://www.w3.org/2005/07/pubrules?uimode=filter PubRules Filter]. A document must meet every Pubrule requirement before it can be published in TR.&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/QA/Tools/ List of W3C Validators]; see also the [http://lists.w3.org/Archives/Public/www-validator/ www-validator] mail list archive&lt;br /&gt;
&lt;br /&gt;
* [http://validator.w3.org/feedback.html How to Provide Feedback For the W3C Markup Validator]&lt;br /&gt;
&lt;br /&gt;
== TR Publication Process and WebApps ==&lt;br /&gt;
&lt;br /&gt;
The TR publication process is formally defined in [http://www.w3.org/2005/07/pubrules PubRules]. Here is a brief summary of the general steps and tasks used by WebApps:&lt;br /&gt;
&lt;br /&gt;
* Some member of the group (e.g. Editor, Chair, etc.) proposes a document be published as a TR&lt;br /&gt;
* Chair: start a 1-week [http://www.w3.org/2008/webapps/wiki/WorkMode#Consensus_and_Call_for_Consensus Call for Consensus] (CfC) to publish the document&lt;br /&gt;
* If the document is a First Public Working Draft (FPWD):&lt;br /&gt;
** Chair will submit a Transition Request to the group's Domain Lead and the ''Chairs'' list. The main reasons for this step are: to make sure the document is within the WG's scope; to notify other WGs about the group's intention to make the publication and to get agreement on the document's ''short-name'' (e.g. www.w3.org/TR/''short-name''/).&lt;br /&gt;
* Editor: prepare the document for publication per the ''PubRules'' by doing the following.&lt;br /&gt;
** '''Note for ReSpec users''': ''before doing any validation, a static version of the document must be created and the static version should be used with the validators. One way to create the static document is to: load the document in the Chrome browser; simultaneously press the Ctrl+Alt+Shift+S keys; select &amp;quot;Save as HTML (Source)&amp;quot; and save the document (ReSpec has its own static output generator and it must be used).''&lt;br /&gt;
** Run the ''[http://www.w3.org/2005/07/pubrules PubRules Checker]''&lt;br /&gt;
** Check the  [http://www.w3.org/2005/07/pubrules?uimode=filter PubRules Filter] requirements and address all of the requirements for the specific publication type (e.g. FPWD, WD, LCWD, CR, etc.)&lt;br /&gt;
** The document must pass at least the following Validations but note the validators (especially the CSS validator) may report errors that are not errors. See the [http://validator.w3.org/feedback.html Validator Help Page] for information about how to get help with the Validators and how to report Validator bugs/issues.&lt;br /&gt;
*** [http://validator.w3.org/ HTML Validator]&lt;br /&gt;
*** [http://jigsaw.w3.org/css-validator/ CSS Validator]&lt;br /&gt;
*** [http://validator.w3.org/checklink Link Checker] &lt;br /&gt;
** If the document includes WebIDL, check the IDL with the [http://www.w3.org/2009/07/webidl-check online Web IDL validation tool] and fix all errors&lt;br /&gt;
** Make sure the Status of This Document section includes the subject tag prefix to be used for comments (e.g. ''[short-name] comment ...'')&lt;br /&gt;
** Notify team-webapps@w3.org when the document is PubReady&lt;br /&gt;
* Chair or Team Contact: submit a Publication Request (aka ''PubReq'') to the W3C's Publishing Team and Cc the document's primary Editor&lt;br /&gt;
** The Publishing Team may ask the Editor to make some editorial changes&lt;br /&gt;
* The document is published as a [http://www.w3.org/TR/ TR]&lt;br /&gt;
&lt;br /&gt;
Notes about publications:&lt;br /&gt;
&lt;br /&gt;
* TR publications are only made on Tuesdays and Thursdays&lt;br /&gt;
* PubReqs must be sent at least two days before the requested publication date&lt;br /&gt;
&lt;br /&gt;
== Tools to Check Pubrules Compliance ==&lt;br /&gt;
&lt;br /&gt;
The W3C maintains several online tools to check Pubrule compliance. For example, there is an HTML validation tool, CSS validation tool, link checker, etc. &lt;br /&gt;
&lt;br /&gt;
A list of the online tools to check [http://www.w3.org/2005/07/pubrules Pubrules] compliance is provided in:&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2003/Editors/#tools Online tools to check Pubrule compliance]&lt;br /&gt;
&lt;br /&gt;
== Tools for Authoring W3C Specifications ==&lt;br /&gt;
&lt;br /&gt;
Editors in WebApps are free to choose their specification authoring tool(s). The most commonly used tool in WebApps is [http://dev.w3.org/2009/dap/ReSpec.js/documentation.html ReSpec] but there is no requirement that it be used.&lt;br /&gt;
&lt;br /&gt;
A list of specification authoring tools is provided in:&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2003/Editors/#authoring Spec Authoring Tools]&lt;br /&gt;
&lt;br /&gt;
== Last Call Comment Tracking ==&lt;br /&gt;
&lt;br /&gt;
The WG is responsible for replying to all spec comments. Additionally, after a spec is published as a Last Call Working Draft, the spec's Editor (or some other member(s) of the group) is required to ''track'' the LCWD comments. Tracking LCWD comments means that for each comment, there must be a public record of the group's response and a public record from the commenter that indicates whether or not the commenter is satisfied with the group's response.&lt;br /&gt;
&lt;br /&gt;
There are several ways to track LCWD comments and there is no firm requirement on the exact mechanism used. Here are some different mechanisms with links to some examples:&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/WebIDL/lc1.txt Text file] used by Web IDL&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/DOM-Level-3-Events/dc.html HTML file] used by DOM3Events&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2006/02/lc-comments-tracker/42538/ W3C's Comment Tracking tool] used by some of the Widget specs&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2010/webevents/wiki/TouchEvents-LCWD-13-Sep-2011 Wiki document] used by Web Events' Touch Events spec&lt;br /&gt;
&lt;br /&gt;
Although it is not a firm requirement, '''Editors are encouraged to include a link to the LC comment tracking in the Status section of the LCWD publication'''.&lt;br /&gt;
&lt;br /&gt;
== Miscellaneous Resources ==&lt;br /&gt;
&lt;br /&gt;
Related resources (some may be a bit outdated):&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2001/06/manual/ Manual of Style] - a ''guide containing best current practice'' re writing W3C specifications&lt;br /&gt;
* [http://www.w3.org/2003/Editors/ W3C Editor Home Page] - a document that ''tries to gather resources that can help Editors do their job''&lt;br /&gt;
* [http://lists.w3.org/Archives/Public/spec-prod/ spec-prod Mail List] - used by Editors to discuss the TR publication process, issues, tools (e.g. ReSpec), etc.&lt;br /&gt;
* [http://lists.w3.org/Archives/Public/www-validator/ www-validator Mail List] - used to discuss [http://www.w3.org/QA/Tools/ Validator] usage and bug reporting&lt;br /&gt;
* [http://services.w3.org/xslt?xmlfile=http://www.w3.org/2005/08/01-transitions.html&amp;amp;xslfile=http://www.w3.org/2005/08/transitions.xsl Organize a Technical Report Transition] - a How To guide for W3C specification transitions.&lt;br /&gt;
* [http://wiki.whatwg.org/wiki/Howto_spec Howto Spec] - WHATWG document that &amp;quot;''explains basic guidelines for writing a specification for the web platform''&amp;quot;; by Anne van Kesteren&lt;/div&gt;</description>
			<pubDate>Fri, 29 Mar 2013 12:18:59 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:Webapps/SpecEditing</comments>		</item>
		<item>
			<title>Webapps/April2013Meeting</title>
			<link>http://www.w3.org/wiki/Webapps/April2013Meeting</link>
			<description>&lt;p&gt;Charles:&amp;#32;/* Meeting Registration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the Meeting Page including Agenda for the Web Applications WG (WebApps) f2f meeting in the San Jose CA US on Thursday April 25 and Friday April 26 2013.&lt;br /&gt;
&lt;br /&gt;
This meeting follows the [http://www.w3.org/wiki/HTML/wg/2013-04-Agenda HTML WG's April 23 and April 24 f2f meeting] at the same location.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''Participants MUST [https://www.w3.org/2002/09/wbs/42538/webapps-april-2013/ register] for this meeting by 5-Apr-2012.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''This Meeting Page, in particular the Agenda, is a WorkInProgress and Will Change!'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Meeting Logistics ==&lt;br /&gt;
* Meeting Host = eBay&lt;br /&gt;
* IRC channel = #webapps; irc.w3.org:6665&lt;br /&gt;
* Dates = April 25-26 2013&lt;br /&gt;
* Time = See below; all times are US West Coast time zone&lt;br /&gt;
* Location = [http://maps.yandex.com/?um=y46bSOUdqt_QA4Ubz21G3HBPzvumKu1N&amp;amp;ll=-121.922001%2C37.376000&amp;amp;spn=0.022831%2C0.011045&amp;amp;z=16&amp;amp;l=sat%2Cskl%2Csat eBay, Building 12, 2211 N. First Street; San Jose, CA, 95131]&lt;br /&gt;
* Meeting Room = @TBD&lt;br /&gt;
&lt;br /&gt;
== Meeting Registration ==&lt;br /&gt;
&lt;br /&gt;
[https://www.w3.org/2002/09/wbs/42538/webapps-april-2013/ Registration]  for the meeting is '''required''' and ends 5 April 2014.&lt;br /&gt;
&lt;br /&gt;
== Specifications, Documents and References ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications Specification List including Publication Status]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode#CVS_and_Mercurial CVS and Mercurial repositories]&lt;br /&gt;
* [http://www.w3.org/Bugs/Public/describecomponents.cgi?product=WebAppsWG Bugzilla]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/track/products Tracker]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode Group's Work Mode]&lt;br /&gt;
&lt;br /&gt;
== Potential Topics ==&lt;br /&gt;
&lt;br /&gt;
Potential agenda topics, listed in alphabetical order. '''Comments and feedback on all of these topics before the meeting is welcomed and encouraged as that may eliminate the topic from f2f agenda''':&lt;br /&gt;
&lt;br /&gt;
* Candidate Recommendation Interop status and plans - Test Facilitators to lead discussion&lt;br /&gt;
** [http://w3c-test.org/webapps/ProgressEvents/tests/ Progress Events Test Suite]; Test Facilitator is Jungkee Song; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [https://github.com/w3c/event-source Server-sent Events Test Suite]; Test Facilitator is Tina Zhao; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebMessaging/tests/ Web Messaging Test Suite]; Test Facilitator is Alex Kuang; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebSockets/tests/ Web Sockets Test Suite]; Test Facilitator is Kris Krueger; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebStorage/tests/ Web Storage Test Suite]; Test Facilitator is Jong-Heun Lee status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/Workers/tests/ Web Workers Test Suite]; Test Facilitator is Simon Pieters; status; Interop plans; Issues blocking PR&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html DOM3 Events] - high priority issues; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html DOM4] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/FileAPI/ File API] - high priority issues/bugs for v1; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2009/dap/file-system/file-dir-sys.html File API: Directories and System] and [http://dev.w3.org/2009/dap/file-system/file-writer.html File API: Writer] - is there sufficient interest from implementors to keep these specs on the REC track?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html Fullscreen API] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html Indexed Database] - high priority issues; plan to publish LCWD or CR&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/push/raw-file/default/index.html Push API] - is there sufficient commitment from Implementors to keep this spec in Charter? Should this spec be moved to the SysApps WG?&lt;br /&gt;
&lt;br /&gt;
* [https://dvcs.w3.org/hg/d4e/raw-file/tip/source_respec.htm UI Events] - what needs to be done before the spec is ready for FPWD?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/url/raw-file/tip/Overview.html URL] - should this be removed from the charter if no one commits to move it along the REC track?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html XHR] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html Web Components] - status and plans&lt;br /&gt;
&lt;br /&gt;
== Agenda Thursday April 25 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Rearranging the room; Introductions&lt;br /&gt;
* 09:30 - 10:00 Tweak agenda à la an [http://en.wikipedia.org/wiki/Unconference unconference style meeting]&lt;br /&gt;
* 10:00 - 11: 00 Round the [http://www.w3.org/2012/webapps/charter/ charter] and [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications dashboard]&lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:00&lt;br /&gt;
* 12:00 - 12:30 &lt;br /&gt;
* 12:30 - 13:30 Lunch&lt;br /&gt;
* 13:30 - 14:00 &lt;br /&gt;
* 14:00 - 14:30&lt;br /&gt;
* 14:30 - 15:00&lt;br /&gt;
* 15:00 - 15:30 &lt;br /&gt;
* 15:30 - 16:00 Break&lt;br /&gt;
* 16:00 - 16:30 &lt;br /&gt;
* 16:30 - 17:00&lt;br /&gt;
* 17:00 - 17:30&lt;br /&gt;
&lt;br /&gt;
* Evening Activity: @TB&lt;br /&gt;
&lt;br /&gt;
== Agenda Friday April 26 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Agenda update&lt;br /&gt;
* 09:30 - 10:00 &lt;br /&gt;
* 10:00 - 11:00 &lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:00&lt;br /&gt;
* 12:00 - 12:30 &lt;br /&gt;
* 12:30 - 13:30 Lunch and finish&lt;br /&gt;
&lt;br /&gt;
== Raw Minutes ==&lt;br /&gt;
&lt;br /&gt;
* [@TBD April 25]&lt;br /&gt;
* [@TBD April 26]&lt;/div&gt;</description>
			<pubDate>Wed, 27 Feb 2013 22:21:37 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:Webapps/April2013Meeting</comments>		</item>
		<item>
			<title>Webapps/April2013Meeting</title>
			<link>http://www.w3.org/wiki/Webapps/April2013Meeting</link>
			<description>&lt;p&gt;Charles:&amp;#32;/* Meeting Logistics */ typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the Meeting Page including Agenda for the Web Applications WG (WebApps) f2f meeting in the San Jose CA US on Thursday April 25 and Friday April 26 2013.&lt;br /&gt;
&lt;br /&gt;
This meeting follows the [http://www.w3.org/wiki/HTML/wg/2013-04-Agenda HTML WG's April 23 and April 24 f2f meeting] at the same location.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''This Meeting Page, in particular the Agenda, is a WorkInProgress and Will Change!'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Meeting Logistics ==&lt;br /&gt;
* Meeting Host = eBay&lt;br /&gt;
* IRC channel = #webapps; irc.w3.org:6665&lt;br /&gt;
* Dates = April 25-26 2013&lt;br /&gt;
* Time = See below; all times are US West Coast time zone&lt;br /&gt;
* Location = [http://maps.yandex.com/?um=y46bSOUdqt_QA4Ubz21G3HBPzvumKu1N&amp;amp;ll=-121.922001%2C37.376000&amp;amp;spn=0.022831%2C0.011045&amp;amp;z=16&amp;amp;l=sat%2Cskl%2Csat eBay, Building 12, 2161 N. First Street; San Jose, CA, 95164]&lt;br /&gt;
* Meeting Room = @TBD&lt;br /&gt;
&lt;br /&gt;
== Meeting Registration ==&lt;br /&gt;
&lt;br /&gt;
Registration for the meeting is required and ends @TBD ...&lt;br /&gt;
&lt;br /&gt;
== Specifications, Documents and References ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications Specification List including Publication Status]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode#CVS_and_Mercurial CVS and Mercurial repositories]&lt;br /&gt;
* [http://www.w3.org/Bugs/Public/describecomponents.cgi?product=WebAppsWG Bugzilla]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/track/products Tracker]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode Group's Work Mode]&lt;br /&gt;
&lt;br /&gt;
== Potential Topics ==&lt;br /&gt;
&lt;br /&gt;
Potential agenda topics, listed in alphabetical order. '''Comments and feedback on all of these topics before the meeting is welcomed and encouraged as that may eliminate the topic from f2f agenda''':&lt;br /&gt;
&lt;br /&gt;
* Candidate Recommendation Interop status and plans - Test Facilitators to lead discussion&lt;br /&gt;
** [http://w3c-test.org/webapps/ProgressEvents/tests/ Progress Events Test Suite]; Test Facilitator is Jungkee Song; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [https://github.com/w3c/event-source Server-sent Events Test Suite]; Test Facilitator is Tina Zhao; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebMessaging/tests/ Web Messaging Test Suite]; Test Facilitator is Alex Kuang; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebSockets/tests/ Web Sockets Test Suite]; Test Facilitator is Kris Krueger; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebStorage/tests/ Web Storage Test Suite]; Test Facilitator is Jong-Heun Lee status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/Workers/tests/ Web Workers Test Suite]; Test Facilitator is Simon Pieters; status; Interop plans; Issues blocking PR&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html DOM3 Events] - high priority issues; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html DOM4] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/FileAPI/ File API] - high priority issues/bugs for v1; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2009/dap/file-system/file-dir-sys.html File API: Directories and System] and [http://dev.w3.org/2009/dap/file-system/file-writer.html File API: Writer] - is there sufficient interest from implementors to keep these specs on the REC track?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html Fullscreen API] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html Indexed Database] - high priority issues; plan to publish LCWD or CR&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/push/raw-file/default/index.html Push API] - is there sufficient commitment from Implementors to keep this spec in Charter? Should this spec be moved to the SysApps WG?&lt;br /&gt;
&lt;br /&gt;
* [https://dvcs.w3.org/hg/d4e/raw-file/tip/source_respec.htm UI Events] - what needs to be done before the spec is ready for FPWD?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/url/raw-file/tip/Overview.html URL] - should this be removed from the charter if no one commits to move it along the REC track?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html XHR] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html Web Components] - status and plans&lt;br /&gt;
&lt;br /&gt;
== Agenda Thursday April 25 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Rearranging the room; Introductions&lt;br /&gt;
* 09:30 - 10:00 Tweak agenda à la an [http://en.wikipedia.org/wiki/Unconference unconference style meeting]&lt;br /&gt;
* 10:00 - 11: 00 Round the [http://www.w3.org/2012/webapps/charter/ charter] and [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications dashboard]&lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:00&lt;br /&gt;
* 12:00 - 12:30 &lt;br /&gt;
* 12:30 - 13:30 Lunch&lt;br /&gt;
* 13:30 - 14:00 &lt;br /&gt;
* 14:00 - 14:30&lt;br /&gt;
* 14:30 - 15:00&lt;br /&gt;
* 15:00 - 15:30 &lt;br /&gt;
* 15:30 - 16:00 Break&lt;br /&gt;
* 16:00 - 16:30 &lt;br /&gt;
* 16:30 - 17:00&lt;br /&gt;
* 17:00 - 17:30&lt;br /&gt;
&lt;br /&gt;
* Evening Activity: @TB&lt;br /&gt;
&lt;br /&gt;
== Agenda Friday April 26 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Agenda update&lt;br /&gt;
* 09:30 - 10:00 &lt;br /&gt;
* 10:00 - 11:00 &lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:00&lt;br /&gt;
* 12:00 - 12:30 &lt;br /&gt;
* 12:30 - 13:30 Lunch and finish&lt;br /&gt;
&lt;br /&gt;
== Raw Minutes ==&lt;br /&gt;
&lt;br /&gt;
* [@TBD April 25]&lt;br /&gt;
* [@TBD April 26]&lt;/div&gt;</description>
			<pubDate>Wed, 27 Feb 2013 09:31:48 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:Webapps/April2013Meeting</comments>		</item>
		<item>
			<title>Webapps/April2013Meeting</title>
			<link>http://www.w3.org/wiki/Webapps/April2013Meeting</link>
			<description>&lt;p&gt;Charles:&amp;#32;map link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the Meeting Page including Agenda for the Web Applications WG (WebApps) f2f meeting in the San Jose CA US on Thursday April 25 and Friday April 26 2013.&lt;br /&gt;
&lt;br /&gt;
This meeting follows the [http://www.w3.org/wiki/HTML/wg/2013-04-Agenda HTML WG's April 23 and April 24 f2f meeting] at the same location.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''This Meeting Page, in particular the Agenda, is a WorkInProgress and Will Change!'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Meeting Logistics ==&lt;br /&gt;
* Meeting Host = eBay&lt;br /&gt;
* IRC channel = #webapps; irc.w3.org:6665&lt;br /&gt;
* Dates = April 25-26 2013&lt;br /&gt;
* Time = See below; all times are US West Coast time zone&lt;br /&gt;
* Location = [[http://maps.yandex.com/?um=y46bSOUdqt_QA4Ubz21G3HBPzvumKu1N&amp;amp;ll=-121.922001%2C37.376000&amp;amp;spn=0.022831%2C0.011045&amp;amp;z=16&amp;amp;l=sat%2Cskl%2Csat eBay, Building 12, 2161 N. First Street; San Jose, CA, 95164]]&lt;br /&gt;
* Meeting Room = @TBD&lt;br /&gt;
&lt;br /&gt;
== Meeting Registration ==&lt;br /&gt;
&lt;br /&gt;
Registration for the meeting is required and ends @TBD ...&lt;br /&gt;
&lt;br /&gt;
== Specifications, Documents and References ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications Specification List including Publication Status]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode#CVS_and_Mercurial CVS and Mercurial repositories]&lt;br /&gt;
* [http://www.w3.org/Bugs/Public/describecomponents.cgi?product=WebAppsWG Bugzilla]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/track/products Tracker]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode Group's Work Mode]&lt;br /&gt;
&lt;br /&gt;
== Potential Topics ==&lt;br /&gt;
&lt;br /&gt;
Potential agenda topics, listed in alphabetical order. '''Comments and feedback on all of these topics before the meeting is welcomed and encouraged as that may eliminate the topic from f2f agenda''':&lt;br /&gt;
&lt;br /&gt;
* Candidate Recommendation Interop status and plans - Test Facilitators to lead discussion&lt;br /&gt;
** [http://w3c-test.org/webapps/ProgressEvents/tests/ Progress Events Test Suite]; Test Facilitator is Jungkee Song; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [https://github.com/w3c/event-source Server-sent Events Test Suite]; Test Facilitator is Tina Zhao; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebMessaging/tests/ Web Messaging Test Suite]; Test Facilitator is Alex Kuang; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebSockets/tests/ Web Sockets Test Suite]; Test Facilitator is Kris Krueger; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebStorage/tests/ Web Storage Test Suite]; Test Facilitator is Jong-Heun Lee status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/Workers/tests/ Web Workers Test Suite]; Test Facilitator is Simon Pieters; status; Interop plans; Issues blocking PR&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html DOM3 Events] - high priority issues; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html DOM4] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/FileAPI/ File API] - high priority issues/bugs for v1; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2009/dap/file-system/file-dir-sys.html File API: Directories and System] and [http://dev.w3.org/2009/dap/file-system/file-writer.html File API: Writer] - is there sufficient interest from implementors to keep these specs on the REC track?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html Fullscreen API] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html Indexed Database] - high priority issues; plan to publish LCWD or CR&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/push/raw-file/default/index.html Push API] - is there sufficient commitment from Implementors to keep this spec in Charter? Should this spec be moved to the SysApps WG?&lt;br /&gt;
&lt;br /&gt;
* [https://dvcs.w3.org/hg/d4e/raw-file/tip/source_respec.htm UI Events] - what needs to be done before the spec is ready for FPWD?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/url/raw-file/tip/Overview.html URL] - should this be removed from the charter if no one commits to move it along the REC track?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html XHR] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html Web Components] - status and plans&lt;br /&gt;
&lt;br /&gt;
== Agenda Thursday April 25 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Rearranging the room; Introductions&lt;br /&gt;
* 09:30 - 10:00 Tweak agenda à la an [http://en.wikipedia.org/wiki/Unconference unconference style meeting]&lt;br /&gt;
* 10:00 - 11: 00 Round the [http://www.w3.org/2012/webapps/charter/ charter] and [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications dashboard]&lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:00&lt;br /&gt;
* 12:00 - 12:30 &lt;br /&gt;
* 12:30 - 13:30 Lunch&lt;br /&gt;
* 13:30 - 14:00 &lt;br /&gt;
* 14:00 - 14:30&lt;br /&gt;
* 14:30 - 15:00&lt;br /&gt;
* 15:00 - 15:30 &lt;br /&gt;
* 15:30 - 16:00 Break&lt;br /&gt;
* 16:00 - 16:30 &lt;br /&gt;
* 16:30 - 17:00&lt;br /&gt;
* 17:00 - 17:30&lt;br /&gt;
&lt;br /&gt;
* Evening Activity: @TB&lt;br /&gt;
&lt;br /&gt;
== Agenda Friday April 26 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Agenda update&lt;br /&gt;
* 09:30 - 10:00 &lt;br /&gt;
* 10:00 - 11:00 &lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:00&lt;br /&gt;
* 12:00 - 12:30 &lt;br /&gt;
* 12:30 - 13:30 Lunch and finish&lt;br /&gt;
&lt;br /&gt;
== Raw Minutes ==&lt;br /&gt;
&lt;br /&gt;
* [@TBD April 25]&lt;br /&gt;
* [@TBD April 26]&lt;/div&gt;</description>
			<pubDate>Wed, 27 Feb 2013 09:30:53 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:Webapps/April2013Meeting</comments>		</item>
		<item>
			<title>Webapps/April2013Meeting</title>
			<link>http://www.w3.org/wiki/Webapps/April2013Meeting</link>
			<description>&lt;p&gt;Charles:&amp;#32;friday stop at lunchtime&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the Meeting Page including Agenda for the Web Applications WG (WebApps) f2f meeting in the San Jose CA US on Thursday April 25 and Friday April 26 2013.&lt;br /&gt;
&lt;br /&gt;
This meeting follows the [http://www.w3.org/wiki/HTML/wg/2013-04-Agenda HTML WG's April 23 and April 24 f2f meeting] at the same location.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''This Meeting Page, in particular the Agenda, is a WorkInProgress and Will Change!'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Meeting Logistics ==&lt;br /&gt;
* Meeting Host = eBay&lt;br /&gt;
* IRC channel = #webapps; irc.w3.org:6665&lt;br /&gt;
* Dates = April 25-26 2013&lt;br /&gt;
* Time = See below; all times are US West Coast time zone&lt;br /&gt;
* Location = eBay, Building 12, 2161 N. First Street; San Jose, CA, 95164&lt;br /&gt;
* Meeting Room = @TBD&lt;br /&gt;
&lt;br /&gt;
== Meeting Registration ==&lt;br /&gt;
&lt;br /&gt;
Registration for the meeting is required and ends @TBD ...&lt;br /&gt;
&lt;br /&gt;
== Specifications, Documents and References ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications Specification List including Publication Status]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode#CVS_and_Mercurial CVS and Mercurial repositories]&lt;br /&gt;
* [http://www.w3.org/Bugs/Public/describecomponents.cgi?product=WebAppsWG Bugzilla]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/track/products Tracker]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode Group's Work Mode]&lt;br /&gt;
&lt;br /&gt;
== Potential Topics ==&lt;br /&gt;
&lt;br /&gt;
Potential agenda topics, listed in alphabetical order. '''Comments and feedback on all of these topics before the meeting is welcomed and encouraged as that may eliminate the topic from f2f agenda''':&lt;br /&gt;
&lt;br /&gt;
* Candidate Recommendation Interop status and plans - Test Facilitators to lead discussion&lt;br /&gt;
** [http://w3c-test.org/webapps/ProgressEvents/tests/ Progress Events Test Suite]; Test Facilitator is Jungkee Song; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [https://github.com/w3c/event-source Server-sent Events Test Suite]; Test Facilitator is Tina Zhao; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebMessaging/tests/ Web Messaging Test Suite]; Test Facilitator is Alex Kuang; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebSockets/tests/ Web Sockets Test Suite]; Test Facilitator is Kris Krueger; status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/WebStorage/tests/ Web Storage Test Suite]; Test Facilitator is Jong-Heun Lee status; Interop plans; Issues blocking PR&lt;br /&gt;
** [http://w3c-test.org/webapps/Workers/tests/ Web Workers Test Suite]; Test Facilitator is Simon Pieters; status; Interop plans; Issues blocking PR&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html DOM3 Events] - high priority issues; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html DOM4] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2006/webapi/FileAPI/ File API] - high priority issues/bugs for v1; plan to publish LCWD&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2009/dap/file-system/file-dir-sys.html File API: Directories and System] and [http://dev.w3.org/2009/dap/file-system/file-writer.html File API: Writer] - is there sufficient interest from implementors to keep these specs on the REC track?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html Fullscreen API] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html Indexed Database] - high priority issues; plan to publish LCWD or CR&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/push/raw-file/default/index.html Push API] - is there sufficient commitment from Implementors to keep this spec in Charter? Should this spec be moved to the SysApps WG?&lt;br /&gt;
&lt;br /&gt;
* [https://dvcs.w3.org/hg/d4e/raw-file/tip/source_respec.htm UI Events] - what needs to be done before the spec is ready for FPWD?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/url/raw-file/tip/Overview.html URL] - should this be removed from the charter if no one commits to move it along the REC track?&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/xhr/raw-file/tip/Overview.html XHR] - status and plans&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html Web Components] - status and plans&lt;br /&gt;
&lt;br /&gt;
== Agenda Thursday April 25 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Rearranging the room; Introductions&lt;br /&gt;
* 09:30 - 10:00 Tweak agenda à la an [http://en.wikipedia.org/wiki/Unconference unconference style meeting]&lt;br /&gt;
* 10:00 - 11: 00 Round the [http://www.w3.org/2012/webapps/charter/ charter] and [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications dashboard]&lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:00&lt;br /&gt;
* 12:00 - 12:30 &lt;br /&gt;
* 12:30 - 13:30 Lunch&lt;br /&gt;
* 13:30 - 14:00 &lt;br /&gt;
* 14:00 - 14:30&lt;br /&gt;
* 14:30 - 15:00&lt;br /&gt;
* 15:00 - 15:30 &lt;br /&gt;
* 15:30 - 16:00 Break&lt;br /&gt;
* 16:00 - 16:30 &lt;br /&gt;
* 16:30 - 17:00&lt;br /&gt;
* 17:00 - 17:30&lt;br /&gt;
&lt;br /&gt;
* Evening Activity: @TB&lt;br /&gt;
&lt;br /&gt;
== Agenda Friday April 26 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Agenda update&lt;br /&gt;
* 09:30 - 10:00 &lt;br /&gt;
* 10:00 - 11:00 &lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:00&lt;br /&gt;
* 12:00 - 12:30 &lt;br /&gt;
* 12:30 - 13:30 Lunch and finish&lt;br /&gt;
&lt;br /&gt;
== Raw Minutes ==&lt;br /&gt;
&lt;br /&gt;
* [@TBD April 25]&lt;br /&gt;
* [@TBD April 26]&lt;/div&gt;</description>
			<pubDate>Wed, 27 Feb 2013 00:06:43 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:Webapps/April2013Meeting</comments>		</item>
		<item>
			<title>TPAC2012/Offline Apps</title>
			<link>http://www.w3.org/wiki/TPAC2012/Offline_Apps</link>
			<description>&lt;p&gt;Charles:&amp;#32;package / data formats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Offline Apps ==&lt;br /&gt;
&lt;br /&gt;
There were 46 participants in the session.&lt;br /&gt;
&lt;br /&gt;
The minutes are at: http://www.w3.org/2012/10/31-offline-minutes.html&lt;br /&gt;
&lt;br /&gt;
Chaals agreed to summarise methods for packaging applications, and working with data. Here's something of a start on that:&lt;br /&gt;
&lt;br /&gt;
Packaging:&lt;br /&gt;
* appcache (list of URLs to be collected)&lt;br /&gt;
* widgets (XML)&lt;br /&gt;
* Mozilla app packaging proposal (JSON)&lt;br /&gt;
* Chrome app packaging format (JSON)&lt;br /&gt;
&lt;br /&gt;
Data sources:&lt;br /&gt;
* file system&lt;br /&gt;
* Web Storage&lt;br /&gt;
* WebSQL&lt;br /&gt;
* IndexedDB&lt;br /&gt;
* local URLs in packages&lt;br /&gt;
* Get stuff by XHR&lt;br /&gt;
&lt;br /&gt;
(It is sometimes but not always possible to open links too. But that's kind of separate)&lt;/div&gt;</description>
			<pubDate>Thu, 01 Nov 2012 17:04:04 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:TPAC2012/Offline_Apps</comments>		</item>
		<item>
			<title>TPAC2012-Planning</title>
			<link>http://www.w3.org/wiki/TPAC2012-Planning</link>
			<description>&lt;p&gt;Charles:&amp;#32;/* Notes on the agenda (especially wrt TPAC 2011) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It is expected that the [[TPAC2012-Committee|TPAC2012 Program Committee]] will use this wiki to plan the [[TPAC2012]] Plenary day.&lt;br /&gt;
&lt;br /&gt;
== Next meeting of Program Committee ==&lt;br /&gt;
&lt;br /&gt;
Next meeting: Friday, 14 Sep at 11am ET.&lt;br /&gt;
&lt;br /&gt;
Agenda ideas for that meeting:&lt;br /&gt;
&lt;br /&gt;
* Resolve to adopt proposed schedule&lt;br /&gt;
* Plan to update resources (FAQ, agenda, good practices for session chairs&lt;br /&gt;
* Next steps on 1-1 outreach plan for Prog Committee to encourage sessions&lt;br /&gt;
&lt;br /&gt;
== Ideas for TPAC 2012 Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Ian proposal based on TPAC 2011 Feedback ===&lt;br /&gt;
&lt;br /&gt;
==== Before the Plenary ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* June: Invite people to start thinking of breakout sessions ([https://lists.w3.org/Archives/Member/w3c-ac-members/2012AprJun/0066.html email to TPAC attendees]).&lt;br /&gt;
* August: Send ([https://lists.w3.org/Archives/Member/w3c-ac-members/2012JulSep/0030.html reminder])&lt;br /&gt;
* 17 September: Update TPAC 2012 pages to reflect program committee plans.&lt;br /&gt;
* 18 September: Share plenary plan with meeting attendees with third invitation to propose sessions. Explain briefly pre-select process and any process to upgrade to plenary. Point to updated documentation/FAQ. Invite people (using w3c-ac-forum and wiki) to request sessions they'd like to hear about.&lt;br /&gt;
* 19 September to 10 October: Program committee 1-on-1 outreach to potential session leads.&lt;br /&gt;
** @@More work to do on how the 1-1 outreach will happen&lt;br /&gt;
* 19 October: Announce pre-selected breakout sessions and last push for session entries. Also announce that there will be a brief explanation of how the day works 30 minutes before the 30 Oct reception starts.&lt;br /&gt;
* 29 October: Make available grid near registration so people see sessions and can start putting their own on Monday and Tuesday&lt;br /&gt;
* 30 October: Dress rehearsal (to see that we have all we need). Before the reception show people how it works. (This was great during TPAC 2011 at the bar with the Japanese participants.)&lt;br /&gt;
* 31 October: Plenary&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* Jeff: More outreach to CGs to propose breakout sessions.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Day of the Plenary (31 October)====&lt;br /&gt;
&lt;br /&gt;
* 08:30-09:00: Jeff Jaffe intro in plenary&lt;br /&gt;
* 09:00-09:30: New and upcoming work (wgs, cgs, bgs, workshops). Plenary lightning talks (can mention related breakouts)&lt;br /&gt;
* 09:30-10:30: Agenda building. &lt;br /&gt;
** Includes Tantek and Ian brief intro 5-10 mins on how the day will go&lt;br /&gt;
* 10:30-11:00: Break&lt;br /&gt;
* 11:00-11:50: Discussion breakouts&lt;br /&gt;
* 12:00-13:30: Lunch&lt;br /&gt;
* 13:30-14:50: Discussion breakouts&lt;br /&gt;
* 15:00-15:30: Break&lt;br /&gt;
* 15:30-15:55: Presentation breakouts [May be combined for 2 hours]&lt;br /&gt;
* 16:00-16:50: Presentation breakouts&lt;br /&gt;
* 17:00-17:30: Sharing (optional)&lt;br /&gt;
* 17:30-17:40: Wrap-up, thanks, next TPAC (Jeff Jaffe)&lt;br /&gt;
* 18h30-end: Dinner&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* Jeff not convinced of variable time slots. People may not know in advance what they need. Complicates agenda building.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== After the Plenary ====&lt;br /&gt;
&lt;br /&gt;
* Comm Team reviews all the session summaries and builds a comprehensive summary to emphasize integration of the sessions into our broader work plan.&lt;br /&gt;
&lt;br /&gt;
==== Notes on the agenda (especially wrt TPAC 2011) ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* Schedule makes explicit travel time between sessions (a comment from TPAC 2011).&lt;br /&gt;
* Only two plenary sessions. (TPAC 2011 had three.) Jeff's was appreciated (and is repeated). The other is 30 minutes and will be LTs so people can share info about new work as broadly as possible.&lt;br /&gt;
* More discussion time. TPAC 2011 had 3:45. TPAC 2012 has 4:30.&lt;br /&gt;
* Scheduled breaks (suggested based on TPAC 2011).&lt;br /&gt;
* Different slot lengths for different needs; clearer labeling of slot purpose.&lt;br /&gt;
* Sharing session reduced from TPAC 2011's 75 minutes to 30 minutes. There are various ways to share (per Jeff):&lt;br /&gt;
** Sharing session (determine number and max allocation at beginning of session)&lt;br /&gt;
** At Thursday AC meeting as appropriate&lt;br /&gt;
** In a new CG&lt;br /&gt;
** Electronically (e.g., recording in wiki, then sharing on mailing lists)&lt;br /&gt;
* We have rooms for 28 breakouts.&lt;br /&gt;
* There are no pre-selected plenaries. We can, however, choose to guarantee up to 25% of the slots (thus, 7) for those people who request a guaranteed slot (by some date) and who commit to organizing it.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See  [[TPAC2012#Some_ideas_for_changes_from_TPAC_2011]]&lt;br /&gt;
&lt;br /&gt;
== Room logistics ==&lt;br /&gt;
&lt;br /&gt;
Notes:  the plenary is on Forum level, all the TPAC meeting rooms are on the right side on the conference center&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* The plenary room (Weds) will set 156 classroom style and 234 theater style. Classroom style has electricity.&lt;br /&gt;
* Rhone 1: 35 people&lt;br /&gt;
* Rhone 2: 35 people&lt;br /&gt;
* Rhone 3A (combined with 3B): 55 people&lt;br /&gt;
* Saint-Clair 1: 20 people&lt;br /&gt;
* Saint-Clair 2: 20 people&lt;br /&gt;
* Saint-Clair 3A: 20 people&lt;br /&gt;
* Saint-Clair 3B: 20 people&lt;br /&gt;
* Extra cost: 5 rooms for 15 people (Levels Saint-Clair and Roseraie).&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Travel times:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* From plenary to breakouts: 2-4 mins walk&lt;br /&gt;
* From breakouts to lunch: 2-4 mins walk (next to plenary room)&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
* The plenary is on Forum level, all the TPAC meeting rooms are on the right side on the conference center&lt;br /&gt;
* We can hold the breaks next to the breakout rooms, or in front on the Plenary room.&lt;br /&gt;
&lt;br /&gt;
See also [http://www.ccc-lyon.com/uploads/sfSympalBossMediaPlugin/document/7f3fd1786a7211bd86b342eb966afc035a4c5d08.pdf map of the space (PDF)].&lt;br /&gt;
&lt;br /&gt;
== Good practice for session chairs ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* When you start&lt;br /&gt;
** Announce the nature of your session (presentation or discussion or other)&lt;br /&gt;
** Define goals for your session (so people can choose to attend).&lt;br /&gt;
** Provide context so that people who are new to  the topic can follow.&lt;br /&gt;
** Find a scribe who will take notes in the wiki.&lt;br /&gt;
** Choose an IRC channel (and invite bots for creating minutes)&lt;br /&gt;
** Consider recording names of participants (e.g., by having them &amp;quot;sign in&amp;quot; on IRC)&lt;br /&gt;
* At the end&lt;br /&gt;
** End '''on time'''&lt;br /&gt;
** Try to summarize before the end of the meeting, for inclusion in the wiki and possibly for sharing in plenary:&lt;br /&gt;
*** What are the next steps (possibly none)?&lt;br /&gt;
*** Who is responsible for carrying them out? (Could be a person from the session, or a group where work is ongoing, or the staff, etc.)&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Material requirements ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* Place to draw the grid&lt;br /&gt;
* Paper stickies and fat markers&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;/div&gt;</description>
			<pubDate>Sat, 08 Sep 2012 16:17:17 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:TPAC2012-Planning</comments>		</item>
		<item>
			<title>TPAC2012-Planning</title>
			<link>http://www.w3.org/wiki/TPAC2012-Planning</link>
			<description>&lt;p&gt;Charles:&amp;#32;/* Good practice for session chairs */ timing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It is expected that the [[TPAC2012-Committee|TPAC2012 Program Committee]] will use this wiki to plan the [[TPAC2012]] Plenary day.&lt;br /&gt;
&lt;br /&gt;
== Next meeting of Program Committee ==&lt;br /&gt;
&lt;br /&gt;
Next meeting: Friday, 14 Sep at 11am ET.&lt;br /&gt;
&lt;br /&gt;
Agenda ideas for that meeting:&lt;br /&gt;
&lt;br /&gt;
* Resolve to adopt proposed schedule&lt;br /&gt;
* Plan to update resources (FAQ, agenda, good practices for session chairs&lt;br /&gt;
* Next steps on 1-1 outreach plan for Prog Committee to encourage sessions&lt;br /&gt;
&lt;br /&gt;
== Ideas for TPAC 2012 Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Ian proposal based on TPAC 2011 Feedback ===&lt;br /&gt;
&lt;br /&gt;
==== Before the Plenary ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* June: Invite people to start thinking of breakout sessions ([https://lists.w3.org/Archives/Member/w3c-ac-members/2012AprJun/0066.html email to TPAC attendees]).&lt;br /&gt;
* August: Send ([https://lists.w3.org/Archives/Member/w3c-ac-members/2012JulSep/0030.html reminder])&lt;br /&gt;
* 17 September: Update TPAC 2012 pages to reflect program committee plans.&lt;br /&gt;
* 18 September: Share plenary plan with meeting attendees with third invitation to propose sessions. Explain briefly pre-select process and any process to upgrade to plenary. Point to updated documentation/FAQ. Invite people (using w3c-ac-forum and wiki) to request sessions they'd like to hear about.&lt;br /&gt;
* 19 September to 10 October: Program committee 1-on-1 outreach to potential session leads.&lt;br /&gt;
** @@More work to do on how the 1-1 outreach will happen&lt;br /&gt;
* 19 October: Announce pre-selected breakout sessions and last push for session entries. Also announce that there will be a brief explanation of how the day works 30 minutes before the 30 Oct reception starts.&lt;br /&gt;
* 29 October: Make available grid near registration so people see sessions and can start putting their own on Monday and Tuesday&lt;br /&gt;
* 30 October: Dress rehearsal (to see that we have all we need). Before the reception show people how it works. (This was great during TPAC 2011 at the bar with the Japanese participants.)&lt;br /&gt;
* 31 October: Plenary&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* Jeff: More outreach to CGs to propose breakout sessions.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Day of the Plenary (31 October)====&lt;br /&gt;
&lt;br /&gt;
* 08:30-09:00: Jeff Jaffe intro in plenary&lt;br /&gt;
* 09:00-09:30: New and upcoming work (wgs, cgs, bgs, workshops). Plenary lightning talks (can mention related breakouts)&lt;br /&gt;
* 09:30-10:30: Agenda building. &lt;br /&gt;
** Includes Tantek and Ian brief intro 5-10 mins on how the day will go&lt;br /&gt;
* 10:30-11:00: Break&lt;br /&gt;
* 11:00-11:50: Discussion breakouts&lt;br /&gt;
* 12:00-13:30: Lunch&lt;br /&gt;
* 13:30-14:50: Discussion breakouts&lt;br /&gt;
* 15:00-15:30: Break&lt;br /&gt;
* 15:30-15:55: Presentation breakouts [May be combined for 2 hours]&lt;br /&gt;
* 16:00-16:50: Presentation breakouts&lt;br /&gt;
* 17:00-17:30: Sharing (optional)&lt;br /&gt;
* 17:30-17:40: Wrap-up, thanks, next TPAC (Jeff Jaffe)&lt;br /&gt;
* 18h30-end: Dinner&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* Jeff not convinced of variable time slots. People may not know in advance what they need. Complicates agenda building.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== After the Plenary ====&lt;br /&gt;
&lt;br /&gt;
* Comm Team reviews all the session summaries and builds a comprehensive summary to emphasize integration of the sessions into our broader work plan.&lt;br /&gt;
&lt;br /&gt;
==== Notes on the agenda (especially wrt TPAC 2011) ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* Schedule makes explicit travel time between sessions (a comment from TPAC 2011).&lt;br /&gt;
* Only two plenary sessions. (TPAC 2011 had three.) Jeff's was appreciated (and is repeated). The other is 30 minutes and will be LTs so people can share info about new work as broadly as possible.&lt;br /&gt;
* More discussion time. TPAC 2011 had 3:45. TPAC 2012 has 4:30.&lt;br /&gt;
* Scheduled breaks (suggested based on TPAC 2011).&lt;br /&gt;
* Different slot lengths for different needs; clearer labeling of slot purpose.&lt;br /&gt;
* Sharing session reduced from TPAC 2011's 75 minutes to 30 minutes. There are various ways to share (per Jeff):&lt;br /&gt;
** Sharing session (determine number and max allocation at beginning of session)&lt;br /&gt;
** At Thursday AC meeting as appropriate&lt;br /&gt;
** In a new CG&lt;br /&gt;
** Electronically (e.g., recording in wiki, then sharing on mailing lists)&lt;br /&gt;
* We have rooms for 28 breakouts.&lt;br /&gt;
* There are no pre-selected plenaries. We can, however, choose to guarantee 25% of the slots (thus, 7) for those people who request a guaranteed slot (by some date) and who commit to organizing it.&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See  [[TPAC2012#Some_ideas_for_changes_from_TPAC_2011]]&lt;br /&gt;
&lt;br /&gt;
== Room logistics ==&lt;br /&gt;
&lt;br /&gt;
Notes:  the plenary is on Forum level, all the TPAC meeting rooms are on the right side on the conference center&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* The plenary room (Weds) will set 156 classroom style and 234 theater style. Classroom style has electricity.&lt;br /&gt;
* Rhone 1: 35 people&lt;br /&gt;
* Rhone 2: 35 people&lt;br /&gt;
* Rhone 3A (combined with 3B): 55 people&lt;br /&gt;
* Saint-Clair 1: 20 people&lt;br /&gt;
* Saint-Clair 2: 20 people&lt;br /&gt;
* Saint-Clair 3A: 20 people&lt;br /&gt;
* Saint-Clair 3B: 20 people&lt;br /&gt;
* Extra cost: 5 rooms for 15 people (Levels Saint-Clair and Roseraie).&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Travel times:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* From plenary to breakouts: 2-4 mins walk&lt;br /&gt;
* From breakouts to lunch: 2-4 mins walk (next to plenary room)&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
* The plenary is on Forum level, all the TPAC meeting rooms are on the right side on the conference center&lt;br /&gt;
* We can hold the breaks next to the breakout rooms, or in front on the Plenary room.&lt;br /&gt;
&lt;br /&gt;
See also [http://www.ccc-lyon.com/uploads/sfSympalBossMediaPlugin/document/7f3fd1786a7211bd86b342eb966afc035a4c5d08.pdf map of the space (PDF)].&lt;br /&gt;
&lt;br /&gt;
== Good practice for session chairs ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* When you start&lt;br /&gt;
** Announce the nature of your session (presentation or discussion or other)&lt;br /&gt;
** Define goals for your session (so people can choose to attend).&lt;br /&gt;
** Provide context so that people who are new to  the topic can follow.&lt;br /&gt;
** Find a scribe who will take notes in the wiki.&lt;br /&gt;
** Choose an IRC channel (and invite bots for creating minutes)&lt;br /&gt;
** Consider recording names of participants (e.g., by having them &amp;quot;sign in&amp;quot; on IRC)&lt;br /&gt;
* At the end&lt;br /&gt;
** End '''on time'''&lt;br /&gt;
** Try to summarize before the end of the meeting, for inclusion in the wiki and possibly for sharing in plenary:&lt;br /&gt;
*** What are the next steps (possibly none)?&lt;br /&gt;
*** Who is responsible for carrying them out? (Could be a person from the session, or a group where work is ongoing, or the staff, etc.)&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Material requirements ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* Place to draw the grid&lt;br /&gt;
* Paper stickies and fat markers&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;/div&gt;</description>
			<pubDate>Sat, 08 Sep 2012 16:16:51 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:TPAC2012-Planning</comments>		</item>
		<item>
			<title>Webapps/TPAC2012Meeting</title>
			<link>http://www.w3.org/wiki/Webapps/TPAC2012Meeting</link>
			<description>&lt;p&gt;Charles:&amp;#32;/* Potential Topics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the Meeting Page including Agenda for the Web Applications WG (WebApps) f2f meeting in Lyon France on Monday October 29 and Tuesday October 30 2012. This meeting is being held in conjunction with the W3C's annual [http://www.w3.org/2012/10/TPAC/ 2012 Technical Plenary] meeting week (aka simply ''TPAC'').&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''This Meeting Page, in particular the Agenda, is a WorkInProgress and Will Change!'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Meeting Logistics ==&lt;br /&gt;
&lt;br /&gt;
* Meeting Host = W3C (as part of the [http://www.w3.org/2012/10/TPAC/ TPAC 2012 Meeting Week])&lt;br /&gt;
* Voice Conference: bridge will be available; PIN = @TBD&lt;br /&gt;
* IRC channel = #webapps; irc.w3.org:6665&lt;br /&gt;
* Dates = Monday and Tuesday October 29-30 2012&lt;br /&gt;
* Time = See below; all times are local time zone&lt;br /&gt;
* Location = Lyon France&lt;br /&gt;
* Meeting Room = @TBD&lt;br /&gt;
&lt;br /&gt;
== Meeting Registration ==&lt;br /&gt;
&lt;br /&gt;
'''Pre-registration for this meeting is Mandatory''' via the [http://www.w3.org/2012/10/TPAC/#Registration TPAC 2012 Meeting Registration] service. &lt;br /&gt;
&lt;br /&gt;
For a list of registrants see [https://www.w3.org/2002/09/wbs/35125/TPAC2012/registrants#Webap WebApps' registrant list] (Member-only link).&lt;br /&gt;
&lt;br /&gt;
== Specifications, Documents and References ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/PubStatus#API_Specifications Specification List including Publication Status]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode Group's Work Mode]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/wiki/WorkMode#CVS_and_Mercurial CVS and Mercurial repositories]&lt;br /&gt;
* [http://www.w3.org/Bugs/Public/describecomponents.cgi?product=WebAppsWG Bugzilla]&lt;br /&gt;
* [http://www.w3.org/2008/webapps/track/products Tracker]&lt;br /&gt;
&lt;br /&gt;
== Potential Topics ==&lt;br /&gt;
&lt;br /&gt;
Potential agenda topics, listed in alphabetical order. '''Note that none of these topics are confirmed, please feel free to add suggestions/requests.'''&lt;br /&gt;
&lt;br /&gt;
* [http://dvcs.w3.org/hg/web-intents/raw-file/tip/spec/Overview.html Web Intents] spec. DAP WG is meeting on Thur/Fri and will discuss the spec in detail, the purpose of discussion in webapps is to raise issues and feed the DAP meeting. Suggested 30-60 minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Joint Meetings&lt;br /&gt;
** Joint Meeting with CSS WG re [http://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html Fullscreen] spec?&lt;br /&gt;
** Joint Meeting with WebAppSec WG re [http://dev.w3.org/2006/waf/access-control/ CORS] spec?&lt;br /&gt;
&lt;br /&gt;
== Agenda Monday October 29 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Rearranging the room&lt;br /&gt;
* 09:30 - 10:00 Tweak agenda à la an [http://en.wikipedia.org/wiki/Unconference unconference style meeting]&lt;br /&gt;
* 10:00 - 11:00 &lt;br /&gt;
* 11:00 - 11:30 Break&lt;br /&gt;
* 11:30 - 12:30&lt;br /&gt;
* 12:30 - 13:30 Lunch&lt;br /&gt;
* 13:30 - 14:30 &lt;br /&gt;
* 14:30 - 15:30 &lt;br /&gt;
* 15:30 - 15:45 Break&lt;br /&gt;
* 15:45 - 16:45&lt;br /&gt;
* 16:45 - 17:45 &lt;br /&gt;
&lt;br /&gt;
== Agenda Tuesday October 30 ==&lt;br /&gt;
&lt;br /&gt;
* 09:00 - 09:30 Tweak agenda à la an [http://en.wikipedia.org/wiki/Unconference unconference style meeting]&lt;br /&gt;
* 09:30 - 10:30 &lt;br /&gt;
* 10:30 - 11:00 Break&lt;br /&gt;
* 11:00 - 11:45&lt;br /&gt;
* 11:45 - 12:30&lt;br /&gt;
* 12:30 - 13:30 Lunch&lt;br /&gt;
* 13:30 - 14:30 &lt;br /&gt;
* 14:30 - 15:30 &lt;br /&gt;
* 15:30 - 15:45 Break&lt;br /&gt;
* 15:45 - 17:45 Web Intents: update, status, Q&amp;amp;A with Web Intents Task Force members&lt;br /&gt;
&lt;br /&gt;
== Minutes ==&lt;br /&gt;
&lt;br /&gt;
* [@TBD October 29]&lt;br /&gt;
* [@TBD October 30]&lt;/div&gt;</description>
			<pubDate>Wed, 29 Aug 2012 10:48:45 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:Webapps/TPAC2012Meeting</comments>		</item>
		<item>
			<title>GuideBook</title>
			<link>http://www.w3.org/wiki/GuideBook</link>
			<description>&lt;p&gt;Charles:&amp;#32;/* Facet 1: Timeline */ tweaking&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is a ''proposal'' for a reorganization of the [http://www.w3.org/Guide/ Art of Consensus Guide] into different faceted documents&lt;br /&gt;
&lt;br /&gt;
== About the Guide ==&lt;br /&gt;
&lt;br /&gt;
This Guidebook is intended to complement the [http://www.w3.org/Consortium/Agreement/Appendix W3C Membership Agreement] and the [http://www.w3.org/Consortium/Process/ W3C Process]. This index page is ''Member-only'', although some of the resources in the Guidebook are public.&lt;br /&gt;
&lt;br /&gt;
You are expected to be familiar with the parts of this Guidebook that affect your work. Working Group chairs should get a &amp;quot;tour&amp;quot; from their team contact. Then take a look again, for example, if you're going to hold a face-to-face meeting; read the section on meetings.&lt;br /&gt;
&lt;br /&gt;
== Facet 1: Timeline ==&lt;br /&gt;
&lt;br /&gt;
=== Create a Group ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2000/09/submission how to send a Member Submission Request] which may prompt the creation of a group&lt;br /&gt;
* New group [http://www.w3.org/Guide/Charter.html charter] [http://www.w3.org/2006/02/chartergen generator]&lt;br /&gt;
* Alternatively, create a [http://www.w3.org/community community or business group]&lt;br /&gt;
&lt;br /&gt;
=== Setting up systems tools ===&lt;br /&gt;
&lt;br /&gt;
* Your group will already have a mailing list. If you think you should have more lists, @@&lt;br /&gt;
* [http://www.w3.org/Guide/1998/08/TeleconferenceHowTo schedule a recurring teleconference]&lt;br /&gt;
* set up collaborative tools: [http://www.w3.org/Guide/blog blog], [http://lists.w3.org/Archives/Member/w3c-tools/2006JulSep/0000 wiki]&lt;br /&gt;
* start issues tracking with [http://www.w3.org/2005/06/tracker/ tracker] or [http://www.w3.org/Bugs/ bugzilla]&lt;br /&gt;
* set up [http://www.w3.org/2005/06/tracker/ tracker]  for issue and action items management&lt;br /&gt;
&lt;br /&gt;
=== Using systems tools ===&lt;br /&gt;
* run a meeting on IRC&lt;br /&gt;
** [http://dev.w3.org/2002/scribe/scribedoc.htm#Quick_Start_Guide Quick start guide] for setting up tools for managing an agenda, generating minutes, and updating issues lists&lt;br /&gt;
** [http://www.w3.org/2008/04/scribe.html Scribe 101]: Taking meeting minutes using W3C IRC tools&lt;br /&gt;
** Individual IRC tools (&amp;quot;bots&amp;quot;):&lt;br /&gt;
*** [http://www.w3.org/2001/12/zakim-irc-bot.html Zakim] for bridge management&lt;br /&gt;
*** [http://www.w3.org/2002/03/RRSAgent RRSAgent] for minutes management&lt;br /&gt;
*** [http://www.w3.org/2005/06/tracker/irc Trackbot] for issue management (using [http://www.w3.org/2005/06/tracker/ Tracker]) during an IRC-based meeting&lt;br /&gt;
* Face-to-face meetings&lt;br /&gt;
** Send face-to-face meeting information to calreq@w3.org; that information appears on the [http://www.w3.org/Member/Eventscal Member events calendar]&lt;br /&gt;
** [http://www.w3.org/Guide/hosting.htm Host a face-to-face meeting]. Note the [http://www.w3.org/2004/06/NoNDAPolicy.html Policy Regarding Non-Disclosure Agreements and W3C Meetings]&lt;br /&gt;
* find editors&lt;br /&gt;
* the staff contact gets editors an [http://www.w3.org/Systems/Accounts/w3t/ account (jigedit or CVS)] to edit the w3.org website&lt;br /&gt;
* editors can work with &lt;br /&gt;
** [http://www.w3.org/Guide/Jigedit JigEdit],&lt;br /&gt;
** [http://www.w3.org/Guide/Jigedit/Webdav WebDAV],  &lt;br /&gt;
** or (for experts) [http://www.w3.org/Project/CVSdoc/ CVS]&lt;br /&gt;
* start testing. get dev.w3.org accounts for participants to work on a test suite&lt;br /&gt;
&lt;br /&gt;
=== Maturing Group ===&lt;br /&gt;
* how to handle REC track transitions:  [http://www.w3.org/Guide/transitions Transition requirements] (for First Public Draft, Last Call, CR, PR, REC, etc.)&lt;br /&gt;
* promoting the spec with a [http://www.w3.org/Guide/blog blog], [http://www.w3.org/2004/09/SubmitTalk  Talks]&lt;br /&gt;
* [http://www.w3.org/2004/12/testimonial_pr-guidelines.htmlPress release testimonial guidelines]&lt;br /&gt;
* use the [http://www.w3.org/2006/02/lc-comments-tracker/ Last Call comments tracker] to track public comments on specifications and build a disposition of comments&lt;br /&gt;
* if you used [http://www.w3.org/Bugs/ Bugzilla] for issues tracking, [http://www.w3.org/2007/02/bugs2html/ bugs2html] can let you create a disposition of comments&lt;br /&gt;
* implementation report&lt;br /&gt;
&lt;br /&gt;
=== Maintenance mode ===&lt;br /&gt;
* Publishing Errata, resolving to publish a new edition or a new version.&lt;br /&gt;
&lt;br /&gt;
=== Closing a group ===&lt;br /&gt;
* [http://www.w3.org/2005/Incubator/XGR/about.html Publishing a final XG Report]&lt;br /&gt;
&lt;br /&gt;
== Facet 2: by Role ==&lt;br /&gt;
&lt;br /&gt;
=== About W3C Roles ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/Guide/chair-roles.html Chair's role]&lt;br /&gt;
* [http://lists.w3.org/Archives/Member/chairs/1999JanMar/0056 Editor's role]&lt;br /&gt;
* [http://www.w3.org/Signature/Contributor.html Editor, Author, Contributor Policies]&lt;br /&gt;
* [http://www.w3.org/Guide/staff-contact.html Staff Contact's role]&lt;br /&gt;
* [http://www.w3.org/Guide/liaison-role Liaison's role] ('''Note''': Per [http://www.w3.org/2005/10/Process-20051014/liaisons section 10 of the Process Document], liaisons MUST be coordinated by the Team due to requirements for public communication; patent, copyright, and  other IPR policies; confidentiality agreements; and mutual membership agreements.)&lt;br /&gt;
&lt;br /&gt;
=== Every WG Participant ===&lt;br /&gt;
* [http://www.w3.org/2004/01/pp-impl/ Join a group] (see also [http://www.w3.org/2004/08/invexp.html Invited Expert Policy])&lt;br /&gt;
* consider taking on roles: editor, test lead, etc. &lt;br /&gt;
&lt;br /&gt;
=== Chair and Scribe ===&lt;br /&gt;
&lt;br /&gt;
* Guidance: [http://www.w3.org/Guide/reagles-experiences.html On Chairing a group]&lt;br /&gt;
* [http://www.w3.org/Guide/1998/08/TeleconferenceHowTo schedule a recurring teleconference]&lt;br /&gt;
* organising a Face-to-face meetings&lt;br /&gt;
** Send face-to-face meeting information to calreq@w3.org; that information appears on the [http://www.w3.org/Member/Eventscal Member events calendar]&lt;br /&gt;
** [http://www.w3.org/Guide/hosting.htm Host a face-to-face meeting]. Note the [http://www.w3.org/2004/06/NoNDAPolicy.html Policy Regarding Non-Disclosure Agreements and W3C Meetings]&lt;br /&gt;
* [http://dev.w3.org/2002/scribe/scribedoc.htm#Quick_Start_Guide Quick start guide] for setting up tools for managing an agenda, generating minutes, and updating issues lists&lt;br /&gt;
* [http://www.w3.org/2008/04/scribe.html Scribe 101]: Taking meeting minutes using W3C IRC tools&lt;br /&gt;
* Individual IRC tools (&amp;quot;bots&amp;quot;):&lt;br /&gt;
** [http://www.w3.org/2001/12/zakim-irc-bot.html Zakim] for bridge management&lt;br /&gt;
** [http://www.w3.org/2002/03/RRSAgent RRSAgent] for minutes management&lt;br /&gt;
** [http://www.w3.org/2005/06/tracker/irc Trackbot] for issue management (using [http://www.w3.org/2005/06/tracker/ Tracker]) during an IRC-based meeting&lt;br /&gt;
* [http://lists.w3.org/Archives/Member/chairs/2002JanMar/0041 Guidance for Chairs] on Staff participation&lt;br /&gt;
* XG Chairs: For an account to let you or select XG participants write to w3.org, please contact Ian Jacobs &lt;br /&gt;
* [http://www.w3.org/Guide/transitions Transition requirements] (for First Public Draft, Last Call, CR, PR, REC, etc.)&lt;br /&gt;
&lt;br /&gt;
=== Staff Contact ===&lt;br /&gt;
&lt;br /&gt;
* work with systems team to set up [http://www.w3.org/Systems/Mail/ListRequest mailing-list],  [http://www.w3.org/Guide/blog blog], [http://lists.w3.org/Archives/Member/w3c-tools/2006JulSep/0000 wiki]&lt;br /&gt;
* Get editors an [http://www.w3.org/Systems/Accounts/w3t/ account (jigedit or CVS)] to edit the w3.org website&lt;br /&gt;
* [http://www.w3.org/Guide/pubrules Publication Rules] (a.k.a Pubrules) and links to  related policies (e.g., [a href=&amp;quot;http://www.w3.org/2005/07/13-nsuri namespaces] [http://www.w3.org/2002/06/registering-mediatype MIME type registration], and [http://www.w3.org/2005/05/tr-versions version management]) &lt;br /&gt;
&lt;br /&gt;
=== Editor ===&lt;br /&gt;
&lt;br /&gt;
* information about [http://www.w3.org/Project/CVSdoc/ CVS]&lt;br /&gt;
* [http://www.w3.org/Guide/pubrules Publication Rules] (a.k.a Pubrules) and links to  related policies (e.g., [a href=&amp;quot;http://www.w3.org/2005/07/13-nsuri namespaces] [http://www.w3.org/2002/06/registering-mediatype MIME type registration], and [http://www.w3.org/2005/05/tr-versions version management]) &lt;br /&gt;
* [http://www.w3.org/2003/Editors/ W3C Editors home page]&lt;br /&gt;
* Discussion about specifications on [http://lists.w3.org/Archives/Public/spec-prod/ spec-prod@w3.org]&lt;br /&gt;
* [http://www.w3.org/2001/06/manual/ W3C Manual of Style]&lt;br /&gt;
&lt;br /&gt;
=== Test lead ===&lt;br /&gt;
* information about [http://www.w3.org/Project/CVSdoc/ CVS]&lt;br /&gt;
&lt;br /&gt;
=== Liaison ===&lt;br /&gt;
&lt;br /&gt;
== Facet 3: activities of a group ==&lt;br /&gt;
&lt;br /&gt;
=== Build Consensus ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/Guide/1998/08/TeleconferenceHowTo schedule a recurring teleconference]&lt;br /&gt;
* learn how to set up an ad-hoc meeting with zakim&lt;br /&gt;
* start a mailing-list&lt;br /&gt;
* get a [http://lists.w3.org/Archives/Member/w3c-tools/2006JulSep/0000 wiki] for collaborative editing&lt;br /&gt;
&lt;br /&gt;
=== Develop specification ===&lt;br /&gt;
&lt;br /&gt;
* Know the rules&lt;br /&gt;
** [http://www.w3.org/Guide/pubrules Publication Rules] (a.k.a Pubrules) and links to  related policies (e.g., [a href=&amp;quot;http://www.w3.org/2005/07/13-nsuri namespaces] [http://www.w3.org/2002/06/registering-mediatype MIME type registration], and [http://www.w3.org/2005/05/tr-versions version management]) &lt;br /&gt;
** [http://www.w3.org/Guide/transitions Transition requirements] (for First Public Draft, Last Call, CR, PR, REC, etc.)&lt;br /&gt;
** [http://www.w3.org/2002/05/rec-tips Tips for getting to Recommendation faster]&lt;br /&gt;
** [http://www.w3.org/2003/10/UseOfExtTech.html Use of W3C or  Other Technologies within W3C Recommendations]&lt;br /&gt;
* Get editor(s), write drafts&lt;br /&gt;
** [http://www.w3.org/2003/Editors/ W3C Editors home page]&lt;br /&gt;
** Discussion about specifications on [http://lists.w3.org/Archives/Public/spec-prod/ spec-prod@w3.org]&lt;br /&gt;
** [http://www.w3.org/2001/06/manual/ W3C Manual of Style]&lt;br /&gt;
** You can write a spec using the [http://www.w3.org/2002/xmlspec/&amp;quot;&amp;gt;W3C XML  Specification DTD (XMLspec)], well-supported by Norman Walsh.&lt;br /&gt;
* Write better specs: QA resources&lt;br /&gt;
** [http://www.w3.org/TR/qaframe-spec/ Specification Guidelines]&lt;br /&gt;
** [http://www.w3.org/TR/qa-handbook/ Handbook for QA in groups] and [http://www.w3.org/QA/WG/qaframe-primer QA Framework primer]&lt;br /&gt;
** See also &amp;quot;testing&amp;quot; stuff&lt;br /&gt;
* Draft review, issue tracking&lt;br /&gt;
** get [http://www.w3.org/2005/06/tracker/ Tracker] for issues tracking&lt;br /&gt;
** alternatively [http://www.w3.org/Bugs bugzilla] can be used to track issues in a specification&lt;br /&gt;
*** … and create a disposition of comments with [http://www.w3.org/2007/02/bugs2html/ bugs2html]  &lt;br /&gt;
* [http://www.w3.org/2005/06/tracker/irc Trackbot], an IRC-based interface to tracker&lt;br /&gt;
** [http://lists.w3.org/Archives/Member/chairs/2007JulSep/0117.html Tips on securing document reviews]&lt;br /&gt;
&lt;br /&gt;
=== Patent Stuff ===&lt;br /&gt;
* [http://www.w3.org/Consortium/Patent-Policy-20040205/ W3C Patent Policy]&lt;br /&gt;
* Commentary: [http://www.w3.org/2003/12/22-pp-faq.html FAQ], [http://www.w3.org/2004/02/05-patentsummary.html Summary] and [http://www.w3.org/2004/03/pp-points-20040210.html Business Benefits] &lt;br /&gt;
* [http://www.w3.org/2004/01/pp-impl/ Implementation (IPP)]&lt;br /&gt;
* [http://www.w3.org/2004/08/25-chairs-pp.html What's in it for Chairs?]&lt;br /&gt;
* [http://www.w3.org/2004/10/27-testcases Policies for Contribution of Test Cases]&lt;br /&gt;
* ...more questions? Contact the [http://www.w3.org/2004/pp/psig/ W3C Patents and Standards Interest Group (PSIG)]&lt;br /&gt;
&lt;br /&gt;
=== Test and Implement ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/QA/WG/2005/01/test-faq Test Development FAQ]&lt;br /&gt;
* [http://dev.w3.org/cvsweb/2007/mobile-test-harness/ Mobile Web Test Harness] Web-based harness for browsers test suites&lt;br /&gt;
* test license @@&lt;br /&gt;
&lt;br /&gt;
=== Promote your work ===&lt;br /&gt;
&lt;br /&gt;
* Set up a Working-Group [http://www.w3.org/Guide/blog blog]&lt;br /&gt;
* Use the [http://www.w3.org/2004/09/SubmitTalk Upcoming Talks form]; talks publicized on the [http://www.w3.org/ W3C home page], [http://www.w3.org/Member/Newsletter/ Member Newsletter], [http://lists.w3.org/Archives/Public/w3c-announce/Public Weekly News] (approximately 8000 subscribers)&lt;br /&gt;
* [http://www.w3.org/2004/12/testimonial_pr-guidelines.htmlPress release testimonial guidelines]&lt;br /&gt;
* Give a [http://www.w3.org/2004/01/member-testimonials-hp.html testimonial] about how W3C participation has been beneficial to your organization. ([http://www.w3.org/Consortium/Member/Testimonial/ Current testimonials])&lt;br /&gt;
* [http://www.w3.org/Talks/Tools/Slidy/ HTML Slidy] for slide presentations&lt;br /&gt;
* [http://www.w3.org/2004/11/accessible-present Notes on Accessible Presentations]&lt;br /&gt;
&lt;br /&gt;
== Facet 4: by Tool ==&lt;br /&gt;
&lt;br /&gt;
=== blog ===&lt;br /&gt;
* Set up a Working-Group [http://www.w3.org/Guide/blog blog]&lt;br /&gt;
&lt;br /&gt;
=== mailing-list ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/Systems/Mail/ListRequest request the creation of a list]&lt;br /&gt;
* manage participants: [http://www.w3.org/Member/Mail/AuditForm Mailing List Audit] (who is subscribed, information about lists), [http://cgi.w3.org/member-bin/list_mgnt.pl List Management Tool], [http://www.w3.org/Guide/RemoteMaintainers SmartList Remote Maintainers Guide]&lt;br /&gt;
* No spam: [http://www.w3.org/2002/11/spam-filtering Spam filtering options] &lt;br /&gt;
* [http://www.w3.org/Search/Mail/Member Mailing Lists Search service]&lt;br /&gt;
&lt;br /&gt;
=== wiki ===&lt;br /&gt;
&lt;br /&gt;
* get a [http://lists.w3.org/Archives/Member/w3c-tools/2006JulSep/0000 wiki] for collaborative editing&lt;br /&gt;
* manage a wiki&lt;br /&gt;
&lt;br /&gt;
=== tracking tools ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2005/06/tracker/ Tracker] for issues and action items tracking&lt;br /&gt;
* [http://www.w3.org/2005/06/tracker/irc Trackbot], an IRC-based interface to tracker&lt;br /&gt;
* [http://www.w3.org/Bugs bugzilla] can be used to track issues in a specification, and bugs in software/test suite&lt;br /&gt;
&lt;br /&gt;
=== Polls and Questionaire === &lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2002/09/wbs/showwb WBS] is a web-based polling and questionaire system&lt;br /&gt;
&lt;br /&gt;
=== IRC ===&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2002/scribe/scribedoc.htm#Quick_Start_Guide Quick start guide] for setting up tools for managing an agenda, generating minutes, and updating issues lists&lt;br /&gt;
* [http://www.w3.org/2008/04/scribe.html Scribe 101]: Taking meeting minutes using W3C IRC tools&lt;br /&gt;
* Individual IRC tools (&amp;quot;bots&amp;quot;):&lt;br /&gt;
** [http://www.w3.org/2001/12/zakim-irc-bot.html Zakim] for bridge management&lt;br /&gt;
** [http://www.w3.org/2002/03/RRSAgent RRSAgent] for minutes management&lt;br /&gt;
** [http://www.w3.org/2005/06/tracker/irc Trackbot] for issue management (using [http://www.w3.org/2005/06/tracker/ Tracker]) during an IRC-based meeting&lt;br /&gt;
&lt;br /&gt;
=== teleconference bridge ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/Guide/1998/08/TeleconferenceHowTo schedule a recurring teleconference]&lt;br /&gt;
* zakim help&lt;/div&gt;</description>
			<pubDate>Tue, 14 Aug 2012 16:18:23 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:GuideBook</comments>		</item>
		<item>
			<title>GuideBook</title>
			<link>http://www.w3.org/wiki/GuideBook</link>
			<description>&lt;p&gt;Charles:&amp;#32;s/XG/CG or BG/&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
This is a ''proposal'' for a reorganization of the [http://www.w3.org/Guide/ Art of Consensus Guide] into different faceted documents&lt;br /&gt;
&lt;br /&gt;
== About the Guide ==&lt;br /&gt;
&lt;br /&gt;
This Guidebook is intended to complement the [http://www.w3.org/Consortium/Agreement/Appendix W3C Membership Agreement] and the [http://www.w3.org/Consortium/Process/ W3C Process]. This index page is ''Member-only'', although some of the resources in the Guidebook are public.&lt;br /&gt;
&lt;br /&gt;
You are expected to be familiar with the parts of this Guidebook that affect your work. Working Group chairs should get a &amp;quot;tour&amp;quot; from their team contact. Then take a look again, for example, if you're going to hold a face-to-face meeting; read the section on meetings.&lt;br /&gt;
&lt;br /&gt;
== Facet 1: Timeline ==&lt;br /&gt;
&lt;br /&gt;
=== Create a Group ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2000/09/submission how to send a Member Submission Request] which may prompt the creation of a group&lt;br /&gt;
* New group [http://www.w3.org/Guide/Charter.html charter] [http://www.w3.org/2006/02/chartergen generator]&lt;br /&gt;
* Alternatively, create a [http://www.w3.org/community community or business group]&lt;br /&gt;
* [http://www.w3.org/Guide/1998/08/TeleconferenceHowTo schedule a recurring teleconference]&lt;br /&gt;
* set up collaborative tools: [http://www.w3.org/Guide/blog blog], [http://lists.w3.org/Archives/Member/w3c-tools/2006JulSep/0000 wiki], @@Tracker&lt;br /&gt;
&lt;br /&gt;
=== Early life of a group ===&lt;br /&gt;
&lt;br /&gt;
* start issues tracking with [http://www.w3.org/2005/06/tracker/ tracker] or [http://www.w3.org/Bugs/ bugzilla]&lt;br /&gt;
* set up [http://www.w3.org/2005/06/tracker/ tracker]  for action items management&lt;br /&gt;
* run a meeting on IRC&lt;br /&gt;
** [http://dev.w3.org/2002/scribe/scribedoc.htm#Quick_Start_Guide Quick start guide] for setting up tools for managing an agenda, generating minutes, and updating issues lists&lt;br /&gt;
** [http://www.w3.org/2008/04/scribe.html Scribe 101]: Taking meeting minutes using W3C IRC tools&lt;br /&gt;
** Individual IRC tools (&amp;quot;bots&amp;quot;):&lt;br /&gt;
*** [http://www.w3.org/2001/12/zakim-irc-bot.html Zakim] for bridge management&lt;br /&gt;
*** [http://www.w3.org/2002/03/RRSAgent RRSAgent] for minutes management&lt;br /&gt;
*** [http://www.w3.org/2005/06/tracker/irc Trackbot] for issue management (using [http://www.w3.org/2005/06/tracker/ Tracker]) during an IRC-based meeting&lt;br /&gt;
* Face-to-face meetings&lt;br /&gt;
** Send face-to-face meeting information to calreq@w3.org; that information appears on the [http://www.w3.org/Member/Eventscal Member events calendar]&lt;br /&gt;
** [http://www.w3.org/Guide/hosting.htm Host a face-to-face meeting]. Note the [http://www.w3.org/2004/06/NoNDAPolicy.html Policy Regarding Non-Disclosure Agreements and W3C Meetings]&lt;br /&gt;
* find editors&lt;br /&gt;
* the staff contact gets editors an [http://www.w3.org/Systems/Accounts/w3t/ account (jigedit or CVS)] to edit the w3.org website&lt;br /&gt;
* editors can work with &lt;br /&gt;
** [http://www.w3.org/Guide/Jigedit JigEdit],&lt;br /&gt;
** [http://www.w3.org/Guide/Jigedit/Webdav WebDAV],  &lt;br /&gt;
** or (for experts) [http://www.w3.org/Project/CVSdoc/ CVS]&lt;br /&gt;
* start testing. get dev.w3.org accounts for participants to work on a test suite&lt;br /&gt;
&lt;br /&gt;
=== Maturing Group ===&lt;br /&gt;
* how to handle REC track transitions:  [http://www.w3.org/Guide/transitions Transition requirements] (for First Public Draft, Last Call, CR, PR, REC, etc.)&lt;br /&gt;
* promoting the spec with a [http://www.w3.org/Guide/blog blog], [http://www.w3.org/2004/09/SubmitTalk  Talks]&lt;br /&gt;
* [http://www.w3.org/2004/12/testimonial_pr-guidelines.htmlPress release testimonial guidelines]&lt;br /&gt;
* use the [http://www.w3.org/2006/02/lc-comments-tracker/ Last Call comments tracker] to track public comments on specifications and build a disposition of comments&lt;br /&gt;
* if you used [http://www.w3.org/Bugs/ Bugzilla] for issues tracking, [http://www.w3.org/2007/02/bugs2html/ bugs2html] can let you create a disposition of comments&lt;br /&gt;
* implementation report&lt;br /&gt;
&lt;br /&gt;
=== Maintenance mode ===&lt;br /&gt;
* ???&lt;br /&gt;
&lt;br /&gt;
=== Closing a group ===&lt;br /&gt;
* [http://www.w3.org/2005/Incubator/XGR/about.html Publishing a final XG Report] &lt;br /&gt;
&lt;br /&gt;
== Facet 2: by Role ==&lt;br /&gt;
&lt;br /&gt;
=== About W3C Roles ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/Guide/chair-roles.html Chair's role]&lt;br /&gt;
* [http://lists.w3.org/Archives/Member/chairs/1999JanMar/0056 Editor's role]&lt;br /&gt;
* [http://www.w3.org/Signature/Contributor.html Editor, Author, Contributor Policies]&lt;br /&gt;
* [http://www.w3.org/Guide/staff-contact.html Staff Contact's role]&lt;br /&gt;
* [http://www.w3.org/Guide/liaison-role Liaison's role] ('''Note''': Per [http://www.w3.org/2005/10/Process-20051014/liaisons section 10 of the Process Document], liaisons MUST be coordinated by the Team due to requirements for public communication; patent, copyright, and  other IPR policies; confidentiality agreements; and mutual membership agreements.)&lt;br /&gt;
&lt;br /&gt;
=== Every WG Participant ===&lt;br /&gt;
* [http://www.w3.org/2004/01/pp-impl/ Join a group] (see also [http://www.w3.org/2004/08/invexp.html Invited Expert Policy])&lt;br /&gt;
* consider taking on roles: editor, test lead, etc. &lt;br /&gt;
&lt;br /&gt;
=== Chair and Scribe ===&lt;br /&gt;
&lt;br /&gt;
* Guidance: [http://www.w3.org/Guide/reagles-experiences.html On Chairing a group]&lt;br /&gt;
* [http://www.w3.org/Guide/1998/08/TeleconferenceHowTo schedule a recurring teleconference]&lt;br /&gt;
* organising a Face-to-face meetings&lt;br /&gt;
** Send face-to-face meeting information to calreq@w3.org; that information appears on the [http://www.w3.org/Member/Eventscal Member events calendar]&lt;br /&gt;
** [http://www.w3.org/Guide/hosting.htm Host a face-to-face meeting]. Note the [http://www.w3.org/2004/06/NoNDAPolicy.html Policy Regarding Non-Disclosure Agreements and W3C Meetings]&lt;br /&gt;
* [http://dev.w3.org/2002/scribe/scribedoc.htm#Quick_Start_Guide Quick start guide] for setting up tools for managing an agenda, generating minutes, and updating issues lists&lt;br /&gt;
* [http://www.w3.org/2008/04/scribe.html Scribe 101]: Taking meeting minutes using W3C IRC tools&lt;br /&gt;
* Individual IRC tools (&amp;quot;bots&amp;quot;):&lt;br /&gt;
** [http://www.w3.org/2001/12/zakim-irc-bot.html Zakim] for bridge management&lt;br /&gt;
** [http://www.w3.org/2002/03/RRSAgent RRSAgent] for minutes management&lt;br /&gt;
** [http://www.w3.org/2005/06/tracker/irc Trackbot] for issue management (using [http://www.w3.org/2005/06/tracker/ Tracker]) during an IRC-based meeting&lt;br /&gt;
* [http://lists.w3.org/Archives/Member/chairs/2002JanMar/0041 Guidance for Chairs] on Staff participation&lt;br /&gt;
* XG Chairs: For an account to let you or select XG participants write to w3.org, please contact Ian Jacobs &lt;br /&gt;
* [http://www.w3.org/Guide/transitions Transition requirements] (for First Public Draft, Last Call, CR, PR, REC, etc.)&lt;br /&gt;
&lt;br /&gt;
=== Staff Contact ===&lt;br /&gt;
&lt;br /&gt;
* work with systems team to set up [http://www.w3.org/Systems/Mail/ListRequest mailing-list],  [http://www.w3.org/Guide/blog blog], [http://lists.w3.org/Archives/Member/w3c-tools/2006JulSep/0000 wiki]&lt;br /&gt;
* Get editors an [http://www.w3.org/Systems/Accounts/w3t/ account (jigedit or CVS)] to edit the w3.org website&lt;br /&gt;
* [http://www.w3.org/Guide/pubrules Publication Rules] (a.k.a Pubrules) and links to  related policies (e.g., [a href=&amp;quot;http://www.w3.org/2005/07/13-nsuri namespaces] [http://www.w3.org/2002/06/registering-mediatype MIME type registration], and [http://www.w3.org/2005/05/tr-versions version management]) &lt;br /&gt;
&lt;br /&gt;
=== Editor ===&lt;br /&gt;
&lt;br /&gt;
* information about [http://www.w3.org/Project/CVSdoc/ CVS]&lt;br /&gt;
* [http://www.w3.org/Guide/pubrules Publication Rules] (a.k.a Pubrules) and links to  related policies (e.g., [a href=&amp;quot;http://www.w3.org/2005/07/13-nsuri namespaces] [http://www.w3.org/2002/06/registering-mediatype MIME type registration], and [http://www.w3.org/2005/05/tr-versions version management]) &lt;br /&gt;
* [http://www.w3.org/2003/Editors/ W3C Editors home page]&lt;br /&gt;
* Discussion about specifications on [http://lists.w3.org/Archives/Public/spec-prod/ spec-prod@w3.org]&lt;br /&gt;
* [http://www.w3.org/2001/06/manual/ W3C Manual of Style]&lt;br /&gt;
&lt;br /&gt;
=== Test lead ===&lt;br /&gt;
* information about [http://www.w3.org/Project/CVSdoc/ CVS]&lt;br /&gt;
&lt;br /&gt;
=== Liaison ===&lt;br /&gt;
&lt;br /&gt;
== Facet 3: activities of a group ==&lt;br /&gt;
&lt;br /&gt;
=== Build Consensus ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/Guide/1998/08/TeleconferenceHowTo schedule a recurring teleconference]&lt;br /&gt;
* learn how to set up an ad-hoc meeting with zakim&lt;br /&gt;
* start a mailing-list&lt;br /&gt;
* get a [http://lists.w3.org/Archives/Member/w3c-tools/2006JulSep/0000 wiki] for collaborative editing&lt;br /&gt;
&lt;br /&gt;
=== Develop specification ===&lt;br /&gt;
&lt;br /&gt;
* Know the rules&lt;br /&gt;
** [http://www.w3.org/Guide/pubrules Publication Rules] (a.k.a Pubrules) and links to  related policies (e.g., [a href=&amp;quot;http://www.w3.org/2005/07/13-nsuri namespaces] [http://www.w3.org/2002/06/registering-mediatype MIME type registration], and [http://www.w3.org/2005/05/tr-versions version management]) &lt;br /&gt;
** [http://www.w3.org/Guide/transitions Transition requirements] (for First Public Draft, Last Call, CR, PR, REC, etc.)&lt;br /&gt;
** [http://www.w3.org/2002/05/rec-tips Tips for getting to Recommendation faster]&lt;br /&gt;
** [http://www.w3.org/2003/10/UseOfExtTech.html Use of W3C or  Other Technologies within W3C Recommendations]&lt;br /&gt;
* Get editor(s), write drafts&lt;br /&gt;
** [http://www.w3.org/2003/Editors/ W3C Editors home page]&lt;br /&gt;
** Discussion about specifications on [http://lists.w3.org/Archives/Public/spec-prod/ spec-prod@w3.org]&lt;br /&gt;
** [http://www.w3.org/2001/06/manual/ W3C Manual of Style]&lt;br /&gt;
** You can write a spec using the [http://www.w3.org/2002/xmlspec/&amp;quot;&amp;gt;W3C XML  Specification DTD (XMLspec)], well-supported by Norman Walsh.&lt;br /&gt;
* Write better specs: QA resources&lt;br /&gt;
** [http://www.w3.org/TR/qaframe-spec/ Specification Guidelines]&lt;br /&gt;
** [http://www.w3.org/TR/qa-handbook/ Handbook for QA in groups] and [http://www.w3.org/QA/WG/qaframe-primer QA Framework primer]&lt;br /&gt;
** See also &amp;quot;testing&amp;quot; stuff&lt;br /&gt;
* Draft review, issue tracking&lt;br /&gt;
** get [http://www.w3.org/2005/06/tracker/ Tracker] for issues tracking&lt;br /&gt;
** alternatively [http://www.w3.org/Bugs bugzilla] can be used to track issues in a specification&lt;br /&gt;
*** … and create a disposition of comments with [http://www.w3.org/2007/02/bugs2html/ bugs2html]  &lt;br /&gt;
* [http://www.w3.org/2005/06/tracker/irc Trackbot], an IRC-based interface to tracker&lt;br /&gt;
** [http://lists.w3.org/Archives/Member/chairs/2007JulSep/0117.html Tips on securing document reviews]&lt;br /&gt;
&lt;br /&gt;
=== Patent Stuff ===&lt;br /&gt;
* [http://www.w3.org/Consortium/Patent-Policy-20040205/ W3C Patent Policy]&lt;br /&gt;
* Commentary: [http://www.w3.org/2003/12/22-pp-faq.html FAQ], [http://www.w3.org/2004/02/05-patentsummary.html Summary] and [http://www.w3.org/2004/03/pp-points-20040210.html Business Benefits] &lt;br /&gt;
* [http://www.w3.org/2004/01/pp-impl/ Implementation (IPP)]&lt;br /&gt;
* [http://www.w3.org/2004/08/25-chairs-pp.html What's in it for Chairs?]&lt;br /&gt;
* [http://www.w3.org/2004/10/27-testcases Policies for Contribution of Test Cases]&lt;br /&gt;
* ...more questions? Contact the [http://www.w3.org/2004/pp/psig/ W3C Patents and Standards Interest Group (PSIG)]&lt;br /&gt;
&lt;br /&gt;
=== Test and Implement ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/QA/WG/2005/01/test-faq Test Development FAQ]&lt;br /&gt;
* [http://dev.w3.org/cvsweb/2007/mobile-test-harness/ Mobile Web Test Harness] Web-based harness for browsers test suites&lt;br /&gt;
* test license @@&lt;br /&gt;
&lt;br /&gt;
=== Promote your work ===&lt;br /&gt;
&lt;br /&gt;
* Set up a Working-Group [http://www.w3.org/Guide/blog blog]&lt;br /&gt;
* Use the [http://www.w3.org/2004/09/SubmitTalk Upcoming Talks form]; talks publicized on the [http://www.w3.org/ W3C home page], [http://www.w3.org/Member/Newsletter/ Member Newsletter], [http://lists.w3.org/Archives/Public/w3c-announce/Public Weekly News] (approximately 8000 subscribers)&lt;br /&gt;
* [http://www.w3.org/2004/12/testimonial_pr-guidelines.htmlPress release testimonial guidelines]&lt;br /&gt;
* Give a [http://www.w3.org/2004/01/member-testimonials-hp.html testimonial] about how W3C participation has been beneficial to your organization. ([http://www.w3.org/Consortium/Member/Testimonial/ Current testimonials])&lt;br /&gt;
* [http://www.w3.org/Talks/Tools/Slidy/ HTML Slidy] for slide presentations&lt;br /&gt;
* [http://www.w3.org/2004/11/accessible-present Notes on Accessible Presentations]&lt;br /&gt;
&lt;br /&gt;
== Facet 4: by Tool ==&lt;br /&gt;
&lt;br /&gt;
=== blog ===&lt;br /&gt;
* Set up a Working-Group [http://www.w3.org/Guide/blog blog]&lt;br /&gt;
&lt;br /&gt;
=== mailing-list ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/Systems/Mail/ListRequest request the creation of a list]&lt;br /&gt;
* manage participants: [http://www.w3.org/Member/Mail/AuditForm Mailing List Audit] (who is subscribed, information about lists), [http://cgi.w3.org/member-bin/list_mgnt.pl List Management Tool], [http://www.w3.org/Guide/RemoteMaintainers SmartList Remote Maintainers Guide]&lt;br /&gt;
* No spam: [http://www.w3.org/2002/11/spam-filtering Spam filtering options] &lt;br /&gt;
* [http://www.w3.org/Search/Mail/Member Mailing Lists Search service]&lt;br /&gt;
&lt;br /&gt;
=== wiki ===&lt;br /&gt;
&lt;br /&gt;
* get a [http://lists.w3.org/Archives/Member/w3c-tools/2006JulSep/0000 wiki] for collaborative editing&lt;br /&gt;
* manage a wiki&lt;br /&gt;
&lt;br /&gt;
=== tracking tools ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2005/06/tracker/ Tracker] for issues and action items tracking&lt;br /&gt;
* [http://www.w3.org/2005/06/tracker/irc Trackbot], an IRC-based interface to tracker&lt;br /&gt;
* [http://www.w3.org/Bugs bugzilla] can be used to track issues in a specification, and bugs in software/test suite&lt;br /&gt;
&lt;br /&gt;
=== Polls and Questionaire === &lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/2002/09/wbs/showwb WBS] is a web-based polling and questionaire system&lt;br /&gt;
&lt;br /&gt;
=== IRC ===&lt;br /&gt;
&lt;br /&gt;
* [http://dev.w3.org/2002/scribe/scribedoc.htm#Quick_Start_Guide Quick start guide] for setting up tools for managing an agenda, generating minutes, and updating issues lists&lt;br /&gt;
* [http://www.w3.org/2008/04/scribe.html Scribe 101]: Taking meeting minutes using W3C IRC tools&lt;br /&gt;
* Individual IRC tools (&amp;quot;bots&amp;quot;):&lt;br /&gt;
** [http://www.w3.org/2001/12/zakim-irc-bot.html Zakim] for bridge management&lt;br /&gt;
** [http://www.w3.org/2002/03/RRSAgent RRSAgent] for minutes management&lt;br /&gt;
** [http://www.w3.org/2005/06/tracker/irc Trackbot] for issue management (using [http://www.w3.org/2005/06/tracker/ Tracker]) during an IRC-based meeting&lt;br /&gt;
&lt;br /&gt;
=== teleconference bridge ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.w3.org/Guide/1998/08/TeleconferenceHowTo schedule a recurring teleconference]&lt;br /&gt;
* zakim help&lt;/div&gt;</description>
			<pubDate>Tue, 14 Aug 2012 16:15:08 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:GuideBook</comments>		</item>
		<item>
			<title>TPAC2012/SessionIdeas</title>
			<link>http://www.w3.org/wiki/TPAC2012/SessionIdeas</link>
			<description>&lt;p&gt;Charles:&amp;#32;/* Chair face-to-face */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We encourage attendees to start brainstorming [[TPAC2012]] session ideas in advance of the meeting.&lt;br /&gt;
&lt;br /&gt;
== Sessions You Volunteer to Do ==&lt;br /&gt;
&lt;br /&gt;
Please provide:&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* session name (as a === subhead === )&lt;br /&gt;
* session proposer (optional: name a desired session leader, can be yourself)&lt;br /&gt;
* one sentence session summary&lt;br /&gt;
* 1+ paragraph session description &lt;br /&gt;
* type of session: (e.g.: talk, panel, open discussion, etc.)&lt;br /&gt;
* additional speakers/panelists&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Sessions You Want Someone Else to Organize  ==&lt;br /&gt;
&lt;br /&gt;
Please provide:&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* session topic (as a === subhead === )&lt;br /&gt;
* your name&lt;br /&gt;
* one sentence session summary&lt;br /&gt;
* 1+ paragraph session description &lt;br /&gt;
* If you support this session idea and are not the original proponent, please put your name and any supporting rationale. (Or, if you think this is not a good idea, please explain why.)&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== W3C staff notes on some suggestions ==&lt;br /&gt;
&lt;br /&gt;
===Chair face-to-face===&lt;br /&gt;
&lt;br /&gt;
* Part of a day. Suggested by TLR and with strong support of Membership (see May 2012  chairs thread).&lt;br /&gt;
* Some topics&lt;br /&gt;
** How do we find more quality editors? &lt;br /&gt;
** How much Process do we need to apply? &lt;br /&gt;
** How can we get things moving faster? &lt;br /&gt;
** What's the best place to have &amp;quot;Make It So, Team Contact&amp;quot; t-shirts printed?&lt;br /&gt;
** How do we make our work and documents more nimble? &lt;br /&gt;
** What parts of the Patent Policy are often ignored but particularly useful? &lt;br /&gt;
** Which of the gavel or bullwhip is most effective?&lt;br /&gt;
** Share your practical tricks (logistic, edito, document, great minutes ...) ?&lt;br /&gt;
** How to integrate the W3C transversal topics in deliverables(privacy, accessibility, ...) ?&lt;br /&gt;
** What about a standard WG dashboard for reporting our activities ?&lt;br /&gt;
&lt;br /&gt;
==== session proposal ====&lt;br /&gt;
I ([[User:Charles|chaals]]) volunteer to run a single session on effective ways to manage a meeting. This is an action item from the AB, anyway.&lt;br /&gt;
Agenda:&lt;br /&gt;
#get volunteer co-chair&lt;br /&gt;
#brainstorm techniques&lt;br /&gt;
#review/select techniques&lt;br /&gt;
#review chairing process&lt;br /&gt;
&lt;br /&gt;
===Community Groups===&lt;br /&gt;
&lt;br /&gt;
* Breakouts based on CGs?&lt;br /&gt;
&lt;br /&gt;
===Intro Day===&lt;br /&gt;
&lt;br /&gt;
* I would like to see an Intro Day at TPAC, How to be a WG Participant (Liam)&lt;br /&gt;
&lt;br /&gt;
===Process updates===&lt;br /&gt;
&lt;br /&gt;
* Follow-on to May 2012 AC meeting&lt;/div&gt;</description>
			<pubDate>Tue, 19 Jun 2012 05:45:28 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:TPAC2012/SessionIdeas</comments>		</item>
		<item>
			<title>User:Charles</title>
			<link>http://www.w3.org/wiki/User:Charles</link>
			<description>&lt;p&gt;Charles:&amp;#32;Created page with &amp;quot;I've been involved in W3C since the 90's. There are [http://chaals.com traces of me] all over the web and a lot of them point back to W3C, where I am co-chair of [http://www.w3.o…&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I've been involved in W3C since the 90's. There are [http://chaals.com traces of me] all over the web and a lot of them point back to W3C, where I am co-chair of [http://www.w3.org/2008/webapps/ webapps], and a member of the Advisory Board, inter alia.&lt;/div&gt;</description>
			<pubDate>Tue, 19 Jun 2012 05:41:46 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/User_talk:Charles</comments>		</item>
		<item>
			<title>TPAC2011</title>
			<link>http://www.w3.org/wiki/TPAC2011</link>
			<description>&lt;p&gt;Charles:&amp;#32;added pointer to 'revising process' CG&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://www.w3.org/2011/11/TPAC/ TPAC 2011] (a [[Events|W3C event]]) takes place 31 Oct to 4 Nov 2011 in Santa Clara, California. The Plenary Day is 2 November.&lt;br /&gt;
&lt;br /&gt;
This year the [[TPAC2011-Committee|TPAC2011 Program Committee]] has adopted a plenary day structure that encourages meeting participants to drive the agenda. Most of the day will consist of sessions chosen and led by participants. We encourage people to share their ideas in this wiki. This wiki also provides more operational information about the day.&lt;br /&gt;
&lt;br /&gt;
[[TPAC2011/FAQ| FAQ: Questions?]]&lt;br /&gt;
&lt;br /&gt;
==Plenary Day Structure==&lt;br /&gt;
&lt;br /&gt;
The [[TPAC2011-Committee|TPAC2011 Program Committee]] is using a  [[TPAC2011-Planning]] workspace to further develop the details.&lt;br /&gt;
&lt;br /&gt;
{|  border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;80%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Time&lt;br /&gt;
! Activity&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| 08:30-09:00&lt;br /&gt;
| Jeff Jaffe on [[TPAC2011/Successes and Challenges|Successes and Challenges]] ([http://www.w3.org/2011/Talks/jj-tpac-20111102.pdf slides in PDF])&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:00-09:30&lt;br /&gt;
| Plenary topic #1: [[TPAC2011/Web and Television|Web and Television]] &lt;br /&gt;
| Mark Vickers ([http://www.w3.org/2011/Talks/webtv-tpac-20111102.pdf combined slides with Clarke]), Chair; Giuseppe Pascale, Opera ([http://www.w3.org/2011/Talks/gp-hntf-usecases.html slides]); Clarke Stevens (CableLabs)&lt;br /&gt;
|-&lt;br /&gt;
| 09:30-10:00&lt;br /&gt;
| Plenary topic #2: [[TPAC2011/Web Content Interoperability|Web Content Interoperability]] &lt;br /&gt;
| Bryan Sullivan, Chair; Wilhelm Joys Andersen (Opera), Claudio Venezia (TIM), Soonho Lee (SK Telecom), Kai-Dietrich Scheppe (Deutsche Telekom)&lt;br /&gt;
|-&lt;br /&gt;
| 10:00-11:15&lt;br /&gt;
| Agenda building&lt;br /&gt;
| 10 min explanation of BarCamp-style intros, session proposing, participant-driven schedule grid.&lt;br /&gt;
|-&lt;br /&gt;
| 11:15-12:00 &lt;br /&gt;
| Breakout 1&lt;br /&gt;
| 8 Rooms available for the day.&lt;br /&gt;
|- &lt;br /&gt;
| 12:00-13:30&lt;br /&gt;
| Lunch&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| 13:30-14:30&lt;br /&gt;
| Breakout 2&lt;br /&gt;
| (8 rooms - see below for breakout grid details)&lt;br /&gt;
|- &lt;br /&gt;
| 14:30-15:30&lt;br /&gt;
| Breakout 3 &lt;br /&gt;
| (8 rooms)&lt;br /&gt;
|- &lt;br /&gt;
| 15:30-16:30&lt;br /&gt;
| Breakout 4&lt;br /&gt;
| (8 rooms)&lt;br /&gt;
|- &lt;br /&gt;
| 16:30-17:15&lt;br /&gt;
| Sharing and advocacy plenary&lt;br /&gt;
| Allow 15 more minutes?&lt;br /&gt;
|- &lt;br /&gt;
| 17:15-17:30&lt;br /&gt;
| Tim Berners-Lee Wrap-up plenary&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Plenary Day Agenda Ideas==&lt;br /&gt;
&lt;br /&gt;
The program committee has pre-selected the cross-group plenary topics and a small handful of breakout session proposals:&lt;br /&gt;
&lt;br /&gt;
* [[TPAC2011/PlenaryBreakouts]] has the list of selected breakouts&lt;br /&gt;
&lt;br /&gt;
Attendees were encouraged to brainstorm session ideas in advance of the meeting, both for cross-group plenary topics and for the breakout sessions:&lt;br /&gt;
&lt;br /&gt;
* [[TPAC2011/SessionIdeas]] has the full list of proposals&lt;br /&gt;
&lt;br /&gt;
We invite you to leave comments in the wiki in support of sessions or suggesting modifications. For the most part, actual breakout sessions will be determined by those present the day of the event, who will be free to propose sessions they've developed or new ideas. Please see the session page for more information about schedule and selection.&lt;br /&gt;
&lt;br /&gt;
==Session Grid==&lt;br /&gt;
BarCamp/BreakOut Session Grid&lt;br /&gt;
&lt;br /&gt;
'''This is a ''copy'' of the physical grid in the Plenary Room.''' Proposals are posted/managed on the physical grid. Please update this table only to reflect the actual physical grid.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Note: (*) means pre-selected.&lt;br /&gt;
* Chairs, please identify a scribe and take notes in a new wiki page for your session. We encourage you to present that summary at the end of the day in the sharing plenary session.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|  border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;80%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! time&lt;br /&gt;
! Grand Ballroom A (GBA)&lt;br /&gt;
! GBB&lt;br /&gt;
! GBC&lt;br /&gt;
! GBD&lt;br /&gt;
! GBE&lt;br /&gt;
! California Ballroom 1 (CB1)&lt;br /&gt;
! CB2&lt;br /&gt;
! CB3&lt;br /&gt;
|-&lt;br /&gt;
| 11:15-12:00 &lt;br /&gt;
|[[TPAC2011/API Design Approaches and the Rationales for Them]] (*) [http://irc.w3.org/?channels=#apidesign #apidesign]&lt;br /&gt;
| [http://www.w3.org/wiki/TPAC2011/TestingBreakout Testing in web browsers]. James Graham and PLH  [http://irc.w3.org/?channels=#testing #testing] [http://www.w3.org/2011/11/02-testing-minutes.html minutes];&lt;br /&gt;
| [http://www.w3.org/2011/11/02-global-minutes.html Global participation] [http://irc.w3.org/?channels=#global #global] [http://www.w3.org/2011/11/02-global-minutes.html minutes] [http://www.w3.org/wiki/TPAC2011/GlobalParticipationBreakout wiki notes]&lt;br /&gt;
| [http://www.w3.org/2011/11/02-webdocs-minutes.html Developer documentation]. Molly and Doug. [http://irc.w3.org/?channels=#webdocs #webdocs] [http://www.w3.org/2011/11/02-webdocs-minutes.html minutes]&lt;br /&gt;
| [http://www.w3.org/wiki/TPAC2011/Adjusting_to_explosion_of_input_methods Adjusting to explosion of input methods]. Judy and Kim. [http://irc.w3.org/?channels=#inputtypes #inputtypes] &lt;br /&gt;
| Social Business Jam. Alan and Steve. [http://irc.w3.org/?channels=#socialbizjam #socialbizjam] [http://www.w3.org/2011/11/02-socialbizjam-minutes.html minutes]&lt;br /&gt;
| Challenge of identity in Web. M. Mani. [http://irc.w3.org/?channels=#identity #identity] [http://www.w3.org/2011/11/02-identity-minutes.html minutes]&lt;br /&gt;
| [[TPAC2011/Semantic Syntaxes]] (*)&lt;br /&gt;
|- &lt;br /&gt;
| 13:30-14:30&lt;br /&gt;
| [http://www.w3.org/wiki/TPAC2011/SessionIdeas#Publishing_and_Linking_on_the_Web Is there a right to link?] Dan Appelquist [http://irc.w3.org/?channels=#righttolink #righttolink] [http://www.w3.org/2011/11/02-righttolink-minutes.html minutes]&lt;br /&gt;
| [[TPAC2011/Building Apps in the Cloud]] (*)&lt;br /&gt;
| Internet of things [http://irc.w3.org/?channels=#iot #iot] [http://www.w3.org/2011/11/02-iot-minutes.html minutes]&lt;br /&gt;
| [[TPAC2011/Agile Standardization]] [http://irc.w3.org/?channels=#agile #agile] [http://www.w3.org/2011/11/02-agile-minutes.html minutes]&lt;br /&gt;
| Content protection. Mark. [http://irc.w3.org/?channels=#webcp #webcp] [http://www.w3.org/2011/11/02-webcp-minutes.html minutes]&lt;br /&gt;
| Accessibility Q&amp;amp;A and Tips. Char. [http://irc.w3.org/?channels=#a11y #a11y]&lt;br /&gt;
| [[TPAC2011/Advances in Social Network Standardization]] (*)&lt;br /&gt;
| HTML WG decision policy. PLH. [http://irc.w3.org/?channels=#html-wg #html-wg]&lt;br /&gt;
|- &lt;br /&gt;
| 14:30-15:30&lt;br /&gt;
| [http://www.w3.org/2011/11/02-jquery-minutes.html What jquery and js developers want from web stds]. Paul and Yehuda. [http://irc.w3.org/?channels=#jquery #jquery] [http://www.w3.org/2011/11/02-jquery-minutes.html minutes]&lt;br /&gt;
| [http://www.w3.org/community/declarative3d/ Declarative 3D]. Johannes and Don and Kristen. [http://irc.w3.org/?channels=#dec3d #dec3d]&lt;br /&gt;
| [[TPAC2011/Web-based Digital Signage]] Toru [http://irc.w3.org/?channels=#signage #signage] [http://www.w3.org/2011/11/02-signage-minutes.html minutes]&lt;br /&gt;
| HTML5 AV Club. Kevin [http://irc.w3.org/?channels=#htmlav #htmlav] [http://www.w3.org/2011/11/02-htmlav-minutes.html minutes]&lt;br /&gt;
| [[TPAC2011/Linked data]]. Alexandre. [http://irc.w3.org/?channels=#linkeddata #linkeddata] [http://www.w3.org/2011/11/02-linkeddata-minutes.html minutes]&lt;br /&gt;
| [[TPAC2011/Revisiting how W3C creates standards]] #process (*) Kai and Marcos; [http://www.w3.org/2011/11/02-process-minutes.html Minutes], [http://www.w3.org/community/w3process/ Revising W3C Process CG]&lt;br /&gt;
| [http://www.w3.org/wiki/TPAC2011/web_as_operating_system_challenges Web operating system challenges] N.V.Balaji. [http://irc.w3.org/?channels=#wosch #wosch] [http://www.w3.org/wiki/TPAC2011/web_as_operating_system_challenges minutes]&lt;br /&gt;
| &lt;br /&gt;
|- &lt;br /&gt;
| 15:30-16:30&lt;br /&gt;
| [http://www.w3.org/2011/11/02-winteract-minutes.html Web Apis and Accessibility]. Raman and Charles. [http://irc.w3.org/?channels=#winteract #winteract] [http://www.w3.org/2011/11/02-winteract-minutes.html minutes]&lt;br /&gt;
| &lt;br /&gt;
| [[TPAC2011/Fixing schedule delays | Fixing schedule delays]]. Jeff Jaffe. [http://irc.w3.org/?channels=#schedule #schedule] [http://www.w3.org/2011/11/02-schedule-minutes.html minutes]; [http://www.w3.org/2011/11/02-schedule-minutes.html Minutes]&lt;br /&gt;
| [[TPAC2011/HTML5 and Games]] (*) [http://irc.w3.org/?channels=#games #games] [http://www.w3.org/2011/11/02-games-minutes.html minutes]&lt;br /&gt;
| [[TPAC2011/W3C Publications Ecosystem]] (*) [http://irc.w3.org/?channels=#pubs #pubs] [http://www.w3.org/2011/11/02-pubs-minutes.html minutes]&lt;br /&gt;
| Crypto API and Identity WG chartering - Privacy and Security issues. Nick/Halpin/Roessler. [http://irc.w3.org/?channels=#privacy #privacy] [http://www.w3.org/2011/11/02-privacy-minutes.html minutes]&lt;br /&gt;
| Demos. [http://irc.w3.org/?channels=#demos #demos] &lt;br /&gt;
| [[TPAC2011/Open Gov Data]]. Hadley. [http://irc.w3.org/?channels=#opendata #opendata] [http://www.w3.org/2011/11/02-opendata-minutes.html minutes]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Overflow sessions==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|  border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;80%&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! time&lt;br /&gt;
! Other rooms&lt;br /&gt;
! Bar 104&lt;br /&gt;
! Lobby&lt;br /&gt;
! Poolside&lt;br /&gt;
|-&lt;br /&gt;
! 11:15-12:00&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
! 13:30-14:30&lt;br /&gt;
| [http://wiki.whatwg.org/index.php?title=Component_Model Web Component Model]. #webapps in Room 1234&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
! Swim!&lt;br /&gt;
|-&lt;br /&gt;
! 14:30-15:30&lt;br /&gt;
| Web communication. Kepend Li. #webcomm&lt;br /&gt;
| HTML5 UI mapping to platform accessibility APIs [http://dev.w3.org/html5/html-api-map/overview.html]. #aapi. Cynthia&lt;br /&gt;
| Converge address book ... Web TV. #cab&lt;br /&gt;
| Measuring the Web. Steve Bratt. #windex&lt;br /&gt;
|-&lt;br /&gt;
! 15:30-16:30&lt;br /&gt;
| &lt;br /&gt;
| [[Web first]]. Downsize the W3C, spin out sem web. Alex Russell. #webfirst&lt;br /&gt;
| [[Multi-screen Web]]. Hiroyuki Aizu. #multiscreen&lt;br /&gt;
| Registries. Debbie Dahl. #registries.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;ul class=&amp;quot;show_items&amp;quot;&amp;gt;&lt;br /&gt;
* Grand Ballrooms hold ~40&lt;br /&gt;
* California Ballrooms hold ~35&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;/div&gt;</description>
			<pubDate>Thu, 03 Nov 2011 21:57:03 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:TPAC2011</comments>		</item>
		<item>
			<title>SVG/Debugging</title>
			<link>http://www.w3.org/wiki/SVG/Debugging</link>
			<description>&lt;p&gt;Charles:&amp;#32;meh, use the SVGIG wiki&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page has been shifted into the [http://www.w3.org/Graphics/SVG/IG/wiki/Editor_wishlist SVG-IG editor wishlist]&lt;/div&gt;</description>
			<pubDate>Sat, 22 May 2010 19:41:01 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SVG/Debugging</comments>		</item>
		<item>
			<title>SVG/Debugging</title>
			<link>http://www.w3.org/wiki/SVG/Debugging</link>
			<description>&lt;p&gt;Charles:&amp;#32;Grr. wiki marku ;(&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Tools for debugging SVG, what we would like to see in them.&lt;br /&gt;
&lt;br /&gt;
For browser-based debugging tools like Dragonfly (Opera) or Firebug (Firefox):&lt;br /&gt;
&lt;br /&gt;
* A bounding-box view for the current element (analagous to the box model for CSS, which isn't relevant to SVG)&lt;br /&gt;
* A graphic editing tool&lt;/div&gt;</description>
			<pubDate>Sat, 22 May 2010 17:38:21 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SVG/Debugging</comments>		</item>
		<item>
			<title>SVG/Debugging</title>
			<link>http://www.w3.org/wiki/SVG/Debugging</link>
			<description>&lt;p&gt;Charles:&amp;#32;created.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Tools for debugging SVG, what we would like to see in them.&lt;br /&gt;
&lt;br /&gt;
For browser-based debugging tools like Dragonfly (Opera) or Firebug (Firefox):&lt;br /&gt;
&lt;br /&gt;
+ A bounding-box view for the current element (analagous to the box model for CSS, which isn't relevant to SVG)&lt;br /&gt;
+ A graphic editing tool&lt;/div&gt;</description>
			<pubDate>Sat, 22 May 2010 17:37:42 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SVG/Debugging</comments>		</item>
		<item>
			<title>RdfCalendarMeetings</title>
			<link>http://www.w3.org/wiki/RdfCalendarMeetings</link>
			<description>&lt;p&gt;Charles:&amp;#32;added details for meeting that just happened&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
meetings on [[RdfCalendar]]...&lt;br /&gt;
&lt;br /&gt;
see also: [[ScheduledTopicChat]]&lt;br /&gt;
&lt;br /&gt;
The [http://lists.w3.org/Archives/Public/www-rdf-calendar/2001Apr/0001.html www-rdf-calendar announcement] of April 2001 followed an [http://www.w3.org/2001/02/rdfig-f2f/ RDF Interest Group meeting] at which several of us realised we shared an interest in this area. There is also a [http://www.xml.com/lpt/a/2001/07/25/rdfcalendar.html writeup on xml.com], July 2001, that provides a bit more background.&lt;br /&gt;
&lt;br /&gt;
Following a workshop in Bristol, and discussion on [http://lists.w3.org/Archives/Public/www-rdf-calendar/ www-rdf-calendar] we set up an&lt;br /&gt;
[http://www.w3.org/2002/12/cal/ RDF Calendar Workspace]&lt;br /&gt;
to manage an [[RdfCalendarSchema]] and test collection (see [http://ilrt.org/discovery/chatlogs/rdfig/2003-06-11#T16-18-38 2003-06-11 #rdfig] for more historical background).&lt;br /&gt;
&lt;br /&gt;
== Meetings ==&lt;br /&gt;
&amp;lt;span id=&amp;quot;meetings&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We hold the occasional [[ScheduledTopicChat]], announced&lt;br /&gt;
to [http://lists.w3.org/Archives/Public/www-rdf-calendar/ www-rdf-calendar]&lt;br /&gt;
and held in [irc://irc.freenode.net:6667/rdfig #rdfig on freenode] (''oops... [[ChannelsAreResourcesToo]]'').&lt;br /&gt;
The IRC [http://ilrt.org/discovery/chatlogs/rdfig/ logs] and [http://rdfig.xmlhack.com weblogs] generally serve as meeting records, though&lt;br /&gt;
summaries are sometimes mailed out.&lt;br /&gt;
&lt;br /&gt;
Another meeting is scheduled for 4 February 2004, 22:00 UTC @@put more useful pointer here&lt;br /&gt;
&lt;br /&gt;
=== 2004 ===&lt;br /&gt;
&lt;br /&gt;
* something in late feb - watch this space and the [http://lists.w3.org/Archives/Public/www-rdf-calendar www-rdf-calendar list]&lt;br /&gt;
* 5 Feb: [http://rdfig.xmlhack.com/2004/02/04/2004-02-04.html#1075931374.996699 summary], [http://www.ilrt.bris.ac.uk/discovery/chatlogs/rdfig/2004-02-04.html#T22-09-10 irc log]&lt;br /&gt;
&lt;br /&gt;
=== 2003 ===&lt;br /&gt;
* 10th Sept: [http://rdfig.xmlhack.com/2003/09/10/2003-09-10.html weblog]&lt;br /&gt;
* 20th Aug: [http://rdfig.xmlhack.com/2003/08/20/2003-08-20.html weblog]&lt;br /&gt;
* 30th Jul: [http://rdfig.xmlhack.com/2003/07/30/2003-07-30.html weblog]&lt;br /&gt;
* 9 Jul: finishing up prodid and x-properties, tangible progress on round-trip testing. [http://rdfig.xmlhack.com/2003/07/09/2003-07-09.html#1057762684.880168 weblog]&lt;br /&gt;
* 25 Jun: prodid and x-properties, round-trip testing, [[EmailVocabulary]] [http://rdfig.xmlhack.com/2003/06/25/2003-06-25.html#1056550875.665269 weblog]&lt;br /&gt;
* 11 Jun: chandler [http://rdfig.xmlhack.com/2003/06/11/2003-06-11.html#1055344744.381612 weblog]&lt;br /&gt;
* 14 May: [http://rdfig.xmlhack.com/2003/05/14/2003-05-14.html weblog]&lt;br /&gt;
* 23 Apr: [[EventDiscovery]] and a few other things [http://rdfig.xmlhack.com/2003/04/23/2003-04-23.html#1051109485.240329 weblog, attendance, agenda, minutes/actions]&lt;br /&gt;
* 9 Apr: mixing calendar with geo stuff. [http://rdfig.xmlhack.com/2003/04/09/2003-04-09.html weblog], including [http://rdfig.xmlhack.com/2003/04/09/2003-04-09.html#1049887025.577460 list of attendees]&lt;br /&gt;
* 26 Mar: mostly about wiki stuff. [http://rdfig.xmlhack.com/2003/03/26/2003-03-26.html#1048697881.388674 weblog].&lt;br /&gt;
* 12 Mar: license foo, business hours usecase [http://lists.w3.org/Archives/Public/www-rdf-calendar/2003Mar/0028.html summary]&lt;br /&gt;
* 26 Feb: prodid etc. [http://rdfig.xmlhack.com/2003/02/26/2003-02-26.html weblog]&lt;br /&gt;
* ... [http://www.w3.org/2002/12/cal/#mtg earlier meetings]&lt;br /&gt;
&lt;br /&gt;
We try to eat our own dogfood: &lt;br /&gt;
[http://www.w3.org/2002/12/cal/test/20030423mtg.rdf calendar, 2003-04-23]&lt;br /&gt;
[http://www.w3.org/2002/12/cal/test/20030409mtg.rdf calendar, 2003-04-09]&lt;br /&gt;
[http://www.w3.org/2002/12/cal/test/20030326mtg.rdf calendar, 2003-03-26]&lt;br /&gt;
[http://www.w3.org/2002/12/cal/test/20030312mtg.rdf calendar, 2003-03-12]&lt;br /&gt;
[http://www.w3.org/2002/12/cal/test/20030226mtg.rdf calendar, 2003-02-26]&lt;br /&gt;
[http://www.w3.org/2002/12/cal/test/20030212mtg.rdf calendar, 2003-02-12]&lt;br /&gt;
[http://www.w3.org/2002/12/cal/test/20030205mtg.rdf calendar, 2003-02-05]&lt;br /&gt;
[http://www.w3.org/2002/12/cal/test/20030122mtg.rdf calendar, 2003-01-22]&lt;br /&gt;
[http://www.w3.org/2002/12/cal/test/20030115mtg.rdf calendar, 2003-01-15]&lt;br /&gt;
[http://www.w3.org/2002/12/cal/test/mtg.rdf calendar, 2003-01-08]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;agendaRequests&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;agenda requests for upcoming meetings:&lt;br /&gt;
&lt;br /&gt;
* mixing in [[GeoInfo]]; e.g. [[TravelTools]]. [http://rdfig.xmlhack.com/2003/03/28/2003-03-28.html#1048862913.413335 SVG geo stuff], [http://ilrt.org/discovery/chatlogs/rdfig/2003-03-28#T14-57-00 danbri on zool making connections] - we discussed this 2003-04-23 meeting [http://ilrt.org/discovery/chatlogs/rdfig/2003-04-09.html logs] [http://rdfig.xmlhack.com/2003/04/09/2003-04-09.html weblog]. Work will continue in a Geo-themed meeting, [http://www.timeanddate.com/worldclock/fixedtime.html?day=16&amp;amp;month=4&amp;amp;year=2003&amp;amp;hour=14&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=0 2003-04-16, 1400UTC], see Agenda draft on [[GeoInfo]], [http://www.w3.org/2002/12/cal/test/20030416geomtg.rdf RDF schedule].&lt;/div&gt;</description>
			<pubDate>Thu, 05 Feb 2004 00:05:55 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:RdfCalendarMeetings</comments>		</item>
		<item>
			<title>WWW2004</title>
			<link>http://www.w3.org/wiki/WWW2004</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
some thoughts on community coverage of WWW2004...&lt;br /&gt;
&lt;br /&gt;
[http://www.www2004.org WWW2004] will be held in New York City in May. Between digital cameras, chumpbots, RDF, and wireless connectivity, it ought to be more feasiable than ever to provide interesting, searchable documentation of the conference.&lt;br /&gt;
&lt;br /&gt;
Let's build a semantic photo archive and other community-based documentation.&lt;br /&gt;
&lt;br /&gt;
See also: [[ConnectingAudiences]].&lt;br /&gt;
&lt;br /&gt;
== Rough Ideas ==&lt;br /&gt;
&lt;br /&gt;
* Compare to [http://www2003.xmlhack.com/ WWW2003 community coverage]&lt;br /&gt;
* [http://ilrt.org/discovery/chatlogs/rdfig/2003-11-03#T15-39-52 discussion] on 2003-11-03&lt;br /&gt;
* make a chump, irc, blog, photoblog&lt;br /&gt;
* describe people, locations, things, photos, movies, audio files&lt;br /&gt;
* link historical info - early computers, experiments&lt;br /&gt;
* trying not to make it all too fragile;  semweb tech to make that happen:&lt;br /&gt;
** foaf for people&lt;br /&gt;
** rss 1.0 for feeds, and&lt;br /&gt;
** other vocabs for photos, geo&lt;br /&gt;
* harvest the bits up and present them in different ways - photo view, news view&lt;br /&gt;
* geo-location view:&lt;br /&gt;
** integration of RDF-cal, WMS maps of registered users, rooms and so on like for [http://demo.asemantics.com/biz/buda/ www2003] in budapest or similars&lt;br /&gt;
** [http://www.asemantics.com/showcase/wms.html WMS] maps of users, developers, companies as RDF or Web [http://www.asemantics.com/showcase/zoom.html layers], well do one for the [[FoaF Attendee]] attendee list when there are some names to show ([http://cvs.apache.org/~dirkx/sgala.html this] is what we are thinking off (showing the apache committers)).&lt;br /&gt;
&lt;br /&gt;
== Interested People ==&lt;br /&gt;
&lt;br /&gt;
People interested in getting involved, please add your name here - or even better - add it to this [[FoaF Attendee]] list.&lt;br /&gt;
&lt;br /&gt;
[[GregElin]] - on the ground in New York City and interested in incorporating http://www.fotonotes.net to make annotating images easy.&lt;br /&gt;
&lt;br /&gt;
[[Dave Beckett]] - helped out with the [http://www2003.xmlhack.com/ WWW2003 community coverage] and irc last year.&lt;br /&gt;
&lt;br /&gt;
[http://foaf.asemantics.com/alberto Alberto Reggiori], [http://foaf.asemantics.com/dirkx Dirk Willem van Gulik] - http://www.asemantics.com&lt;br /&gt;
&lt;br /&gt;
Paul Cowles - http://www.semaview.com - will publish conference calendar with Sherpa (RDF output) and attendees may subscribe (ala iCal) to the published RDF schedule for free (tool is free to consume cals). Others may extend the RDF to include GEO, FOAF etc.&lt;br /&gt;
&lt;br /&gt;
[[Bryce Benton]] - can help with php/mysql and front-end interfaces.&lt;br /&gt;
&lt;br /&gt;
== WWW conference photo archive ==&lt;br /&gt;
&lt;br /&gt;
A project to gather together photos from various WWW conferences and annotate them with depiction data.&lt;br /&gt;
&lt;br /&gt;
=== Meetings and actions ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.timeanddate.com/worldclock/fixedtime.html?day=6&amp;amp;month=1&amp;amp;year=2004&amp;amp;hour=15&amp;amp;min=0&amp;amp;sec=0&amp;amp;p1=0 next meet (provisional) 2004-01-06, 15:00 UTC]&lt;br /&gt;
* [http://rdfig.xmlhack.com/2003/12/19/2003-12-19.html#1071846235.658126 2003-12-19 IRC meet] (see agenda items on page)&lt;br /&gt;
&lt;br /&gt;
Actions: &lt;br /&gt;
* Greg: [http://rdfig.xmlhack.com/2003/12/19/2003-12-19.html#1071847723.308502 write a high-level description of the system]&lt;br /&gt;
* Greg: [http://rdfig.xmlhack.com/2003/12/19/2003-12-19.html#1071847422.440217 talk to Ben, Mike, Stu about hosting]&lt;br /&gt;
* Libby: [http://rdfig.xmlhack.com/2003/12/19/2003-12-19.html#1071846689.181751 ask Aaron about licensing issues] ([http://lists.w3.org/Archives/Public/www-archive/2003Dec/0040.html request made])&lt;br /&gt;
* danbri: [http://rdfig.xmlhack.com/2003/12/19/2003-12-19.html#1071846657.226390 request w3c list / archive for this project]&lt;br /&gt;
* libby/danbri/nick/steve: [http://rdfig.xmlhack.com/2003/12/19/2003-12-19.html#1071846632.524330 to work on an account of the data we'd want. it may not need a new schema at all]&lt;br /&gt;
* jim/nick/steve: [http://rdfig.xmlhack.com/2003/12/19/2003-12-19.html#1071846632.524330 focus first on conference data]&lt;br /&gt;
* [http://rdfig.xmlhack.com/2003/12/18/2003-12-18.html#1071760457.693080 2003-12-18 IRC meet]&lt;br /&gt;
&lt;br /&gt;
=== notes about WWW2004 conference photo archive ===&lt;br /&gt;
&lt;br /&gt;
Nick's 4 main areas of work:&lt;br /&gt;
&lt;br /&gt;
1) ontology for annotation and metadata &lt;br /&gt;
2) infrastructure (scutters, rdf stores, etc) &lt;br /&gt;
3) annotation tools and &lt;br /&gt;
4) publication tools (searching, browsing, exploring, etc)&lt;br /&gt;
&lt;br /&gt;
Some ideas from libby - feel free to edit/expand:&lt;br /&gt;
&lt;br /&gt;
* deciding the sorts of information we are interested in, and&lt;br /&gt;
documenting how to do this (for tool developers and perhaps early users)&lt;br /&gt;
* creating some means for creators to tell us about their images and metadata (could be as simple as the [http://rdfweb.org/topic/FOAFBulletinBoard foaf bulletin board])&lt;br /&gt;
* creating or adapting existing tools (like [http://www.ldodds.com/foaf/foaf-a-matic foaf-a-matic], for example), which just generate the RDF metadata, but don't upload it  --CMN: I have been pondering the idea of using [http://www.w3.org/2001/Annotea Annotea] to annotate an email address as a way of uploading FOAF data.&lt;br /&gt;
* adapting and using tools to harvest, store and query RDF (including&lt;br /&gt;
provenance tracking, deleting)&lt;br /&gt;
* creating generic uploading and editing RDF document facilities withaccess control for the images and metadata (e.g. something like [http://sw1.ilrt.org/discovery/2003/11/ilrt-interests/ ILRT interests database])&lt;br /&gt;
* designing the user interface for browsing and searching the photos&lt;br /&gt;
&lt;br /&gt;
also&lt;br /&gt;
&lt;br /&gt;
* the user should be able to point at the same instances of (say) Libby Miller that other people have referred to when annotating a photo, so that the data all joins up - tricky&lt;br /&gt;
* think of a CC license for the photos (libby talk to Aaron?)&lt;br /&gt;
* investigate legal issues? privacy? removing photos on request?&lt;br /&gt;
* how open should it be?&lt;br /&gt;
* where should the photos and RDF be kept?&lt;br /&gt;
* what sort of pictures are we interested in? small or large group pictures, informal/formal, individuals?&lt;br /&gt;
* what things do we want to describe?&lt;br /&gt;
** (Greg)&lt;br /&gt;
creator of photo&lt;br /&gt;
location of photo&lt;br /&gt;
date of photo&lt;br /&gt;
&lt;br /&gt;
* (nick)&lt;br /&gt;
DC for photo, papers&lt;br /&gt;
depictions of things in the photo&lt;br /&gt;
other things about people&lt;br /&gt;
&lt;br /&gt;
* (libby)&lt;br /&gt;
location, event (incl date) photos taken at&lt;br /&gt;
description of photo&lt;br /&gt;
depictions - mostly people, id'd by hashed email&lt;br /&gt;
annotator, date annotated&lt;br /&gt;
creator&lt;br /&gt;
CC info&lt;/div&gt;</description>
			<pubDate>Sun, 04 Jan 2004 23:03:15 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:WWW2004</comments>		</item>
		<item>
			<title>AboutThisService</title>
			<link>http://www.w3.org/wiki/AboutThisService</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[DanBri]] set up an ESW Wiki using TWiki, January 2002 ([http://esw.w3.org/mt/esw/archives/000017.html weblog notes]; [http://esw.w3.org/mt/esw/archives/000027.html upgrade announcement]).&lt;br /&gt;
&lt;br /&gt;
After researching some infelicities, we decided to migrate to [[MoinMoin]]&lt;br /&gt;
([[ToDo]]: grab rationale, [[LinkMe]]: discussion in #rdfig about lost updates and such).&lt;br /&gt;
&lt;br /&gt;
[[SandroHawke]] installed [[MoinMoin]], and DanC did the migration;&lt;br /&gt;
see [http://lists.w3.org/Archives/Public/www-archive/2003Mar/0084.html imported ESW twiki stuff into moinmoin] Wed, Mar 26 2003.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;/t/view/TopicName&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (older TWiki URIs) are now redirected to &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;/topic/TopicName&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Remaining TWiki migration issues: moin doesn't like wikinames to begin with acronyms. So PPR:[[HowToRenameWikiPages]] may be useful. It wasn't! Nothing useful in there. Hmm.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
We need clear license terms... e.g. a [[CreativeCommons]] logo&lt;br /&gt;
right next to the 'save' button on the edit page.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
oops... is the output of this service not XHTML happy? evidently not.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
wow! [[DanConnolly]] thought you had to start new pages my making&lt;br /&gt;
links from existing pages... wants a &amp;quot;making new islands is&lt;br /&gt;
not cool&amp;quot; blurb in the &amp;quot;you can create this page now&amp;quot; text.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
a concern about the preservation of the information here... should we archive the HTML&lt;br /&gt;
version as well? else we need [[MoinMoin]] to reconstruct it; who knows if that'll be&lt;br /&gt;
feasible in 20 years.&lt;br /&gt;
&lt;br /&gt;
 ''You can use `moin-dump` to create a static HTML version, tar that and store it away, by using a cron job. Also, you won't have to wait 20 years till you can do the same and create an XML dump.''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Needless URL duplication? why have ?action=view instead of just a link to the &lt;br /&gt;
topic itself. The 'clear comment' link you see after editing, in particular, encourages two URLs to get deployed for each Wiki topic.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[MoinMoin]] is a Python Wiki:[[WikiClone]], based on Wiki:[[PikiPiki]]. The name is a common German slang expression explained on the [[MoinMoin]] page. If you run a Wiki using [[MoinMoin]], please add it to the [[MoinMoin]]:[[MoinMoinWikis]] page. Contributed code is on the [[MoinMoin]]:[[MacroMarket]], [[MoinMoin]]:[[ActionMarket]] and [[MoinMoin]]:[[ParserMarket]] pages.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Eeek! the ?action=subscribe thingy is an unsafe GET! (see [http://www.w3.org/2001/tag/doc/get7 W3C TAG finding] for why we should care).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Testing Basic Internationalization =&lt;br /&gt;
This is a test to see how well this Wiki deals with non-ASCII characters: Some German: Übersetzung, some Japanese: &amp;amp;#32763;&amp;amp;#35379; some arabic &amp;amp;#1575;&amp;amp;#1604;&amp;amp;#1587;&amp;amp;#1604;&amp;amp;#1575;&amp;amp;#1605;&lt;br /&gt;
&lt;br /&gt;
One the other hand trying to add the character &amp;amp;#0337; was a pain - then it doesn't always round trip (it did sometimes :(. On the other hand I cannot get it to work in the word Bevezet&amp;amp;#337; on the page [[SemWebMagyar]] (maybe because it is in a link??) -- Chaals&lt;br /&gt;
&lt;br /&gt;
Seems to be okay for posting, but on reediting, I get numeric character references (NCR) for Japanese, which makes it impossible to edit actual Japanese (even more so because they are decimal).&lt;br /&gt;
&lt;br /&gt;
Fortunately, the numeric character references get backconverted. But then, can I add an example of an NCR in test? Example NCR: &amp;amp;amp;#x5678;. We should try to change the editing page (or even better, everything) to UTF-8.&lt;br /&gt;
&lt;br /&gt;
Puting in an NCR with &amp;amp;amp;#x5678; didn't work. Let's try some more variants: hex: &amp;amp;#x26;#x5678;, decimal: &amp;amp;#38;#x5678;&lt;br /&gt;
&lt;br /&gt;
Using a decimal '&amp;amp;', i.e. &amp;amp;#38;#38; seems to be the only thing that works. Pretty lame and inconvenient.&lt;br /&gt;
 But at least there is safe roundtripping.&lt;br /&gt;
&lt;br /&gt;
 &amp;amp;#38; or `&amp;amp;#38;` (after all, it's `code`)&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 15:48:36 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:AboutThisService</comments>		</item>
		<item>
			<title>AboutThisService</title>
			<link>http://www.w3.org/wiki/AboutThisService</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[DanBri]] set up an ESW Wiki using TWiki, January 2002 ([http://esw.w3.org/mt/esw/archives/000017.html weblog notes]; [http://esw.w3.org/mt/esw/archives/000027.html upgrade announcement]).&lt;br /&gt;
&lt;br /&gt;
After researching some infelicities, we decided to migrate to [[MoinMoin]]&lt;br /&gt;
([[ToDo]]: grab rationale, [[LinkMe]]: discussion in #rdfig about lost updates and such).&lt;br /&gt;
&lt;br /&gt;
[[SandroHawke]] installed [[MoinMoin]], and DanC did the migration;&lt;br /&gt;
see [http://lists.w3.org/Archives/Public/www-archive/2003Mar/0084.html imported ESW twiki stuff into moinmoin] Wed, Mar 26 2003.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;/t/view/TopicName&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (older TWiki URIs) are now redirected to &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;/topic/TopicName&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Remaining TWiki migration issues: moin doesn't like wikinames to begin with acronyms. So PPR:[[HowToRenameWikiPages]] may be useful. It wasn't! Nothing useful in there. Hmm.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
We need clear license terms... e.g. a [[CreativeCommons]] logo&lt;br /&gt;
right next to the 'save' button on the edit page.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
oops... is the output of this service not XHTML happy? evidently not.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
wow! [[DanConnolly]] thought you had to start new pages my making&lt;br /&gt;
links from existing pages... wants a &amp;quot;making new islands is&lt;br /&gt;
not cool&amp;quot; blurb in the &amp;quot;you can create this page now&amp;quot; text.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
a concern about the preservation of the information here... should we archive the HTML&lt;br /&gt;
version as well? else we need [[MoinMoin]] to reconstruct it; who knows if that'll be&lt;br /&gt;
feasible in 20 years.&lt;br /&gt;
&lt;br /&gt;
 ''You can use `moin-dump` to create a static HTML version, tar that and store it away, by using a cron job. Also, you won't have to wait 20 years till you can do the same and create an XML dump.''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Needless URL duplication? why have ?action=view instead of just a link to the &lt;br /&gt;
topic itself. The 'clear comment' link you see after editing, in particular, encourages two URLs to get deployed for each Wiki topic.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[MoinMoin]] is a Python Wiki:[[WikiClone]], based on Wiki:[[PikiPiki]]. The name is a common German slang expression explained on the [[MoinMoin]] page. If you run a Wiki using [[MoinMoin]], please add it to the [[MoinMoin]]:[[MoinMoinWikis]] page. Contributed code is on the [[MoinMoin]]:[[MacroMarket]], [[MoinMoin]]:[[ActionMarket]] and [[MoinMoin]]:[[ParserMarket]] pages.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Eeek! the ?action=subscribe thingy is an unsafe GET! (see [http://www.w3.org/2001/tag/doc/get7 W3C TAG finding] for why we should care).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Testing Basic Internationalization =&lt;br /&gt;
This is a test to see how well this Wiki deals with non-ASCII characters: Some German: Übersetzung, some Japanese: &amp;amp;#32763;&amp;amp;#35379; some arabic &amp;amp;#1575;&amp;amp;#1604;&amp;amp;#1587;&amp;amp;#1604;&amp;amp;#1575;&amp;amp;#1605;&lt;br /&gt;
&lt;br /&gt;
One the other hand trying to add the character &amp;amp;#0337; was a pain. if you add &amp;amp;amp;#337; then it doesn't always round trip (it did sometimes :(, but if you add &amp;amp;amp;#0337; it seems to come out fine here. On the other hand I cannot get it to work in the word Bevezet&amp;amp;#337; on the page [[SemWebMagyar]] (maybe because it is in a link??) -- Chaals&lt;br /&gt;
&lt;br /&gt;
Seems to be okay for posting, but on reediting, I get numeric character references (NCR) for Japanese, which makes it impossible to edit actual Japanese (even more so because they are decimal).&lt;br /&gt;
&lt;br /&gt;
Fortunately, the numeric character references get backconverted. But then, can I add an example of an NCR in test? Example NCR: &amp;amp;amp;#x5678;. We should try to change the editing page (or even better, everything) to UTF-8.&lt;br /&gt;
&lt;br /&gt;
Puting in an NCR with &amp;amp;amp;#x5678; didn't work. Let's try some more variants: hex: &amp;amp;#x26;#x5678;, decimal: &amp;amp;#38;#x5678;&lt;br /&gt;
&lt;br /&gt;
Using a decimal '&amp;amp;', i.e. &amp;amp;#38;#38; seems to be the only thing that works. Pretty lame and inconvenient.&lt;br /&gt;
 But at least there is safe roundtripping.&lt;br /&gt;
&lt;br /&gt;
 &amp;amp;#38; or `&amp;amp;#38;` (after all, it's `code`)&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 15:42:54 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:AboutThisService</comments>		</item>
		<item>
			<title>SemWebMagyar</title>
			<link>http://www.w3.org/wiki/SemWebMagyar</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Szemantikus Web magyarul&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/2001/sw/Europe/200305/foaflang/ Ki ért Magyarul?] (FOAF). [http://dict.sztaki.hu/english-hungarian Angol-Magyar Szótár]&lt;br /&gt;
&lt;br /&gt;
* [http://w3c.hu Magyar W3C Iroda]&lt;br /&gt;
* Az oldalt [http://et.progos.hu Vojnisek Péter] szerkeszti&lt;br /&gt;
&lt;br /&gt;
Dokumentumok&lt;br /&gt;
* [http://www.w3.org/2002/Talks/2409-Budapest-IH/0.html Szemantikus Web: Bevezeto]&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 15:38:08 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebMagyar</comments>		</item>
		<item>
			<title>SemWebMagyar</title>
			<link>http://www.w3.org/wiki/SemWebMagyar</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Szemantikus Web magyarul&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/2001/sw/Europe/200305/foaflang/ Ki ért Magyarul?] (FOAF). [http://dict.sztaki.hu/english-hungarian Angol-Magyar Szótár]&lt;br /&gt;
&lt;br /&gt;
* [http://w3c.hu Magyar W3C Iroda]&lt;br /&gt;
* Az oldalt [http://et.progos.hu Vojnisek Péter] szerkeszti&lt;br /&gt;
&lt;br /&gt;
Dokumentumok&lt;br /&gt;
* [http://www.w3.org/2002/Talks/2409-Budapest-IH/0.html Szemantikus Web: Bevezet &amp;amp;#0337; ]&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 15:34:09 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebMagyar</comments>		</item>
		<item>
			<title>SemWebMagyar</title>
			<link>http://www.w3.org/wiki/SemWebMagyar</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Szemantikus Web magyarul&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/2001/sw/Europe/200305/foaflang/ Ki ért Magyarul?] (FOAF). [http://dict.sztaki.hu/english-hungarian Angol-Magyar Szótár]&lt;br /&gt;
&lt;br /&gt;
* [http://w3c.hu Magyar W3C Iroda]&lt;br /&gt;
* Az oldalt [http://et.progos.hu Vojnisek Péter] szerkeszti&lt;br /&gt;
&lt;br /&gt;
Dokumentumok&lt;br /&gt;
* [http://www.w3.org/2002/Talks/2409-Budapest-IH/0.html Szemantikus Web: Bevezet&amp;amp;#0337;]&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 15:31:49 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebMagyar</comments>		</item>
		<item>
			<title>AboutThisService</title>
			<link>http://www.w3.org/wiki/AboutThisService</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[DanBri]] set up an ESW Wiki using TWiki, January 2002 ([http://esw.w3.org/mt/esw/archives/000017.html weblog notes]; [http://esw.w3.org/mt/esw/archives/000027.html upgrade announcement]).&lt;br /&gt;
&lt;br /&gt;
After researching some infelicities, we decided to migrate to [[MoinMoin]]&lt;br /&gt;
([[ToDo]]: grab rationale, [[LinkMe]]: discussion in #rdfig about lost updates and such).&lt;br /&gt;
&lt;br /&gt;
[[SandroHawke]] installed [[MoinMoin]], and DanC did the migration;&lt;br /&gt;
see [http://lists.w3.org/Archives/Public/www-archive/2003Mar/0084.html imported ESW twiki stuff into moinmoin] Wed, Mar 26 2003.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;/t/view/TopicName&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (older TWiki URIs) are now redirected to &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;/topic/TopicName&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Remaining TWiki migration issues: moin doesn't like wikinames to begin with acronyms. So PPR:[[HowToRenameWikiPages]] may be useful. It wasn't! Nothing useful in there. Hmm.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
We need clear license terms... e.g. a [[CreativeCommons]] logo&lt;br /&gt;
right next to the 'save' button on the edit page.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
oops... is the output of this service not XHTML happy? evidently not.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
wow! [[DanConnolly]] thought you had to start new pages my making&lt;br /&gt;
links from existing pages... wants a &amp;quot;making new islands is&lt;br /&gt;
not cool&amp;quot; blurb in the &amp;quot;you can create this page now&amp;quot; text.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
a concern about the preservation of the information here... should we archive the HTML&lt;br /&gt;
version as well? else we need [[MoinMoin]] to reconstruct it; who knows if that'll be&lt;br /&gt;
feasible in 20 years.&lt;br /&gt;
&lt;br /&gt;
 ''You can use `moin-dump` to create a static HTML version, tar that and store it away, by using a cron job. Also, you won't have to wait 20 years till you can do the same and create an XML dump.''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Needless URL duplication? why have ?action=view instead of just a link to the &lt;br /&gt;
topic itself. The 'clear comment' link you see after editing, in particular, encourages two URLs to get deployed for each Wiki topic.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[MoinMoin]] is a Python Wiki:[[WikiClone]], based on Wiki:[[PikiPiki]]. The name is a common German slang expression explained on the [[MoinMoin]] page. If you run a Wiki using [[MoinMoin]], please add it to the [[MoinMoin]]:[[MoinMoinWikis]] page. Contributed code is on the [[MoinMoin]]:[[MacroMarket]], [[MoinMoin]]:[[ActionMarket]] and [[MoinMoin]]:[[ParserMarket]] pages.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Eeek! the ?action=subscribe thingy is an unsafe GET! (see [http://www.w3.org/2001/tag/doc/get7 W3C TAG finding] for why we should care).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Testing Basic Internationalization =&lt;br /&gt;
This is a test to see how well this Wiki deals with non-ASCII characters: Some German: Übersetzung, some Japanese: &amp;amp;#32763;&amp;amp;#35379; some arabic &amp;amp;#1575;&amp;amp;#1604;&amp;amp;#1587;&amp;amp;#1604;&amp;amp;#1575;&amp;amp;#1605;&lt;br /&gt;
&lt;br /&gt;
One the other hand trying to add the character &amp;amp;#0337; was a pain. if you add &amp;amp;amp;#337; then it doesn't always round trip (it did sometimes :(, but if you add &amp;amp;amp;#0337; it seems to come out fine.&lt;br /&gt;
&lt;br /&gt;
Seems to be okay for posting, but on reediting, I get numeric character references (NCR) for Japanese, which makes it impossible to edit actual Japanese (even more so because they are decimal).&lt;br /&gt;
&lt;br /&gt;
Fortunately, the numeric character references get backconverted. But then, can I add an example of an NCR in test? Example NCR: &amp;amp;amp;#x5678;. We should try to change the editing page (or even better, everything) to UTF-8.&lt;br /&gt;
&lt;br /&gt;
Puting in an NCR with &amp;amp;amp;#x5678; didn't work. Let's try some more variants: hex: &amp;amp;#x26;#x5678;, decimal: &amp;amp;#38;#x5678;&lt;br /&gt;
&lt;br /&gt;
Using a decimal '&amp;amp;', i.e. &amp;amp;#38;#38; seems to be the only thing that works. Pretty lame and inconvenient.&lt;br /&gt;
 But at least there is safe roundtripping.&lt;br /&gt;
&lt;br /&gt;
 &amp;amp;#38; or `&amp;amp;#38;` (after all, it's `code`)&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 15:31:07 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:AboutThisService</comments>		</item>
		<item>
			<title>AboutThisService</title>
			<link>http://www.w3.org/wiki/AboutThisService</link>
			<description>&lt;p&gt;Charles:&amp;#32;figuring out oddness with NCRs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[DanBri]] set up an ESW Wiki using TWiki, January 2002 ([http://esw.w3.org/mt/esw/archives/000017.html weblog notes]; [http://esw.w3.org/mt/esw/archives/000027.html upgrade announcement]).&lt;br /&gt;
&lt;br /&gt;
After researching some infelicities, we decided to migrate to [[MoinMoin]]&lt;br /&gt;
([[ToDo]]: grab rationale, [[LinkMe]]: discussion in #rdfig about lost updates and such).&lt;br /&gt;
&lt;br /&gt;
[[SandroHawke]] installed [[MoinMoin]], and DanC did the migration;&lt;br /&gt;
see [http://lists.w3.org/Archives/Public/www-archive/2003Mar/0084.html imported ESW twiki stuff into moinmoin] Wed, Mar 26 2003.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;/t/view/TopicName&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (older TWiki URIs) are now redirected to &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;/topic/TopicName&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Remaining TWiki migration issues: moin doesn't like wikinames to begin with acronyms. So PPR:[[HowToRenameWikiPages]] may be useful. It wasn't! Nothing useful in there. Hmm.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
We need clear license terms... e.g. a [[CreativeCommons]] logo&lt;br /&gt;
right next to the 'save' button on the edit page.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
oops... is the output of this service not XHTML happy? evidently not.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
wow! [[DanConnolly]] thought you had to start new pages my making&lt;br /&gt;
links from existing pages... wants a &amp;quot;making new islands is&lt;br /&gt;
not cool&amp;quot; blurb in the &amp;quot;you can create this page now&amp;quot; text.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
a concern about the preservation of the information here... should we archive the HTML&lt;br /&gt;
version as well? else we need [[MoinMoin]] to reconstruct it; who knows if that'll be&lt;br /&gt;
feasible in 20 years.&lt;br /&gt;
&lt;br /&gt;
 ''You can use `moin-dump` to create a static HTML version, tar that and store it away, by using a cron job. Also, you won't have to wait 20 years till you can do the same and create an XML dump.''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Needless URL duplication? why have ?action=view instead of just a link to the &lt;br /&gt;
topic itself. The 'clear comment' link you see after editing, in particular, encourages two URLs to get deployed for each Wiki topic.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[MoinMoin]] is a Python Wiki:[[WikiClone]], based on Wiki:[[PikiPiki]]. The name is a common German slang expression explained on the [[MoinMoin]] page. If you run a Wiki using [[MoinMoin]], please add it to the [[MoinMoin]]:[[MoinMoinWikis]] page. Contributed code is on the [[MoinMoin]]:[[MacroMarket]], [[MoinMoin]]:[[ActionMarket]] and [[MoinMoin]]:[[ParserMarket]] pages.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Eeek! the ?action=subscribe thingy is an unsafe GET! (see [http://www.w3.org/2001/tag/doc/get7 W3C TAG finding] for why we should care).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Testing Basic Internationalization =&lt;br /&gt;
This is a test to see how well this Wiki deals with non-ASCII characters: Some German: Übersetzung, some Japanese: &amp;amp;#32763;&amp;amp;#35379; some arabic &amp;amp;#1575;&amp;amp;#1604;&amp;amp;#1587;&amp;amp;#1604;&amp;amp;#1575;&amp;amp;#1605;&lt;br /&gt;
&lt;br /&gt;
One the other hand trying to add the character &amp;amp;#0337; was a pain. if you add &amp;amp;#337; then it doesn't round trip, but if you add &amp;amp;amp;#0337; it seems to come out fine.&lt;br /&gt;
&lt;br /&gt;
Seems to be okay for posting, but on reediting, I get numeric character references (NCR) for Japanese, which makes it impossible to edit actual Japanese (even more so because they are decimal).&lt;br /&gt;
&lt;br /&gt;
Fortunately, the numeric character references get backconverted. But then, can I add an example of an NCR in test? Example NCR: &amp;amp;amp;#x5678;. We should try to change the editing page (or even better, everything) to UTF-8.&lt;br /&gt;
&lt;br /&gt;
Puting in an NCR with &amp;amp;amp;#x5678; didn't work. Let's try some more variants: hex: &amp;amp;#x26;#x5678;, decimal: &amp;amp;#38;#x5678;&lt;br /&gt;
&lt;br /&gt;
Using a decimal '&amp;amp;', i.e. &amp;amp;#38;#38; seems to be the only thing that works. Pretty lame and inconvenient.&lt;br /&gt;
 But at least there is safe roundtripping.&lt;br /&gt;
&lt;br /&gt;
 &amp;amp;#38; or `&amp;amp;#38;` (after all, it's `code`)&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 15:30:09 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:AboutThisService</comments>		</item>
		<item>
			<title>SemWebMagyar</title>
			<link>http://www.w3.org/wiki/SemWebMagyar</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Szemantikus Web magyarul&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/2001/sw/Europe/200305/foaflang/ Ki ért Magyarul?] (FOAF). [http://dict.sztaki.hu/english-hungarian Angol-Magyar Szótár]&lt;br /&gt;
&lt;br /&gt;
* [http://w3c.hu Magyar W3C Iroda]&lt;br /&gt;
* Az oldalt [http://et.progos.hu Vojnisek Péter] szerkeszti&lt;br /&gt;
&lt;br /&gt;
Dokumentumok&lt;br /&gt;
* [http://www.w3.org/2002/Talks/2409-Budapest-IH/0.html Szemantikus Web: Bevezeto]&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 15:17:59 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebMagyar</comments>		</item>
		<item>
			<title>SemWebMagyar</title>
			<link>http://www.w3.org/wiki/SemWebMagyar</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Szemantikus Web magyarul&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/2001/sw/Europe/200305/foaflang/ Ki ért Magyarul?] (FOAF). [http://dict.sztaki.hu/english-hungarian Angol-Magyar Szótár]&lt;br /&gt;
&lt;br /&gt;
* [http://w3c.hu Magyar W3C Iroda]&lt;br /&gt;
* Az oldalt [http://et.progos.hu Vojnisek Péter] szerkeszti&lt;br /&gt;
&lt;br /&gt;
Dokumentumok&lt;br /&gt;
* [http://www.w3.org/2002/Talks/2409-Budapest-IH/0.html Szemantikus Web: Bevezet&amp;amp;#337; ]&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 15:17:42 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebMagyar</comments>		</item>
		<item>
			<title>SemWebMagyar</title>
			<link>http://www.w3.org/wiki/SemWebMagyar</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Semantic Web Magyarul.&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/2001/sw/Europe/200305/foaflang/ Ki ért Magyarul?] (FOAF). [http://dict.sztaki.hu/english-hungarian Szótár Angol-Magyar]&lt;br /&gt;
&lt;br /&gt;
* [http://w3c.hu Magyar W3C Iroda]&lt;br /&gt;
* Az oldalt [http://et.progos.hu Vojnisek Péter] szerkeszti&lt;br /&gt;
&lt;br /&gt;
Dokumentumok&lt;br /&gt;
* [http://www.w3.org/2002/Talks/2409-Budapest-IH/0.html Szemantikus Web: Bevezet&amp;amp;#337;]&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 14:44:11 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebMagyar</comments>		</item>
		<item>
			<title>SemWebMagyar</title>
			<link>http://www.w3.org/wiki/SemWebMagyar</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Semantic Web Magyarul.&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/2001/sw/Europe/200305/foaflang/ Ki ért Magyarul?] (FOAF). &lt;br /&gt;
&lt;br /&gt;
* [http://w3c.hu Magyar W3C Iroda]&lt;br /&gt;
* Az oldalt [http://et.progos.hu Vojnisek Péter] szerkeszti&lt;br /&gt;
&lt;br /&gt;
Dokumentumok&lt;br /&gt;
* [http://www.w3.org/2002/Talks/2409-Budapest-IH/0.html Szemantikus Web: Bevezet&amp;amp;#337;]&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 14:32:59 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebMagyar</comments>		</item>
		<item>
			<title>SemWebMagyar</title>
			<link>http://www.w3.org/wiki/SemWebMagyar</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Semantic Web Magyarul.&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/2001/sw/Europe/200305/foaflang/ Ki ért Magyarul?] (FOAF). [http://groups.yahoo.com/group/szemantikus/  interdiszciplináris szemantikus beszélgetések]&lt;br /&gt;
&lt;br /&gt;
* [http://w3c.hu Magyar W3C Iroda]&lt;br /&gt;
* Az oldalt [http://et.progos.hu Vojnisek Péter] szerkeszti&lt;br /&gt;
&lt;br /&gt;
Dokumentumok&lt;br /&gt;
* [http://www.w3.org/2002/Talks/2409-Budapest-IH/0.html Szemantikus Web: Bevezet&amp;amp;#337;]&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 14:32:14 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebMagyar</comments>		</item>
		<item>
			<title>SemWebMagyar</title>
			<link>http://www.w3.org/wiki/SemWebMagyar</link>
			<description>&lt;p&gt;Charles:&amp;#32;added link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Semantic Web Magyarul.&lt;br /&gt;
&lt;br /&gt;
[http://www.w3.org/2001/sw/Europe/200305/foaflang/ Ki ért Magyarul?] (FOAF)&lt;br /&gt;
&lt;br /&gt;
* [http://w3c.hu Magyar W3C Iroda]&lt;br /&gt;
* Az oldalt [http://et.progos.hu Vojnisek Péter] szerkeszti&lt;br /&gt;
&lt;br /&gt;
Dokumentumok&lt;br /&gt;
* [http://www.w3.org/2002/Talks/2409-Budapest-IH/0.html Szemantikus Web: Bevezet&amp;amp;#337;]&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 14:30:39 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebMagyar</comments>		</item>
		<item>
			<title>SemWebMagyar</title>
			<link>http://www.w3.org/wiki/SemWebMagyar</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Semantic Web Magyarul.&lt;br /&gt;
&lt;br /&gt;
* [http://w3c.hu Magyar W3C Iroda]&lt;br /&gt;
* Az oldalt [http://et.progos.hu Vojnisek Péter] szerkeszti&lt;br /&gt;
&lt;br /&gt;
Dokumentat&lt;br /&gt;
* [http://www.w3.org/2002/Talks/2409-Budapest-IH/0.html Szemantikus Web: Bevezet&amp;amp;#337;]&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 14:18:29 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebMagyar</comments>		</item>
		<item>
			<title>SemWebMagyar</title>
			<link>http://www.w3.org/wiki/SemWebMagyar</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Semantic Web Magyarul.&lt;br /&gt;
&lt;br /&gt;
* Peter tudok magyarul&lt;br /&gt;
* [http://progos.hu Progos]&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 14:00:40 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebMagyar</comments>		</item>
		<item>
			<title>SemWebMagyar</title>
			<link>http://www.w3.org/wiki/SemWebMagyar</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Semantic Web Magyarul.&lt;br /&gt;
&lt;br /&gt;
Peter.&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 13:58:51 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebMagyar</comments>		</item>
		<item>
			<title>MultiLingual</title>
			<link>http://www.w3.org/wiki/MultiLingual</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
= a Multi-lingual Web? =&lt;br /&gt;
&lt;br /&gt;
The Web is multilingual. There are people doing stuff like [[SemWebSpain]], [[SemWebItaly]], [[SemWebMagyar]] or [[SemWebGermany]].&lt;br /&gt;
&lt;br /&gt;
How do people find documents in their language? Can this Wiki provide a version of a page in a different language, if it is available? (according to JürgenHermann a multi-lingual extension is nearly ready), and the Wiki serves its own interface according to the language preferences your browser sends... &lt;br /&gt;
&lt;br /&gt;
== Schemas ==&lt;br /&gt;
&lt;br /&gt;
* There is a [http://purl.org/net/inkel/rdf/schemas/lang/1.1# schema for recording languages that people know] which seems like it should be useful with foaf. '''Note:''' I'm currently reviewing this schema, in order to correct some mistakes I've made in this vesion (1.1), and also adapt it to OWL.&lt;br /&gt;
* There is a [http://www.w3.org/2003/03/Translations/transSchema.rdf schema for translations] that is used to manage a list of [http://www.w3.org/Consortium/Translation/ translations of w3c documents]&lt;br /&gt;
* Dublin Core has elements and qualifiers for dealing with similar stuff (for example, from the dublin core [http://dublincore.org/dcregistry/index.html registry] related to [http://dublincore.org/dcregistry/detailServlet?reqType=detail&amp;amp;item=http%3A%2F%2Fpurl.org%2Fdc%2Felements%2F1.1%2Frelation versioning]).&lt;br /&gt;
&lt;br /&gt;
== prepackaged queries ==&lt;br /&gt;
&lt;br /&gt;
You can find out [http://jibbering.com/foaf/pred.1?predicate=http://purl.org/net/inkel/rdf/schemas/lang/1.1%23masters where there are claims to speak, read and write a language] in the &amp;quot;foafnaut data collection&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Now you can also find out [http://www.w3.org/2001/sw/Europe/200305/foaflang/ what languages people speak] (at least according to public rdf information on the web). -- ChaalsMcCN 2003-05-24&lt;br /&gt;
&lt;br /&gt;
== Some rules ==&lt;br /&gt;
&lt;br /&gt;
Processors should apply the following rules (in Notation3) while reading FOAF files which use the [http://purl.org/net/inkel/rdf/schemas/lang/1.1# Speaks, Reads &amp;amp; Writes Schema]:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
@prefix lang: &amp;lt;http://purl.org/net/inkel/rdf/schemas/lang/1.1#&amp;gt; .&lt;br /&gt;
@prefix log: &amp;lt;http://www.w3.org/2000/10/swap/log#&amp;gt; .&lt;br /&gt;
@prefix : &amp;lt;#&amp;gt; .&lt;br /&gt;
&lt;br /&gt;
this log:forAll :x, :y .&lt;br /&gt;
{ :x lang:masters :y } log:implies&lt;br /&gt;
{ :x lang:reads :y; lang:speaks :y; lang:writes :y } .&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
at least until we've a inference engine which supports schema based inferences&lt;/div&gt;</description>
			<pubDate>Thu, 19 Jun 2003 13:58:03 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:MultiLingual</comments>		</item>
		<item>
			<title>SemWebGermany</title>
			<link>http://www.w3.org/wiki/SemWebGermany</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Project Swad Europe has a small [[MultiLingual]] aspect&lt;br /&gt;
&lt;br /&gt;
Blogs auf Deutsch:&lt;br /&gt;
&lt;br /&gt;
* [http://iuw-darmstadt.de/drupal/index.php?or=3%2C5%2C4 IuW Darmstadt - Die etwas anderen Nachrichten aus Mittelerde]&lt;br /&gt;
* [http://weblog.semanticpool.de/ Semanticpool Weblog]&lt;/div&gt;</description>
			<pubDate>Wed, 18 Jun 2003 17:44:46 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebGermany</comments>		</item>
		<item>
			<title>AboutThisService</title>
			<link>http://www.w3.org/wiki/AboutThisService</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[DanBri]] set up an ESW Wiki using TWiki, January 2002 ([http://esw.w3.org/mt/esw/archives/000017.html weblog notes]; [http://esw.w3.org/mt/esw/archives/000027.html upgrade announcement]).&lt;br /&gt;
&lt;br /&gt;
After researching some infelicities, we decided to migrate to [[MoinMoin]]&lt;br /&gt;
([[ToDo]]: grab rationale, [[LinkMe]]: discussion in #rdfig about lost updates and such).&lt;br /&gt;
&lt;br /&gt;
[[SandroHawke]] installed [[MoinMoin]], and DanC did the migration;&lt;br /&gt;
see [http://lists.w3.org/Archives/Public/www-archive/2003Mar/0084.html imported ESW twiki stuff into moinmoin] Wed, Mar 26 2003.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;/t/view/TopicName&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; (older TWiki URIs) are now redirected to &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;/topic/TopicName&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Remaining TWiki migration issues: moin doesn't like wikinames to begin with acronyms. So PPR:[[HowToRenameWikiPages]] may be useful. It wasn't! Nothing useful in there. Hmm.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
We need clear license terms... e.g. a [[CreativeCommons]] logo&lt;br /&gt;
right next to the 'save' button on the edit page.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
oops... is the output of this service not XHTML happy? evidently not.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
wow! [[DanConnolly]] thought you had to start new pages my making&lt;br /&gt;
links from existing pages... wants a &amp;quot;making new islands is&lt;br /&gt;
not cool&amp;quot; blurb in the &amp;quot;you can create this page now&amp;quot; text.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
a concern about the preservation of the information here... should we archive the HTML&lt;br /&gt;
version as well? else we need [[MoinMoin]] to reconstruct it; who knows if that'll be&lt;br /&gt;
feasible in 20 years.&lt;br /&gt;
&lt;br /&gt;
 ''You can use `moin-dump` to create a static HTML version, tar that and store it away, by using a cron job. Also, you won't have to wait 20 years till you can do the same and create an XML dump.''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Needless URL duplication? why have ?action=view instead of just a link to the &lt;br /&gt;
topic itself. The 'clear comment' link you see after editing, in particular, encourages two URLs to get deployed for each Wiki topic.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[MoinMoin]] is a Python Wiki:[[WikiClone]], based on Wiki:[[PikiPiki]]. The name is a common German slang expression explained on the [[MoinMoin]] page. If you run a Wiki using [[MoinMoin]], please add it to the [[MoinMoin]]:[[MoinMoinWikis]] page. Contributed code is on the [[MoinMoin]]:[[MacroMarket]], [[MoinMoin]]:[[ActionMarket]] and [[MoinMoin]]:[[ParserMarket]] pages.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Eeek! the ?action=subscribe thingy is an unsafe GET! (see [http://www.w3.org/2001/tag/doc/get7 W3C TAG finding] for why we should care).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= Testing Basic Internationalization =&lt;br /&gt;
This is a test to see how well this Wiki deals with non-ASCII characters: Some German: Übersetzung, some Japanese: &amp;amp;#32763;&amp;amp;#35379; some arabic &amp;amp;#1575;&amp;amp;#1604;&amp;amp;#1587;&amp;amp;#1604;&amp;amp;#1575;&amp;amp;#1605;&lt;br /&gt;
&lt;br /&gt;
Seems to be okay for posting, but on reediting, I get numeric character references (NCR) for Japanese, which makes it impossible to edit actual Japanese (even more so because they are decimal).&lt;br /&gt;
&lt;br /&gt;
Fortunately, the numeric character references get backconverted. But then, can I add an example of an NCR in test? Example NCR: &amp;amp;amp;#x5678;. We should try to change the editing page (or even better, everything) to UTF-8.&lt;br /&gt;
&lt;br /&gt;
Puting in an NCR with &amp;amp;amp;#x5678; didn't work. Let's try some more variants: hex: &amp;amp;#x26;#x5678;, decimal: &amp;amp;#38;#x5678;&lt;br /&gt;
&lt;br /&gt;
Using a decimal '&amp;amp;', i.e. &amp;amp;#38;#38; seems to be the only thing that works. Pretty lame and inconvenient.&lt;br /&gt;
 But at least there is safe roundtripping.&lt;br /&gt;
&lt;br /&gt;
 &amp;amp;#38; or `&amp;amp;#38;` (after all, it's `code`)&lt;/div&gt;</description>
			<pubDate>Wed, 18 Jun 2003 17:40:52 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:AboutThisService</comments>		</item>
		<item>
			<title>SemWebSpain</title>
			<link>http://www.w3.org/wiki/SemWebSpain</link>
			<description>&lt;p&gt;Charles:&amp;#32;actualizado, anadido un enlace&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Esta pagina es una partida del trabajo [[MultiLingual]] del proyecto.&lt;br /&gt;
&lt;br /&gt;
Proyectos y Documentos en español o en España sobre la Web Semántica&lt;br /&gt;
&lt;br /&gt;
== Documentos ==&lt;br /&gt;
&lt;br /&gt;
=== Especificaiones ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.sidar.org/recur/desdi/traduc/es/rdf/rdfesp.htm RDF: Especificación del Modelo y la Sintaxis 1.0] traducido por Eva Méndez&lt;br /&gt;
* [http://www.sidar.org/recur/desdi/traduc/es/index.php#esquerdf Especificación del Esquema RDF 1.0] traducido por Eva Méndez&lt;br /&gt;
* [http://www.sidar.org/recur/desdi/traduc/es/notas/foto-rdf/Desyrecfotos.htm Describir y recuperar fotos usando RDF y HTTP] una Nota W3C traducido por Emmanuelle Gutiérrez que describe como poner RDF para describir un imagen en el fichero mismo. Hay tambien herramientas que se puede usan.&lt;br /&gt;
* [http://purl.org/net/inkel/rdf/schemas/lang/ Esquema: Habla, Lee y Escribe] para aquellas personas buscando un metodo de expresar en que lenguajes pueden comunicarse con alguien mas. Por [[InKel]]&lt;br /&gt;
&lt;br /&gt;
=== Presentaciones, tutoriales, etc ===&lt;br /&gt;
* [http://purl.org/net/inkel/2003/01/27/foaf.html Tutorial sobre FOAF] traducido por Leandro Mariano López ([[InKel]])&lt;br /&gt;
* [http://www.w3.org/2002/Talks/1024-sidar/slide1-0.html Una presentación en español sobre unos aspectos de la Web Semántica] --CMN 2003-02-11.&lt;br /&gt;
* [http://purl.org/net/inkel/2003/02/10/scutter-howto.html RDFWeb Scutter HOWTO / guía para el desarrollador] traducción al español por Leandro Mariano López ([[InKel]]).&lt;br /&gt;
* [http://www.malditainternet.com/index.php?section=article&amp;amp;sid=107 Qué es RDF]&lt;br /&gt;
&lt;br /&gt;
=== Articulos ===&lt;br /&gt;
* [http://rayuela.uc3m.es/~mendez/publicaciones/7jc99/rdf.htm RDF: Un modelo de metadatos flexible para las bibliotecas digitales del próximo milenio] del año 1999 con [http://www.cobdc.org/7es/1.pdf versión en PDF]&lt;br /&gt;
* [http://rayuela.uc3m.es/~mendez/publicaciones/fesabid00/fesabid002.pdf Metadatos y Tesauros: aplicación de XML/RDF a los sistemas de organización del conocimiento en Intranets] del año 2000, en versión PDF&lt;br /&gt;
* [http://exlibris.usal.es/merlo/escritos/bilbao2.htm Localización, descripción e identificación de documentos web: tentativas hacia la normalización] del año 2000, con [http://rayuela.uc3m.es/~mendez/publicaciones/fesabid00/fesabid001.pdf versión PDF].&lt;br /&gt;
&lt;br /&gt;
=== Discussiones ===&lt;br /&gt;
&lt;br /&gt;
* [http://www.purl.org/net/ws-blog/ Blog de la Web Semántica] no actualizada desde octobre 2002 pero interesante&lt;br /&gt;
* En la lista [http://yahoogroups.com/group/accesoweb accesoweb - ajolado por yahoogroups] hay una discusión empezada el 10 febrero por alguien interesado en qué es la web semantica, y cómo se puede ser útil. (Accesoweb es una lista en castellano (más o menos - he visto también catalán allí) sobre problemas y soluciones para el acceso a la red por personas con discapacidades.)&lt;br /&gt;
&lt;br /&gt;
== Otras cosas... ==&lt;br /&gt;
&lt;br /&gt;
Ahora es posible [http://www.w3.org/2001/sw/Europe/200305/foaflang buscar personas por idioma hablada] (queien tienen informacion rdf publicado para decirlo...)&lt;br /&gt;
&lt;br /&gt;
== Otras Idiomas ==&lt;br /&gt;
&lt;br /&gt;
Nearby: [[SemWebGermany]] - en aleman&lt;br /&gt;
Nearby: [[SemWebItaly]] - en italiano&lt;br /&gt;
&lt;br /&gt;
Nearby: [[MultiLingual]]&lt;/div&gt;</description>
			<pubDate>Fri, 13 Jun 2003 11:36:06 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebSpain</comments>		</item>
		<item>
			<title>SemWebSpain</title>
			<link>http://www.w3.org/wiki/SemWebSpain</link>
			<description>&lt;p&gt;Charles:&amp;#32;anado traduccion de Nota &amp;quot;photo-rdf&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Esta pagina es una partida del trabajo [[MultiLingual]] del proyecto.&lt;br /&gt;
&lt;br /&gt;
Proyectos y materias en español o en España sobre la Web Semántica&lt;br /&gt;
&lt;br /&gt;
== Especificaiones ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sidar.org/recur/desdi/traduc/es/rdf/rdfesp.htm RDF: Especificación del Modelo y la Sintaxis 1.0] traducido por Eva Méndez&lt;br /&gt;
* [http://www.sidar.org/recur/desdi/traduc/es/index.php#esquerdf Especificación del Esquema RDF 1.0] traducido por Eva Méndez&lt;br /&gt;
* [http://www.sidar.org/recur/desdi/traduc/es/notas/foto-rdf/Desyrecfotos.htm Describir y recuperar fotos usando RDF y HTTP] una Nota W3C traducido por Emmanuelle Gutiérrez que describe como poner RDF para describir un imagen en el fichero mismo. Hay tambien herramientas que se puede usan.&lt;br /&gt;
* [http://purl.org/net/inkel/rdf/schemas/lang/ Esquema: Habla, Lee y Escribe] para aquellas personas buscando un metodo de expresar en que lenguajes pueden comunicarse con alguien mas. Por [[InKel]]&lt;br /&gt;
&lt;br /&gt;
== Presentaciones, tutoriales, etc ==&lt;br /&gt;
* [http://purl.org/net/inkel/2003/01/27/foaf.html Tutorial sobre FOAF] traducido por Leandro Mariano López ([[InKel]])&lt;br /&gt;
* [http://www.w3.org/2002/Talks/1024-sidar/slide1-0.html Una presentación en español sobre unos aspectos de la Web Semántica] --CMN 2003-02-11.&lt;br /&gt;
* [http://purl.org/net/inkel/2003/02/10/scutter-howto.html RDFWeb Scutter HOWTO / guía para el desarrollador] traducción al español por Leandro Mariano López ([[InKel]]).&lt;br /&gt;
* [http://www.malditainternet.com/index.php?section=article&amp;amp;sid=107 Qué es RDF]&lt;br /&gt;
&lt;br /&gt;
== Articulos ==&lt;br /&gt;
* [http://rayuela.uc3m.es/~mendez/publicaciones/7jc99/rdf.htm RDF: Un modelo de metadatos flexible para las bibliotecas digitales del próximo milenio] del año 1999 con [http://www.cobdc.org/7es/1.pdf versión en PDF]&lt;br /&gt;
* [http://rayuela.uc3m.es/~mendez/publicaciones/fesabid00/fesabid002.pdf Metadatos y Tesauros: aplicación de XML/RDF a los sistemas de organización del conocimiento en Intranets] del año 2000, en versión PDF&lt;br /&gt;
* [http://exlibris.usal.es/merlo/escritos/bilbao2.htm Localización, descripción e identificación de documentos web: tentativas hacia la normalización] del año 2000, con [http://rayuela.uc3m.es/~mendez/publicaciones/fesabid00/fesabid001.pdf versión PDF].&lt;br /&gt;
&lt;br /&gt;
== Discussiones ==&lt;br /&gt;
&lt;br /&gt;
[http://www.purl.org/net/ws-blog/ Blog de la Web Semántica]&lt;br /&gt;
&lt;br /&gt;
[http://www.google.com/search?sourceid=navclient&amp;amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;amp;q=site:www.citnames.com+Spain+Spanish Google de 'Semantic Weblog' + &amp;quot;Spain&amp;quot; + &amp;quot;Spanish&amp;quot;]&lt;br /&gt;
(este sitio debe aparecer en unos días)&lt;br /&gt;
&lt;br /&gt;
En la lista [http://yahoogroups.com/group/accesoweb accesoweb - ajolado por yahoogroups] hay una discusión empezada el 10 febrero por alguien interesado en qué es la web semantica, y cómo se puede ser útil.&lt;br /&gt;
&lt;br /&gt;
Accesoweb es una lista en castellano (más o menos - he visto también catalán allí) sobre problemas y soluciones para el acceso a la red por personas con discapacidades.&lt;br /&gt;
&lt;br /&gt;
== Otras cosas... ==&lt;br /&gt;
&lt;br /&gt;
Ahora es posible [http://www.w3.org/2001/sw/Europe/200305/foaflang buscar personas por idioma hablada] (queien tienen informacion rdf publicado para decirlo...)&lt;br /&gt;
&lt;br /&gt;
== Otras Idiomas ==&lt;br /&gt;
&lt;br /&gt;
Nearby: [[SemWebGermany]] - en aleman&lt;br /&gt;
Nearby: [[SemWebItaly]] - en italiano&lt;br /&gt;
&lt;br /&gt;
Nearby: [[MultiLingual]]&lt;/div&gt;</description>
			<pubDate>Fri, 13 Jun 2003 11:23:41 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebSpain</comments>		</item>
		<item>
			<title>SemWebSpain</title>
			<link>http://www.w3.org/wiki/SemWebSpain</link>
			<description>&lt;p&gt;Charles:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Esta pagina es una partida del trabajo [[MultiLingual]] del proyecto.&lt;br /&gt;
&lt;br /&gt;
Proyectos y materias en español o en España sobre la Web Semántica&lt;br /&gt;
&lt;br /&gt;
== Especificaiones ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sidar.org/recur/desdi/traduc/es/rdf/rdfesp.htm RDF: Especificación del Modelo y la Sintaxis 1.0] traducido por Eva Méndez&lt;br /&gt;
* [http://www.sidar.org/recur/desdi/traduc/es/index.php#esquerdf Especificación del Esquema RDF 1.0] traducido por Eva Méndez&lt;br /&gt;
* [http://purl.org/net/inkel/rdf/schemas/lang/ Esquema: Habla, Lee y Escribe] para aquellas personas buscando un metodo de expresar en que lenguajes pueden comunicarse con alguien mas. Por [[InKel]]&lt;br /&gt;
&lt;br /&gt;
== Presentaciones, tutoriales, etc ==&lt;br /&gt;
* [http://purl.org/net/inkel/2003/01/27/foaf.html Tutorial sobre FOAF] traducido por Leandro Mariano López ([[InKel]])&lt;br /&gt;
* [http://www.w3.org/2002/Talks/1024-sidar/slide1-0.html Una presentación en español sobre unos aspectos de la Web Semántica] --CMN 2003-02-11.&lt;br /&gt;
* [http://purl.org/net/inkel/2003/02/10/scutter-howto.html RDFWeb Scutter HOWTO / guía para el desarrollador] traducción al español por Leandro Mariano López ([[InKel]]).&lt;br /&gt;
* [http://www.malditainternet.com/index.php?section=article&amp;amp;sid=107 Qué es RDF]&lt;br /&gt;
&lt;br /&gt;
== Articulos ==&lt;br /&gt;
* [http://rayuela.uc3m.es/~mendez/publicaciones/7jc99/rdf.htm RDF: Un modelo de metadatos flexible para las bibliotecas digitales del próximo milenio] del año 1999 con [http://www.cobdc.org/7es/1.pdf versión en PDF]&lt;br /&gt;
* [http://rayuela.uc3m.es/~mendez/publicaciones/fesabid00/fesabid002.pdf Metadatos y Tesauros: aplicación de XML/RDF a los sistemas de organización del conocimiento en Intranets] del año 2000, en versión PDF&lt;br /&gt;
* [http://exlibris.usal.es/merlo/escritos/bilbao2.htm Localización, descripción e identificación de documentos web: tentativas hacia la normalización] del año 2000, con [http://rayuela.uc3m.es/~mendez/publicaciones/fesabid00/fesabid001.pdf versión PDF].&lt;br /&gt;
&lt;br /&gt;
== Discussiones ==&lt;br /&gt;
&lt;br /&gt;
[http://www.purl.org/net/ws-blog/ Blog de la Web Semántica]&lt;br /&gt;
&lt;br /&gt;
[http://www.google.com/search?sourceid=navclient&amp;amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;amp;q=site:www.citnames.com+Spain+Spanish Google de 'Semantic Weblog' + &amp;quot;Spain&amp;quot; + &amp;quot;Spanish&amp;quot;]&lt;br /&gt;
(este sitio debe aparecer en unos días)&lt;br /&gt;
&lt;br /&gt;
En la lista [http://yahoogroups.com/group/accesoweb accesoweb - ajolado por yahoogroups] hay una discusión empezada el 10 febrero por alguien interesado en qué es la web semantica, y cómo se puede ser útil.&lt;br /&gt;
&lt;br /&gt;
Accesoweb es una lista en castellano (más o menos - he visto también catalán allí) sobre problemas y soluciones para el acceso a la red por personas con discapacidades.&lt;br /&gt;
&lt;br /&gt;
== Otras cosas... ==&lt;br /&gt;
&lt;br /&gt;
Ahora es posible [http://www.w3.org/2001/sw/Europe/200305/foaflang buscar personas por idioma hablada] (queien tienen informacion rdf publicado para decirlo...)&lt;br /&gt;
&lt;br /&gt;
== Otras Idiomas ==&lt;br /&gt;
&lt;br /&gt;
Nearby: [[SemWebGermany]] - en aleman&lt;br /&gt;
Nearby: [[SemWebItaly]] - en italiano&lt;br /&gt;
&lt;br /&gt;
Nearby: [[MultiLingual]]&lt;/div&gt;</description>
			<pubDate>Fri, 13 Jun 2003 09:56:22 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebSpain</comments>		</item>
		<item>
			<title>SemWebSpain</title>
			<link>http://www.w3.org/wiki/SemWebSpain</link>
			<description>&lt;p&gt;Charles:&amp;#32;añado algunas enlaces&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Esta pagina es una partida del trabajo [[MultiLingual]] del proyecto.&lt;br /&gt;
&lt;br /&gt;
Proyectos y materias en español o en España sobre la Web Semántica&lt;br /&gt;
&lt;br /&gt;
== Especificaiones ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.sidar.org/recur/desdi/traduc/es/rdf/rdfesp.htm RDF: Especificación del Modelo y la Sintaxis 1.0] traducido por Eva Méndez&lt;br /&gt;
* [http://www.sidar.org/recur/desdi/traduc/es/index.php#esquerdf Especificación del Esquema RDF 1.0] traducido por Eva Méndez&lt;br /&gt;
* [http://purl.org/net/inkel/rdf/schemas/lang/ Esquema: Habla, Lee y Escribe] para aquellas personas buscando un metodo de expresar en que lenguajes pueden comunicarse con alguien mas. Por [[InKel]]&lt;br /&gt;
&lt;br /&gt;
== Presentaciones, tutoriales, etc ==&lt;br /&gt;
* [http://purl.org/net/inkel/2003/01/27/foaf.html Tutorial sobre FOAF] traducido por Leandro Mariano López ([[InKel]])&lt;br /&gt;
* [http://www.w3.org/2002/Talks/1024-sidar/slide1-0.html Una presentación en español sobre unos aspectos de la Web Semántica] --CMN 2003-02-11.&lt;br /&gt;
* [http://purl.org/net/inkel/2003/02/10/scutter-howto.html RDFWeb Scutter HOWTO / guía para el desarrollador] traducción al español por Leandro Mariano López ([[InKel]]).&lt;br /&gt;
* [http://www.malditainternet.com/index.php?section=article&amp;amp;sid=107 Qué es RDF]&lt;br /&gt;
&lt;br /&gt;
== Articulos ==&lt;br /&gt;
* [http://rayuela.uc3m.es/~mendez/publicaciones/7jc99/rdf.htm RDF: Un modelo de metadatos flexible para las bibliotecas digitales &lt;br /&gt;
del próximo milenio] del año 1999 con [http://www.cobdc.org/7es/1.pdf versión&lt;br /&gt;
en PDF]&lt;br /&gt;
* [http://rayuela.uc3m.es/~mendez/publicaciones/fesabid00/fesabid002.pdf Metadatos y Tesauros: aplicación de XML/RDF a los sistemas de&lt;br /&gt;
organización del conocimiento en Intranets] del año 2000, en versión PDF&lt;br /&gt;
* [http://exlibris.usal.es/merlo/escritos/bilbao2.htm Localización, descripción e identificación de documentos web:&lt;br /&gt;
tentativas hacia la normalización] del año 2000, con [http://rayuela.uc3m.es/~mendez/publicaciones/fesabid00/fesabid001.pdf versión PDF].&lt;br /&gt;
&lt;br /&gt;
== Discussiones ==&lt;br /&gt;
&lt;br /&gt;
[http://www.purl.org/net/ws-blog/ Blog de la Web Semántica]&lt;br /&gt;
&lt;br /&gt;
[http://www.google.com/search?sourceid=navclient&amp;amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;amp;q=site:www.citnames.com+Spain+Spanish Google de 'Semantic Weblog' + &amp;quot;Spain&amp;quot; + &amp;quot;Spanish&amp;quot;]&lt;br /&gt;
(este sitio debe aparecer en unos días)&lt;br /&gt;
&lt;br /&gt;
En la lista [http://yahoogroups.com/group/accesoweb accesoweb - ajolado por yahoogroups] hay una discusión empezada el 10 febrero por alguien interesado en qué es la web semantica, y cómo se puede ser útil.&lt;br /&gt;
&lt;br /&gt;
Accesoweb es una lista en castellano (más o menos - he visto también catalán allí) sobre problemas y soluciones para el acceso a la red por personas con discapacidades.&lt;br /&gt;
&lt;br /&gt;
== Otras cosas... ==&lt;br /&gt;
&lt;br /&gt;
Ahora es posible [http://www.w3.org/2001/sw/Europe/200305/foaflang buscar personas por idioma hablada] (queien tienen informacion rdf publicado para decirlo...)&lt;br /&gt;
&lt;br /&gt;
== Otras Idiomas ==&lt;br /&gt;
&lt;br /&gt;
Nearby: [[SemWebGermany]] - en aleman&lt;br /&gt;
Nearby: [[SemWebItaly]] - en italiano&lt;br /&gt;
&lt;br /&gt;
Nearby: [[MultiLingual]]&lt;/div&gt;</description>
			<pubDate>Fri, 13 Jun 2003 09:55:04 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebSpain</comments>		</item>
		<item>
			<title>SemWebSpain</title>
			<link>http://www.w3.org/wiki/SemWebSpain</link>
			<description>&lt;p&gt;Charles:&amp;#32;Reorganizada, ahora es solo en español&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
Esta pagina es una partida del trabajo [[MultiLingual]] del proyecto.&lt;br /&gt;
&lt;br /&gt;
Proyectos y materias en español o en España sobre la Web Semántica&lt;br /&gt;
&lt;br /&gt;
== Especificaiones ==&lt;br /&gt;
&lt;br /&gt;
   +[http://www.sidar.org/recur/desdi/traduc/es/rdf/rdfesp.htm RDF: Especificación del Modelo y la Sintaxis 1.0] traducido por Eva Mendez&lt;br /&gt;
   +[http://purl.org/net/inkel/rdf/schemas/lang/ Esquema: Habla, Lee y Escribe] para aquellas personas buscando un metodo de expresar en que lenguajes pueden comunicarse con alguien mas. Por [[InKel]]&lt;br /&gt;
&lt;br /&gt;
== Presentaciones, tutoriales, etc ==&lt;br /&gt;
   +[http://purl.org/net/inkel/2003/01/27/foaf.html Tutorial sobre FOAF] traducido por Leandro Mariano López ([[InKel]])&lt;br /&gt;
   +[http://www.w3.org/2002/Talks/1024-sidar/slide1-0.html Una presentación en español sobre unos aspectos de la Web Semántica] --CMN 2003-02-11.&lt;br /&gt;
   +[http://purl.org/net/inkel/2003/02/10/scutter-howto.html RDFWeb Scutter HOWTO / guía para el desarrollador] traducción al español por Leandro Mariano López ([[InKel]]).&lt;br /&gt;
   +[http://www.malditainternet.com/index.php?section=article&amp;amp;sid=107 Qué es RDF]&lt;br /&gt;
&lt;br /&gt;
== Discussiones ==&lt;br /&gt;
&lt;br /&gt;
[http://www.purl.org/net/ws-blog/ Blog de la Web Semántica]&lt;br /&gt;
&lt;br /&gt;
[http://www.google.com/search?sourceid=navclient&amp;amp;ie=UTF-8&amp;amp;oe=UTF-8&amp;amp;q=site:www.citnames.com+Spain+Spanish Google de 'Semantic Weblog' + &amp;quot;Spain&amp;quot; + &amp;quot;Spanish&amp;quot;]&lt;br /&gt;
(este sitio debe aparecer en unos días)&lt;br /&gt;
&lt;br /&gt;
En la lista [http://yahoogroups.com/group/accesoweb accesoweb - ajolado por yahoogroups] hay una discusión empezada el 10 febrero por alguien interesado en qué es la web semantica, y cómo se puede ser útil.&lt;br /&gt;
&lt;br /&gt;
Accesoweb es una lista en castellano (más o menos - he visto también catalán allí) sobre problemas y soluciones para el acceso a la red por personas con discapacidades.&lt;br /&gt;
&lt;br /&gt;
== Otras cosas... ==&lt;br /&gt;
&lt;br /&gt;
Ahora es posible [http://www.w3.org/2001/sw/Europe/200305/foaflang buscar personas por idioma hablada] (queien tienen informacion rdf publicado para decirlo...)&lt;br /&gt;
&lt;br /&gt;
== Otras Idiomas ==&lt;br /&gt;
&lt;br /&gt;
Nearby: [[SemWebGermany]] - en aleman&lt;br /&gt;
Nearby: [[SemWebItaly]] - en italiano&lt;br /&gt;
&lt;br /&gt;
Nearby: [[MultiLingual]]&lt;/div&gt;</description>
			<pubDate>Fri, 13 Jun 2003 09:47:06 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:SemWebSpain</comments>		</item>
		<item>
			<title>EmbeddingRDFinHTML</title>
			<link>http://www.w3.org/wiki/EmbeddingRDFinHTML</link>
			<description>&lt;p&gt;Charles:&amp;#32;What publishing facility do people have?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
In the beginning, there was the HTML meta element.&lt;br /&gt;
Then came PICS, which could be carried inside meta elements.&lt;br /&gt;
Then came RDF, in some ways a generalization of PICS, written in XML,&lt;br /&gt;
and XHTML, also written in XML. Whence comes the question...&lt;br /&gt;
&lt;br /&gt;
''How do I put RDF in my HTML document?''&lt;br /&gt;
* [http://www.w3.org/TR/1999/REC-rdf-syntax-19990222/#transport appendix B of the 1999 RDF spec] suggests sticking RDF in the head of an HTML document, but the result doesn't conform to the XHTML specs. (more in [http://infomesh.net/2002/rdfinhtml/#embedNoValidate Part I of RDF in HTML: Approaches])&lt;br /&gt;
* The initial [[CreativeCommons]] deployment involves putting RDF inside comments inside HTML. Blech!&lt;br /&gt;
* stick the RDF/XML in the XHTML document, and build a modular DTD (details in [http://infomesh.net/2002/rdfinhtml/#embedAndValidate Part II of RDF in HTML: Approaches])&lt;br /&gt;
* make a separate RDF file and link to it&lt;br /&gt;
* [[AnswerMe]]. ''each of these ideas seems to fall short in some way that's critical to some constituency.''&lt;br /&gt;
&lt;br /&gt;
What sort of RDF metadata do folks want to put in their HTML documents, anyway?&lt;br /&gt;
&lt;br /&gt;
* bibliographic metdata; e.g. [[DublinCore]] (see also: [http://www.w3.org/2000/06/dc-extract/form DC extraction service]&lt;br /&gt;
* rights metdata; e.g. [[CreativeCommons]]&lt;br /&gt;
* geographic info: [http://ilrt.org/discovery/chatlogs/rdfig/2003-04-30#T16-10-36 discussion of geourl, HTML meta, and RDF]&lt;br /&gt;
* news; e.g. [http://www.w3.org/2000/08/w3c-synd/ site summaries]&lt;br /&gt;
* all kinds of RDF that people develop, but can only put onto their geocities or semi-controlled HTML web pages&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
references, newest first:&lt;br /&gt;
&lt;br /&gt;
* [http://lists.w3.org/Archives/Public/public-rdf-in-xhtml-tf/ public-rdf-in-xhtml-tf] started May 21 2003&lt;br /&gt;
* [http://www.w3.org/2003/03/rdf-in-xml.html RDF in XHTML] tasks approaches from Joseph Reagle&lt;br /&gt;
* [http://ilrt.org/people/cmdjb/2003/05/iswc/paper.html paper on revising of RDF/XML] by Dave Beckett including known problems, requirements for new syntaxes, analysis of existing work.&lt;br /&gt;
* [http://www.w3.org/MarkUp/Group/2003/WD-xhtml2-20030506/mod-meta.html#sec XHTML Metainformation Module] in XHTML2 WD draft.&lt;br /&gt;
* [http://www.w3.org/2001/sw/meetings/tech-200303/#s-rdf-html RDF and HTML] session in the March 2003 Semantic Web Architecture meeting in Cambridge&lt;br /&gt;
* [http://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20030123/#section-rdf-in-HTML|Using RDF/XML with HTML and XHTML] in the RDF Syntax WD (January 2003)&lt;br /&gt;
* [[TagIssue]]:RDFinXHTML-35&lt;br /&gt;
* [http://infomesh.net/2002/rdfinhtml/ RDF in HTML: Approaches], May 2002 by Sean B.&lt;br /&gt;
* [http://www.w3.org/DesignIssues/Syntax.html A strawman Unstriped syntax for RDF in XML] esp section &amp;quot;RDF in HTML - Transparent or not?&amp;quot;, Jun 1999 by TimBL&lt;br /&gt;
* [http://www.w3.org/TR/1999/REC-rdf-syntax-19990222/#transport appendix B to 1999 RDF spec]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Category:Faq]], [[ProxyTopic]]&lt;br /&gt;
&lt;br /&gt;
evidence that this is a real FAQ: [http://ilrt.org/discovery/chatlogs/rdfig/2003-05-12#T16-18-53 discussion 12May] although that question was where was the justification.  Answer: in the RDF Model and Syntax spec appendix B.&lt;/div&gt;</description>
			<pubDate>Fri, 30 May 2003 09:31:07 GMT</pubDate>			<dc:creator>Charles</dc:creator>			<comments>http://www.w3.org/wiki/Talk:EmbeddingRDFinHTML</comments>		</item>
	</channel>
</rss>