<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<feed xmlns="http://www.w3.org/2005/Atom">

	<title>Web of Devices - W3C</title>
	<link rel="self" href=""/>
	<link href="http://www.w3.org/standards/webofdevices/"/>
	<id></id>
	<generator uri="http://www.planetplanet.org/">Planet/2.0 +http://www.planetplanet.org</generator>

	<entry>
		<title type="html">New article: Unicode Bidirectional Algorithm basics</title>
		<link href="http://www.w3.org/blog/International/2013/04/29/new-article-unicode-bidirectional-algorithm-basics/"/>
		<id>http://www.w3.org/blog/International/2013/04/29/new-article-unicode-bidirectional-algorithm-basics/</id>
                <updated>2013-04-29T19:14:49+00:00</updated>
		<content type="html">&lt;p&gt;&lt;cite&gt;&lt;a href=&quot;http://www.w3.org/International/articles/inline-bidi-markup/uba-basics&quot;&gt;Unicode Bidirectional Algorithm basics&lt;/a&gt;&lt;/cite&gt; is a repackaging of the initial part of &amp;#8220;What you need to know about the bidi algorithm and inline markup&amp;#8221; as a standalone article. It provides a gentle introduction to the behaviour of the Unicode Bidirectional Algorithm, and helps you understand why bidirectional text in Arabic, Hebrew, Thaana, Urdu, etc. behaves the way it does.&lt;/p&gt;</content>
		<author>
			<name>Internationalization Activity Blog » w3cWebOfDevices</name>
			<uri>http://www.w3.org/blog/International</uri>
		</author>
		<source>
			<title type="html">Internationalization Activity Blog » w3cWebOfDevices</title>
			<link rel="self" href="http://www.w3.org/blog/International/category/w3cwebofdevices/feed/rdf/"/>
			<id>http://www.w3.org/blog/International/category/w3cwebofdevices/feed/rdf/</id>
		</source>
	</entry>

	<entry>
		<title type="html">Interview: Demonstrating Web Apps at Mobile World Congress 2013</title>
		<link href="http://www.w3.org/QA/2013/04/interview_demonstrating_web_ap.html"/>
		<id>tag:www.w3.org,2013:/QA//1.9796</id>
                <updated>2013-04-19T18:03:49+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;&lt;a href=&quot;http://www.w3.org/2013/MWC/&quot;&gt;&lt;img src=&quot;https://www.w3.org/2013/MWC/photos/domdemo.jpg&quot; alt=&quot;Dominique Hazael-Massieux demonstrating Web apps at Mobile World Congress 2013&quot; /&gt;&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;For &lt;a href=&quot;https://www.w3.org/2013/MWC/&quot;&gt;Mobile World Congress 2013&lt;/a&gt;, W3C worked with several developers 
including Tomomi Imura (Nokia), Steren Giannini (Joshfire), and Dominique (Dom)
Hazaël-Massieux (W3C) on
two Web applications to demonstrate some of the new capabilities of
HTML5 and related technology. I asked some of them about their
experiences creating a camera app, a photo gallery app, and the
server-side technology to stitch them together. The resulting demo
worked as follows:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The camera app takes pictures, displays them on the camera, and can
post them to various sites, including W3C's own server.&lt;/li&gt;
&lt;li&gt;The W3C server receives the photos and publishes a feed that is
updated as new photos arrive.&lt;/li&gt;
&lt;li&gt;The gallery app reads the feed and displays the photos useful on a
variety of devices, in our case: smartphone, tablet, television, and laptop.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The camera project began in the &lt;a href=&quot;http://www.w3.org/community/coremob/&quot;&gt;Core Mobile Web (Coremob) Community
Group&lt;/a&gt; as a way to illustrate both the current capabilities and
limitations of the Open Web Platform (OWP).&lt;/p&gt;

&lt;p&gt;Ian: Tomomi, when did this project start?
&lt;/p&gt;

&lt;p&gt;Tomomi: Originally, the app was nothing more than a prototype I wrote
for fun.  John Kneeland, from Nokia also wanted to work an app that
would showcase the capabilities of the OWP. The Coremob CG seemed like
the right venue, and we developed &lt;a href=&quot;https://github.com/coremob/camera/blob/master/README.md&quot;&gt;the
specs&lt;/a&gt; in the fall of 2012, shortly before a Coremob face-to-face meeting.
&lt;/p&gt;

&lt;p&gt;Ian: The Open Web Platform intends to lower the cost of cross-device
development (see the related &lt;a href=&quot;http://www.w3.org/QA/2013/02/interview_todd_anglin.html&quot;&gt;interview
with Todd Anglin on the Kendo UI survey&lt;/a&gt;). As you built the camera
app, what did you find was relatively easy to make work across
devices? What was difficult (and how did you solve it)?&lt;/p&gt;

