tazweb rev 109

WebHome now localizable and translated to ru, doc also translated to ru, Makefile changed, tiny edit in docs on other langs
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Mar 20 23:12:06 2012 +0200 (2012-03-20)
parents 7eb814fc8393
children 8d65e3eb767d
files Makefile data/home.en.html data/home.html data/home.ru.html data/tazweb.desktop doc/tazweb.en.html doc/tazweb.es.html doc/tazweb.pt.html
line diff
     1.1 --- a/Makefile	Fri Mar 09 14:37:15 2012 +0100
     1.2 +++ b/Makefile	Tue Mar 20 23:12:06 2012 +0200
     1.3 @@ -25,6 +25,10 @@
     1.4  		$(DESTDIR)$(PREFIX)/share/pixmaps/tazweb.png
     1.5  	install -m 0644 data/tazweb.desktop \
     1.6  		$(DESTDIR)$(PREFIX)/share/applications
     1.7 +	install -m 0644 data/home.en.html \
     1.8 +		$(DESTDIR)$(PREFIX)/share/tazweb
     1.9 +	install -m 0644 data/home.ru.html \
    1.10 +		$(DESTDIR)$(PREFIX)/share/tazweb
    1.11  	install -m 0644 data/home.html \
    1.12  		$(DESTDIR)$(PREFIX)/share/tazweb
    1.13  	install -m 0644 data/style.css \
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/data/home.en.html	Tue Mar 20 23:12:06 2012 +0200
     2.3 @@ -0,0 +1,57 @@
     2.4 +<!DOCTYPE html>
     2.5 +<html xmlns="http://www.w3.org/1999/xhtml">
     2.6 +<head>
     2.7 +	<title>My Web Page</title>
     2.8 +	<meta charset="utf-8" />
     2.9 +	<link rel="stylesheet" type="text/css" href="style.css" />
    2.10 +</head>
    2.11 +<body>
    2.12 +
    2.13 +<div id="header">
    2.14 +	<h1>My Web Home</h1>
    2.15 +</div>
    2.16 +
    2.17 +<!-- start:content -->
    2.18 +<div id="content">
    2.19 +
    2.20 +<!--
    2.21 +	Welcome to your personal and custom TazWeb page: a pure xHTML 5 file
    2.22 +	with some CSS for the design, you can customize it as you want. All
    2.23 +	the page style is in the file: style.css. To add a section title you
    2.24 +	can use <h2></h2> elements and <div></div> to organize content.
    2.25 +-->
    2.26 +
    2.27 +<div id="cloud">
    2.28 +	<a class="tag4" href="http://www.slitaz.org/">SliTaz Website</a>
    2.29 +	<a class="tag6" href="http://scn.slitaz.org/">SCN</a>
    2.30 +	<a class="tag8" href="http://wikipedia.org/">Wikipedia</a>
    2.31 +	<a class="tag5" href="http://forum.slitaz.org/">SliTaz Forum</a>
    2.32 +	<a class="tag4" href="http://duckduckgo.com/">DuckDuckGo</a>
    2.33 +	<a class="tag4" href="http://www.google.com/">Google</a>
    2.34 +	<a class="tag6" href="http://doc.slitaz.org/">SliTaz Wiki</a>
    2.35 +	<a class="tag5" href="http://twitter.com">Twitter</a>
    2.36 +	<a class="tag2" href="http://search.yahoo.com/">Yahoo</a>
    2.37 +	<a class="tag8" href="http://tazpanel:82/">TazPanel</a>
    2.38 +</div>
    2.39 +
    2.40 +<!--
    2.41 +	The bookmarks list must finish with end:bookmarks markup since it
    2.42 +	is used by TazWeb to add a new item via the right click menu. Tip:
    2.43 +	you can add a favicon image with a bookmark URL by adding this code
    2.44 +	between <li> and <a : <img src="http://www.gnu.org/favicon.ico" />
    2.45 +-->
    2.46 +
    2.47 +<h2>Bookmarks</h2>
    2.48 +<ul>
    2.49 +	<!-- start:bookmarks -->
    2.50 +	<li><a href="http://bugs.slitaz.org/">SliTaz Bug tracker</a></li>
    2.51 +	<li><a href="http://www.gnu.org/">The GNU Website</a></li>
    2.52 +	<li><a href="http://is.gd/">is.gd URL shortener</a></li>
    2.53 +	<!-- end:bookmarks -->
    2.54 +</ul>
    2.55 +
    2.56 +<!-- End content -->
    2.57 +</div>
    2.58 +
    2.59 +</body>
    2.60 +</html>
     3.1 --- a/data/home.html	Fri Mar 09 14:37:15 2012 +0100
     3.2 +++ b/data/home.html	Tue Mar 20 23:12:06 2012 +0200
     3.3 @@ -1,57 +1,1 @@
     3.4 -<!DOCTYPE html>
     3.5 -<html xmlns="http://www.w3.org/1999/xhtml">
     3.6 -<head>
     3.7 -	<title>My Web Page</title>
     3.8 -	<meta charset="utf-8" />
     3.9 -	<link rel="stylesheet" type="text/css" href="style.css" />
    3.10 -</head>
    3.11 -<body>
    3.12 -
    3.13 -<div id="header">
    3.14 -	<h1>My Web Home</h1>
    3.15 -</div>
    3.16 -
    3.17 -<!-- start:content -->
    3.18 -<div id="content">
    3.19 -
    3.20 -<!--
    3.21 -	Welcome to your personal and custom TazWeb page: a pure xHTML 5 file
    3.22 -	with some CSS for the design, you can customize it as you want. All
    3.23 -	the page style is in the file: style.css. To add a section title you
    3.24 -	can use <h2></h2> elements and <div></div> to organize content.
    3.25 --->
    3.26 -
    3.27 -<div id="cloud">
    3.28 -	<a class="tag4" href="http://www.slitaz.org/">SliTaz Website</a>
    3.29 -	<a class="tag6" href="http://scn.slitaz.org/">SCN</a>
    3.30 -	<a class="tag8" href="http://wikipedia.org/">Wikipedia</a>
    3.31 -	<a class="tag5" href="http://forum.slitaz.org/">SliTaz Forum</a>
    3.32 -	<a class="tag4" href="http://duckduckgo.com/">DuckDuckGo</a>
    3.33 -	<a class="tag4" href="http://www.google.com/">Google</a>
    3.34 -	<a class="tag6" href="http://doc.slitaz.org/">SliTaz Wiki</a>
    3.35 -	<a class="tag5" href="http://twitter.com">Twitter</a>
    3.36 -	<a class="tag2" href="http://search.yahoo.com/">Yahoo</a>
    3.37 -	<a class="tag8" href="http://tazpanel:82/">TazPanel</a>
    3.38 -</div>
    3.39 -
    3.40 -<!--
    3.41 -	The bookmarks list must finish with end:bookmarks markup since it
    3.42 -	is used by TazWeb to add a new item via the right click menu. Tip:
    3.43 -	you can add a favicon image with a bookmark URL by adding this code
    3.44 -	between <li> and <a : <img src="http://www.gnu.org/favicon.ico" />
    3.45 --->
    3.46 -
    3.47 -<h2>Bookmarks</h2>
    3.48 -<ul>
    3.49 -	<!-- start:bookmarks -->
    3.50 -	<li><a href="http://bugs.slitaz.org/">SliTaz Bug tracker</a></li>
    3.51 -	<li><a href="http://www.gnu.org/">The GNU Website</a></li>
    3.52 -	<li><a href="http://is.gd/">is.gd URL shortener</a></li>
    3.53 -	<!-- end:bookmarks -->
    3.54 -</ul>
    3.55 -
    3.56 -<!-- End content -->
    3.57 -</div>
    3.58 -
    3.59 -</body>
    3.60 -</html>
    3.61 +home.en.html
    3.62 \ No newline at end of file
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/data/home.ru.html	Tue Mar 20 23:12:06 2012 +0200
     4.3 @@ -0,0 +1,59 @@
     4.4 +<!DOCTYPE html>
     4.5 +<html xmlns="http://www.w3.org/1999/xhtml" lang="ru">
     4.6 +<head>
     4.7 +	<meta charset="utf-8" />
     4.8 +	<title>Моя веб-страница</title>
     4.9 +	<link rel="stylesheet" type="text/css" href="style.css" />
    4.10 +</head>
    4.11 +<body>
    4.12 +
    4.13 +<div id="header">
    4.14 +	<h1>Моя домашняя страница</h1>
    4.15 +</div>
    4.16 +
    4.17 +<!-- start:content -->
    4.18 +<div id="content">
    4.19 +
    4.20 +<!--
    4.21 +	Добро пожаловать на вашу личную и настраиваемую страницу TazWeb:
    4.22 +	перед вами файл формата xHTML 5 с небольшим добавлением CSS для дизайна,
    4.23 +	всё это вы можете настроить, как вы хотите. Все стили страницы находятся
    4.24 +	в файле style.css. Чтобы добавить название раздела, используйте теги
    4.25 +	<h2>…</h2>, а для организации содержимого используйте <div>…</div>.
    4.26 +-->
    4.27 +
    4.28 +<div id="cloud">
    4.29 +	<a class="tag4" href="http://www.slitaz.org/">Сайт SliTaz</a>
    4.30 +	<a class="tag6" href="http://scn.slitaz.org/">SCN</a>
    4.31 +	<a class="tag8" href="http://wikipedia.org/">Википедия</a>
    4.32 +	<a class="tag5" href="http://forum.slitaz.org/">Форум SliTaz</a>
    4.33 +	<a class="tag4" href="http://duckduckgo.com/">DuckDuckGo</a>
    4.34 +	<a class="tag4" href="http://www.google.com/">Google</a>
    4.35 +	<a class="tag6" href="http://doc.slitaz.org/">Wiki SliTaz</a>
    4.36 +	<a class="tag5" href="http://twitter.com">Twitter</a>
    4.37 +	<a class="tag2" href="http://search.yahoo.com/">Yahoo</a>
    4.38 +	<a class="tag8" href="http://tazpanel:82/">TazPanel</a>
    4.39 +</div>
    4.40 +
    4.41 +<!--
    4.42 +	Список закладок обязательно должен заканчиваться строкой с текстом
    4.43 +	«end:bookmarks», поскольку эта строка используется TazWeb для добавления
    4.44 +	новых элементов с помощью контекстного меню. Совет: вы можете поместить
    4.45 +	значок перед адресом закладки, добавив примерно такой код между <li> и <a:
    4.46 +	<img src="http://www.gnu.org/favicon.ico" />
    4.47 +-->
    4.48 +
    4.49 +<h2>Закладки</h2>
    4.50 +<ul>
    4.51 +	<!-- start:bookmarks -->
    4.52 +	<li><a href="http://bugs.slitaz.org/">Баг-трекер SliTaz</a></li>
    4.53 +	<li><img src="http://www.gnu.org/favicon.ico" /><a href="http://www.gnu.org/">Сайт GNU</a></li>
    4.54 +	<li><a href="http://is.gd/">Сокращатель ссылок is.gd</a></li>
    4.55 +	<!-- end:bookmarks -->
    4.56 +</ul>
    4.57 +
    4.58 +<!-- End content -->
    4.59 +</div>
    4.60 +
    4.61 +</body>
    4.62 +</html>
     5.1 --- a/data/tazweb.desktop	Fri Mar 09 14:37:15 2012 +0100
     5.2 +++ b/data/tazweb.desktop	Tue Mar 20 23:12:06 2012 +0200
     5.3 @@ -1,6 +1,7 @@
     5.4  [Desktop Entry]
     5.5  Type=Application
     5.6  Name=TazWeb Browser
     5.7 +Name[ru]=Браузер TazWeb
     5.8  Icon=tazweb
     5.9  Exec=tazweb %u
    5.10  Categories=Network;
     6.1 --- a/doc/tazweb.en.html	Fri Mar 09 14:37:15 2012 +0100
     6.2 +++ b/doc/tazweb.en.html	Tue Mar 20 23:12:06 2012 +0200
     6.3 @@ -75,7 +75,7 @@
     6.4  	your home page with the right click menu item: <i>"Add a bookmark"</i>. To function
     6.5  	TazWeb uses markup in your home.html document; this markup should not
     6.6  	be removed if you want bookmarking to work since each new item will be
     6.7 -	added just before the line: <i>&gt;!-- end:bookmarks --&lt;</i>
     6.8 +	added just before the line: <i>&lt;!-- end:bookmarks --&gt;</i>
     6.9  </p>
    6.10  <p>
    6.11  	Note: You will find the default home.html in: /usr/share/tazweb and
     7.1 --- a/doc/tazweb.es.html	Fri Mar 09 14:37:15 2012 +0100
     7.2 +++ b/doc/tazweb.es.html	Tue Mar 20 23:12:06 2012 +0200
     7.3 @@ -86,7 +86,7 @@
     7.4  	funcionar TazWeb utiliza marcas en el documento home.html, este
     7.5  	marcado no debe ser removido si usted desea agregar marcadores de
     7.6  	trabajo, ya que cada nuevo elemento se añade justo antes de la
     7.7 -	línea: <i>&gt;!-- end:bookmarks --&lt;</i>
     7.8 +	línea: <i>&lt;!-- end:bookmarks --&gt;</i>
     7.9  </p>
    7.10  <p>
    7.11  	Nota: Usted encontrará el home.html por defecto en 
     8.1 --- a/doc/tazweb.pt.html	Fri Mar 09 14:37:15 2012 +0100
     8.2 +++ b/doc/tazweb.pt.html	Tue Mar 20 23:12:06 2012 +0200
     8.3 @@ -77,7 +77,7 @@
     8.4  	utiliza linguagem de marcação para armazenar os favoritos no arquivo
     8.5  	home.html. Esta marcação não deve ser removida, visto que os links
     8.6  	serão adicionados antes da linha que contém a marcação 
     8.7 -	<i>&gt;!-- end:bookmarks --&lt;</i>
     8.8 +	<i>&lt;!-- end:bookmarks --&gt;</i>
     8.9  </p>
    8.10  <p>
    8.11  	Nota: a página home.html padrão está localizada em /usr/share/tazweb.