<?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>Logicfish &#187; Data Formats</title>
	<atom:link href="http://logicfish.me.uk/category/data-formats/feed/" rel="self" type="application/rss+xml" />
	<link>http://logicfish.me.uk</link>
	<description>Independant reviews, software, internet, how to promote your site</description>
	<lastBuildDate>Tue, 05 Jan 2010 20:44:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
<link>http://logicfish.me.uk</link>
<url>http://logicfish.me.uk/wp-content/plugins/maxblogpress-favicon/icons/favicon-82.ico</url>
<title>Logicfish</title>
</image>
		<item>
		<title>Web 3.0 for beginners</title>
		<link>http://logicfish.me.uk/2009/06/web-3-0-for-beginners/</link>
		<comments>http://logicfish.me.uk/2009/06/web-3-0-for-beginners/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 20:27:59 +0000</pubDate>
		<dc:creator>Mark Fisher</dc:creator>
				<category><![CDATA[Cataloguing]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Data Formats]]></category>
		<category><![CDATA[Featured Post]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Libraries]]></category>
		<category><![CDATA[Library and Information Science]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Technical Services]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WWW]]></category>
		<category><![CDATA[Web Design and Development]]></category>
		<category><![CDATA[Webmaster Resources]]></category>

		<guid isPermaLink="false">http://logicfish.me.uk/?p=126</guid>
		<description><![CDATA[In this series of articles I will explain the basics of Web3.0, often called the semantic web, and how to start using future technologies now on your site.
I am assuming a basic knowledge of web and web2 technologies;  these articles are intended to assist users in updating their projects to be ready for web3.
Basic concepts
URI
When [...]]]></description>
			<content:encoded><![CDATA[<p>In this series of articles I will explain the basics of Web3.0, often called the semantic web, and how to start using future technologies now on your site.</p>
<p>I am assuming a basic knowledge of web and web2 technologies;  these articles are intended to assist users in updating their projects to be ready for web3.</p>
<h3>Basic concepts</h3>
<h4>URI</h4>
<p>When using semantic information architectures,  any artifact may be addressed by a symbol known as a URI or &#8220;unique resource indicator&#8221;.  By artifact we mean any kind of information at all.</p>
<p>For example &#8220;rdf:type&#8221;  is a property that may exist for any meta data;  it is referenced by the following URI &#8220;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&#8221;.  In this case, the URI is also a URL meaning that you can go to this address in your browser (unless you can  read xml/rdf or you are a machine, this will not make much sense).  However, there is no requirement for a URI to address anything over the internet. nor for it to return anything meaningful  if it does.</p>
<p>A URI is similar to a URL in that it has the same token structure.  However a URL is assumed to be directly addressable over the internet, whereas a URI is an identifier.  URIs will often start with &#8220;http:&#8221; &#8211; this is merely a convention and does not mean that any web content will exist at that location.</p>
<h4>Meta-Data</h4>
<p>Meta-data means information about information.   Humans do not generally use meta-data themselves, however to classify documents using machines, we need an easy way to identify which information is contained in which document.  We also need to be able to embed information in the document.</p>
<p>For example, say we have document X.  Within X, part of the text will represent the title of the document, part will represent for example the author, and so on.  A human may easily discern which part of the text refers to which type;  however, for a machine there exists no easy way to distinguish parts of the document.   For this reason we use meta-tags, either within the document or in a separate meta-document, to tell the machine that part A refers to the title, part B to the author, C to the date.</p>
<p>The semantic web exisits to define meta-data around data that we already have, and to create concept maps called ontologies, describing the various types of meta-data.</p>
<h4>Ontologies</h4>
<p>An ontology represents a classification system by which we may categorize meta-data.  For example, the Dublin Core ontology contains properties such as &#8220;dc:title&#8221; and &#8220;dc:author&#8221; which refer directly to the title and the author of the document respectively.</p>
<p>Ontologies, and meta-data, are arranged in structures known as graphs.  Within these structures we have two types of entity;  nodes and arcs.  Nodes represent individuals or items within the graph;  arcs represent the relations between them.  A node has an identifier (in RDF we use the URI to identify any unique instance);  an arc has two nodes (in RDF we call these Subject and Object) and a predicate which specifies the type of relation,.  For example, &#8220;rdf:instanceOf&#8221; represents a predicate which links an individual to the definition of the type that the individual represents.</p>
<p>A URI forms a functional identifier for a node;  that is, any two elements with the same URI, refer to the same node.</p>
<h4>Types</h4>
<p>Any individual in Web3 must have a type;  we specify the type using the &#8220;instanceOf&#8221; property (in rdf).  Basic types are simple definitions, for example we may create a type &#8220;car&#8221; which has a supertype &#8220;automobile&#8221;.  However the semantic web allows us to create more complex types using built-in rules; if our software has inferencing capabilities. we may make full use of these.  Here is an example:  we can define a type &#8220;4 wheeled objects&#8221; where the property &#8220;numberOfWheels&#8221; is equal to 4.  If we create an individual, and assign it the property &#8220;numberOfWheels&#8221; with the value 4,  our software will automatically infer that our individual is a member of the type &#8220;4 wheeled objects&#8221; with no further effort on our part.</p>
<h4>Properties</h4>
<p>Properties are assignments of some artifact, to another artifact.  Two types of properties exists;  object properties, where the value of the property represents another individual, and data properties, where the value of the property represents a known data type such as string or integer.  Much like types, properties may be arranged in a heirarchy with the more general properties higher in the graph.</p>
<h4>Individuals</h4>
<p>An individual represents an instance of a type;  this is similar to an &#8220;object&#8221; in oop.  Basically, it represents a single &#8220;thing&#8221; rather than a type of thing.</p>
<h3>Core Ontologies</h3>
<p>There now follows a list of the most common ontologies</p>
<h4>Dublin Core</h4>
<p>Basic meta-data such as author, copyright, and other document related artifacts.</p>
<h4>FOAF &#8211; Friend-of-a-friend</h4>
<p>This ontology deals with relationships between people.  For example, I could use &#8220;foaf:knows&#8221; in my document when linking to the homepages of people that I know.</p>
<h4>SIOC Senantically Interlinked Online Communities</h4>
<p>Similar to FOAF;  allows me to specify metadata relating to social networking.</p>
<h4>SKOS Simple Knowledge Organization System</h4>
<p>Deals with concepts, and allows classification by grouping concepts into schemas.  One may also specify semantic relationships between concepts; for exmaple,  the &#8220;skos:broader&#8221; property links to a conecpt more general that the concept it links from (ie trees-&gt;plants, kilogram-&gt;wieght measurement, fly-&gt;insect).</p>
<p>Hopefully this basic guide will start you off;   in the next part of the series, I will explain the various formats that may be used to express semantic meta data,  and show you how to start using these right away in your web content.</p>
<div id="textwise_suggestions"><h4 id='twBlogs'>Similar Blog & News Articles: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><ul><li><a href="http://derivadow.com/2009/03/31/linking-bbccouk-to-the-linked-data-cloud/">Linking bbc.co.uk to the Linked Data cloud</a> :: <em><a href="http://derivadow.com">Derivadow.com</a></em></li><li><a href="http://derivadow.com/2009/03/26/what-does-the-history-of-the-web-tell-us-about-its-future/">What does the history of the web tell us about its future?</a> :: <em><a href="http://derivadow.com">Derivadow.com</a></em></li><li><a href="http://feedproxy.google.com/~r/Technosophia/~3/NiQ73giN8nE/">I2: Strawman</a> :: <em><a href="http://lackoftalent.org/michael/blog">τεχνοσοφια</a></em></li><li><a href="http://www.cafeconleche.org/#June_17_2009_22911">Michael Kay has released version 9.1.0.7 of Saxon, his XSLT 2.0 and XQuery processor for Java and .NET.</a> :: <em><a href="http://www.cafeconleche.org/">Cafe con Leche XML News and Resources</a></em></li><li><a href="http://www.cafeconleche.org/#June_12_2009_23143">Andy Clark's updated his NekoHTML open source HTML parser to version 1.9.12.</a> :: <em><a href="http://www.cafeconleche.org/">Cafe con Leche XML News and Resources</a></em></li><li><a href="http://canoo.com/blog/2009/06/25/jazoon-09-semantic-web/">Jazoon '09: Semantic Web</a> :: <em><a href="http://canoo.com/blog">Rich Internet Applications (RIA)</a></em></li><li><a href="http://feedproxy.google.com/~r/technosophia/~3/NiQ73giN8nE/">I2: Strawman</a> :: <em><a href="http://lackoftalent.org/michael/blog">τεχνοσοφια</a></em></li><li><a href="http://reinout.vanrees.org/weblog/2009/07/01/ep-web-of-data.html">Reinout van Rees: Tapping into the web of data (Cosmin Basca)</a> :: <em><a href="http://planet.python.org/">Planet Python</a></em></li></ul><h4 id='twWiki'>Similar Wikipedia Articles: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><ul><li><a href="http://en.wikipedia.org/wiki/Resource%20Description%20Framework">Resource Description Framework</a></li><li><a href="http://en.wikipedia.org/wiki/Semantic%20Web">Semantic Web</a></li><li><a href="http://en.wikipedia.org/wiki/Resource%20%28Web%29">Resource (Web)</a></li><li><a href="http://en.wikipedia.org/wiki/Semantic%20publishing">Semantic publishing</a></li><li><a href="http://en.wikipedia.org/wiki/Ontology%20%28information%20science%29">Ontology (information science)</a></li></ul><h4 id='twProducts'>Similar Products: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><table class="tw_products" border="0">	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51cg6YfvF%2BL._SL160_.jpg" width="120" alt="Semantic Web For Dummies (For Dummies (Computer/Tech))" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/0470396792&tag=wq2rx-20&camp=1789&creative=9325">Semantic Web For Dummies (For Dummies (Computer/Tech))</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>Semantic Web technology is already changing how we interact with data on the Web. By connecting random information on the Internet in new wa</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51AKYCHFG8L._SL160_.jpg" width="120" alt="A Semantic Web Primer (Cooperative Information Systems)" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/0262012103&tag=wq2rx-20&camp=1789&creative=9325">A Semantic Web Primer (Cooperative Information Systems)</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>The development of the Semantic Web, with machine-readable content, has the potential to revolutionize the World Wide Web and its use. A Sem</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/41QS4JGT7TL._SL160_.jpg" width="120" alt="Semantic Web Technologies: Trends and Research in Ontology-based Systems" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/0470025964&tag=wq2rx-20&camp=1789&creative=9325">Semantic Web Technologies: Trends and Research in Ontology-based Systems</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>The Semantic Web combines the descriptive languages RDF (Resource Description Framework) and OWL (Web Ontology Language), with the data-cent</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/511kc4wcgtL._SL160_.jpg" width="120" alt="Visualizing the Semantic Web: XML-based Internet and Information Visualization" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/1852339764&tag=wq2rx-20&camp=1789&creative=9325">Visualizing the Semantic Web: XML-based Internet and Information Visualization</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>The Web has evolved from HTML quite dramatically over the last few years with revolutionary techniques for content and structural modeling,</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51jUtuN60bL._SL160_.jpg" width="120" alt="Programming the Semantic Web" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/0596153813&tag=wq2rx-20&camp=1789&creative=9325">Programming the Semantic Web</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>With this book, the promise of the Semantic Web -- in which machines can find, share, and combine data on the Web -- is not just a technical</small></span>
		</td>
	</tr></table></div>]]></content:encoded>
			<wfw:commentRss>http://logicfish.me.uk/2009/06/web-3-0-for-beginners/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web page editors for Windows and Linux</title>
		<link>http://logicfish.me.uk/2009/06/web-page-editors-for-windows-and-linux/</link>
		<comments>http://logicfish.me.uk/2009/06/web-page-editors-for-windows-and-linux/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 14:03:29 +0000</pubDate>
		<dc:creator>Mark Fisher</dc:creator>
				<category><![CDATA[Authoring]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Clients]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Data Formats]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WWW]]></category>
		<category><![CDATA[Web Design and Development]]></category>
		<category><![CDATA[Webmaster Resources]]></category>

		<guid isPermaLink="false">http://logicfish.me.uk/?p=123</guid>
		<description><![CDATA[Here is a brief rundown of the best free web page editors for windows and linux:
WYSIWYG Editors
These editors include a preview of the web page, and allow you to edit page elements directly in-place on the page.
However, the previews are never quite the same as the actual page displayed by the browser and should only [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a brief rundown of the best free web page editors for windows and linux:</p>
<h3>WYSIWYG Editors</h3>
<p>These editors include a preview of the web page, and allow you to edit page elements directly in-place on the page.</p>
<p>However, the previews are never quite the same as the actual page displayed by the browser and should only be used as a guide.  These editors are great for pages using html formating, generally composed of tables with fixed size rows and columns.  Formating is generally done inline with much less use being made of external stylesheets.  Use these editors if you are doing static html such as landing pages, click-throughs and small sites with only one or two articles.</p>
<p>Having said that, Amaya from W3C features extensive CSS editing capabilities and an inline editor.  The renderer however is specific to Amaya so you must preview your pages in firefox to see how they will look online.  This is always advisable anyhow.</p>
<h4>Kompozer (formerly NVU)</h4>
<p>This is from the mozilla authors and incorporates an embedded firefox preview.  An FTP uploader is included a-la dreamweaver; however I find these unecessary because they are never quite as easy to use as standalone FTP tools such as FileZilla and CuteFTP.</p>
<p>The in-place editor is great; its based on the gecko engine which powers firefox and others, and so it gives you an almost exact preview of your how your site will look online.</p>
<p>Unfortunately this software seems to be rather unstable on both linux and windows, and development seems to have ground to a halt.  This is OK if you dont mind saving your work as you edit, and restarting the editor every time it breaks.   You may find that the advantages of the embedded browser and the in-place editor make this worth your while.</p>
<h4>Amaya</h4>
<div class="wp-caption alignnone" style="width: 210px"><img class="tw_selimg" title="Amaya HTML editor" src="http://www.freebase.com:80/api/trans/raw/wikipedia/images/en_id/1775466" alt="Source: Freebase" width="200" height="200" /><p class="wp-caption-text">Source: Freebase</p></div>
<p>This one is from w3 (the www consortium) and has its own page renderer called libwww.  Pages built using this package may not look the same as in firefox &#8211; you should always check your pages in all browsers anyway before you upload them.</p>
<p>The great thing about Amaya is that you can edit any page whilst you are browsing.  You can switch between browse and edit modes.</p>
<p>Amaya makes a lot of use of inline CSS;  for example, when the user bolds some text, instead of using depracated tags such as &#8220;&lt;b&gt;&lt;/b&gt;&#8221; amaya will create a &#8220;&lt;span&gt;&lt;/span&gt;&#8221;  element and insert the style inline using the style attribute.  This makes it much easier to separate formatting from layout;  you can extract the inline styles and create css classes which you can then apply to any page element.</p>
<p>It has a UI unlike most other software,  which takes some getting used to,  designed for fast editing using keyboard shortcuts.</p>
<p>Amaya lacks any support for frames or javascript, but does support SVG, math, and scientific notation, on top of its support for html and css.</p>
<p>Amaya is published by the w3c (worldwide web consortium).  Binary releases are <a href="http://www.w3.org/Amaya/User/BinDist.html" target="_blank">here</a>, and the source code can be downloaded <a href="http://www.w3.org/Amaya/User/SourceDist.html" target="_blank">here</a>.</p>
<h4>The Eclipse Web Tool Platform</h4>
<p>Eclipse WTP has a built in page editor but this is not as accessible as other software.  The html editor is much better and eclipse has a built in web browser, so these are better used together rather than the in-place editor, until the team release an improved version.</p>
<h3>HTML Editors</h3>
<p>These editors are for editing html source code and do not feature in-place editing;  they do however feature extensive html helper functions and are great for editing javascript, and dom-based pages which utilize css for the formating and html for the layout.</p>
<h4>BlueFish</h4>
<p>Bluefish is a fairly compact html editor providing all the functions you  need to edit html by hand.  It is great for advanced authors because of the lack of restrictions (you can include non-html code without difficulty) and its simplicity makes it great for small systems.  It has an extensive feature set, including suport for most common language protocols.</p>
<p>On linux you should install it using your distributions package manger, or you can download the sourcecode from the website <a href="http://bluefish.openoffice.nl/">here</a>.</p>
<p>On windows you can download a port from Google Code <a href="http://code.google.com/p/bluefish-win/" target="_blank">here</a>.</p>
<h4>Eclipse Web Tools</h4>
<p>The html editor is fine and makes full use of the eclipse UI features, such as code-complete, auto-suggest, outline and properties views, and is pretty much complete in terms of its html implementation.    Eclipse  WTP also contains a javascript editor with library support, and a php editor is available again with library support.  It is mainly a developers platform and is not directly set up for website creation. &#8211; you may have to download additional tools and do some configuring.  If you run your own servers or create software in any language, eclipse will do the bulk of the workload and is easy to extend with its system of features, plugins and web-based update sites.  FTP support is also available, as is shell access and a multitude of other services, using the RSE (Remote Systems Explorer) which is also fully extensible.</p>
<p>Eclipse does have an inline page editor but it is not really production ready &#8211; selecting areas is quite difficult because the autonavigation does not work as well as it could, and  the preview pane will often hide page elements and gets the sizes wrong.</p>
<p>Eclipse can be downloaded via the main site at <a href="http://eclipse.org" target="_blank">eclipse.org</a>.</p>
<h3>Conclusions</h3>
<p>All in all, amaya is the easiest to use out-of-the-box, and is great for creating simple pages very quickly especially when they are based on existing pages.  It has no dynamic capabilities or script support.</p>
<p>Amaya will get you going  fast and is small enough not to interfere with other processes;  it fails on certain code but not too often; when it fails it simply vanishes and does not seem to bring down the entire system.  And it keeps backups.  If you want to be sure of w3c compliance, check your pages in Amaya.</p>
<p>Komposer is great for testing html/javascript combinations, and for composing html tahle based pages; it is a &#8220;poor mans dreamweaver&#8221;.  Instability is the main failing point of this tool;  development seems to have become stagnant.</p>
<p>Bluefish will take you places no other editor can with its ability to open 3000+ files; regex find and replace with subexpressions; wildcard file open; inline pipes using external tools such sed, awk or your own bash script; custom dialogs and key bindings, and it is very compact fitting neatly into your backpack.  <a href="http://bluefish.openoffice.nl/features.html">This link</a> is to the full feature list.</p>
<p>I`ll stick with eclipse for my php and javascript, use amaya to create layouts, kompozer for my landing pages and for page templates, bluefish for fast and easy direct editing of the source code.</p>
<div id="textwise_suggestions"><h4 id='twBlogs'>Similar Blog & News Articles: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><ul><li><a href="http://www.pheedcontent.com/click.phdo?i=4dc12adb851be0dc53bb8f8657955242">18 Free Text Editors To Clean Up Your Code</a> :: <em><a href="http://www.sitepoint.com/blogs">SitePoint</a></em></li><li><a href="http://lxer.com/module/newswire/ext_link.php?rid=121878">Develop Websites with Bluefish</a> :: <em><a href="http://lxer.com/">LXer Linux News</a></em></li><li><a href="http://feeds.gawker.com/~r/lifehacker/full/~3/3qlzJGzkoDI/lifehackers-firefox-add+on-packs">Lifehacker's Firefox Add-On Packs Firefox Extensions</a> :: <em><a href="http://lifehacker.com">Lifehacker</a></em></li><li><a href="http://feedproxy.google.com/~r/paulstamatiou/~3/Gq7zzOjsILo/first-impressions-safari-4-beta">First Impressions: Safari 4 Beta</a> :: <em><a href="http://paulstamatiou.com">PaulStamatiou.com</a></em></li><li><a href="http://www.labnol.org/software/test-web-design-in-different-browsers/8949/">Test Your Web Pages in Different Browsers with Adobe Browser Lab</a> :: <em><a href="http://www.labnol.org">Digital Inspiration - Technology Blog</a></em></li><li><a href="http://www.rss-specifications.com/displaying-rss-feeds.htm">Displaying RSS</a> :: <em><a href="http://www.rss-specifications.com/rss-articles.htm">RSS and News Feed Articles</a></em></li><li><a href="http://www.pheedcontent.com/click.phdo?i=70bd59bc69a20050943725e5658c03d8">40 Essential iPhone Applications For Web Designers</a> :: <em><a href="http://www.sitepoint.com/blogs">SitePoint</a></em></li><li><a href="http://feedproxy.google.com/~r/TheNetIsDead/~3/C1WseHOOmUI/5_things_myspace_could_do_to_i">5 things MySpace could do to improve Profile 2.0</a> :: <em><a href="http://www.i-marco.nl/weblog/index.php">The Net is Dead</a></em></li><li><a href="http://www.cafeconleche.org/#June_17_2009_22911">Michael Kay has released version 9.1.0.7 of Saxon, his XSLT 2.0 and XQuery processor for Java and .NET.</a> :: <em><a href="http://www.cafeconleche.org/">Cafe con Leche XML News and Resources</a></em></li></ul><h4 id='twWiki'>Similar Wikipedia Articles: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><ul><li><a href="http://en.wikipedia.org/wiki/HTML%20editor">HTML editor</a></li><li><a href="http://en.wikipedia.org/wiki/List%20of%20HTML%20editors">List of HTML editors</a></li><li><a href="http://en.wikipedia.org/wiki/Comparison%20of%20HTML%20editors">Comparison of HTML editors</a></li><li><a href="http://en.wikipedia.org/wiki/Netscape%20%28web%20browser%29">Netscape (web browser)</a></li><li><a href="http://en.wikipedia.org/wiki/History%20of%20Mozilla%20Firefox">History of Mozilla Firefox</a></li><li><a href="http://en.wikipedia.org/wiki/Tableless%20web%20design">Tableless web design</a></li><li><a href="http://en.wikipedia.org/wiki/Online%20rich-text%20editor">Online rich-text editor</a></li><li><a href="http://en.wikipedia.org/wiki/Comparison%20of%20Javascript-based%20source%20code%20editors">Comparison of Javascript-based source code editors</a></li><li><a href="http://en.wikipedia.org/wiki/JavaScript%20editor">JavaScript editor</a></li><li><a href="http://en.wikipedia.org/wiki/Web%20page">Web page</a></li></ul><h4 id='twProducts'>Similar Products: Powered by <a href="http://www.textwise.com/" target="_blank"><img border="0" src="http://logicfish.me.uk/wp-content/plugins/textwise/img/textwise_logo.gif" alt="TextWise" align="top" /></a></h4><table class="tw_products" border="0">	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/31Ca6vJwLjL._SL160_.jpg" width="120" alt="JavaScript Video Tutorial Training. 13 Hours in 124 Video Lessons on 1 DVD" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B000MUSR4Y&tag=wq2rx-20&camp=1789&creative=9325">JavaScript Video Tutorial Training. 13 Hours in 124 Video Lessons on 1 DVD</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>Complete video tutorial training for JavaScript coding. Lessons are presented in step-by-step videos with a total running time of over 9 hou</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/31bSrMnQW%2BL._SL160_.jpg" width="120" alt="Total Training for Studio 8 Bundle MacOSx Win 00 XP DVD 7 DVDs, 43 Hours Run Time 151419593" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B001PIEGGA&tag=wq2rx-20&camp=1789&creative=9325">Total Training for Studio 8 Bundle MacOSx Win 00 XP DVD 7 DVDs, 43 Hours Run Time 151419593</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>Hosts, John Ulliman and Janine Warner, share their expert knowledge in how to design and develop complex websites using state-of-the art too</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/31cIh8kT%2BjL._SL160_.jpg" width="120" alt="CSS Cascading Style Sheets - Video Tutorial Training. 4.5 Hours in 29 Video Lessons on 1 DVD" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B000MUUHOW&tag=wq2rx-20&camp=1789&creative=9325">CSS Cascading Style Sheets - Video Tutorial Training. 4.5 Hours in 29 Video Lessons on 1 DVD</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>Complete video tutorial training for CSS Cascading Style Sheet coding. Lessons are presented in step-by-step videos with a total running tim</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/41RM9N5DfEL._SL160_.jpg" width="120" alt="Greater" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B0028V2P98&tag=wq2rx-20&camp=1789&creative=9325">Greater</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>No reward is greater than education. No education is greater than learning that websites that automatically resize your browser window suck</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/418kSokcBDL._SL160_.jpg" width="120" alt="Learning CCK for Drupal" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B002ADER5O&tag=wq2rx-20&camp=1789&creative=9325">Learning CCK for Drupal</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>The Lullabot Learning Series continues with a hands-on look at Drupal's Content Construction Kit (commonly known as CCK). In this tutorial v</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/51b43KvU4dL._SL160_.jpg" width="120" alt="MEL 101: Fundamentals" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B000NTQNT0&tag=wq2rx-20&camp=1789&creative=9325">MEL 101: Fundamentals</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>In this two-disc set on MEL, Kevin Mannens introduces the rich possibilities of Maya s Embedded Language. With over ten hours of lecture, Ke</small></span>
		</td>
	</tr>	<tr class="tw_itemrow">
		<td class="tw_imagecell"><img src="http://ecx.images-amazon.com/images/I/516eULIRBBL._SL160_.jpg" width="120" alt="TextExpander" /></td>
		<td>
			<span class="title"><a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&path=ASIN/B001AUSP2O&tag=wq2rx-20&camp=1789&creative=9325">TextExpander</a></span>
			<span class="source">:: Amazon</span>
			<span class="description small"><small>Save time and avoid repetitive typing with TextExpander. You can define customized abbreviations for frequently-used text and images, also k</small></span>
		</td>
	</tr></table></div>]]></content:encoded>
			<wfw:commentRss>http://logicfish.me.uk/2009/06/web-page-editors-for-windows-and-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
