##// END OF EJS Templates
[#20288] Update styles to match CodeRay 1.1.0 (preserving changes of r10132)....
[#20288] Update styles to match CodeRay 1.1.0 (preserving changes of r10132). This commit updates the CSS styles to match with CodeRay 1.1.0, while it preserves the custom changes applied in r10132. The CSS styles were still based on CodeRay 1.0.6 (included since Redmine 1.4.0) with the custom changes from r10132 (included since Redmine 2.1.0). Redmine 2.3.2 till 2.3.4 came with CodeRay 1.0.9, an upgrade that didn't needed changes in the CSS styles. Starting with 2.4.0 Redmine comes with CodeRay 1.1.0, a minor upgrade that came with new/changed token_kinds and lots of changes in the alpha stylesheet, that in turn is used as a base for Redmine's own CodeRay CSS styles. As such, this upgrade needed CSS stylesheet changes like done before in r7618 and r7623 (for 1.0.0 upgrade) and r9389 (for 1.0.6 upgrade). But these changes, plus an update of the Redmine core documentation that is shipped along the core (wiki_syntax_detailed_[markdown|textile].html), aren't integrated up untill today. Contributed by Mischa The Evil. git-svn-id: http://svn.redmine.org/redmine/trunk@14488 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13805:06ea3e48eb78
r14106:6fbb56e55735
Show More
wiki_syntax_textile.html
170 lines | 6.3 KiB | text/html | HtmlLexer
/ public / help / ru / wiki_syntax_textile.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<title>Форматирование Wiki</title>
<style type="text/css">
h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
table th { padding-top: 1em; }
table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
table td code { font-size: 1.2em; }
table td h1 { font-size: 1.8em; text-align: left; }
table td h2 { font-size: 1.4em; text-align: left; }
table td h3 { font-size: 1.2em; text-align: left; }
table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
</style>
</head>
<body>
<h1>Синтаксис Wiki Краткая Справка</h1>
<table style="width:100%">
<tr>
<th colspan="3">Стили Шрифтов</th>
</tr>
<tr>
<th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Выделенный"/></th>
<td style="width:50%;">*Выделенный*</td>
<td style="width:50%;"><strong>Выделенный</strong></td>
</tr>
<tr>
<th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Наклонный"/></th>
<td>_Наклонный_</td>
<td><em>Наклонный</em></td>
</tr>
<tr>
<th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Подчёркнутый"/></th>
<td>+Подчёркнутый+</td>
<td>
<ins>Подчёркнутый</ins>
</td>
</tr>
<tr>
<th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Зачёркнутый"/></th>
<td>-Зачёркнутый-</td>
<td>
<del>Зачёркнутый</del>
</td>
</tr>
<tr>
<th></th>
<td>??Цитата??</td>
<td><cite>Цитата</cite></td>
</tr>
<tr>
<th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Вставка Кода"/></th>
<td>@Вставка Кода@</td>
<td><code>Вставка Кода</code></td>
</tr>
<tr>
<th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Отформатированный текст"/></th>
<td>&lt;pre&gt;<br/>&nbsp;строки<br/>&nbsp;кода<br/>&lt;/pre&gt;</td>
<td>
<pre>
строки
кода
</pre>
</td>
</tr>
<tr><th colspan="3">Списки</th></tr>
<tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Несортированный список" /></th><td>* Элемент 1<br />** Sub<br />* Элемент 2</td><td><ul><li>Элемент 1<ul><li>Sub</li></ul></li><li>Элемент 2</li></ul></td></tr>
<tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Сортированный список" /></th><td># Элемент 1<br />## Sub<br /># Элемент 2</td><td><ol><li>Элемент 1<ol><li>Sub</li></ol></li><li>Элемент 2</li></ol></td></tr>
<tr>
<th colspan="3">Заголовки</th>
</tr>
<tr>
<th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Заголовок 1"/></th>
<td>h1. Название 1</td>
<td><h1>Название 1</h1></td>
</tr>
<tr>
<th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Заголовок 2"/></th>
<td>h2. Название 2</td>
<td><h2>Название 2</h2></td>
</tr>
<tr>
<th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Заголовок 3"/></th>
<td>h3. Название 3</td>
<td><h3>Название 3</h3></td>
</tr>
<tr>
<th colspan="3">Ссылки</th>
</tr>
<tr>
<th></th>
<td>http://foo.bar</td>
<td><a href="#">http://foo.bar</a></td>
</tr>
<tr>
<th></th>
<td>"Foo":http://foo.bar</td>
<td><a href="#">Foo</a></td>
</tr>
<tr>
<th colspan="3">Ссылки Redmine</th>
</tr>
<tr>
<th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Ссылка на Wiki страницу"/></th>
<td>[[Wiki страница]]</td>
<td><a href="#">Wiki страница</a></td>
</tr>
<tr>
<th></th>
<td>Задача #12</td>
<td>Задача <a href="#">#12</a></td>
</tr>
<tr>
<th></th>
<td>Фиксация r43</td>
<td>Фиксация <a href="#">r43</a></td>
</tr>
<tr>
<th></th>
<td>commit:f30e13e43</td>
<td><a href="#">f30e13e4</a></td>
</tr>
<tr>
<th></th>
<td>source:some/file</td>
<td><a href="#">source:some/file</a></td>
</tr>
<tr>
<th colspan="3">Вставка изображений</th>
</tr>
<tr>
<th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Изображение"/></th>
<td>!<em>url_картинки</em>!</td>
<td></td>
</tr>
<tr>
<th></th>
<td>!<em>вложенный_файл</em>!</td>
<td></td>
</tr>
<tr><th colspan="3">Tables</th></tr>
<tr>
<th></th>
<td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
<td>
<table class="sample">
<tbody>
<th>A</th><th>B</th><th>C</th>
<tr><td>A</td><td>B</td><td>C</td></tr>
<tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
<tr><td colspan="2">col span</td></tr>
</tbody>
</table>
</td>
</tr>
</table>
<p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">Больше информации</a></p>
</body>
</html>