diff options
author | Jean-Baptiste Barth <jeanbaptiste.barth@gmail.com> | 2014-09-11 21:25:37 +0000 |
---|---|---|
committer | Jean-Baptiste Barth <jeanbaptiste.barth@gmail.com> | 2014-09-11 21:25:37 +0000 |
commit | d64e1c48ae0b91b2fd47e9d939f434bc14de1c22 (patch) | |
tree | 0c425a85e394306d47a9b5c6d02d549b0af79043 /public/help/ru | |
parent | 0636015826a4433dcfdf2339707329140d26b2de (diff) | |
download | redmine-d64e1c48ae0b91b2fd47e9d939f434bc14de1c22.tar.gz redmine-d64e1c48ae0b91b2fd47e9d939f434bc14de1c22.zip |
Include new standard macros in wiki syntax detailed help pages (#17847).
Contributed by Felix Schäfer.
git-svn-id: http://svn.redmine.org/redmine/trunk@13378 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/help/ru')
-rw-r--r-- | public/help/ru/wiki_syntax_detailed.html | 46 |
1 files changed, 32 insertions, 14 deletions
diff --git a/public/help/ru/wiki_syntax_detailed.html b/public/help/ru/wiki_syntax_detailed.html index 628e509d1..c5a3216cb 100644 --- a/public/help/ru/wiki_syntax_detailed.html +++ b/public/help/ru/wiki_syntax_detailed.html @@ -285,20 +285,38 @@ bq. Rails - это полноценный, многоуровневый фрей <p>В Redmine существуют следующие встроенные макросы:</p> -<p> -<dl> - <dt><code>hello_world</code></dt> - <dd><p>Некоторый макрос.</p></dd> - <dt><code>include</code></dt> - <dd><p>Вставить wiki страницу. Пример:</p> - - <pre><code>{{include(Foo)}}</code></pre> - </dd> - <dt><code>macro_list</code></dt> - <dd><p>Выводит список доступных макросов с описаниями, если они имеются.</p></dd> -</dl> -</p> - + <p> + <dl> + <dt><code>hello_world</code></dt> + <dd><p>Некоторый макрос.</p></dd> + + <dt><code>macro_list</code></dt> + <dd><p>Выводит список доступных макросов с описаниями, если они имеются.</p></dd> + + <dt><code>child_pages</code></dt> + <dd><p>Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:</p> + <pre><code>!{{child_pages}} -- can be used from a wiki page only +!{{child_pages(depth=2)}} -- display 2 levels nesting only</code></pre></dd> + + <dt><code>include</code></dt> + <dd><p>Вставить wiki страницу. Пример:</p> + <pre><code>!{{include(Foo)}}</code></pre> + <p>or to include a page of a specific project wiki:</p> + <pre><code>!{{include(projectname:Foo)}}</code></pre></dd> + + <dt><code>collapse</code></dt> + <dd><p>Inserts of collapsed block of text. Example:</p> + <pre><code>{{collapse(View details...) +This is a block of text that is collapsed by default. +It can be expanded by clicking a link. +}}</code></pre></dd> + + <dt><code>thumbnail</code></dt> + <dd><p>Displays a clickable thumbnail of an attached image. Examples:</p> + <pre>{{thumbnail(image.png)}} +{{thumbnail(image.png, size=300, title=Thumbnail)}}</pre></dd> + </dl> + </p> <h2><a name="13" class="wiki-page"></a>Подсветка кода</h2> |