&lt;p&gt;Tomomi: Creating a user interface that is platform independent is one
of the keys to cross-platform development.  When I created the UI for
the camera app, I designed it to be independent of the platform's
look-and-feel, so a common CSS was all I needed. Non-trivial CSS works
fine on all targeted smartphone browsers so I can say that designing
the UI was the easiest part. Also, canvas works as expected on most
browsers so I did not need extra workaround to support cross-platform.
&lt;/p&gt;

&lt;p&gt;However, to be honest, it was not as easy to make it cross-platform as
I initially expected. A big reason is that the app was meant to
showcase new features, which means it relies on new Web technologies
that are in the early phases of standardization and not yet broadly
interoperable. I found there was no browser that implemented correctly
all the APIs I used in the app. In particular, I struggled to use
IndexedDB to write photos to local storage. At the time I was coding,
only Firefox and IE10 had implemented IndexedDB according to
specification.  Chrome 18 (was the released version at that time. Now,
finally Chrome 25 is out of beta) supports basic IndexedDB, but was
using an older version of the specification with no blob support for
the database. I had to write extra code to make the demo work on
Chrome.
&lt;/p&gt;

&lt;p&gt;Beside the workaround code, I used PhoneGap for Windows Phone 8
because IE10 for mobile lacks HTML Media Capture capability, although
all other features worked fine. This is a hybrid app that, I think,
is useful for illustrating how to work with HTML5 in a transitional
mode where features not yet available on certain platforms.
&lt;/p&gt;

&lt;p&gt;Ian: What would you like to do next with the camera app?  It's an open
source project - are you looking for help from the community on
specific aspects?
&lt;/p&gt;

&lt;p&gt;Tomomi: We have a bunch of things in the pipeline, notably writing
tutorials on all aspects of building this app (like providing camera
access using HTML media capture, storing pics in IndexedDB, etc.). We
also have a nice table with all the key features required to build
this app and how well (or poorly) they are supported in different
browsers. I definitely want to share our experience in more detail
with developers. Before doing that, I plan to simplify some of the
code (to remove some hacks). This will cause more browser
incompatibility, but my goal is not to promote hacks and tricks, but
rather working with Web standards.
&lt;/p&gt;

&lt;p&gt;Ian: Steren, Joshfire volunteered to be part of
this project because you already had a Web-based gallery app. What has
been your experience so far (generally) getting your app to work
across different devices? In particular, the app works on some
televisions. What has been your experience so far with Web technology
on televisions?
&lt;/p&gt;

&lt;p&gt;Steren: Joshfire is creating tools to build applications for today's
devices and the ones coming tomorrow. For us, Web technologies are the
logical solution to build a multi-device application that is sharing
the same codebase on all these devices.  The Web Gallery was developed
under this model: 80% of the code is shared by all the versions of the
app, and the remaining 20% is just for layout adaptation, view
hierarchies, and user interactions.
&lt;/p&gt;

&lt;p&gt;Web technologies have been selected by TV manufacturers as the
official tool to build applications for connected TV. That's a good
thing and their browsers are now getting better. It was not the case
in 2011, where some TV browsers had critical bugs and suffered from
major performance issues. Today, it is more easy to develop for TV, I
would say it is similar to mobile web development.
&lt;/p&gt;

&lt;p&gt;Ian: From your perspective, what are the priority features of the Open
Web Platform where you think we need to make progress in order to
close the gap with native platforms?
&lt;/p&gt;

&lt;p&gt;Steren: I think developers need features, frameworks and documentation
that will help them to build rich client side applications more
easily. And to close the gap with native platforms, they also need to
be able to access device specific sensors and features (as enabled by
projects like Phonegap).  Native platforms have application ecosystems
that are more than simple URLs: they ask permissions, install locally
and auto-update in background. I think the Open Web Platform should
provide the same mechanisms.  An important priority is also to
identify browser problems in the implementation of the
specifications. Today, developers notice too many implementation
differences that do not appear to be a priority for browser
manufacturers.
&lt;/p&gt;

&lt;p&gt;Ian: Dom, you built the server that hosted
the camera and the gallery apps. What were your priorities in
building the server? What solutions did you adopt?
&lt;/p&gt;

&lt;p&gt;Dom: As in any other project, my priority was to do as little as
needed. In this case, the server mostly had to act as a go-between for
the camera and gallery apps, receiving pictures from the former to
display with with the latter.
&lt;/p&gt;

