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

Add degault bookmark file with separated CSS file also for doc
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 15 04:45:26 2011 +0200 (2011-04-15)
parents 46c4cc2696fc
children 96934e036b67
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@38 6 <link rel="stylesheet" type="text/css" href="style.css" />
pankso@3 7 </head>
pankso@3 8 <body>
pankso@3 9
pankso@3 10 <div id="header">
pankso@3 11 <h1>TazWeb Documentation</h1>
pankso@3 12 </div>
pankso@3 13
pankso@3 14 <!-- Start content -->
pankso@3 15 <div id="content">
pankso@3 16
pankso@3 17 <h2>SliTaz Web Browser</h2>
pankso@3 18
pankso@3 19 <p>
paul@31 20 TazWeb is radically simple and very light web browser providing a
paul@31 21 single window with a small toolbar, but without any menubar or tabs.
paul@31 22 Navigation is done with a right click anywhere in the browser window
pankso@36 23 or from the toolbar. Also a fullscreen mode, bookmarks, home page
pankso@36 24 and this documentation file are accessible from the right-hand side
pankso@36 25 of the toolbar.
pankso@3 26 </p>
pankso@3 27 <p>
paul@31 28 SliTaz Web Browser was created for the needs of TazPanel which is
paul@31 29 the SliTaz administration and packages manager panel and made with
pankso@36 30 the latest technologies such as xHTML 5 and CSS 3 for the graphical
pankso@36 31 user interface. The content is powered by CGI scripts and the prefered
pankso@16 32 web server is Busybox httpd.
pankso@3 33 </p>
pankso@3 34 <p>
pankso@3 35 The browser is small, very small, the binary is about 12 Kb and
paul@31 36 uses the Webkit engine for page rendering and therefore, supports
paul@31 37 all latest web standards as well as Javascript.
pankso@3 38 </p>
pankso@3 39
pankso@38 40 <h3>My TazWeb Page</h3>
pankso@36 41 <p>
pankso@38 42 TazWeb handle a personnal page located in your Freedesktop standard
pankso@38 43 configuration directory, the path is: $HOME/.config/tazweb/page.html
pankso@38 44 It let you have a custom page with bookmarks and other content. The
pankso@38 45 CSS style is defined in $HOME/.config/tazweb/style.css
pankso@36 46 </p>
pankso@36 47 <p>
pankso@38 48 The file is a simple xHTML 5 document with, by default, a list of
pankso@38 49 links and a box. You can edit this file with you favorite editor
pankso@38 50 and add content such as bookmarks entries or change the look and
pankso@38 51 feel as you want. At first start TazWeb will create and copy your
pankso@38 52 personnal page and style in your config directory.
pankso@38 53 </p>
pankso@38 54 <p>
pankso@38 55 Note: You will find the default page.html in: /usr/share/tazweb and
pankso@38 56 can get an original copy with the following commands in a terminal:
pankso@36 57 </p>
pankso@36 58 <pre>
pankso@36 59 $ mkdir -p $HOME/.config/tazweb
pankso@38 60 $ cp /usr/share/tazweb/*.html $HOME/.config/tazweb
pankso@38 61 $ cp /usr/share/tazweb/*.css $HOME/.config/tazweb
pankso@36 62 </pre>
pankso@36 63
pankso@3 64 <h3>Home page and url in argument</h3>
pankso@3 65
pankso@3 66 <p>
paul@31 67 The default start page has been defined in the source code and can't be
paul@31 68 changed and is the default SliTaz WebHome, but TazWeb accepts an
paul@31 69 URL as a first argument, example: http://www.slitaz.org/. In this way
pankso@3 70 you can for example create your own and custom home page in a pretty
pankso@3 71 xHTML document and start tazweb with a standard desktop file or from
pankso@36 72 the command line: tazweb file://$HOME/.config/tazweb/home.html
pankso@3 73 </p>
pankso@3 74 <p>
pankso@3 75 If you want a custom home page for your Live system or all system users,
pankso@3 76 you can create your own slitaz-configs package or edit the xHTML file
pankso@3 77 located in /usr/share/webhome/index.html. If you modify it, make sure
paul@31 78 to block slitaz-configs or make a backup because it will be overwritten
pankso@3 79 with a slitaz-configs package update.
pankso@3 80 </p>
pankso@3 81
pankso@3 82 <h3>Web applications</h3>
pankso@3 83 <p>
pankso@3 84 TazWeb browser is perfect to launch web applications via a simple
pankso@3 85 desktop file. Once created with a simple text editor, the desktop
pankso@3 86 file can stand on the desktop with a nice icon or in the standard
pankso@36 87 SliTaz menu. Example of a web application launcher that you could
pankso@36 88 name scn.desktop:
pankso@3 89 </p>
pankso@3 90 <pre>
pankso@3 91 [Desktop Entry]
pankso@3 92 Type=Application
pankso@3 93 Name=SliTaz SCN
pankso@3 94 Icon=slitaz-menu
pankso@3 95 Exec=tazweb http://scn.slitaz.org/
pankso@3 96 </pre>
pankso@3 97
pankso@3 98 <!-- End content -->
pankso@3 99 </div>
pankso@3 100
pankso@3 101 <div id="footer">
pankso@3 102 Copyright (C) 2011 SliTaz GNU/Linux
pankso@3 103 </div>
pankso@3 104
pankso@3 105 </body>
pankso@3 106 </html>
pankso@3 107