r34888 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r34887‎ | r34888 | r34889 >
Date:20:12, 15 May 2008
Author:brion
Status:old
Tags:
Comment:
fix EOLs, BOMs
Modified paths:
  • /trunk/tools/planet/cs/config.ini (modified) (history)
  • /trunk/tools/planet/cs/templates/atom.xml.tmpl (modified) (history)
  • /trunk/tools/planet/cs/templates/foafroll.xml.tmpl (modified) (history)
  • /trunk/tools/planet/cs/templates/index.html.tmpl (modified) (history)
  • /trunk/tools/planet/cs/templates/opml.xml.tmpl (modified) (history)
  • /trunk/tools/planet/cs/templates/rss10.xml.tmpl (modified) (history)
  • /trunk/tools/planet/cs/templates/rss20.xml.tmpl (modified) (history)
  • /trunk/tools/planet/cs/www/planet.css (modified) (history)

Diff [purge]

Index: trunk/tools/planet/cs/config.ini
@@ -1,83 +1,83 @@
2 -# Planet configuration file - cs.planet.wikimedia.org
3 -
4 -# Every planet needs a [Planet] section
5 -[Planet]
6 -
7 -# Your planet's name
8 -name=Planeta Wikimedia
9 -# Link to the main page
10 -link=http://cs.planet.wikimedia.org
11 -# Your name
12 -owner_name=Danny B.
13 -# Your e-mail address
14 -owner_email=Wikipedia.Danny.B@email.cz
15 -
16 -# cache_directory: Where cached feeds are stored
17 -# new_feed_items: Number of items to take from new feeds
18 -# log_level: One of DEBUG, INFO, WARNING, ERROR or CRITICAL
19 -cache_directory = /usr/local/planet/wikimedia/cs/cache
20 -new_feed_items = 2
21 -log_level = ERROR
22 -
23 -# template_files: Space-separated list of output template files
24 -template_files = /usr/local/planet/wikimedia/cs/templates/index.html.tmpl /usr/local/planet/wikimedia/cs/templates/atom.xml.tmpl /usr/local/planet/wikimedia/cs/templates/rss20.xml.tmpl /usr/local/planet/wikimedia/cs/templates/rss10.xml.tmpl /usr/local/planet/wikimedia/cs/templates/opml.xml.tmpl /usr/local/planet/wikimedia/cs/templates/foafroll.xml.tmpl
25 -
26 -# The following provide defaults for each template:
27 -# output_dir: Directory to place output files
28 -# items_per_page: How many items to put on each page
29 -# days_per_page: How many complete days of posts to put on each page
30 -# This is the absolute, hard limit (over the item limit)
31 -# date_format: strftime format for the default 'date' template variable
32 -# new_date_format: strftime format for the 'new_date' template variable
33 -# encoding: output encoding for the file, Python 2.3+ users can use the
34 -# special "xml" value to output ASCII with XML character references
35 -# locale: locale to use for (e.g.) strings in dates, default is taken from your
36 -# system
37 -output_dir = /usr/local/planet/wikimedia/cs/www
38 -items_per_page = 30
39 -days_per_page = 0
40 -date_format = %d. %B %Y, %H:%M
41 -new_date_format = %d. %B %Y
42 -encoding = utf-8
43 -# locale = C
44 -
45 -
46 -# To define a different value for a particular template you may create
47 -# a section with the same name as the template file's filename (as given
48 -# in template_files).
49 -#
50 -# [examples/rss10.xml.tmpl]
51 -# items_per_page = 30
52 -# encoding = xml
53 -
54 -
55 -# Any other section defines a feed to subscribe to. The section title
56 -# (in the []s) is the URI of the feed itself. A section can also be
57 -# have any of the following options:
58 -#
59 -# name: Name of the feed (defaults to the title found in the feed)
60 -#
61 -# Additionally any other option placed here will be available in
62 -# the template (prefixed with channel_ for the Items loop). You can
63 -# define defaults for these in a [DEFAULT] section, for example
64 -# Planet Debian uses the following to define faces:
65 -#
66 -# [DEFAULT]
67 -# facewidth = 64
68 -# faceheight = 64
69 -#
70 -# [http://www.blog.com/rss]
71 -# face = foo.png
72 -# faceheight = 32
73 -#
74 -# The facewidth of the defined blog defaults to 64.
75 -
76 -[DEFAULT]
77 -facewidth = 64
78 -faceheight = 64
79 -
80 -[http://blog.wikimedia.org/feed/]
81 -name=Wikimedia Foundation (anglicky)
82 -
83 -[http://whygive.wikimedia.org/feed/]
84 -name=Wikimedia Fundraising (anglicky)
 2+# Planet configuration file - cs.planet.wikimedia.org
 3+
 4+# Every planet needs a [Planet] section
 5+[Planet]
 6+
 7+# Your planet's name
 8+name=Planeta Wikimedia
 9+# Link to the main page
 10+link=http://cs.planet.wikimedia.org
 11+# Your name
 12+owner_name=Danny B.
 13+# Your e-mail address
 14+owner_email=Wikipedia.Danny.B@email.cz
 15+
 16+# cache_directory: Where cached feeds are stored
 17+# new_feed_items: Number of items to take from new feeds
 18+# log_level: One of DEBUG, INFO, WARNING, ERROR or CRITICAL
 19+cache_directory = /usr/local/planet/wikimedia/cs/cache
 20+new_feed_items = 2
 21+log_level = ERROR
 22+
 23+# template_files: Space-separated list of output template files
 24+template_files = /usr/local/planet/wikimedia/cs/templates/index.html.tmpl /usr/local/planet/wikimedia/cs/templates/atom.xml.tmpl /usr/local/planet/wikimedia/cs/templates/rss20.xml.tmpl /usr/local/planet/wikimedia/cs/templates/rss10.xml.tmpl /usr/local/planet/wikimedia/cs/templates/opml.xml.tmpl /usr/local/planet/wikimedia/cs/templates/foafroll.xml.tmpl
 25+
 26+# The following provide defaults for each template:
 27+# output_dir: Directory to place output files
 28+# items_per_page: How many items to put on each page
 29+# days_per_page: How many complete days of posts to put on each page
 30+# This is the absolute, hard limit (over the item limit)
 31+# date_format: strftime format for the default 'date' template variable
 32+# new_date_format: strftime format for the 'new_date' template variable
 33+# encoding: output encoding for the file, Python 2.3+ users can use the
 34+# special "xml" value to output ASCII with XML character references
 35+# locale: locale to use for (e.g.) strings in dates, default is taken from your
 36+# system
 37+output_dir = /usr/local/planet/wikimedia/cs/www
 38+items_per_page = 30
 39+days_per_page = 0
 40+date_format = %d. %B %Y, %H:%M
 41+new_date_format = %d. %B %Y
 42+encoding = utf-8
 43+# locale = C
 44+
 45+
 46+# To define a different value for a particular template you may create
 47+# a section with the same name as the template file's filename (as given
 48+# in template_files).
 49+#
 50+# [examples/rss10.xml.tmpl]
 51+# items_per_page = 30
 52+# encoding = xml
 53+
 54+
 55+# Any other section defines a feed to subscribe to. The section title
 56+# (in the []s) is the URI of the feed itself. A section can also be
 57+# have any of the following options:
 58+#
 59+# name: Name of the feed (defaults to the title found in the feed)
 60+#
 61+# Additionally any other option placed here will be available in
 62+# the template (prefixed with channel_ for the Items loop). You can
 63+# define defaults for these in a [DEFAULT] section, for example
 64+# Planet Debian uses the following to define faces:
 65+#
 66+# [DEFAULT]
 67+# facewidth = 64
 68+# faceheight = 64
 69+#
 70+# [http://www.blog.com/rss]
 71+# face = foo.png
 72+# faceheight = 32
 73+#
 74+# The facewidth of the defined blog defaults to 64.
 75+
 76+[DEFAULT]
 77+facewidth = 64
 78+faceheight = 64
 79+
 80+[http://blog.wikimedia.org/feed/]
 81+name=Wikimedia Foundation (anglicky)
 82+
 83+[http://whygive.wikimedia.org/feed/]
 84+name=Wikimedia Fundraising (anglicky)
Property changes on: trunk/tools/planet/cs/config.ini
___________________________________________________________________
Added: svn:eol-style
8585 + native
Property changes on: trunk/tools/planet/cs/www/planet.css
___________________________________________________________________
Added: svn:eol-style
8686 + native
Property changes on: trunk/tools/planet/cs/templates/opml.xml.tmpl
___________________________________________________________________
Added: svn:eol-style
8787 + native
Property changes on: trunk/tools/planet/cs/templates/rss10.xml.tmpl
___________________________________________________________________
Added: svn:eol-style
8888 + native
Property changes on: trunk/tools/planet/cs/templates/rss20.xml.tmpl
___________________________________________________________________
Added: svn:eol-style
8989 + native
Index: trunk/tools/planet/cs/templates/index.html.tmpl
@@ -1,176 +1,176 @@
2 -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3 -<html lang="cs" dir="ltr">
4 -
5 -### Fancy Planet HTML template.
6 -###
7 -### When combined with the stylesheet and images in the output/ directory
8 -### of the Planet source, this gives you a much prettier result than the
9 -### default examples template and demonstrates how to use the config file
10 -### to support things like faces
11 -###
12 -### For documentation on the more boring template elements, see
13 -### examples/config.ini and examples/index.html.tmpl in the Planet source.
14 -
15 -<head>
16 -
17 -<title><TMPL_VAR name></title>
18 -
19 -<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
20 -<meta name="generator" content="<TMPL_VAR generator ESCAPE="HTML">">
21 -
22 -<link rel="stylesheet" href="planet.css" type="text/css" title="Výchozí styl">
23 -
24 -<TMPL_IF feedtype>
25 -<link rel="alternate" href="<TMPL_VAR feed ESCAPE="HTML">" title="<TMPL_VAR channel_title_plain ESCAPE="HTML">" type="application/<TMPL_VAR feedtype>+xml">
26 -</TMPL_IF>
27 -
28 -</head>
29 -
30 -<body>
31 -
32 -<h1><TMPL_VAR name></h1>
33 -
34 -<TMPL_LOOP Items>
35 -<TMPL_IF new_date>
36 -<TMPL_UNLESS __FIRST__>
37 -### End <div class="channelgroup">
38 -</div>
39 -### End <div class="daygroup">
40 -</div>
41 -</TMPL_UNLESS>
42 -<div class="daygroup">
43 -<h2><TMPL_VAR new_date></h2>
44 -</TMPL_IF>
45 -
46 -<TMPL_IF new_channel>
47 -<TMPL_UNLESS new_date>
48 -### End <div class="channelgroup">
49 -</div>
50 -</TMPL_UNLESS>
51 -<div class="channelgroup">
52 -
53 -### Planet provides template variables for *all* configuration options for
54 -### the channel (and defaults), even if it doesn't know about them. We
55 -### exploit this here to add hackergotchi faces to our channels. Planet
56 -### doesn't know about the "face", "facewidth" and "faceheight" configuration
57 -### variables, but makes them available to us anyway.
58 -
59 -<h3><a href="<TMPL_VAR channel_link ESCAPE="HTML">" title="<TMPL_VAR channel_title_plain ESCAPE="HTML">"><TMPL_VAR channel_name></a></h3>
60 -<TMPL_IF channel_face>
61 -<img class="face" src="images/<TMPL_VAR channel_face ESCAPE="HTML">" width="<TMPL_VAR channel_facewidth ESCAPE="HTML">" height="<TMPL_VAR channel_faceheight ESCAPE="HTML">" alt="">
62 -</TMPL_IF>
63 -</TMPL_IF>
64 -
65 -
66 -<div class="entrygroup" id="<TMPL_VAR id>"<TMPL_IF channel_language> lang="<TMPL_VAR channel_language>"</TMPL_IF>>
67 -<TMPL_IF title>
68 -<h4<TMPL_IF title_language> lang="<TMPL_VAR title_language>"</TMPL_IF>><a href="<TMPL_VAR link ESCAPE="HTML">"><TMPL_VAR title></a></h4>
69 -</TMPL_IF>
70 -<div class="entry">
71 -<div class="content"<TMPL_IF content_language> lang="<TMPL_VAR content_language>"</TMPL_IF>>
72 -<TMPL_VAR content>
73 -</div>
74 -
75 -### Planet also makes available all of the information from the feed
76 -### that it can. Use the 'planet-cache' tool on the cache file for
77 -### a particular feed to find out what additional keys it supports.
78 -### Comment extra fields are 'author' and 'category' which we
79 -### demonstrate below.
80 -
81 -<p class="date">
82 -<a href="<TMPL_VAR link ESCAPE="HTML">"><TMPL_IF author>by <TMPL_VAR author> at </TMPL_IF><TMPL_VAR date><TMPL_IF category> under <TMPL_VAR category></TMPL_IF></a>
83 -</p>
84 -</div>
85 -</div>
86 -
87 -<TMPL_IF __LAST__>
88 -### End <div class="channelgroup">
89 -</div>
90 -### End <div class="daygroup">
91 -</div>
92 -</TMPL_IF>
93 -</TMPL_LOOP>
94 -
95 -
96 -<div class="sidebar">
97 -
98 -<img src="images/logo.png" width="136" height="136" alt="logo Planeta Wikimedia">
99 -
100 -<h2>Odběr</h2>
101 -<ul>
102 - <li><a href="https://www.mediawiki.org/atom.xml">Atom</a></li>
103 - <li><a href="https://www.mediawiki.org/rss10.xml">RSS 1.0</a></li>
104 - <li><a href="https://www.mediawiki.org/rss20.xml">RSS 2.0</a></li>
105 -</ul>
106 -
107 -<h2>O&nbsp;Planetě Wikimedia</h2>
108 -<p>
109 -<i>Planeta Wikimedia je a combined view on what Wikimedia project participants have to say in their blogs about wikis. <a href="http://meta.wikimedia.org/wiki/Planet_Wikimedia">Více informací… (anglicky)</a></i>
110 -</p>
111 -
112 -<h2>Účastníci</h2>
113 -<p>
114 - <a href="https://www.mediawiki.org/foafroll.xml"><abbr title="Friend of a Friend">FOAF</abbr></a> •
115 - <a href="https://www.mediawiki.org/opml.xml"><abbr titile="Outline Processor Markup Language">OPML</abbr></a>
116 -</p>
117 -<hr>
118 -<ul>
119 -<TMPL_LOOP Channels>
120 - <li>
121 - <a href="<TMPL_VAR url ESCAPE="HTML">" title="odebírat"><img src="images/feed-icon-10x10.png" alt="(feed)"></a> <a <TMPL_IF link>href="<TMPL_VAR link ESCAPE="HTML">" </TMPL_IF><TMPL_IF message>class="message" title="<TMPL_VAR message ESCAPE="HTML">"</TMPL_IF><TMPL_UNLESS message>title="<TMPL_VAR title_plain ESCAPE="HTML">"</TMPL_UNLESS>><TMPL_VAR name></a>
122 - </li>
123 -</TMPL_LOOP>
124 -</ul>
125 -
126 -<p>
127 -<strong><a href="http://meta.wikimedia.org/wiki/Planet_Wikimedia/cs">Přidejte svůj blog</a></strong><br>
128 -<a href="http://meta.wikimedia.org/wiki/Planet_Wikimedia/New_language">Požádejte o&nbsp;nový jazyk</a>
129 -</p>
130 -
131 -<p>
132 -Poslední aktualizace:<br>
133 -<strong><TMPL_VAR date></strong><br>
134 -<em>Všechny časy jsou v&nbsp;<a href="http://cs.wikipedia.org/wiki/Coordinated_Universal_Time"><abbr title="Coordinated Universal Time – koordinovaný světový čas">UTC</abbr></a>.</em>
135 -</p>
136 -
137 -<p>
138 -Běží na:<br>
139 -<a href="http://www.planetplanet.org/"><img src="images/planet.png" width="80" height="15" alt="Planet" border="0"></a>
140 -</p>
141 -
142 -<h2>Vyloučení odpovědnosti</h2>
143 -<p>
144 -Planeta Wikimedia je provozována neziskovou nadací <a href="http://wikimediafoundation.org/">Wikimedia Foundation</a> pro účely usnadnění sdílení informací a&nbsp;názorů mezi členy Wikimedia komunity. Agregace příspěvků z&nbsp;weblogů je počítačově řízený proces a&nbsp;Wikimedia Foundation není zodpovědná za žádný materiál dodaný účastníky této online komunity.
145 -</p>
146 -
147 -<h2>V&nbsp;jiných jazycích:</h2>
148 -<ul>
149 - <li><a href="http://ar.planet.wikimedia.org" lang="ar" hreflang="ar">العربية</a></li>
150 - <li><a href="http://de.planet.wikimedia.org" lang="de" hreflang="de">Deutsch</a></li>
151 - <li><a href="http://en.planet.wikimedia.org" lang="en" hreflang="en">English</a></li>
152 - <li><a href="http://fr.planet.wikimedia.org" lang="fr" hreflang="fr">Français</a></li>
153 - <li><a href="http://pl.planet.wikimedia.org" lang="pl" hreflang="pl">Polski</a></li>
154 - <li><a href="http://pt.planet.wikimedia.org" lang="pt" hreflang="pt">Português</a></li>
155 - <li><a href="http://ru.planet.wikimedia.org" lang="ru" hreflang="ru">Руссский</a></li>
156 - <li><a href="http://sr.planet.wikimedia.org" lang="sr" hreflang="sr">Српски / Srpski</a></li>
157 - <li><a href="http://zh.planet.wikimedia.org" lang="zh" hreflang="zh">中文</a></li>
158 -</ul>
159 -
160 -<h2>Planetárium:</h2>
161 -<ul>
162 - <li><a href="http://wikiblogplanet.com/">Wiki Blog Planet</a></li>
163 - <li><a href="http://planet.laptop.org/">Planet OLPC</a></li>
164 - <li><a href="http://planet.freedesktop.org/">Planet freedesktop.org</a></li>
165 - <li><a href="http://planet.mozilla.org/">Planet Mozilla</a></li>
166 - <li><a href="http://planet.inkscape.org/">Planet Inkscape</a></li>
167 - <li><a href="http://planet.ubuntu.com/">Planet Ubuntu</a></li>
168 - <li><a href="http://planet.debian.net/">Planet Debian</a></li>
169 - <li><a href="http://planet.fedoraproject.org/">Planet Fedora</a></li>
170 - <li><a href="http://intelligentdesigns.net/Planet_tracker">další…</a></li>
171 -</ul>
172 -
173 -</div>
174 -
175 -</body>
176 -
177 -</html>
 2+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 3+<html lang="cs" dir="ltr">
 4+
 5+### Fancy Planet HTML template.
 6+###
 7+### When combined with the stylesheet and images in the output/ directory
 8+### of the Planet source, this gives you a much prettier result than the
 9+### default examples template and demonstrates how to use the config file
 10+### to support things like faces
 11+###
 12+### For documentation on the more boring template elements, see
 13+### examples/config.ini and examples/index.html.tmpl in the Planet source.
 14+
 15+<head>
 16+
 17+<title><TMPL_VAR name></title>
 18+
 19+<meta http-equiv="content-type" content="text/html; charset=utf-8">
 20+<meta name="generator" content="<TMPL_VAR generator ESCAPE="HTML">">
 21+
 22+<link rel="stylesheet" href="planet.css" type="text/css" title="Výchozí styl">
 23+
 24+<TMPL_IF feedtype>
 25+<link rel="alternate" href="<TMPL_VAR feed ESCAPE="HTML">" title="<TMPL_VAR channel_title_plain ESCAPE="HTML">" type="application/<TMPL_VAR feedtype>+xml">
 26+</TMPL_IF>
 27+
 28+</head>
 29+
 30+<body>
 31+
 32+<h1><TMPL_VAR name></h1>
 33+
 34+<TMPL_LOOP Items>
 35+<TMPL_IF new_date>
 36+<TMPL_UNLESS __FIRST__>
 37+### End <div class="channelgroup">
 38+</div>
 39+### End <div class="daygroup">
 40+</div>
 41+</TMPL_UNLESS>
 42+<div class="daygroup">
 43+<h2><TMPL_VAR new_date></h2>
 44+</TMPL_IF>
 45+
 46+<TMPL_IF new_channel>
 47+<TMPL_UNLESS new_date>
 48+### End <div class="channelgroup">
 49+</div>
 50+</TMPL_UNLESS>
 51+<div class="channelgroup">
 52+
 53+### Planet provides template variables for *all* configuration options for
 54+### the channel (and defaults), even if it doesn't know about them. We
 55+### exploit this here to add hackergotchi faces to our channels. Planet
 56+### doesn't know about the "face", "facewidth" and "faceheight" configuration
 57+### variables, but makes them available to us anyway.
 58+
 59+<h3><a href="<TMPL_VAR channel_link ESCAPE="HTML">" title="<TMPL_VAR channel_title_plain ESCAPE="HTML">"><TMPL_VAR channel_name></a></h3>
 60+<TMPL_IF channel_face>
 61+<img class="face" src="images/<TMPL_VAR channel_face ESCAPE="HTML">" width="<TMPL_VAR channel_facewidth ESCAPE="HTML">" height="<TMPL_VAR channel_faceheight ESCAPE="HTML">" alt="">
 62+</TMPL_IF>
 63+</TMPL_IF>
 64+
 65+
 66+<div class="entrygroup" id="<TMPL_VAR id>"<TMPL_IF channel_language> lang="<TMPL_VAR channel_language>"</TMPL_IF>>
 67+<TMPL_IF title>
 68+<h4<TMPL_IF title_language> lang="<TMPL_VAR title_language>"</TMPL_IF>><a href="<TMPL_VAR link ESCAPE="HTML">"><TMPL_VAR title></a></h4>
 69+</TMPL_IF>
 70+<div class="entry">
 71+<div class="content"<TMPL_IF content_language> lang="<TMPL_VAR content_language>"</TMPL_IF>>
 72+<TMPL_VAR content>
 73+</div>
 74+
 75+### Planet also makes available all of the information from the feed
 76+### that it can. Use the 'planet-cache' tool on the cache file for
 77+### a particular feed to find out what additional keys it supports.
 78+### Comment extra fields are 'author' and 'category' which we
 79+### demonstrate below.
 80+
 81+<p class="date">
 82+<a href="<TMPL_VAR link ESCAPE="HTML">"><TMPL_IF author>by <TMPL_VAR author> at </TMPL_IF><TMPL_VAR date><TMPL_IF category> under <TMPL_VAR category></TMPL_IF></a>
 83+</p>
 84+</div>
 85+</div>
 86+
 87+<TMPL_IF __LAST__>
 88+### End <div class="channelgroup">
 89+</div>
 90+### End <div class="daygroup">
 91+</div>
 92+</TMPL_IF>
 93+</TMPL_LOOP>
 94+
 95+
 96+<div class="sidebar">
 97+
 98+<img src="images/logo.png" width="136" height="136" alt="logo Planeta Wikimedia">
 99+
 100+<h2>Odběr</h2>
 101+<ul>
 102+ <li><a href="https://www.mediawiki.org/atom.xml">Atom</a></li>
 103+ <li><a href="https://www.mediawiki.org/rss10.xml">RSS 1.0</a></li>
 104+ <li><a href="https://www.mediawiki.org/rss20.xml">RSS 2.0</a></li>
 105+</ul>
 106+
 107+<h2>O&nbsp;Planetě Wikimedia</h2>
 108+<p>
 109+<i>Planeta Wikimedia je a combined view on what Wikimedia project participants have to say in their blogs about wikis. <a href="http://meta.wikimedia.org/wiki/Planet_Wikimedia">Více informací… (anglicky)</a></i>
 110+</p>
 111+
 112+<h2>Účastníci</h2>
 113+<p>
 114+ <a href="https://www.mediawiki.org/foafroll.xml"><abbr title="Friend of a Friend">FOAF</abbr></a> •
 115+ <a href="https://www.mediawiki.org/opml.xml"><abbr titile="Outline Processor Markup Language">OPML</abbr></a>
 116+</p>
 117+<hr>
 118+<ul>
 119+<TMPL_LOOP Channels>
 120+ <li>
 121+ <a href="<TMPL_VAR url ESCAPE="HTML">" title="odebírat"><img src="images/feed-icon-10x10.png" alt="(feed)"></a> <a <TMPL_IF link>href="<TMPL_VAR link ESCAPE="HTML">" </TMPL_IF><TMPL_IF message>class="message" title="<TMPL_VAR message ESCAPE="HTML">"</TMPL_IF><TMPL_UNLESS message>title="<TMPL_VAR title_plain ESCAPE="HTML">"</TMPL_UNLESS>><TMPL_VAR name></a>
 122+ </li>
 123+</TMPL_LOOP>
 124+</ul>
 125+
 126+<p>
 127+<strong><a href="http://meta.wikimedia.org/wiki/Planet_Wikimedia/cs">Přidejte svůj blog</a></strong><br>
 128+<a href="http://meta.wikimedia.org/wiki/Planet_Wikimedia/New_language">Požádejte o&nbsp;nový jazyk</a>
 129+</p>
 130+
 131+<p>
 132+Poslední aktualizace:<br>
 133+<strong><TMPL_VAR date></strong><br>
 134+<em>Všechny časy jsou v&nbsp;<a href="http://cs.wikipedia.org/wiki/Coordinated_Universal_Time"><abbr title="Coordinated Universal Time – koordinovaný světový čas">UTC</abbr></a>.</em>
 135+</p>
 136+
 137+<p>
 138+Běží na:<br>
 139+<a href="http://www.planetplanet.org/"><img src="images/planet.png" width="80" height="15" alt="Planet" border="0"></a>
 140+</p>
 141+
 142+<h2>Vyloučení odpovědnosti</h2>
 143+<p>
 144+Planeta Wikimedia je provozována neziskovou nadací <a href="http://wikimediafoundation.org/">Wikimedia Foundation</a> pro účely usnadnění sdílení informací a&nbsp;názorů mezi členy Wikimedia komunity. Agregace příspěvků z&nbsp;weblogů je počítačově řízený proces a&nbsp;Wikimedia Foundation není zodpovědná za žádný materiál dodaný účastníky této online komunity.
 145+</p>
 146+
 147+<h2>V&nbsp;jiných jazycích:</h2>
 148+<ul>
 149+ <li><a href="http://ar.planet.wikimedia.org" lang="ar" hreflang="ar">العربية</a></li>
 150+ <li><a href="http://de.planet.wikimedia.org" lang="de" hreflang="de">Deutsch</a></li>
 151+ <li><a href="http://en.planet.wikimedia.org" lang="en" hreflang="en">English</a></li>
 152+ <li><a href="http://fr.planet.wikimedia.org" lang="fr" hreflang="fr">Français</a></li>
 153+ <li><a href="http://pl.planet.wikimedia.org" lang="pl" hreflang="pl">Polski</a></li>
 154+ <li><a href="http://pt.planet.wikimedia.org" lang="pt" hreflang="pt">Português</a></li>
 155+ <li><a href="http://ru.planet.wikimedia.org" lang="ru" hreflang="ru">Руссский</a></li>
 156+ <li><a href="http://sr.planet.wikimedia.org" lang="sr" hreflang="sr">Српски / Srpski</a></li>
 157+ <li><a href="http://zh.planet.wikimedia.org" lang="zh" hreflang="zh">中文</a></li>
 158+</ul>
 159+
 160+<h2>Planetárium:</h2>
 161+<ul>
 162+ <li><a href="http://wikiblogplanet.com/">Wiki Blog Planet</a></li>
 163+ <li><a href="http://planet.laptop.org/">Planet OLPC</a></li>
 164+ <li><a href="http://planet.freedesktop.org/">Planet freedesktop.org</a></li>
 165+ <li><a href="http://planet.mozilla.org/">Planet Mozilla</a></li>
 166+ <li><a href="http://planet.inkscape.org/">Planet Inkscape</a></li>
 167+ <li><a href="http://planet.ubuntu.com/">Planet Ubuntu</a></li>
 168+ <li><a href="http://planet.debian.net/">Planet Debian</a></li>
 169+ <li><a href="http://planet.fedoraproject.org/">Planet Fedora</a></li>
 170+ <li><a href="http://intelligentdesigns.net/Planet_tracker">další…</a></li>
 171+</ul>
 172+
 173+</div>
 174+
 175+</body>
 176+
 177+</html>
Property changes on: trunk/tools/planet/cs/templates/index.html.tmpl
___________________________________________________________________
Added: svn:eol-style
178178 + native
Property changes on: trunk/tools/planet/cs/templates/atom.xml.tmpl
___________________________________________________________________
Added: svn:eol-style
179179 + native
Property changes on: trunk/tools/planet/cs/templates/foafroll.xml.tmpl
___________________________________________________________________
Added: svn:eol-style
180180 + native

Status & tagging log