&lt;p&gt;I chose to develop a node.js-based solution, since I was confident it
would let me assemble the various pieces I needed easily; also, one of
the features that we were likely to use, Server-Sent-Events, is much
easier to implement in an asynchronous environment such as the one
provided by node.js.
&lt;/p&gt;

&lt;p&gt;Ian: We set up this apps to run in a local environment (that is, not
on the Web). If we wanted to make available a Web version of these
apps, what would you have to change in the server configuration? How
would you deal with security? Privacy?  Flooding our server with
photos?
&lt;/p&gt;

&lt;p&gt;Dom: There are two options for having the app run in an open
environment:
&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Put some sort of access control in front of the upload feature,
 where only selected users would be allowed to upload pictures, or&lt;/li&gt;
&lt;li&gt;Put some sort of moderation in place so that any picture would
 need to be validated before being pushed to the gallery.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The first approach would require some changes in the camera app and
the server-side component. The second would require a new client-side
component, and would also benefit from different kinds of Denial of
Service attack protection (e.g., rate limiting the number of pictures
that can be uploaded, using techniques to avoid robot-based
submissions, etc.).
&lt;/p&gt;

&lt;p&gt;I would probably handle privacy issues at a different layer. We would
need a policy and a process to determine when and how a given picture
can be posted (e.g., asking the submitted to vouch they're not posting
a picture of someone without their agreement), and how pictures could
be taken down.
&lt;/p&gt;

&lt;p&gt;Ian: Thank you all for the insights, and good luck with the evolution
of these apps!&lt;/p&gt;</content>
		<author>
			<name>Ian Jacobs</name>
			<uri>http://www.w3.org/Mobile/</uri>
		</author>
		<source>
			<title type="html">Mobile Web @ W3C - W3C</title>
			<link rel="self" href="http://www.w3.org/Mobile/mobile-aggregation/atom.xml"/>
			<id>http://www.w3.org/Mobile/atom.xml</id>
		</source>
	</entry>

	<entry>
		<title type="html">W3C Workshop on eBooks &amp;amp; Internationalization announced</title>
		<link href="http://www.w3.org/blog/International/2013/04/09/w3c-workshop-on-ebooks-internationalization-announced/"/>
		<id>http://www.w3.org/blog/International/2013/04/09/w3c-workshop-on-ebooks-internationalization-announced/</id>
                <updated>2013-04-09T16:49:41+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;https://www.w3.org/2013/06/ebooks/&quot;&gt;eBooks &amp;amp; i18n: Richer Internationalization for eBooks&lt;/a&gt; on 4 June 2013 in Tokyo, Japan, will investigate international functionality that needs to be added to the Open Web Platform. The Open Web Platform includes core W3C technologies such as HTML, CSS, SVG, XML, XSLT, XSL-FO, PNG, RDF, and many more, that are  used extensively in eBooks and eBook production.&lt;/p&gt;
&lt;p&gt;The goal is to make the various eBook reading platforms suitable for electronic books that use the printing and typesetting traditions of different cultures. If you are interested in participating, please submit a position paper by 30 April 2013. See the &lt;a href=&quot;https://www.w3.org/2013/06/ebooks/&quot;&gt;Call for Participation&lt;/a&gt; for details.&lt;/p&gt;</content>
		<author>
			<name>Internationalization Activity Blog » w3cWebOfDevices</name>
			<uri>http://www.w3.org/blog/International</uri>
		</author>
		<source>
			<title type="html">Internationalization Activity Blog » w3cWebOfDevices</title>
			<link rel="self" href="http://www.w3.org/blog/International/category/w3cwebofdevices/feed/rdf/"/>
			<id>http://www.w3.org/blog/International/category/w3cwebofdevices/feed/rdf/</id>
		</source>
	</entry>

	<entry>
		<title type="html">Indic Layout Task Force created</title>
		<link href="http://www.w3.org/blog/International/2013/04/03/indic-layout-task-force-created/"/>
		<id>http://www.w3.org/blog/International/2013/04/03/indic-layout-task-force-created/</id>
                <updated>2013-04-03T20:02:55+00:00</updated>
		<content type="html">&lt;p&gt;An &lt;a href=&quot;http://www.w3.org/International/groups/indic-layout/&quot;&gt;Indic Layout Task Force&lt;/a&gt; has just been announced, as part of the W3C Internationalization Activity. Similar to the very successful Japanese Layout Task Force, the Indic group will provide input to the W3C Open Web Platform related to Indic Languages and Layout. &lt;/p&gt;
