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

<channel>
	<title>Sweetch Blog</title>
	<atom:link href="http://sweetch.eutech-ssii.com/feed/lang/en" rel="self" type="application/rss+xml" />
	<link>http://sweetch.eutech-ssii.com</link>
	<description>JS offline storage made easy</description>
	<pubDate>Fri, 27 Feb 2009 09:19:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Wiki</title>
		<link>http://sweetch.eutech-ssii.com/2009/02/27/wikiwiki/lang/en</link>
		<comments>http://sweetch.eutech-ssii.com/2009/02/27/wikiwiki/lang/en#comments</comments>
		<pubDate>Fri, 27 Feb 2009 09:19:23 +0000</pubDate>
		<dc:creator>beuss</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://sweetch.eutech-ssii.com/?p=7&amp;lang=en</guid>
		<description><![CDATA[Sweetch now has its own wiki. Please visit it on http://sweetch.eutech-ssii.com/wiki/doku.php?id=en:start.

]]></description>
			<content:encoded><![CDATA[<p><span lang="en">Sweetch now has its own wiki. Please visit it on <a title="Sweetch wiki" href="http://sweetch.eutech-ssii.com/wiki/doku.php?id=en:start">http://sweetch.eutech-ssii.com/wiki/doku.php?id=en:start</a>.</span></p>

]]></content:encoded>
			<wfw:commentRss>http://sweetch.eutech-ssii.com/2009/02/27/wikiwiki/feed/lang/en</wfw:commentRss>
		</item>
		<item>
		<title>Some news from the Sweetch project </title>
		<link>http://sweetch.eutech-ssii.com/2009/02/14/quelques-nouvelles-du-projet-sweetch/lang/en</link>
		<comments>http://sweetch.eutech-ssii.com/2009/02/14/quelques-nouvelles-du-projet-sweetch/lang/en#comments</comments>
		<pubDate>Sat, 14 Feb 2009 11:37:07 +0000</pubDate>
		<dc:creator>jb</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://sweetch.eutech-ssii.com/?p=6&amp;lang=fr</guid>
		<description><![CDATA[



Since Gmail Offline release, Sweetch project has become more relevant than ever. Because, even if Gmail Offline is really a killer-app, it forces users to have the Gears plugin installed. And everybody knows that Gears is not the web : it&#8217;s not based on any standard and it&#8217;s not widely plugged in clients browsers.
That&#8217;s why [...]]]></description>
			<content:encoded><![CDATA[



<p><span lang="en">Since Gmail Offline release, Sweetch project has become more relevant than ever. Because, even if Gmail Offline is really a killer-app, it forces users to have the Gears plugin installed. And everybody knows that Gears is not the web : it&#8217;s not based on any standard and it&#8217;s not widely plugged in clients browsers.</span></p>
<p><span lang="en">That&#8217;s why we need Sweetch : to get a complete freedom from the client specific technologies to achieve</span><span lang="en"> offline</span><span lang="en"> web applications. Sweetch will allow your application to work on any system with Gears, AIR or Java runtime installed (more than 90% of the clients). Later, some other storage providers will be available : Flash, HTML5 and browsers specific features are planned.</span></p>
<p><span lang="en">We&#8217;ve noticed that Aptana has launched a similar project : <a title="Active Record JS" href="http://activerecordjs.org/">ActiveRecordJs</a>. That&#8217;s an interesting project, but its goals are different from ours : we&#8217;ll talk about it in a next post. </span></p>
<p><span lang="en">Next month, we&#8217;ll release a complete application demonstrating the capabilities of Sweetch : it&#8217;s going to show to everybody that Sweetch could have a great future.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://sweetch.eutech-ssii.com/2009/02/14/quelques-nouvelles-du-projet-sweetch/feed/lang/en</wfw:commentRss>
		</item>
		<item>
		<title>Alpha 0.0.1 Released</title>
		<link>http://sweetch.eutech-ssii.com/2008/04/10/alpha-001-released/lang/en</link>
		<comments>http://sweetch.eutech-ssii.com/2008/04/10/alpha-001-released/lang/en#comments</comments>
		<pubDate>Thu, 10 Apr 2008 13:24:35 +0000</pubDate>
		<dc:creator>beuss</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://sweetch.eutech-ssii.com/?p=5&amp;lang=en</guid>
		<description><![CDATA[Sweetch 0.0.1-alpha has been released. It&#8217;s an &#8220;alpha preview&#8221; release to allow people to play with the project. You&#8217;ll find sample code below.

/* Always use addOnLoad since it&#8217;s the only way to be sure
* that all sweetch features are available.


*/
dojox.sql.addOnLoad(function() {
// dojox.sql uses SQLite syntax

    dojox.sql(&#8217;CREATE TABLE IF NOT EXISTS myTable(id INTEGER [...]]]></description>
			<content:encoded><![CDATA[<p><span lang="en">Sweetch 0.0.1-alpha has been released. It&#8217;s an &#8220;alpha preview&#8221; release to allow people to play with the project. You&#8217;ll find sample code below.</span></p>

<pre><span lang="en">/* Always use addOnLoad since it&#8217;s the only way to be sure</span>
<span lang="en">* that all sweetch features are available.</span>


*/
dojox.sql.addOnLoad(function() {
<span lang="en">// dojox.sql uses SQLite syntax</span>

    dojox.sql(&#8217;CREATE TABLE IF NOT EXISTS myTable(id INTEGER PRIMARY KEY AUTOINCREMENT, label TEXT)&#8217;);
    var rows = dojox.sql(&#8217;SELECT id, label FROM myTable&#8217;);
    var r;
    while( r = rows.next() ) {
        console.info(r.id + &#8216;: &#8216; + r.label);
    }

    var results = dojox.sql(&#8217;INSERT INTO myTable(label) VALUES(&#8217;Give me one more line &#8216; + new Date()));
     console.info(&#8217;New record id &#8216; + dojox.sql.lastInsertId());
});</pre>
<p><span lang="en"><a title="Download Sweetch" href="http://sourceforge.net/project/showfiles.php?group_id=220073&#38;package_id=271271">Download</a></span></p>

]]></content:encoded>
			<wfw:commentRss>http://sweetch.eutech-ssii.com/2008/04/10/alpha-001-released/feed/lang/en</wfw:commentRss>
		</item>
		<item>
		<title>Sweetch demo</title>
		<link>http://sweetch.eutech-ssii.com/2008/04/10/sweetch-demo/lang/en</link>
		<comments>http://sweetch.eutech-ssii.com/2008/04/10/sweetch-demo/lang/en#comments</comments>
		<pubDate>Thu, 10 Apr 2008 09:43:59 +0000</pubDate>
		<dc:creator>beuss</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sweetch.eutech-ssii.com/?p=4&amp;lang=en</guid>
		<description><![CDATA[A demo of Sweetch is available here. Supported providers are AIR (AIR package should be available soon), Java and Gears. It should run on several browsers (IE, Firefox, Safari, Opera, &#8230;). Give us your feedback!
Add data, switch to offline browsing, add or delete data, close your browser, reopen it, reopen the page, enjoy&#8230;


]]></description>
			<content:encoded><![CDATA[<p><span lang="en">A demo of Sweetch is available <a title="Sweetch Demo" href="http://sweetch.eutech-ssii.com/demo/dojox/sql/demos/customers/customers.html">here</a>. Supported providers are AIR (AIR package should be available soon), Java and Gears. It should run on several browsers (IE, Firefox, Safari, Opera, &#8230;). Give us your feedback!</span></p>
<p><span lang="en">Add data, switch to offline browsing, add or delete data, close your browser, reopen it, reopen the page, enjoy&#8230;</span></p>


]]></content:encoded>
			<wfw:commentRss>http://sweetch.eutech-ssii.com/2008/04/10/sweetch-demo/feed/lang/en</wfw:commentRss>
		</item>
		<item>
		<title>Welcome</title>
		<link>http://sweetch.eutech-ssii.com/2008/04/02/welcome/lang/en</link>
		<comments>http://sweetch.eutech-ssii.com/2008/04/02/welcome/lang/en#comments</comments>
		<pubDate>Wed, 02 Apr 2008 09:52:45 +0000</pubDate>
		<dc:creator>beuss</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://sweetch.eutech-ssii.com/?p=3&amp;lang=en</guid>
		<description><![CDATA[This blog will keep you aware of all Sweetch news&#8230;

]]></description>
			<content:encoded><![CDATA[<p><span lang="en">This blog will keep you aware of all Sweetch news&#8230;</span></p>

]]></content:encoded>
			<wfw:commentRss>http://sweetch.eutech-ssii.com/2008/04/02/welcome/feed/lang/en</wfw:commentRss>
		</item>
	</channel>
</rss>
