tazweb rev 0
Initial commit with README COPYING AUTHORS
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Mon Apr 04 02:41:20 2011 +0200 (2011-04-04) |
parents | |
children | e5f8ff50f9fc |
files | AUTHORS COPYING README |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/AUTHORS Mon Apr 04 02:41:20 2011 +0200 1.3 @@ -0,0 +1,1 @@ 1.4 +Christophe Lincoln <pankso@slitaz.org>
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/COPYING Mon Apr 04 02:41:20 2011 +0200 2.3 @@ -0,0 +1,36 @@ 2.4 +TazWeb Copyright License 2.5 +=============================================================================== 2.6 + 2.7 + 2.8 +Copyright (C) 2011 SliTaz GNU/Linux <devel@slitaz.org> 2.9 + 2.10 + 2.11 +When TazWeb started, some code have been take from GtkLauncher example browse 2.12 +found in the GTKWebkit source tarball and is: 2.13 + 2.14 + Copyright (C) 2006, 2007 Apple Inc. 2.15 + Copyright (C) 2007 Alp Toker <alp@atoker.com> 2.16 + 2.17 +BSD License 2.18 +----------- 2.19 + 2.20 +Redistribution and use in source and binary forms, with or without 2.21 +modification, are permitted provided that the following conditions 2.22 +are met: 2.23 +1. Redistributions of source code must retain the above copyright 2.24 + notice, this list of conditions and the following disclaimer. 2.25 +2. Redistributions in binary form must reproduce the above copyright 2.26 + notice, this list of conditions and the following disclaimer in the 2.27 + documentation and/or other materials provided with the distribution. 2.28 + 2.29 +THIS SOFTWARE IS PROVIDED BY SLITAZ GNU/LINUX. ``AS IS'' AND ANY 2.30 +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 2.31 +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 2.32 +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SLITAZ GNU/LINUX. OR 2.33 +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 2.34 +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 2.35 +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 2.36 +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 2.37 +OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2.38 +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 2.39 +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/README Mon Apr 04 02:41:20 2011 +0200 3.3 @@ -0,0 +1,43 @@ 3.4 +TazWeb - SliTaz Web Browser 3.5 +================================================================================ 3.6 + 3.7 + 3.8 +TazWeb is radically simple and very light web browser provinding a single 3.9 +window without any toolbar, menubar or tabs. Please keep the code simple 3.10 +and clean, if you are motivated and want to add some entry in the context 3.11 +menu, please talk to the AUTHOR before commiting anything in the repo. 3.12 + 3.13 +This application have been crated for Tazpanel and future SliTaz integrated 3.14 +Web applications. The goal is by far to have a full featured web browser. But 3.15 +if you have a way to provind a simple plugins mechanism, it would be great. 3.16 + 3.17 +In the src/ directory you find a version of tazweb with a toolbar for a 3.18 +go-home, go-back, go-next, url entry. The idea with TazWeb is to dont 3.19 +have a toolbar by default, but we could have one in option from the 3.20 +context menu or the cmdline: tazweb --toolbar. Or just, some button 3.21 +icons in the right left of the screen for go-home, go back and go-next. 3.22 +That said, the aproach is to build all the GUI with xHTML and CSS like 3.23 +in TazPanel. 3.24 + 3.25 +For general and end-user documentation have a look at doc/tazweb.html. 3.26 +TazWeb is published, like webkit source under a free BSD license 3.27 + 3.28 +BUG: When right on on link the "Open Link in New Window dont work 3.29 + 3.30 + 3.31 +Build and install 3.32 +----------------- 3.33 +TazWeb depends on GTK and libwebkit. To build and test, simply: 3.34 + 3.35 +$ make 3.36 +$ ./tazweb 3.37 + 3.38 +For the version with a toolbar: 3.39 + 3.40 +$ make toolbar 3.41 +$ ./tazweb-toolbar 3.42 + 3.43 +Install with 'make install' (PREFIX and DESTDIR are supported for packaging) 3.44 + 3.45 + 3.46 +================================================================================