tazweb rev 196

Tiny edits
author Paul Issott <paul@slitaz.org>
date Thu Mar 16 19:58:06 2017 +0000 (2017-03-16)
parents 0a8ab376898d
children b043c09b31f0
files doc/tazweb.en.html lib/helper.sh src/tazweb-ng.c
line diff
     1.1 --- a/doc/tazweb.en.html	Thu Mar 16 15:09:36 2017 +0100
     1.2 +++ b/doc/tazweb.en.html	Thu Mar 16 19:58:06 2017 +0000
     1.3 @@ -17,12 +17,12 @@
     1.4  
     1.5  <p>TazWeb is a modern, radically simple and very light web browser providing all
     1.6  needed functions for daily browsing on the internet. TazWeb is aware of users
     1.7 -privacy, it handle cookies but will NOT store any passwords or other user info.</p>
     1.8 +privacy, it handles cookies but will NOT store any passwords or other user info.</p>
     1.9  
    1.10  <p>TazWeb provides a single window with a small toolbar and a contextual 
    1.11  menu, but without any menubar or tabs. Navigation is done with a right click
    1.12  anywhere in the browser window or from the toolbar. TazWeb lets you quickly
    1.13 -search the web through a search entry redirecting to DuckDuck Go secure search
    1.14 +search the web through a search entry redirecting to a DuckDuck Go secure search
    1.15  engine. This documentation file is always accessible from the right-click 
    1.16  menu.</p>
    1.17  
    1.18 @@ -55,15 +55,15 @@
    1.19  <h3>Security and private browsing</h3>
    1.20  
    1.21  <p>TazWeb is a very secure browser and doesn't store any personal data, 
    1.22 -therefore no sessions, passwords or history files are created but it will
    1.23 +therefore no sessions, passwords or history files are created, but it will
    1.24  handle cookies by default.
    1.25  So your websites cookies will save your peer site settings but logins
    1.26 -and passwords will not be saved and you will have to enter login information
    1.27 +and passwords will not be saved and you will have to re-enter login information
    1.28  each time you restart the browser (by the way websites can track you 
    1.29  with cookies!).</p>
    1.30  
    1.31 -<p>TazWeb provide a private browsing mode who will disable cookies, on-disk
    1.32 -session and global history. You can use the command line option to start
    1.33 +<p>TazWeb provide a private browsing mode which will disable cookies, on-disk
    1.34 +sessions and global histories. You can use the command line option to start
    1.35  TazWeb in private mode:</p>
    1.36  
    1.37  <pre>$ tazweb --private</pre>
    1.38 @@ -80,11 +80,11 @@
    1.39  
    1.40  <h3>Raw and minimal mode</h3>
    1.41  
    1.42 -<p>TazWeb have a very modular interface and everything can be disbaled
    1.43 -to provide a raw webkit window, no toolbar our menu. It provide also
    1.44 +<p>TazWeb has a very modular interface and everything can be disabled
    1.45 +to provide a raw webkit window with no toolbar or menu. It also provides
    1.46  a command line option to have a small (640x480) window suitable for tiny
    1.47  web applications. The option --notoolbar and --nomenu can be used to
    1.48 -hide toolbar and menu, the --raw option will disbale both:</p>
    1.49 +hide the toolbar and menu; the --raw option will disable both:</p>
    1.50  
    1.51  <pre>$ tazweb --raw</pre>
    1.52  
    1.53 @@ -103,7 +103,7 @@
    1.54  to your home page with the right click menu item: <i>“Add a bookmark”</i>.
    1.55  Tazweb also lets you manage your bookmarks via a nifty CGI web interface.</p>
    1.56  
    1.57 -<p>Note: You will find the default bookmarks.txt in: /usr/share/tazweb 
    1.58 +<p>Note: You can find the default bookmarks.txt in: /usr/share/tazweb 
    1.59  or you can get an original copy with the following command in a terminal:</p>
    1.60  
    1.61  <pre>
    1.62 @@ -142,7 +142,7 @@
    1.63  a location, Tazweb will transform URLs for you.
    1.64  To activate a new URL you must press ENTER.</p>
    1.65  
    1.66 -<p>The search entry lets you search the web at anytime using Google.
    1.67 +<p>The search entry lets you search the web at any time using Google.
    1.68  Just enter your query and press ENTER or click on the entry icon to validate your request.</p>
    1.69  
    1.70  
     2.1 --- a/lib/helper.sh	Thu Mar 16 15:09:36 2017 +0100
     2.2 +++ b/lib/helper.sh	Thu Mar 16 19:58:06 2017 +0000
     2.3 @@ -97,7 +97,7 @@
     2.4  		--column="$(gettext 'URL')"
     2.5  }
     2.6  
     2.7 -# Rebuilt bookmarks.txt since some entry may have been edited and remove
     2.8 +# Rebuild bookmarks.txt since some entries may have been edited and remove
     2.9  # selected (TRUE) entries.
    2.10  bookmarks_handler() {
    2.11  	IFS="|"
     3.1 --- a/src/tazweb-ng.c	Thu Mar 16 15:09:36 2017 +0100
     3.2 +++ b/src/tazweb-ng.c	Thu Mar 16 19:58:06 2017 +0000
     3.3 @@ -1,6 +1,6 @@
     3.4  /*
     3.5   * TazWeb is a radically simple web browser providing a single window
     3.6 - * with a single toolbar with buttons, an URL entry and search as well
     3.7 + * with a single toolbar with buttons, a URL entry and search as well
     3.8   * as a contextual menu, but no menu bar or tabs. Commented line code
     3.9   * starts with // and comments are between * *
    3.10   *
    3.11 @@ -574,7 +574,7 @@
    3.12  	argc -= optind;
    3.13  	argv += optind;
    3.14  
    3.15 -	/* FreeBSD sytle! */
    3.16 +	/* FreeBSD style! */
    3.17  	TAILQ_INIT(&tabs);
    3.18  
    3.19  	/* Initialize GTK */