tazweb annotate doc/tazweb.en.html @ rev 31

Edit en.html, README
author Paul Issott <paul@slitaz.org>
date Tue Apr 05 19:20:33 2011 +0100 (2011-04-05)
parents 45fe7984b87e
children 46c4cc2696fc
rev   line source
pankso@3 1 <!DOCTYPE html>
pankso@3 2 <html xmlns="http://www.w3.org/1999/xhtml">
pankso@3 3 <head>
pankso@3 4 <title>TazWeb Documentation</title>
pankso@3 5 <meta charset="utf-8" />
pankso@3 6 <style type="text/css">
pankso@3 7 body { font: 88% sans-serif, vernada, arial; margin: 0; }
pankso@3 8 #header { background: #351a0a; height: 40px; border-bottom: 8px solid #d66018; }
pankso@3 9 #content { margin: 40px 80px; text-align: justify; }
pankso@3 10 #footer { text-align: center; padding: 20px; border-top: 1px solid #ddd; }
pankso@3 11 h1 { margin: 0; padding: 8px; color: #fff; font-size: 20px; }
pankso@3 12 h2 { color: #444; } h3 { color: #666; font-size: 140%; }
pankso@3 13 pre { background-color: #f8f8f8; border: 1px solid #ddd; padding: 10px;
pankso@3 14 -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;}
pankso@3 15 </style>
pankso@3 16 </head>
pankso@3 17 <body>
pankso@3 18
pankso@3 19 <div id="header">
pankso@3 20 <h1>TazWeb Documentation</h1>
pankso@3 21 </div>
pankso@3 22
pankso@3 23 <!-- Start content -->
pankso@3 24 <div id="content">
pankso@3 25
pankso@3 26 <h2>SliTaz Web Browser</h2>
pankso@3 27
pankso@3 28 <p>
paul@31 29 TazWeb is radically simple and very light web browser providing a
paul@31 30 single window with a small toolbar, but without any menubar or tabs.
paul@31 31 Navigation is done with a right click anywhere in the browser window
paul@31 32 or from the toolbar. Also a fullscreen mode and this documentation file
paul@31 33 are accessible from the right-hand side of the toolbar.
pankso@3 34 </p>
pankso@3 35 <p>
paul@31 36 SliTaz Web Browser was created for the needs of TazPanel which is
paul@31 37 the SliTaz administration and packages manager panel and made with
paul@31 38 the latest technologies such as xHTML 5 and CSS 3 for the graphical user
pankso@3 39 interface. The content is powered by CGI scripts and the prefered
pankso@16 40 web server is Busybox httpd.
pankso@3 41 </p>
pankso@3 42 <p>
pankso@3 43 The browser is small, very small, the binary is about 12 Kb and
paul@31 44 uses the Webkit engine for page rendering and therefore, supports
paul@31 45 all latest web standards as well as Javascript.
pankso@3 46 </p>
pankso@3 47
pankso@3 48 <h3>Home page and url in argument</h3>
pankso@3 49
pankso@3 50 <p>
paul@31 51 The default start page has been defined in the source code and can't be
paul@31 52 changed and is the default SliTaz WebHome, but TazWeb accepts an
paul@31 53 URL as a first argument, example: http://www.slitaz.org/. In this way
pankso@3 54 you can for example create your own and custom home page in a pretty
pankso@3 55 xHTML document and start tazweb with a standard desktop file or from
pankso@3 56 the command line: tazweb file://$HOME/file.html
pankso@3 57 </p>
pankso@3 58 <p>
pankso@3 59 If you want a custom home page for your Live system or all system users,
pankso@3 60 you can create your own slitaz-configs package or edit the xHTML file
pankso@3 61 located in /usr/share/webhome/index.html. If you modify it, make sure
paul@31 62 to block slitaz-configs or make a backup because it will be overwritten
pankso@3 63 with a slitaz-configs package update.
pankso@3 64 </p>
pankso@3 65
pankso@3 66 <h3>Web applications</h3>
pankso@3 67 <p>
pankso@3 68 TazWeb browser is perfect to launch web applications via a simple
pankso@3 69 desktop file. Once created with a simple text editor, the desktop
pankso@3 70 file can stand on the desktop with a nice icon or in the standard
pankso@3 71 SliTaz menu. Example of a web application launcher:
pankso@3 72 </p>
pankso@3 73 <pre>
pankso@3 74 [Desktop Entry]
pankso@3 75 Type=Application
pankso@3 76 Name=SliTaz SCN
pankso@3 77 Icon=slitaz-menu
pankso@3 78 Exec=tazweb http://scn.slitaz.org/
pankso@3 79 </pre>
pankso@3 80
pankso@3 81 <!-- End content -->
pankso@3 82 </div>
pankso@3 83
pankso@3 84 <div id="footer">
pankso@3 85 Copyright (C) 2011 SliTaz GNU/Linux
pankso@3 86 </div>
pankso@3 87
pankso@3 88 </body>
pankso@3 89 </html>
pankso@3 90