<?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>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; xml</title> <atom:link href="http://www.ghacks.net/tag/xml/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Fri, 10 Feb 2012 13:29:21 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Validome, Web Page Validator</title><link>http://www.ghacks.net/2010/11/25/validome-web-page-validator/</link> <comments>http://www.ghacks.net/2010/11/25/validome-web-page-validator/#comments</comments> <pubDate>Thu, 25 Nov 2010 10:39:08 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Online Services]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[html]]></category> <category><![CDATA[online server]]></category> <category><![CDATA[validation service]]></category> <category><![CDATA[validome]]></category> <category><![CDATA[web development]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[xml]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=37268</guid> <description><![CDATA[One of the aspects of being a webmaster is to make sure that your web pages are compatible with the most popular web browsers. This requires some tweaking and hacks, especially if Internet Explorer 6 comes into the picture. Validating web pages is just one aspect of this. Most browsers handle invalid elements well so [...]]]></description> <content:encoded><![CDATA[<p>One of the aspects of being a webmaster is to make sure that your web pages are compatible with the most popular web browsers. This requires some tweaking and hacks, especially if Internet Explorer 6 comes into the picture. Validating web pages is just one aspect of this. Most browsers handle invalid elements well so that the page is displayed to the user even though it may not be displayed exactly as the web developer has intended.</p><p>Website validators like the <a
href="http://validator.w3.org/">W3C</a> Markup Validation Service check a web page for validation errors. Webmasters use these services to correct validation errors on their websites.</p><p>Here is an example why validation is important. About a year ago I noticed that the RSS feed of Ghacks was <a
href="http://www.ghacks.net/2009/04/14/internet-explorer-8-and-feeds-the-xml-page-cannot-be-displayed/">throwing</a> an XML error in Internet Explorer 8. This was caused by a single character in one of the latest articles that was not escaped (meaning instead of writing the  character &amp; directly one would have to use <code>&amp;amp;</code> instead.</p><p>That single character caused problems in the feed delivery, and I had to work longer than usual to get it fixed. Consequences of invalid code are not always that drastic, but it exemplifies the impact that it can have on a website.</p><p>Validome is another website validation service. It is a bit stricter when it comes to validating pages. It can happen that a page passes as a XHTML 1.0 Transitional document in the W3C validation, and fails in the Validome validation.</p><p>Another difference between the two validation engines is that Validome supports verifications of local and remote documents. Users can either enter an url in the form on the site, or upload a document from their local computer system.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2010/11/validome-550x265.jpg" alt="validome" title="validome" width="550" height="265" class="alignnone size-medium wp-image-37271" /></p><p>Extended settings are offered to check the document with a specific user agent or language.</p><p>A click on Validate performs the validation of the document. Errors are displayed directly.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2010/11/validation-error-550x430.jpg" alt="validation error" title="validation error" width="550" height="430" class="alignnone size-medium wp-image-37272" /></p><p>The service lists the line and column of the validation error, the error position and an explanation of the error. This is often enough to fix the issue in the document.</p><p><a
href="http://www.validome.org/validate">Validome</a> is an excellent alternative to the W3C validation service. It is usually enough to use Validome since it appears to be stricter in the validation. Most webmasters on the other hand will probably use both services anyway.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/11/25/validome-web-page-validator/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>XML Escape Tool</title><link>http://www.ghacks.net/2009/08/30/xml-escape-tool/</link> <comments>http://www.ghacks.net/2009/08/30/xml-escape-tool/#comments</comments> <pubDate>Sun, 30 Aug 2009 19:15:31 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[html]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[windows software]]></category> <category><![CDATA[xhtml]]></category> <category><![CDATA[xml]]></category> <category><![CDATA[xml escape tool]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=15840</guid> <description><![CDATA[Webmasters have to make sure that the code of their website is excaping several characters correctly. Failure to do so can lead to all kinds of problems from display errors to functions that are not working correctly because of this (check out The XML Page Cannot Be Displayed article for an example of things that [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://www.ghacks.net/wp-content/uploads/2009/08/xml.png" alt="xml" title="xml" width="158" height="94" class="alignleft size-full wp-image-15841" />Webmasters have to make sure that the code of their website is excaping several characters correctly. Failure to do so can lead to all kinds of problems from display errors to functions that are not working correctly because of this (check out <a
href="http://www.ghacks.net/2009/04/14/internet-explorer-8-and-feeds-the-xml-page-cannot-be-displayed/">The XML Page Cannot Be Displayed</a> article for an example of things that can happen if characters are not escaped properly).</p><p>The relevant characters that need to be escaped are &apos;, &quot;, &amp;, &lt; and &gt;. (I had to escape them while writing this article to avoid xml errors on the page. Webmasters have several options to escape these characters. They can escape them manually, use an online tool to convert them (see <a
href="http://www.ghacks.net/2009/05/07/how-to-display-valid-markup-code-in-websites/">How To Display Valid Markup Code In Websites</a>) or a software program like the XML Escape Tool.</p><p><span
id="more-15840"></span><img
src="http://www.ghacks.net/wp-content/uploads/2009/08/xml_escape_tool-500x384.jpg" alt="xml escape tool" title="xml escape tool" width="500" height="384" class="alignnone size-medium wp-image-15843" /></p><p>Source code has to be pasted into the first form field in the application window. The tool can then escape the source code if the user clicks on the Escape button or unescape the source if the Unescape button is pressed.</p><p>The resulting code can be copied automatically to the Windows clipboard. The benefit of using a desktop software program to escape the characters is that it works if no Internet connection is available. Users who want to try the software can <a
href="http://www.myxmltools.com/xml-escape-tool.shtml">download</a> it from the developer&#8217;s website.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/08/30/xml-escape-tool/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>A standard compliant web browser and editor: Amaya</title><link>http://www.ghacks.net/2009/07/11/a-standard-compliant-web-browser-and-editor-amaya/</link> <comments>http://www.ghacks.net/2009/07/11/a-standard-compliant-web-browser-and-editor-amaya/#comments</comments> <pubDate>Sat, 11 Jul 2009 18:18:57 +0000</pubDate> <dc:creator>Joe</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[html]]></category> <category><![CDATA[html editor]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[mac]]></category> <category><![CDATA[Open Source]]></category> <category><![CDATA[w3c]]></category> <category><![CDATA[web design]]></category> <category><![CDATA[web development]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[xml]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=14311</guid> <description><![CDATA[Some web browsers don&#8217;t fully respect web standards and many WYSIWYG HTML editors produce absolutely revolting code. W3C set out standards as to how HTML (and XHTML etc) should appear and whilst some choose to ignore these, some are devoted to the following of these standards. Sticking to standards can therefore lead to issues with [...]]]></description> <content:encoded><![CDATA[<p>Some web browsers don&#8217;t fully respect web standards and many WYSIWYG HTML editors produce absolutely revolting code. <a
href="http://www.w3.org/">W3C</a> set out standards as to how HTML (and XHTML etc) should appear and whilst some choose to ignore these, some are devoted to the following of these standards.</p><p>Sticking to standards can therefore lead to issues with certain web browsers, which lack support for the latest tags or render pages wrong.</p><p>The W3C therefore has its own web browser and editor which adheres to standards more than many browsers and supports certain new technologies others don&#8217;t, such as RDF annotation. This browser is <a
href="http://www.w3.org/Amaya/">Amaya</a>, an open-source and cross-platform browser.</p><p><span
id="more-14311"></span>Amaya can handle a wide-range of open file formats, including HTML, CSS, XHTML, SVG and MathML.</p><p><a
href="http://www.ghacks.net/wp-content/uploads/2009/07/Amaya-html-editor.png"><img
src="http://www.ghacks.net/wp-content/uploads/2009/07/Amaya-html-editor.png" alt="Amaya html editor" title="Amaya html editor" width="600" height="480" class="alignnone size-full wp-image-54086" /></a></p><p>The software integrates the browser and web editor: when you go to a web page, it can be edited inside the browser. It also instantly displays syntactic errors.</p><p>It also integrates the mark-up languages. For example, in a web page, one can write formula utilising MathML or add SVG shapes inside the software.</p><p>Amaya is a reasonable WYSIWYG editor and a good web browser for developmental purposes. It is also good to produce rich web-pages, which include other pieces of mark-up than HTML.</p><p><strong>Update:</strong> Amaya has not been updated in the last two years. While it is still possible to use the cross-platform HTML editor it needs to be noted that it does not support recent technology advancements. This includes no support for HTML5 or CSS3 in the last release.</p><p>Windows and Linux users find in <a
href="http://www.ghacks.net/2010/12/31/bluegriffon-html-editor/">Blue Griffon</a> a suitable alternative. Blue Griffon user however need to know HTML to work with the program, as it does not display information about elements that can be selected in the editor. Users who know their HTML elements will find it to be a suitable alternative for Amaya.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/07/11/a-standard-compliant-web-browser-and-editor-amaya/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Open XML Docx Viewer</title><link>http://www.ghacks.net/2009/03/27/open-xml-docx-viewer/</link> <comments>http://www.ghacks.net/2009/03/27/open-xml-docx-viewer/#comments</comments> <pubDate>Fri, 27 Mar 2009 08:32:13 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Browsing]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[document]]></category> <category><![CDATA[documents]]></category> <category><![CDATA[docx]]></category> <category><![CDATA[firefox add-ons]]></category> <category><![CDATA[firefox docx]]></category> <category><![CDATA[web browser]]></category> <category><![CDATA[xml]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2009/03/27/open-xml-docx-viewer/</guid> <description><![CDATA[The introduction of the new Microsoft Office XML formats (docx, pptx, xlsx) have caused some confusion by users of previous Microsoft Office releases as their versions were not able to open the new document formats by default. The same was true for users without access to any version of Microsoft Office 2007. Several ways to [...]]]></description> <content:encoded><![CDATA[<p>The introduction of the new Microsoft Office XML formats (docx, pptx, xlsx) have caused some confusion by users of previous Microsoft Office releases as their versions were not able to open the new document formats by default. The same was true for users without access to any version of Microsoft Office 2007. Several ways to open <a
href="http://www.ghacks.net/2007/12/10/ways-to-open-office-docx-documents/">docx</a> files have emerged pretty soon after the initial release; One of them is the Open XML Viewer which is basically offered as a plugin for the web browser Firefox.</p><p>The document viewer only supports the new docx file format at this point but as this is the most commonly encountered format it should suffice for the moment. The web browser <a
href="http://openxmlviewer.codeplex.com/">add-on</a> is available for both the Windows and Linux operating system and supplied as a xpi file which can be loaded and installed easily. Another version for the command line of both operating systems is provided as well.</p><p>The web browser plugin works by simply dragging and dropping docx documents into a Firefox tab or window. The add-on will automatically process the document and display it in the web browser. There is currently no direct way to open docx files that are linked from websites but it is possible to associate the Firefox web browser with the docx format in the operating system to either open the documents automatically or on right-click and selection with it.</p><p><span
id="more-11488"></span>The next installment of the Open XML Document Viewer is slated for a April 2009 release which will add support for the Opera and Internet Explorer web browser, server side support, document themes and drawing shapes.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/03/27/open-xml-docx-viewer/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> </channel> </rss>