&lt;p&gt;This task force will gather and integrate feedback from the participating members about the needs and technical feasibility of Indic requirements, and will report the results of its activities as a group back to the Internationalization Core Working Group, as well as to other relevant groups and to the W3C membership and community.&lt;/p&gt;
&lt;p&gt;The chair of the Task Force is Swaran Lata, the contact person at the Indian Office of W3C is Somnath Chandra, and the Staff Contact is Richard Ishida. See the &lt;a href=&quot;http://www.w3.org/International/groups/indic-layout/&quot;&gt;home page&lt;/a&gt; for more information.&lt;/p&gt;
&lt;p&gt;In order to participate in, or follow, the work of the Task Force, please &lt;a href=&quot;mailto:public-i18n-indic-request@w3.org?subject=subscribe&quot;&gt;subscribe&lt;/a&gt; to the &lt;a href=&quot;http://lists.w3.org/Archives/Public/public-i18n-indic/&quot;&gt;mailing list&lt;/a&gt; of the Task Force. You therewith also become a member of the &lt;a href=&quot;http://www.w3.org/International/ig/&quot;&gt;Internationalization Interest Group&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>Internationalization Activity Blog » w3cWebOfDevices</name>
			<uri>http://www.w3.org/blog/International</uri>
		</author>
		<source>
			<title type="html">Internationalization Activity Blog » w3cWebOfDevices</title>
			<link rel="self" href="http://www.w3.org/blog/International/category/w3cwebofdevices/feed/rdf/"/>
			<id>http://www.w3.org/blog/International/category/w3cwebofdevices/feed/rdf/</id>
		</source>
	</entry>

	<entry>
		<title type="html" xml:lang="en">Seeking entrepreneurs in Senegal to follow mobile services training course</title>
		<link href="http://mobiwebapp.eu/2013/03/18/seeking-entrepreneurs-in-senegal-to-follow-mobile-services-training-course/"/>
		<id>http://mobiwebapp.eu/?p=1024</id>
                <updated>2013-03-18T14:11:39+00:00</updated>
		<content type="html" xml:lang="en">&lt;p id=&quot;page-title&quot;&gt;&lt;strong&gt;Mobile Entrepreneurs Senegal seeks brilliant and motivated entrepreneurs for its second training course&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.entrepreneursmobile.org/&quot;&gt;Mobile Entrepreneurs Senegal&lt;/a&gt; (MES) is pleased to call for applications from interested individuals/teams seeking to be trained as mobile entrepreneurs, who would develop relevant local mobile applications for the Senegalese communities. MES is a group of mobile entrepreneurs and people interested in the opportunity that the mobile and Web technologies offer to the new generations.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Are you passionate about mobile technologies? Do you have an idea for a new web or mobile service that could change Senegal, Africa and the world? Do you want to become an entrepreneur, but you don’t know exactly how to do it? This is the opportunity for you.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The training program will &lt;strong&gt;start on 1st April 2013&lt;/strong&gt; and will provide tuition, covering subjects ranging from creating mobile applications to putting it to market. We are looking for entrepreneurs who are passionate about leveraging mobile phone technology to develop applications that will bring useful service to local communities and create prosperous businesses.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;The number of seats is limited to 25. &lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Please &lt;/strong&gt;&lt;a title=&quot;Link to the registration page for the training course&quot; href=&quot;https://docs.google.com/spreadsheet/viewform?formkey=dFlBLUdjYU9GTXNxdmszOWdRalZDOEE6MQ#gid=0&quot;&gt;register soon&lt;/a&gt; (the registration form is in French).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Registration fee is 15,000 XOF&lt;/strong&gt; (approx 30 US$ or 23€)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;More details on the training:&lt;br /&gt;
