tazweb diff 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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/doc/tazweb.en.html	Mon Apr 04 02:43:23 2011 +0200
     1.3 @@ -0,0 +1,88 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html xmlns="http://www.w3.org/1999/xhtml">
     1.6 +<head>
     1.7 +	<title>TazWeb Documentation</title>
     1.8 +	<meta charset="utf-8" />
     1.9 +	<style type="text/css">
    1.10 +	body { font: 88% sans-serif, vernada, arial; margin: 0; }
    1.11 +	#header { background: #351a0a; height: 40px; border-bottom: 8px solid #d66018; }
    1.12 +	#content { margin: 40px 80px; text-align: justify; }
    1.13 +	#footer { text-align: center; padding: 20px; border-top: 1px solid #ddd; }
    1.14 +	h1 { margin: 0; padding: 8px; color: #fff; font-size: 20px; }
    1.15 +	h2 { color: #444; } h3 { color: #666; font-size: 140%; }
    1.16 +	pre { background-color: #f8f8f8; border: 1px solid #ddd; padding: 10px;
    1.17 +		-moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;}
    1.18 +	</style>
    1.19 +</head>
    1.20 +<body>
    1.21 +	
    1.22 +<div id="header">
    1.23 +	<h1>TazWeb Documentation</h1>
    1.24 +</div>
    1.25 +
    1.26 +<!-- Start content -->
    1.27 +<div id="content">
    1.28 +
    1.29 +<h2>SliTaz Web Browser</h2>
    1.30 +
    1.31 +<p>
    1.32 +	TazWeb is radically simple and very light web browser provinding a
    1.33 +	single window without any toolbar, menubar or tabs. Navigation is
    1.34 +	done with a right click anywhere in the browser window.
    1.35 +</p>
    1.36 +<p>
    1.37 +	SliTaz Web Browser was created for the needs of TazPanel who is
    1.38 +	the SliTaz administration and packages manager panel all done with
    1.39 +	latest technology such as xHTML 5 and CSS 3 for the graphical user
    1.40 +	interface. The content is powered by CGI scripts and the prefered
    1.41 +	web servre is Busybox httpd.
    1.42 +</p>
    1.43 +<p>
    1.44 +	The browser is small, very small, the binary is about 12 Kb and
    1.45 +	use Webkit engine for page rendering and so support all latest web
    1.46 +	standard as well as Javascript.
    1.47 +</p>
    1.48 +
    1.49 +<h3>Home page and url in argument</h3>
    1.50 +
    1.51 +<p>
    1.52 +	The default start page as been defined is source code and can't be
    1.53 +	changed and it is the default SliTaz WebHome, but TazWeb accept an
    1.54 +	URL as first argument, example: http://www.slitaz.org/. In this way
    1.55 +	you can for example create your own and custom home page in a pretty
    1.56 +	xHTML document and start tazweb with a standard desktop file or from
    1.57 +	the command line: tazweb file://$HOME/file.html
    1.58 +</p>
    1.59 +<p>
    1.60 +	If you want a custom home page for your Live system or all system users,
    1.61 +	you can create your own slitaz-configs package or edit the xHTML file
    1.62 +	located in /usr/share/webhome/index.html. If you modify it, make sure
    1.63 +	to block slitaz-configs or make a backup because it will be overwrite
    1.64 +	with a slitaz-configs package update.
    1.65 +</p>
    1.66 +
    1.67 +<h3>Web applications</h3>
    1.68 +<p>
    1.69 +	TazWeb browser is perfect to launch web applications via a simple
    1.70 +	desktop file. Once created with a simple text editor, the desktop
    1.71 +	file can stand on the desktop with a nice icon or in the standard
    1.72 +	SliTaz menu. Example of a web application launcher:
    1.73 +</p>
    1.74 +<pre>
    1.75 +[Desktop Entry]
    1.76 +Type=Application
    1.77 +Name=SliTaz SCN
    1.78 +Icon=slitaz-menu
    1.79 +Exec=tazweb http://scn.slitaz.org/
    1.80 +</pre>
    1.81 +
    1.82 +<!-- End content -->
    1.83 +</div>
    1.84 +
    1.85 +<div id="footer">
    1.86 +	Copyright (C)  2011  SliTaz GNU/Linux
    1.87 +</div>
    1.88 +
    1.89 +</body>
    1.90 +</html>
    1.91 +