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

Update user documentation for fullscreen mode
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 04 23:12:09 2011 +0200 (2011-04-04)
parents 70b548105df2
children 4b052ce9cfe8
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@16 30 single window with a small toolbar but any menubar or tabs. Navigation
pankso@23 31 is done with a right click anywhere in the browser window or from the
pankso@23 32 toolbar. Also fullscreen mode and this documentation file are accessible
pankso@23 33 from the right side of the toolbar.
pankso@3 34 </p>
pankso@3 35 <p>
pankso@3 36 SliTaz Web Browser was created for the needs of TazPanel who is
pankso@3 37 the SliTaz administration and packages manager panel all done with
pankso@16 38 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
pankso@16 44 use Webkit engine for page rendering and so, support all latest web
pankso@3 45 standard 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>
pankso@3 51 The default start page as been defined is source code and can't be
pankso@3 52 changed and it is the default SliTaz WebHome, but TazWeb accept an
pankso@3 53 URL as 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
pankso@3 62 to block slitaz-configs or make a backup because it will be overwrite
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