&lt;/strong&gt;(the detailed call for participation is available in &lt;a href=&quot;http://mvoices.eu/mes/call-for-participation&quot;&gt;English&lt;/a&gt; and in &lt;a href=&quot;http://mvoices.eu/fr/ems/candidature&quot;&gt;French&lt;/a&gt;)&lt;strong&gt;&lt;br /&gt;
&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The training will take place &lt;strong&gt;from April 1 to May 4, 2013&lt;/strong&gt; alternating between face to face sessions and remote sessions (through the &lt;a href=&quot;http://w3devcampus.com/&quot;&gt;W3DevCampus online training platform&lt;/a&gt;). Face to face training sessions will take place at Ecole Supérieure Polytechnique (UCAD).&lt;/p&gt;
&lt;p&gt;After the training there will be a period of support and mentoring, during which the trainers will provide support for the development of project prototypes, or for starting new projects following the training.&lt;/p&gt;
&lt;p&gt;In May, the participants will have the opportunity to present their project to a panel of international industry experts.&lt;/p&gt;
&lt;p&gt;The training is split into three tracks:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Technology track&lt;/strong&gt;: Voice, SMS, Mobile Web services and applications, prototyping platforms, intro to HTML5 and Web accessibility;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Business track&lt;/strong&gt;: business models, revenue, dealing with operators, intellectual property;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Design track&lt;/strong&gt;: understanding your customers, structuring your service, making your service useful, usable, and engaging.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;About &lt;strong&gt;Mobile Entrepreneurs Senegal&lt;/strong&gt;:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;MES is a project started by the Web Foundation, TNO, PT Inovação, CRS4 and ESMT as part of the European Commission project &lt;a href=&quot;http://mvoices.eu/&quot;&gt;VOICES&lt;/a&gt;. Mobile Entrepreneurs Senegal is actively supported by W3C and Orange Labs.&lt;/p&gt;
&lt;br /&gt;  &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/mobiwebappw3c.wordpress.com/1024/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/mobiwebappw3c.wordpress.com/1024/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=mobiwebapp.eu&amp;blog=14776567&amp;post=1024&amp;subd=mobiwebappw3c&amp;ref=&amp;feed=1&quot; width=&quot;1&quot; height=&quot;1&quot; /&gt;</content>
		<author>
			<name>ercimomweb</name>
			<uri>http://www.w3.org/Mobile/</uri>
		</author>
		<source>
			<title type="html">Mobile Web @ W3C - W3C</title>
			<link rel="self" href="http://www.w3.org/Mobile/mobile-aggregation/atom.xml"/>
			<id>http://www.w3.org/Mobile/atom.xml</id>
		</source>
	</entry>

	<entry>
		<title type="html">Metadata for the Multilingual Web – Usage Scenarios and Implementations Draft Published</title>
		<link href="http://www.w3.org/blog/International/2013/03/07/metadata-for-the-multilingual-web-usage-scenarios-and-implementations-draft-published/"/>
		<id>http://www.w3.org/blog/International/2013/03/07/metadata-for-the-multilingual-web-usage-scenarios-and-implementations-draft-published/</id>
                <updated>2013-03-07T17:30:36+00:00</updated>
		<content type="html">&lt;p&gt;The &lt;a href=&quot;http://www.w3.org/International/multilingualweb/lt/&quot;&gt;MultilingualWeb-LT Working Group&lt;/a&gt; published a First Public Working Draft of &lt;a href=&quot;http://www.w3.org/TR/2013/WD-mlw-metadata-us-impl-20130307/&quot;&gt;Metadata for the Multilingual Web &amp;#8211; Usage Scenarios and Implementations&lt;/a&gt;. This document introduces a variety of usage scenarios and applications for the &lt;a&gt;&lt;/a&gt;Internationalization Tag Set (ITS) 2.0&lt;/p&gt;, ranging from simple machine translation or human translation quality check to training for machine translation systems or automatic text analyis. Many of the underlying implemementations will be showcased in the upcoming &lt;a href=&quot;http://www.multilingualweb.eu/rome-showcase&quot;&gt;W3C MultilingualWeb Workshop&lt;/a&gt; 12-13 March in Rome.</content>
		<author>
			<name>Internationalization Activity Blog » w3cWebOfDevices</name>
			<uri>http://www.w3.org/blog/International</uri>
		</author>
		<source>
			<title type="html">Internationalization Activity Blog » w3cWebOfDevices</title>
			<link rel="self" href="http://www.w3.org/blog/International/category/w3cwebofdevices/feed/rdf/"/>
			<id>http://www.w3.org/blog/International/category/w3cwebofdevices/feed/rdf/</id>
		</source>
	</entry>

	<entry>
		<title type="html">Is it time for open standards for web payments?</title>
		<link href="http://www.w3.org/QA/2013/03/is_it_time_for_open_standards.html"/>
		<id>tag:www.w3.org,2013:/QA//1.9747</id>
                <updated>2013-03-07T14:41:34+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;On native app stores, developers find it comparatively easy to bill users, either when they first install the app, or later with in-app billing for digital content. For web apps, developers are faced with a plethora of proprietary solutions often with a clumsy user experience, and to make matters worse, ads, the mainstay of desktop apps, don't work as well on mobile. Is it now time to consider work on standard ways to transfer money, demonstrate proof-of-purchase, and meet other payment needs?&lt;/p&gt;

&lt;p&gt;As part of the &lt;a href=&quot;http://www.w3.org/wiki/Headlights2013#Web_Payments&quot;&gt;headlights 2013 exercise&lt;/a&gt;, W3C is now conducting a study with a view to gaining a better understanding about the potential for open standards for web payments. We plan to report back to the W3C Advisory Committee in June/July, and will probably follow up with a workshop later this year.&lt;/p&gt;

&lt;p&gt;We expect to collect information on the &lt;a href=&quot;http://www.w3.org/wiki/Payments_Task_Force&quot;&gt;payments task force wiki&lt;/a&gt; and to prepare a questionnaire for web developers, as well as to seek input from a broad range of stakeholders. At this point, it tentatively looks like we need an API that is payment solution neutral, and as such can be built on top of existing (or new) payment technologies. In principle, this should allow for such things as proof of purchase, pre-paid vouchers, discount coupons, NFC for touch based payments, person to person payments, offline payments and so forth. The scope of any standards work that may follow is likely to start with a narrow focus, but it is valuable to get a broader understanding of the potential.&lt;/p&gt;

&lt;p&gt;The &lt;a href=&quot;http://www.w3.org/wiki/Payments_Task_Force&quot;&gt;Web Payments Task Force&lt;/a&gt; is open to all, and we invite help from people with relevant expertise and an interest in realizing open standards for web payments. We're interested in help in understanding the ecosystem, figuring the best way to reach out to developer's and other key ecosystem stakeholders, and to provide insightful analysis on the path forward.  If you want to contribute, please subscribe to the mailing list, and help us to gather information and organize it on the wiki.&lt;/p&gt;</content>
		<author>
			<name>Dave Raggett</name>
			<uri>http://www.w3.org/Mobile/</uri>
		</author>
		<source>
			<title type="html">Mobile Web @ W3C - W3C</title>
			<link rel="self" href="http://www.w3.org/Mobile/mobile-aggregation/atom.xml"/>
			<id>http://www.w3.org/Mobile/atom.xml</id>
		</source>
	</entry>

	<entry>
		<title type="html">Closing the gap with native apps</title>
		<link href="http://www.w3.org/QA/2013/03/closing_the_gap_with_native_ap.html"/>
		<id>tag:www.w3.org,2013:/QA//1.9746</id>
                <updated>2013-03-06T14:12:47+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/futureshape/566200801/&quot; title=&quot;Mind/the/gap by futureshape, on Flickr&quot;&gt;&lt;img src=&quot;http://farm2.staticflickr.com/1205/566200801_89ede04e1f_m.jpg&quot; width=&quot;240&quot; height=&quot;180&quot; alt=&quot;Mind/the/gap&quot; /&gt;&lt;br /&gt; &lt;cite&gt;Mind/the/gap&lt;/cite&gt; by futureshape&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;        I was last week at Mobile World Congress, one of the world
        biggest events dedicated to mobile, and it was great to see so much enthusiasm on the role that HTML5, and by extension the
        Web, can play on mobile devices.&lt;/p&gt;

&lt;p&gt; &lt;a href=&quot;http://www.w3.org/html/logo/&quot;&gt;HTML5 logos&lt;/a&gt; plastering
       booths, developers hunting for our &quot;HTML5 everywhere&quot;
       t-shirts, the large number of people that stopped by at &lt;a href=&quot;https://www.w3.org/2013/MWC/&quot;&gt;our booth&lt;/a&gt; to learn how
       they can be involved, and the various announcements on Web-based
       operating systems (FirefoxOS, Tizen) all reinforced the Web's importance
      on mobile.&lt;/p&gt;

 
&lt;p&gt;    A lot of the visitors at our booth had questions on the state of
     various APIs or technologies they need. Every quarter I publish
     answers to those questions in an &lt;a href=&quot;http://www.w3.org/2013/02/mobile-web-app-state/&quot;&gt; overview of Web apps 
    technologies most relevant to mobile&lt;/a&gt;. Yesterday I updated the
    report, which I hope will allow all those interested in Web and mobile to 
    track the abundant work happening in the field.&lt;/p&gt;

 
&lt;p&gt;        Yet, while it was great to see so much energy behind the Web, I
        could not ignore those who were not so enthusiastic:
        the ones that had tried to base their mobile
        development on the Web but failed to do so due to a variety of
        missing features, the ones that are investing in hybrid
        applications but are encountering hard to workaround bugs, the
        ones that have been hampered by specific performance issues in
        implementations, or the many that reported that Web apps are
        much harder to make known and monetize than their native
        counterparts.&lt;/p&gt;
 
&lt;p&gt;        As part of our annual &lt;a href=&quot;http://www.w3.org/QA/2013/01/on_the_w3c_agenda_headlights_2_1.html&quot;&gt;W3C headlights exercise&lt;/a&gt;, I have agreed to lead a task force with the goal of tackling the most important ways in which Web applications lag behind native on mobile.&lt;/p&gt;

&lt;p&gt; Our goal is to take a broad view of that gap, identify where the Web platform remains weak, define where its strengths lie compared to other platforms, and based on that analysis, propose an action plan to reduce our most critical weaknesses and take greater advantage of our strong points.&lt;/p&gt;
 
&lt;p&gt;        The topic of comparing Web apps and native apps has been
        discussed (and even &lt;a href=&quot;http://www.youtube.com/watch?v=fchbLzwtexk&quot;&gt;sung&lt;/a&gt;) at
        great length; it is certainly not my goal to repeat these
        discussions (and trust me, you don't want me to sing). Nor is my goal to
        eliminate native apps: they've always co-existed with the Web
        (even back when we called them software), and will probably continue do
        so for a long time.&lt;/p&gt;

&lt;p&gt;        But it is also clear that many people would rather take
        advantage of the ability of the Web to reach every device rather
        than develop many versions of the same application, or would
        rather keep control on their link with their users rather than
        abandon it to an intermediary. The recent &lt;a href=&quot;http://www.w3.org/QA/2013/02/interview_todd_anglin.html&quot;&gt;developer survey from Kendo UI&lt;/a&gt; was certainly heartening in that regard. Still, many encounter a number of barriers when they try to do so.&lt;/p&gt;

 
&lt;p&gt;        Some of the barriers that I've heard mentioned frequently include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;performance, in particular when it comes to user interfaces (e.g. scrolling), as it can affect the user experience dramatically; a whole &lt;a href=&quot;http://www.w3.org/wiki/Headlights2013#HTML5_Performance&quot;&gt;headlight project&lt;/a&gt; is actually dedicated to the topic;&lt;/li&gt;
&lt;li&gt;discovery: how can developers expose their Web apps to their potential users? How can users rate and review Web apps? What is the right equivalent of application stores for the Web? How centralized would it be? How does it relate to search engine? How can we make it possible to discover context relevant Web apps?&lt;/li&gt;
&lt;li&gt;developer tools: when native SDKs come with full-fledged IDEs, debuggers, profilers, the experience for Web apps developers remain ad-hoc in the best cases; are there systematic problems in our technologies that have made it hard to build good developers tools? how much of a barrier is the design inconsistency among our technologies that the Web legacy requires us to keep around?&lt;/li&gt;
&lt;li&gt;capabilities (e.g. hardware integration): we have &lt;a href=&quot;http://www.w3.org/2013/02/mobile-web-app-state/&quot;&gt;already a lot of ongoing work&lt;/a&gt; in this space, but are there items that are so important we should dedicate a lot more resources in getting them done faster? Should we boost the efforts such as what the &lt;a href=&quot;http://www.w3.org/community/coremob/&quot;&gt;CoreMob Community Group&lt;/a&gt; has been doing to get greater convergence among implementors on a smaller set of features?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Some of the probably under-used strengths of the Web as a platform would be:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;users don't need to install Web apps, removing the need to &quot;garden our phones&quot; (as I heard &lt;a href=&quot;http://www.lukew.com/ff/entry.asp?1523&quot;&gt;Scott Jenson eloquently put it&lt;/a&gt;), and thus enabling use cases that are out of reach for native apps;&lt;/li&gt;
&lt;li&gt;the Web is pretty much the only contender when it comes to create apps that run in any connected device, and maybe more futuristically, that &lt;a href=&quot;http://www.w3.org/QA/2011/11/from_hypertext_to_hyperdevices.html&quot;&gt;break the device barriers completely&lt;/a&gt; (e.g. in so called multi-screens scenarios).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Part of the difficulty of this problem is that addressing these barriers, and taking advantage of these strengths depends on whether we're
        talking of Web apps inside the browser context (with its
        specific security contraints), Web-based native apps (as defined
        by the &lt;a href=&quot;http://www.w3.org/2012/sysapps/&quot;&gt;W3C System
        Applications Working Group&lt;/a&gt;), or even hybrid apps.&lt;/p&gt;

&lt;p&gt; I have
        started to &lt;a href=&quot;http://www.w3.org/wiki/Closing_the_gap_with_native&quot;&gt;collect a lot of my still messy understanding&lt;/a&gt; in the W3C wiki.&lt;/p&gt;
 
&lt;p&gt;        But the problem is broad enough that I or other people already
        closely involved in W3C are likely to miss some important
        perspectives.&lt;/p&gt;
 
&lt;p&gt;        So, what is it that you would fix to make the Web the best
        platform out there on mobile? How would you fix it? Feel free to
        either &lt;a href=&quot;http://lists.w3.org/Archives/Public/public-closingthegap/&quot;&gt;join our mailing list&lt;/a&gt;, &lt;a href=&quot;mailto:dom@w3.org&quot;&gt;send me mail&lt;/a&gt; or simply post comments to this article if you want to share your views!&lt;/p&gt;</content>
		<author>
			<name>Dominique Hazaël-Massieux</name>
			<uri>http://www.w3.org/Mobile/</uri>
		</author>
		<source>
			<title type="html">Mobile Web @ W3C - W3C</title>
			<link rel="self" href="http://www.w3.org/Mobile/mobile-aggregation/atom.xml"/>
			<id>http://www.w3.org/Mobile/atom.xml</id>
		</source>
	</entry>

	<entry>
		<title type="html">New Unicode FAQ on Private-use Characters, Noncharacters and Sentinels</title>
		<link href="http://www.w3.org/blog/International/2013/03/04/new-unicode-faq-on-private-use-characters-noncharacters-and-sentinels/"/>
		<id>http://www.w3.org/blog/International/2013/03/04/new-unicode-faq-on-private-use-characters-noncharacters-and-sentinels/</id>
                <updated>2013-03-04T14:30:58+00:00</updated>
		<content type="html">&lt;div&gt;&lt;img src=&quot;http://www.w3.org/International/icons/unicode-logo.png&quot; alt=&quot; &quot; /&gt;&lt;/div&gt;
&lt;p&gt;A new &lt;a href=&quot;http://www.unicode.org/faq/private_use.html&quot;&gt;FAQ page&lt;/a&gt; devoted to the topic of private-use characters, noncharacters, and sentinels has been posted on the Unicode web site. This FAQ aims to clear up confusion about whether noncharacters are permitted in Unicode text, and how they differ from ordinary private-use characters. The recently published &lt;a href=&quot;http://www.unicode.org/versions/corrigendum9.html&quot;&gt;Corrigendum #9: Clarification About Noncharacters&lt;/a&gt; makes it clear that noncharacters are permitted even in interchange, and the new FAQ page addresses some of the fine points about their usage and about differences from other types of Unicode code points. The brief mentions of noncharacters in other FAQ pages have also been updated accordingly.&lt;/p&gt;
&lt;p&gt;Are you unclear about what Unicode “noncharacters” even are? The new FAQ page also answers basic questions about noncharacters and private-use characters, and provides a bit of history about how they came to be part of the Unicode Standard.&lt;/p&gt;</content>
		<author>
			<name>Internationalization Activity Blog » w3cWebOfDevices</name>
			<uri>http://www.w3.org/blog/International</uri>
		</author>
		<source>
			<title type="html">Internationalization Activity Blog » w3cWebOfDevices</title>
			<link rel="self" href="http://www.w3.org/blog/International/category/w3cwebofdevices/feed/rdf/"/>
			<id>http://www.w3.org/blog/International/category/w3cwebofdevices/feed/rdf/</id>
		</source>
	</entry>

	<entry>
		<title type="html">Open Data Conference in Paris</title>
		<link href="http://www.w3.org/QA/2012/08/open_data_conference_in_paris.html"/>
		<id>tag:www.w3.org,2012:/QA//1.9543</id>
                <updated>2013-02-18T10:15:34+00:00</updated>
		<content type="html" xml:lang="en">&lt;p&gt;W3C (and friends, like Nigel Shadbolt) will participate in the first edition of the &lt;a href=&quot;http://www.opendata-laconference.com&quot;&gt;Open Data Conference&lt;/a&gt; taking place on September 27, 2012 in Paris, France. This conference brings together an international set of experts to discuss current challenges as well as historical aspects of LOD (Linked Open Data). &lt;/p&gt;

&lt;p&gt;Indeed, all the stars in the &lt;a href=&quot;http://www.w3.org/DesignIssues/LinkedData.html&quot;&gt;Five-Star scheme&lt;/a&gt; have of course benefits but also costs of implementation and design, and developers need to carefully review the situation they're in vs. the situation they want to move to, and how long it will take.&lt;br /&gt;
And more importantly, they need to understand that their customers will expert the level of innovation and modernity requiring five-star datasets.&lt;/p&gt;

&lt;p&gt;The “Open Data and Future Uses” round-table where I'll speak will try to look beyond the current issues facing Open Data deployment today, and imagine new applications.&lt;br /&gt;
What I have in mind for this session is of course opening up the potential of the most advanced semantic Web technologies, involving for instance logic reasonning and a solid trust framework in day-to-day activities.&lt;/p&gt;</content>
		<author>
			<name>Daniel Dardailler</name>
			<uri>http://www.w3.org/Mobile/</uri>
		</author>
		<source>
			<title type="html">Mobile Web @ W3C - W3C</title>
			<link rel="self" href="http://www.w3.org/Mobile/mobile-aggregation/atom.xml"/>
			<id>http://www.w3.org/Mobile/atom.xml</id>
		</source>
	</entry>

</feed>
