{"id":103,"date":"2006-06-05T18:18:34","date_gmt":"2006-06-05T18:18:34","guid":{"rendered":"https:\/\/www.garfnet.org.uk\/cms\/weboncd\/"},"modified":"2025-02-06T20:23:49","modified_gmt":"2025-02-06T20:23:49","slug":"weboncd","status":"publish","type":"post","link":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/","title":{"rendered":"WebOnCD"},"content":{"rendered":"<p align=\"justify\"><b>The WebOnCD concept concerns putting standard HTML (hypertext mark-up language) pages on a local removable disc such as a CD ROM or DVD. Simple WebOnCD publications are very easy to create. They require little previous programming experience, and no special software. Any text editor such as Notepad for Windows, KDE KWrite or Kate for GNU\/Linux or EMacs text editor will create HTML. <\/b><\/p>\n<p align=\"justify\">However, care should be taken using proprietary editors such as Microsoft FrontPage because these can create non-standard, vendor-specific HTML that may not appear as desired in all web browsers. And there are many other pitfalls one needs to be aware of in order to produce a high quality product.<\/p>\n<h2>Advantages.<\/h2>\n<p align=\"justify\">Using WebOnCD to manage large chunks of data from a local source such as CD actually has some distinct advantages over using the internet\u2026<\/p>\n<ol>\n<li>Big files such as high resolution colour photographs and videos load more quickly locally because you&#8217;re not trying to force a lot of data down a slow telephone or broadband line.<\/li>\n<li>Most internet service providers&#8217; hosting packages limit the amount of space you may use &#8211; sometimes as little as 50MiB. CD ROM boasts 650MiB. DVD is available up to 9 GiB. Drives can be stacked together, and new even higher density recording media such as Blu-Ray is due to appear on the market shortly.<\/li>\n<li>Some types of information are not suitable for placing on the internet for the world to see. But WebOnCD allows developers to distribute large multimedia publications privately to a selected audience using a similar methodology to internet websites.<\/li>\n<\/ol>\n<h2>Main design features of WebOnCD<\/h2>\n<ul>\n<li>Platform independent \u2013 WebOnCD will run on Linux, Macintosh &amp; Windows computers.<\/li>\n<li>Uses a strict 8+3, all-lower-case, no spaces file-naming convention. This ensures compatibility between various operating systems.<\/li>\n<li>Can incorporate a variety of cross-platform file formats including\u2026\n<ul>\n<li>HTML (hypertext mark-up language).<\/li>\n<li>CSS (cascading stylesheets).<\/li>\n<li>JPEG (joint photographic experts group) pictures.<\/li>\n<li>PDF (portable document format).<\/li>\n<li>MPEG (motion pictures experts group) video. Note MPEG2 may require the installation of a special decoder on some systems.<\/li>\n<li>MP3 (motion pictures experts group version 1 layer 3) sound files.<\/li>\n<li>Cheap \u2013 requires no proprietary software.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h2>Best of both Worlds<\/h2>\n<p align=\"justify\">One important use of WebOnCD is in conjunction with a large existing web site. Big files that don&#8217;t need updating very often, such as MP3 sound samples, JPEG photographs and MPEG or MPEG2 video clips can live locally on CD or DVD, along with the main HTML multimedia publication. Smaller, text-based files containing data such as prices and frequently updated statistics can live on the web site. Simply clicking a linked word or graphic in WebOnCD HTML publication automatically connects the user the website &#8211; providing the user\u2019s computer is suitably equipped of course.<\/p>\n<p align=\"justify\">For example, a company could produce a catalogue at regular intervals on CD ROM featuring high resolution images sounds &amp; video to advertise its products. In the meantime, customers could use the CD to connect to this company&#8217;s website for latest prices, special offers and to order products on-line.<\/p>\n<h2>Creating a WebOnCD publication<\/h2>\n<p align=\"justify\">Naturally, working with a large volume of data requires meticulous attention to file structure &#8211; ensuring files are in the correct folders, and that links between files work correctly. However, in developing WebOnCD, it was found that multimedia publications can be completed much more quickly in HTML than using proprietary multimedia authoring tools.<\/p>\n<p align=\"justify\">However, to make a WebOnCD publication appear smooth and sophisticated to the end user does require some attention to the programming methodology. And due to the limitations of HTML, a little script programming can improve the look &amp; feel of the end product.<\/p>\n<h2>Programming<\/h2>\n<p align=\"justify\">The HTML used today in WebOnCD publications on its HTML pages is to \u201cW3C HTML 4.1 Transitional\u201d standard.<\/p>\n<p align=\"justify\">This standard allows both on-page formatting and the formatting by CSS (cascading style sheets). Many WebOnCD projects use CSS extensively, and keep the CSS information in separate \u2018*.css\u2019 files. This has several advantages for the developer\u2026<\/p>\n<ol>\n<li>Styles, colours &amp; fonts on many pages may be customised by altering a single style sheet.<\/li>\n<li>It becomes very easy to customise an entire publication to suit the need of the client.<\/li>\n<li>The HTML code on the individual pages can be very simple since it requires just one link back to the style sheet to impose all the formatting information.<\/li>\n<li>A common look and style may be applied to the entire WebOnCD publication.<\/li>\n<\/ol>\n<h2>Style sheet examples<\/h2>\n<p align=\"justify\">Thus one line of code between the tags will link a style sheet to an HTML document. This example assumes that the style sheet called \u2018main.css\u2019 is in the same folder as the HTML document\u2026<\/p>\n<p align=\"justify\">The style sheet itself can control almost all aspects of a page\u2019s design. These lines of code would determine the colour of the hypertext links, the body text, the page background colour and the \u2018H1\u2019 main heading font. Note the list of fonts defined for <span style=\"font-size: 12pt;\"><span style=\"font-family: Courier New;\">font-family<\/span>.<\/span> This tells the user\u2019s browser to substitute another similar font if the preferred one is not available on the user\u2019s system&#8230;<\/p>\n<pre>A:LINK{\r\n text-decoration: none;\r\n color: #3333FF;\r\n}\r\n\r\nA:VISITED{\r\n text-decoration: none;\r\n color: #3333FF;\r\n}\r\n\r\nA:HOVER{\r\n text-decoration: underline;\r\n color: #FF9999;\r\n}\r\n\r\nA:ACTIVE{\r\n text-decoration: none;\r\n background: #FF9999;\r\n color: #FFFFFF;\r\n}\r\n\r\nBODY{\r\n background: #FFFFFF;\r\n color: #666699;\r\n font-family : verdana, arial, helvetica, sans-serif;\r\n font-size: 12px;\r\n padding: 5px;\r\n}\r\n\r\nH1{\r\n font-size: 32px;\r\n color: #666699;\r\n font-family: verdana, arial, helvetica, sans-serif;\r\n}<\/pre>\n<h2>Frames<\/h2>\n<p align=\"justify\">WebOnCD projects also uses a page design technique called \u2018frames\u2019. These pages are generally written to \u201cW3C HTML 4.1 Frames\u201d standard. However, additional non-W3C-compliant code is sometimes required within the tag to make the frames appear in a similar manner in both Internet Explorer &amp; Mozilla-family browsers, or to customise the look of frames\u2019 borders.<\/p>\n<p align=\"justify\">Indeed, the Frames method is not without its shortcomings. In developing WebOnCD, three problem areas were identified which were potentially very annoying for the end user\u2026<\/p>\n<ol>\n<li>It is possible to load one frameset within another. This can be very confusing and it was deemed essential that some method be deployed to \u2018break\u2019 WebOnCD frames pages out of other developer\u2019s frames.<\/li>\n<li>Frames pages by their very nature tend to be larger than standard HTML pages. They look really silly squeezed into a tiny window. So it is necessary to make the available window as large as possible.<\/li>\n<li>It is possible for a user to open an HTML page without its parent frame because users have access to the file structure with their file managers. Some scripting is therefore necessary to make this \u2018orphaned\u2019 page load in its parent frame.<\/li>\n<\/ol>\n<p align=\"justify\">So some simple JavaScript scripts were developed to overcome these problems. All WebOnCD frame-tweaking scripts appear between the tags and do not prevent pages from loading if browser does not support JavaScript.<\/p>\n<h2>Scripts used in &#8216;index.htm&#8217; frames page<\/h2>\n<h4 align=\"justify\">This script in the header section ensures that WebOnCD frames page is not loaded inadvertently in another frame&#8230;<\/h4>\n<pre>&lt;script <span class=\"attribute-name\">language<\/span>=\"<a class=\"attribute-value\">JavaScript<\/a>\"&gt;\r\n if (parent.frames.length &gt; 0) {parent.location.href = self.document.location}\r\n<span id=\"line6\"><\/span>&lt;\/<span class=\"end-tag\">script<\/span>&gt;<\/pre>\n<h4 align=\"justify\">This makes WebOnCD &#8216;index.htm&#8217; frames page fill the user&#8217;s screen. First it moves the window to the left of the screen. Then it makes this window fill the user\u2019s screen.<\/h4>\n<pre>&lt;script language=\"JavaScript\"&gt;\r\n self.moveTo(0,0); self.resizeTo(screen.availWidth,screen.availHeight); \r\n&lt;\/script&gt;<\/pre>\n<h2>Script used in child pages<\/h2>\n<h4 align=\"justify\">This script in the header section forces child pages to load in WebOnCD\u2019s &#8216;index.htm&#8217; parent frames page.<\/h4>\n<p align=\"justify\">This is in case the user double-clicks on the child HTML page instead of the parent \u2018index.htm\u2019 page. NOTE: one has to substitute the real name of the child page in the script for &#8216;template.htm&#8217;. It also requires a script in the \u2018index.htm\u2019 parent frames page in order to function correctly\u2026<\/p>\n<pre id=\"line1\">&lt;<span class=\"start-tag\">script<\/span> <span class=\"attribute-name\">language<\/span>=\"<a class=\"attribute-value\">javascript<\/a>\"&gt;\r\n<span id=\"line7\"><\/span> if(self.location==top.location)self.location=\"index.htm?welcome.htm\";\r\n<span id=\"line8\"><\/span>&lt;\/<span class=\"end-tag\">script<\/span>&gt;<\/pre>\n<h4>This line of HTML ensures linked pages end up in the correct frame&#8230;<\/h4>\n<pre><span id=\"line9\"><\/span>&lt;<span class=\"start-tag\">base<\/span> <span class=\"attribute-name\">target<\/span>=\"<a class=\"attribute-value\">_self<\/a>\"&gt;<\/pre>\n<h2>Script used in contents page<\/h2>\n<h4 align=\"justify\">This script in the header section forces WebOnCD\u2019s entire parent &#8216;index.htm&#8217; frames page, including \u2018contents.htm\u2019 frame to load, not just the contents frame on its own&#8230;<\/h4>\n<pre>&lt;<span class=\"start-tag\">script<\/span> <span class=\"attribute-name\">language<\/span>=\"<a class=\"attribute-value\">javascript<\/a>\"&gt;\r\n<span id=\"line6\"><\/span> if(self.location==top.location)self.location=\"index.htm\"; \r\n<span id=\"line7\"><\/span>&lt;\/<span class=\"end-tag\">script<\/span>&gt;<\/pre>\n<h4>This ensures linked pages land up in the main frame&#8230;<\/h4>\n<pre id=\"line1\">&lt;<span class=\"start-tag\">base<\/span> <span class=\"attribute-name\">target<\/span>=\"<a class=\"attribute-value\">main<\/a>\"&gt;<\/pre>\n<h2>Search Engine<\/h2>\n<p align=\"justify\">If the WebOnCD contains a lot of data then a search engine is desirable. However, this needs to be platform independent. So a method was chosen that is JavaScript based. However, to write this script manually would be time-consuming and error-prone. So instead, WebOnCD uses search script generated automatically by a piece shareware called SearchMaker Pro. Current WebOnCD variants are using scripts generated by version 3.2 of this software. The software does not need to be distributed with the WebOnCD disc \u2013 only the JavaScript code it produces. Whilst SearchMaker Pro is a Windows product, the JavaScript-based search engine it produces will run on all major computer platforms. This latest release of SearchMaker Pro also provides search capabilities for non-HTML documents such as PDF\u2019s.<\/p>\n<p align=\"justify\">Additionally to make project management easier, WebOnCD deploys a special feature of SearchMaker pro that enables it to produce the JavaScript separately from the HTML code needed for the search form. This enables the developer to design a highly customised search form whilst the search engine JavaScript is produced automatically by the software.<\/p>\n<h2>References<\/h2>\n<ul>\n<li>Information regarding HTML &amp; CSS standards\u2026<br \/>\n<a href=\"http:\/\/www.w3c.org\/\" target=\"_top\" rel=\"noopener\">http:\/\/www.w3c.org<\/a><\/li>\n<li>On-line working examples of both the JavaScript and the SearchMaker Pro search engine detailed in this document can be found on author\u2019s own website\u2026<br \/>\n<a href=\"http:\/\/www.wessex.org.uk\/dental\/\" target=\"_top\" rel=\"noopener\">http:\/\/www.wessex.org.uk\/dental\/<\/a><\/li>\n<li>Website supporting Wessex Deanery WebOnCD project\u2026<br \/>\n<a href=\"http:\/\/www.wessex.org.uk\/cdrom\" target=\"_top\" rel=\"noopener\">http:\/\/www.wessex.org.uk\/cdrom<\/a><\/li>\n<li>Information regarding JavaScript\u2026<br \/>\n<a href=\"http:\/\/www.javascripter.net\/\" target=\"_top\" rel=\"noopener\">http:\/\/www.javascripter.net<\/a><\/li>\n<li>SearchMaker Pro is available from\u2026<br \/>\n<a href=\"http:\/\/www.searchmakerpro.com\/\" target=\"_top\" rel=\"noopener\">http:\/\/www.searchmakerpro.com<\/a><\/li>\n<\/ul>\n<h2>End Note<\/h2>\n<p>\u201cWebOnCD\u201d is a registered trade mark belonging to Garfield Lucas and registered with the UK Patent Office, REF2005500668. So please feel free to use the idea &#8211; but <b>not<\/b> our trademark!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The WebOnCD concept concerns putting standard HTML (hypertext mark-up language) pages on a local removable disc such as a CD ROM or DVD. Simple WebOnCD publications are very easy to create. They require little previous programming experience, and no special software. Any text editor such as Notepad for Windows, KDE KWrite or Kate for GNU\/Linux&#8230;<\/p>\n","protected":false},"author":1,"featured_media":25757,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0,"_kad_post_transparent":"default","_kad_post_title":"default","_kad_post_layout":"default","_kad_post_sidebar_id":"","_kad_post_content_style":"default","_kad_post_vertical_padding":"default","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[6,18],"tags":[],"class_list":["post-103","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-journal","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>WebOnCD - GarfNet<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WebOnCD - GarfNet\" \/>\n<meta property=\"og:description\" content=\"The WebOnCD concept concerns putting standard HTML (hypertext mark-up language) pages on a local removable disc such as a CD ROM or DVD. Simple WebOnCD publications are very easy to create. They require little previous programming experience, and no special software. Any text editor such as Notepad for Windows, KDE KWrite or Kate for GNU\/Linux...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/\" \/>\n<meta property=\"og:site_name\" content=\"GarfNet\" \/>\n<meta property=\"article:published_time\" content=\"2006-06-05T18:18:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-06T20:23:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2006\/03\/2004-Wessex-Resources.gif\" \/>\n\t<meta property=\"og:image:width\" content=\"1500\" \/>\n\t<meta property=\"og:image:height\" content=\"1000\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/gif\" \/>\n<meta name=\"author\" content=\"Garf\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Garf\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2006\\\/06\\\/05\\\/weboncd\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2006\\\/06\\\/05\\\/weboncd\\\/\"},\"author\":{\"name\":\"Garf\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\"},\"headline\":\"WebOnCD\",\"datePublished\":\"2006-06-05T18:18:34+00:00\",\"dateModified\":\"2025-02-06T20:23:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2006\\\/06\\\/05\\\/weboncd\\\/\"},\"wordCount\":1541,\"publisher\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\"},\"image\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2006\\\/06\\\/05\\\/weboncd\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2006\\\/03\\\/2004-Wessex-Resources.gif\",\"articleSection\":[\"Journal\",\"Technology\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2006\\\/06\\\/05\\\/weboncd\\\/\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2006\\\/06\\\/05\\\/weboncd\\\/\",\"name\":\"WebOnCD - GarfNet\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2006\\\/06\\\/05\\\/weboncd\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2006\\\/06\\\/05\\\/weboncd\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2006\\\/03\\\/2004-Wessex-Resources.gif\",\"datePublished\":\"2006-06-05T18:18:34+00:00\",\"dateModified\":\"2025-02-06T20:23:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2006\\\/06\\\/05\\\/weboncd\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2006\\\/06\\\/05\\\/weboncd\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2006\\\/06\\\/05\\\/weboncd\\\/#primaryimage\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2006\\\/03\\\/2004-Wessex-Resources.gif\",\"contentUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2006\\\/03\\\/2004-Wessex-Resources.gif\",\"width\":1500,\"height\":1000},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2006\\\/06\\\/05\\\/weboncd\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WebOnCD\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#website\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/\",\"name\":\"GarfNet\",\"description\":\"Penguin-powered and full of Unixy goodness, since 1995...\",\"publisher\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\",\"name\":\"Garf\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\",\"contentUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\",\"width\":2420,\"height\":1928,\"caption\":\"Garf\"},\"logo\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\"},\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/author\\\/garf-admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WebOnCD - GarfNet","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/","og_locale":"en_GB","og_type":"article","og_title":"WebOnCD - GarfNet","og_description":"The WebOnCD concept concerns putting standard HTML (hypertext mark-up language) pages on a local removable disc such as a CD ROM or DVD. Simple WebOnCD publications are very easy to create. They require little previous programming experience, and no special software. Any text editor such as Notepad for Windows, KDE KWrite or Kate for GNU\/Linux...","og_url":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/","og_site_name":"GarfNet","article_published_time":"2006-06-05T18:18:34+00:00","article_modified_time":"2025-02-06T20:23:49+00:00","og_image":[{"width":1500,"height":1000,"url":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2006\/03\/2004-Wessex-Resources.gif","type":"image\/gif"}],"author":"Garf","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Garf","Estimated reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/#article","isPartOf":{"@id":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/"},"author":{"name":"Garf","@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635"},"headline":"WebOnCD","datePublished":"2006-06-05T18:18:34+00:00","dateModified":"2025-02-06T20:23:49+00:00","mainEntityOfPage":{"@id":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/"},"wordCount":1541,"publisher":{"@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635"},"image":{"@id":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/#primaryimage"},"thumbnailUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2006\/03\/2004-Wessex-Resources.gif","articleSection":["Journal","Technology"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/","url":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/","name":"WebOnCD - GarfNet","isPartOf":{"@id":"https:\/\/garfnet.org.uk\/cms\/#website"},"primaryImageOfPage":{"@id":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/#primaryimage"},"image":{"@id":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/#primaryimage"},"thumbnailUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2006\/03\/2004-Wessex-Resources.gif","datePublished":"2006-06-05T18:18:34+00:00","dateModified":"2025-02-06T20:23:49+00:00","breadcrumb":{"@id":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/#primaryimage","url":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2006\/03\/2004-Wessex-Resources.gif","contentUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2006\/03\/2004-Wessex-Resources.gif","width":1500,"height":1000},{"@type":"BreadcrumbList","@id":"https:\/\/garfnet.org.uk\/cms\/2006\/06\/05\/weboncd\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/garfnet.org.uk\/cms\/"},{"@type":"ListItem","position":2,"name":"WebOnCD"}]},{"@type":"WebSite","@id":"https:\/\/garfnet.org.uk\/cms\/#website","url":"https:\/\/garfnet.org.uk\/cms\/","name":"GarfNet","description":"Penguin-powered and full of Unixy goodness, since 1995...","publisher":{"@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/garfnet.org.uk\/cms\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635","name":"Garf","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png","url":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png","contentUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png","width":2420,"height":1928,"caption":"Garf"},"logo":{"@id":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png"},"url":"https:\/\/garfnet.org.uk\/cms\/author\/garf-admin\/"}]}},"_links":{"self":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts\/103","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/comments?post=103"}],"version-history":[{"count":22,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts\/103\/revisions"}],"predecessor-version":[{"id":21570,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts\/103\/revisions\/21570"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/media\/25757"}],"wp:attachment":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/media?parent=103"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/categories?post=103"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/tags?post=103"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}