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

Add the user documentation
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 04 02:43:23 2011 +0200 (2011-04-04)
parents
children 70b548105df2
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>
pankso@3 29 TazWeb is radically simple and very light web browser provinding a
pankso@3 30 single window without any toolbar, menubar or tabs. Navigation is
pankso@3 31 done with a right click anywhere in the browser window.
pankso@3 32 </p>
pankso@3 33 <p>
pankso@3 34 SliTaz Web Browser was created for the needs of TazPanel who is
pankso@3 35 the SliTaz administration and packages manager panel all done with
pankso@3 36 latest technology such as xHTML 5 and CSS 3 for the graphical user
pankso@3 37 interface. The content is powered by CGI scripts and the prefered
pankso@3 38 web servre is Busybox httpd.
pankso@3 39 </p>
pankso@3 40 <p>
pankso@3 41 The browser is small, very small, the binary is about 12 Kb and
pankso@3 42 use Webkit engine for page rendering and so support all latest web
pankso@3 43 standard as well as Javascript.
pankso@3 44 </p>
pankso@3 45
pankso@3 46 <h3>Home page and url in argument</h3>
pankso@3 47
pankso@3 48 <p>
pankso@3 49 The default start page as been defined is source code and can't be
pankso@3 50 changed and it is the default SliTaz WebHome, but TazWeb accept an
pankso@3 51 URL as first argument, example: http://www.slitaz.org/. In this way
pankso@3 52 you can for example create your own and custom home page in a pretty
pankso@3 53 xHTML document and start tazweb with a standard desktop file or from
pankso@3 54 the command line: tazweb file://$HOME/file.html
pankso@3 55 </p>
pankso@3 56 <p>
pankso@3 57 If you want a custom home page for your Live system or all system users,
pankso@3 58 you can create your own slitaz-configs package or edit the xHTML file
pankso@3 59 located in /usr/share/webhome/index.html. If you modify it, make sure
pankso@3 60 to block slitaz-configs or make a backup because it will be overwrite
pankso@3 61 with a slitaz-configs package update.
pankso@3 62 </p>
pankso@3 63
pankso@3 64 <h3>Web applications</h3>
pankso@3 65 <p>
pankso@3 66 TazWeb browser is perfect to launch web applications via a simple
pankso@3 67 desktop file. Once created with a simple text editor, the desktop
pankso@3 68 file can stand on the desktop with a nice icon or in the standard
pankso@3 69 SliTaz menu. Example of a web application launcher:
pankso@3 70 </p>
pankso@3 71 <pre>
pankso@3 72 [Desktop Entry]
pankso@3 73 Type=Application
pankso@3 74 Name=SliTaz SCN
pankso@3 75 Icon=slitaz-menu
pankso@3 76 Exec=tazweb http://scn.slitaz.org/
pankso@3 77 </pre>
pankso@3 78
pankso@3 79 <!-- End content -->
pankso@3 80 </div>
pankso@3 81
pankso@3 82 <div id="footer">
pankso@3 83 Copyright (C) 2011 SliTaz GNU/Linux
pankso@3 84 </div>
pankso@3 85
pankso@3 86 </body>
pankso@3 87 </html>
pankso@3 88