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

<channel>
	<title>areki.net</title>
	<atom:link href="http://areki.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://areki.net</link>
	<description>Areki&#039;s Professional &#38; Personal Web Log</description>
	<lastBuildDate>Tue, 20 Jul 2010 13:19:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>XRX: Simple, Elegant, Disruptive</title>
		<link>http://areki.net/?p=31</link>
		<comments>http://areki.net/?p=31#comments</comments>
		<pubDate>Tue, 20 Jul 2010 13:19:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XSLT and XML]]></category>
		<category><![CDATA[eXist db and xQuery]]></category>

		<guid isPermaLink="false">http://areki.net/?p=31</guid>
		<description><![CDATA[XRX is a new web development architecture that is a milestone in elegant simplicity. XRX stands for:
XForms on the client
REST interfaces
and XQuery on the server
Because XRX uses a single model for data (XML) it avoids the translation complexity of other architectures. The simplicity and elegance of XRX allows developers to focus on other value-added features [...]]]></description>
		<wfw:commentRss>http://areki.net/?feed=rss2&amp;p=31</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XQuery 1.0 &#8211; XPath 2.0 &#8211; XSLT 2.0</title>
		<link>http://areki.net/?p=22</link>
		<comments>http://areki.net/?p=22#comments</comments>
		<pubDate>Wed, 05 May 2010 16:30:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[eXist db and xQuery]]></category>
		<category><![CDATA[existDB]]></category>
		<category><![CDATA[xpath]]></category>
		<category><![CDATA[xquery]]></category>
		<category><![CDATA[xslt]]></category>

		<guid isPermaLink="false">http://areki.net/?p=22</guid>
		<description><![CDATA[XQuery and XPath
XQuery 1.0 and XPath 2.0 overlap to a very large degree. They have the same data model and the same set of build-in functions and operators.  XPath 2.0 is essentially a subset of XQuery 1.0.
XQuery has a number of features that are not included on XPath, such as FLWORS and XML constructors.
XQuery [...]]]></description>
		<wfw:commentRss>http://areki.net/?feed=rss2&amp;p=22</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The changing typography of the Web</title>
		<link>http://areki.net/?p=19</link>
		<comments>http://areki.net/?p=19#comments</comments>
		<pubDate>Wed, 05 May 2010 03:50:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://areki.net/?p=19</guid>
		<description><![CDATA[Since the World Wide Web’s earliest days, whether you were shopping on Amazon or researching on Google or catching up on news at latimes.com, chances are you were looking at just one of four typefaces &#8212; Arial, Verdana, Georgia or Times &#8212; each formulated for computer monitors and trusted by web designers to display properly [...]]]></description>
		<wfw:commentRss>http://areki.net/?feed=rss2&amp;p=19</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debunking XQuery myths and misunderstandings</title>
		<link>http://areki.net/?p=12</link>
		<comments>http://areki.net/?p=12#comments</comments>
		<pubDate>Mon, 03 May 2010 18:45:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[eXist db and xQuery]]></category>
		<category><![CDATA[xquery]]></category>

		<guid isPermaLink="false">http://areki.net/?p=12</guid>
		<description><![CDATA[If you work with XML, Web services, or Service Oriented Architecture  (SOA), you will likely benefit from the emerging XML Query (XQuery)  standard. XQuery is not even a formally accepted standard, yet dozens of  implementations help software architects and developers every day. What  began as a standard for querying XML documents [...]]]></description>
		<wfw:commentRss>http://areki.net/?feed=rss2&amp;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XQuery: Reinventing the Wheel?</title>
		<link>http://areki.net/?p=9</link>
		<comments>http://areki.net/?p=9#comments</comments>
		<pubDate>Mon, 03 May 2010 15:35:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[eXist db and xQuery]]></category>

		<guid isPermaLink="false">http://areki.net/?p=9</guid>
		<description><![CDATA[xQuery
FOR $b IN document("bib.xml")//book
WHERE $b/publisher = "Morgan Kaufmann"
AND $b/year = "1998"
RETURN $b/title

XSLT
&#60;xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&#62;
  &#60;xsl:template match="/"&#62;
    &#60;xsl:for-each select="document('bib.xml')//book"&#62;
      &#60;xsl:if test="publisher='Morgan Kaufmann' and year='1998'"&#62;
        &#60;xsl:copy-of select="title"/&#62;

      &#60;/xsl:if&#62;
    &#60;/xsl:for-each&#62;
  &#60;/xsl:template&#62;
&#60;/xsl:transform&#62;

Read more ...


]]></description>
		<wfw:commentRss>http://areki.net/?feed=rss2&amp;p=9</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eXist-db</title>
		<link>http://areki.net/?p=3</link>
		<comments>http://areki.net/?p=3#comments</comments>
		<pubDate>Fri, 23 Apr 2010 06:15:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[eXist db and xQuery]]></category>

		<guid isPermaLink="false">http://areki.net/?p=3</guid>
		<description><![CDATA[eXist is an Open Source native XML database featuring efficient, index-based XQuery processing, automatic indexing, extensions for full-text search, XUpdate support, XQuery update extensions and tight integration with existing XML development tools. The database implements the current XQuery 1.0 working drafts, with exception of the schema import and schema validation features defined as optional in [...]]]></description>
		<wfw:commentRss>http://areki.net/?feed=rss2&amp;p=3</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
