From 9b1f61fc9e334a61ee4a52a0fec7a98f43d1af0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Pi=C4=8Dman?= Date: Wed, 11 Jan 2023 14:20:44 +0100 Subject: [PATCH] Easy Document link macro creation #239 --- README.md | 106 +- assets/help/cs/wiki_syntax.html | 48 + assets/help/de/wiki_syntax.html | 48 + assets/help/en/wiki_syntax.html | 48 + assets/images/jstoolbar/bt_dmsf.png | Bin 0 -> 5216 bytes assets/javascripts/dmsf_button.js | 77 + assets/javascripts/lang/dmsf_button-en.js | 23 + assets/stylesheets/redmine_dmsf.css | 5 + extra/help_files_dmsf.diff | 4803 ----------------- lib/redmine_dmsf.rb | 1 + .../hooks/views/base_view_hooks.rb | 2 +- .../patches/formatting_helper_patch.rb | 61 + 12 files changed, 316 insertions(+), 4906 deletions(-) create mode 100644 assets/help/cs/wiki_syntax.html create mode 100644 assets/help/de/wiki_syntax.html create mode 100644 assets/help/en/wiki_syntax.html create mode 100644 assets/images/jstoolbar/bt_dmsf.png create mode 100644 assets/javascripts/dmsf_button.js create mode 100644 assets/javascripts/lang/dmsf_button-en.js delete mode 100644 extra/help_files_dmsf.diff create mode 100644 lib/redmine_dmsf/patches/formatting_helper_patch.rb diff --git a/README.md b/README.md index 20c54129..c22cb3b4 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Features * Configurable document approval workflow * Document access auditing * Integration with Redmine's activity feed - * Wiki macros for quick content linking + * Wiki macros for a quick content linking * Full read/write WebDAV functionality * Optional document content full-text search * Documents and folders' symbolic links @@ -152,109 +152,11 @@ DMSF is designed to act as project module, so it must be checked as an enabled m Search will now automatically search DMSF content when a Redmine search is performed, additionally a "Documents" and "Folders" check box will be visible, allowing you to search DMSF content exclusively. -Linking DMSF files from Wiki entries (macros) +Linking DMSF object from Wiki entries (macros) --------------------------------------------- -Link to a document with id 17: `{{dmsf(17)}}` - -Link to a document with id 17 with link text "File": `{{dmsf(17, File)}}` - -Link to the details of a document with id 17: `{{dmsfd(17)}}` - -Link to the details of a document with id 17 with link text "Details": `{{dmsfd(17, Details)}}` - -Text of the description of a document with id 17: `{{dmsfdesc(17)}}` - -Text referring to the version of a document with id 17: `{{dmsfversion(17)}}` - -Text referring to the last update date of a document with id 17: `{{dmsflastupdate(17)}}` - -Link to the preview of 5 lines from a document with id 17: `{{dmsft(17, 5)}}` - -Inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...: `{{dmsf_image(8)}}` - -Multiple inline pictures: `{{dmsf_image(8 9 10)}}` - -Inline picture with custom size: `{{dmsf_image(8, size=300)}}` - -Inline picture with custom size: `{{dmsf_image(8, size=50%)}}` - -Inline picture with custom height: `{{dmsf_image(8, height=300)}}` - -Inline picture with custom width: `{{dmsf_image(8, width=300)}}` - -Inline picture with custom size: `{{dmsf_image(8, size=640x480)}}` - -Thumbnail with height of 200px: `{{dmsftn(8)}}` - -Multiple thumbnails with height of 200px: `{{dmsftn(8 9 10)}}` - -Thumbnail with custom size: `{{dmsftn(8, size=300)}}` - -Inline video of the file with id 8; it must be a video file such as MP4: `{{dmsf_video(9)}}` - -Inline video with custom size: `{{dmsf_video(9, size=300)}}` - -Inline video with custom size: `{{dmsf_video(9, size=50%)}}` - -Inline video with custom height: `{{dmsf_video(9, height=300)}}` - -Inline video with custom width: `{{dmsf_video(9, width=300)}}` - -Inline video with custom size: `{{dmsf_video(9, size=640x480)}}` - -Approval workflow status of a document with id 8: `{{dmsfw(8)}}` - -The DMSF document/revision id can be found in document details. - -Linking DMSF folders from Wiki entries (macros) ------------------------------------------------ - -Link to a folder with id 5: `{{dmsff(5)}}` - -Link to a folder with id 5 with link text "Folder": `{{dmsff(5, Folder)}}` - -The DMSF folder id can be found in the link when opening folders within Redmine. - -You can also publish Wiki help description: - -In the file /public/help//wiki_syntax_detailed.html, after the document link description/definition: - -
    -
  • - DMSF: -
      -
    • {{dmsf(17)}} (a link to the file with id 17)
    • -
    • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
    • -
    • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
    • -
    • {{dmsfd(17)}} (a link to the details of the file with id 17)
    • -
    • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
    • -
    • {{dmsff(5)}} (a link to the folder with id 5)
    • -
    • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
    • -
    • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
    • -
    • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
    • -
    • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
    • -
    • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
    • -
    • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
    • -
    • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
    • -
    • {{dmsftn(8)}} (a thumbnail with height of 200px)
    • -
    • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
    • -
    • {{dmsfw(8)}} (approval workflow status of a document with id 8)
    • -
    - The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
    - The DMSF folder id can be found in the link when opening folders within Redmine. -
  • -
- -In the file /public/help//wiki_syntax.html, at the end of the Redmine links section: - - {{dmsf(83)}}Document #83 - -There's a patch (tested with Redmine 3.4.2) that helps you to modify all help files at once. In your Redmine folder: - -`cd redmine` - -`patch -p0 < plugins/redmine_dmsf/extra/help_files_dmsf.diff` +You can link DMSF object from Wikis using a macro tag `{{ }}`. List of available macros with their description is +available from the wiki's toolbar. Hooks ----- diff --git a/assets/help/cs/wiki_syntax.html b/assets/help/cs/wiki_syntax.html new file mode 100644 index 00000000..f19bc0c7 --- /dev/null +++ b/assets/help/cs/wiki_syntax.html @@ -0,0 +1,48 @@ + + + + +Wiki formatting + + + + +

DMS Syntax Reference

+ +

DMS přidává následující makra:

+ +
+
Dokumenty
+
+

{{dmsf(17)}} - odkaz na dokument #17

+

{{dmsf(17, File)}} - odkaz na dokument #17 s textem "File"

+

{{dmsf(17, File, 10)}} - odkaz na dokument #17 r10 s textem "File"

+

{{dmsfd(17)}} - odkaz na detaily dokument #17

+

{{dmsfdesc(17)}} - odkaz na popis dokumentu #17

+
+
Složky
+
+

{{dmsff(5)}} - odkaz na složku #5

+

{{dmsff(5, Folder)}} - odkaz na složku #5 s textem "Folder"

+
+
Obrázky
+
+

{{dmsf_image(8)}} - vložený obrázek dokumentu #8 (dokument musí být obrázek typu JPEG, PNG,...)

+

{{dmsf_image(8, size=300)}}

+

{{dmsf_image(8, size=640x480)}}

+

{{dmsf_image(8, size=50%)}}

+

{{dmsf_image(8, height=300)}}

+

{{dmsf_image(8, width=300)}} - obrázek dokumentu #8 s nastavenou velikostí

+

{{dmsftn(8)}} - náhled obrázku dokumentu #8

+

{{dmsftn(8, size=300)}} - náhled obrázku dokumentu #8 s nastavenou velikostí

+
+
Schvalovací procesy
+
+

{{dmsfw(8)}} - schvalovací proces dokumentu #8

+
+
+ +ID dokumentu nebo složky naleznete v jejích detailech. + + + \ No newline at end of file diff --git a/assets/help/de/wiki_syntax.html b/assets/help/de/wiki_syntax.html new file mode 100644 index 00000000..7dd2a2be --- /dev/null +++ b/assets/help/de/wiki_syntax.html @@ -0,0 +1,48 @@ + + + + +Wiki formatting + + + + +

DMS Syntax Reference

+ +

DMS fügt die folgenden integrierten Makros hinzu:

+ +
+
Documente
+
+

{{dmsf(17)}} - Link zum Dokument #17

+

{{dmsf(17, File)}} - Link zum Dokument #17 mit dem Text "File"

+

{{dmsf(17, File, 10)}} - Link zum Dokument #17 r10 mit dem Text "File"

+

{{dmsfd(17)}} - Link zu den Dokumentdetails #17

+

{{dmsfdesc(17)}} - Link zur Beschreibung des Dokuments #17

+
+
Ordner
+
+

{{dmsff(5)}} - Link zum Ordner #5

+

{{dmsff(5, Folder)}} - Link yum Ordner #5 mit dem Text "Folder"

+
+
Bilder
+
+

{{dmsf_image(8)}} - Bild des Dokuments #8 (der Dokumnt must eine Bilddatei wie JPEG, PNG,... sein

+

{{dmsf_image(8, size=300)}}

+

{{dmsf_image(8, size=640x480)}}

+

{{dmsf_image(8, size=50%)}}

+

{{dmsf_image(8, height=300)}}

+

{{dmsf_image(8, width=300)}} - Bild des Dokuments #8 mit Benutzerdefinierte Größe

+

{{dmsftn(8)}} - Miniaturansicht des Documents #8

+

{{dmsftn(8, size=300)}} - Miniaturansicht des Documents #8 mit Benutzerdefinierte Größe

+
+
Genehmigungs-Workflows
+
+

{{dmsfw(8)}} - Workflowstatus des Dokuments #8

+
+
+ +ID des Dokuments/Ordners man kann in sein Details finden. + + + \ No newline at end of file diff --git a/assets/help/en/wiki_syntax.html b/assets/help/en/wiki_syntax.html new file mode 100644 index 00000000..8e1e7c35 --- /dev/null +++ b/assets/help/en/wiki_syntax.html @@ -0,0 +1,48 @@ + + + + +Wiki formatting + + + + +

DMS Syntax Reference

+ +

DMS adds the following builtin macros:

+ +
+
Documents
+
+

{{dmsf(17)}} - link to document #17

+

{{dmsf(17, File)}} - link to document #17 with the text "File"

+

{{dmsf(17, File, 10)}} - link to document #17 r10 with the text "File"

+

{{dmsfd(17)}} - link to the details of document #17

+

{{dmsfdesc(17)}} - link to the description of document #17

+
+
Folders
+
+

{{dmsff(5)}} - link to folder #5

+

{{dmsff(5, Folder)}} - link to folder #5 with the text "Folder"

+
+
Images
+
+

{{dmsf_image(8)}} - inline picture of document #8; the document must be an image file such as JPEG, PNG,...

+

{{dmsf_image(8, size=300)}}

+

{{dmsf_image(8, size=640x480)}}

+

{{dmsf_image(8, size=50%)}}

+

{{dmsf_image(8, height=300)}}

+

{{dmsf_image(8, width=300)}} - inline picture of document 8 with a custom size

+

{{dmsftn(8)}} - thumbnail of document #8

+

{{dmsftn(8, size=300)}} - thumbnail of document #8 with a custom size

+
+
Approval Workflow
+
+

{{dmsfw(8)}} - approval workflow status of document #8

+
+
+ +The document/folder's ID can be found in it's details. + + + \ No newline at end of file diff --git a/assets/images/jstoolbar/bt_dmsf.png b/assets/images/jstoolbar/bt_dmsf.png new file mode 100644 index 0000000000000000000000000000000000000000..51ef5b195cf5c76001ba3c482a282b5a7ba25a5e GIT binary patch literal 5216 zcmeHLX;2f{7H$?n0XM{*k-UIxnxs1mB!PfzLc|0NC>WKYNjeZA3t1rGAR>au;KCCa zKoDU>ol#j_N%>_ji0fiA^q{Jyk`woY@&mX>CIrCYpzOsy*$K1z79WGPRF_Kcb*`-mUSPe~mn0;{`7T+HA^#jvtF&ME>mVuyWz)Ebf5US$xU+C9%IhJbCos%r-l2!2luf=iQW`>_y43Wyxz=A5YmG zWvmy9Nz1naOA@s$$TJ%)&0oiW_S6H$duLpqN;GP;onBXSNOHBXxiP;h^X}zG-w*Y) zI1kocLK>&{UE~ksoO5XFqb4`h-sdLiv@m_+q`^73k&MI3m{)35-IYuGukFgLsBXV1 zUusr&dEUjJ#MXyGjXDSKa(X>lIh=x99TkV10(UMdJ6p6nRqw$MubdJ^32ZZF^uyV? zT_wAdD{(fFYux6ywPoY`Up2klc<=t(J4Mytg@!}D`yMTPZg!%`bj@37e)W{5{Pb|f z3B9$)4sdYi&zBLM|LT5p!>H_g-86B<;!UEmt4m@YBuYzbeyC-4&pSX`8Q>HTIz;(D z>E2Flf5SDnCZA?%dA3_=N_leBQXb2lWnEz?7&9-C^!=7E%#Si^edpa-AD5|&PkT{c zG#ZdzIkW$%Xve@W)5eIz=qazx&8`YqSm*i2eA?#7s#mezyQ|uCdu0Qx|U{n$R-R-9@bhFR?6j{8pqR1(qG_avAh&dvE)ZQF#HX83e5Pw|1M|iN+ z$O!g2_xJ9u63HAx;nlFG525j88a-d9=PX&BjJYf|WXY%W&` zR=zaMC0p3w_iPWpeEE7v>*Z_f1M~x2X8o|OqKax$<+ZEVGHD*Pq~g)u@q^>N9dfP0 zAVF>`q!(5tI$|6N?cX%_e9-I_Q{lAWje;!5iphM}c8{U-dwflm75}85_2-`Ddb;k< z)(f)jhV+JpkBFolR(r~dP8b)=*_*3ydFENNY{{iae8uv?n<+W$TXQ^9uDLE=Cc2q= zWTm5r=~_zuA4zG~ZF_Nz+{%XBk>>=X-r-E7q*Ns8GznzCM2mixKh}*Z>L(WJ%qSFrinh4DpL) z`}1PMc{D!O*~!3BMMnulhyuo_L=j>+UB$p^c%J>30$9?4_1$xK8hA9+MI)M-!9gUAB;U%(A0z{+H2q2L_B;rs6 zP97sxz$%otK^o2`LCd>Dug<678p-8H+LdE_9sSpZ2iSKRQsp9g}Pf8_lF{ULV^ z7)7yIbax3)sSc0n&cLeu)AFKf z&}gL3sF-580v7WSH5E#Z7ot2g*p4Sa$b4J~86o1xh=78lA~Z6N5<;TdBOtb<5gdvTq~cJ`gj#UAi!YObCE_Qbni1a!SRp_S7}(W9u~PL3>Ms-_ehOHvCS+$% zB2mb8_I5O?9Ylpbfz}~1IogS8P6))4CV16lp`*#5!ouo4MF}((XfAX&83HRLGJlCA zf`L^BfKgj&+8g6IQ4}ws97V*aJASg~{gB9syNO32La3R-U^Hz@hj|lD2{us9S!pYO?r`Y~e`f z5e>@_mryiQG#j*mG}&ORHB#Dq8B25+qSgr{l5ik|gFt_XL?@H!B)erGLKuhRFMT;JsS zDh0j@{H?pb$@NtVd=>axcm3bwGWhhugNV^zLDA^zOwN;FZS+;h+jq6U#~J__2Y`-_ zj>g8uy1KfPCr@&@Tpo`X9v+^Tmp3vpl97=im&?=A(#FTfi;IgJ+uC;Q*x~Bx%HeRf zY}vAE)v5~@F7)>HzJC3hzG?U{N~@*du>F7)J@?Un-vF%;Z%=n1Wy*J6=*={#*Lpbs z7|u~2T0m~z0(4Mc!DM;p_i7m!Ew{)Cc3O)L1u)%R{1-GMx1kv|7$dj4Df~Y=%b)&b zg`=L)9=d+Co^!K_*SeavBI&3F*w4sO&KU*vnFQBZ8`M|*HietlWN-bz#arKNM(333 lZS%ugq6f8J#XHv?xL}_?t!eHq?JU# + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +/* Global jsToolBar */ + +/* Space */ +jsToolBar.prototype.elements.dmsf_space = { + type: 'space' +} + +/* DMSF button */ +jsToolBar.prototype.elements.dmsf = { + type: 'button', + title: 'DMS', + fn: { + wiki: function() { + let This = this; + this.dmsfMenu(function(macro){ + This.encloseLineSelection('{{' + macro + '(', ')}}'); + }); + } + } +}; + +/* DMSF button's popup menu */ +jsToolBar.prototype.dmsfMenu = function(fn){ + let menu = $('
    '); + for (let i = 0; i < this.dmsfList.length; i++) { + let reg = new RegExp('^dmsf'); + let item = this.dmsfList[i]; + if(reg.test(item)) { + let macroItem = $('
    ').text(item); + $('
  • ').html(macroItem).appendTo(menu).mousedown(function () { + fn($(this).text()); + }); + } + else { + $('
  • ').html('
    ').appendTo(menu); + const a = item.split(';'); + let lang = a[0]; + let help = a[1]; + let macroItem = $('
    ').text(help); + $('
  • ').html(macroItem).appendTo(menu).mousedown(function () { + window.open('/plugin_assets/redmine_dmsf/help/' + lang + '/wiki_syntax.html', + '_blank', 'width=480,height=480'); + }); + } + } + $('body').append(menu); + menu.menu().width(150).position({ + my: 'left top', + at: 'left bottom', + of: this.toolNodes['dmsf'] + }); + $(document).on('mousedown', function() { + menu.remove(); + }); + return false; +}; diff --git a/assets/javascripts/lang/dmsf_button-en.js b/assets/javascripts/lang/dmsf_button-en.js new file mode 100644 index 00000000..711a7a6f --- /dev/null +++ b/assets/javascripts/lang/dmsf_button-en.js @@ -0,0 +1,23 @@ +/* encoding: utf-8 + * + * Redmine plugin for Document Management System "Features" + * + * Copyright © 2011-23 Karel Pičman + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +jsToolBar.strings = {}; +jsToolBar.strings['DMS'] = 'DMS'; diff --git a/assets/stylesheets/redmine_dmsf.css b/assets/stylesheets/redmine_dmsf.css index b4f7b0b7..150ee8a1 100644 --- a/assets/stylesheets/redmine_dmsf.css +++ b/assets/stylesheets/redmine_dmsf.css @@ -391,3 +391,8 @@ div.dmsf-scroll { width: 90%; max-width: 90%; } + +/* Wiki toolbar */ +.jstb_dmsf { + background-image: url('../images/jstoolbar/bt_dmsf.png'); +} \ No newline at end of file diff --git a/extra/help_files_dmsf.diff b/extra/help_files_dmsf.diff deleted file mode 100644 index 6094df29..00000000 --- a/extra/help_files_dmsf.diff +++ /dev/null @@ -1,4803 +0,0 @@ -Index: public/help/ar/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/ar/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/ar/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ - - -
      -+
    • -+ DMSF: -+
        -+
      • {{dmsf(17)}} (a link to the file with id 17)
      • -+
      • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
      • -+
      • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
      • -+
      • {{dmsfd(17)}} (a link to the details of the file with id 17)
      • -+
      • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
      • -+
      • {{dmsff(5)}} (a link to the folder with id 5)
      • -+
      • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
      • -+
      • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
      • -+
      • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
      • -+
      • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
      • -+
      • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
      • -+
      • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
      • -+
      • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
      • -+
      • {{dmsftn(8)}} (a thumbnail with height of 200px)
      • -+
      • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
      • -+
      • {{dmsfw(8)}} (approval workflow status of a document with id 8)
      • -+
      -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
      -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
    • -+
    -+ -+
      -
    • Versions: -
        -
      • version#3 (link to version with id 3)
      • -Index: public/help/ar/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/ar/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/ar/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
      - -
        -+
      • -+ DMSF: -+
          -+
        • {{dmsf(17)}} (a link to the file with id 17)
        • -+
        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
        • -+
        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
        • -+
        • {{dmsfd(17)}} (a link to the details of the file with id 17)
        • -+
        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
        • -+
        • {{dmsff(5)}} (a link to the folder with id 5)
        • -+
        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
        • -+
        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
        • -+
        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
        • -+
        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
        • -+
        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
        • -+
        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
        • -+
        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
        • -+
        • {{dmsftn(8)}} (a thumbnail with height of 200px)
        • -+
        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
        • -+
        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
        • -+
        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
      • -+
      -+ -+
        -
      • Versions: -
          -
        • version#3 (link to version with id 3)
        • -Index: public/help/ar/wiki_syntax_markdown.html -=================================================================== ---- public/help/ar/wiki_syntax_markdown.html (revision 16952) -+++ public/help/ar/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/ar/wiki_syntax_textile.html -=================================================================== ---- public/help/ar/wiki_syntax_textile.html (revision 16952) -+++ public/help/ar/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/az/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/az/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/az/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
        - -
          -+
        • -+ DMSF: -+
            -+
          • {{dmsf(17)}} (a link to the file with id 17)
          • -+
          • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
          • -+
          • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
          • -+
          • {{dmsfd(17)}} (a link to the details of the file with id 17)
          • -+
          • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
          • -+
          • {{dmsff(5)}} (a link to the folder with id 5)
          • -+
          • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
          • -+
          • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
          • -+
          • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
          • -+
          • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
          • -+
          • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
          • -+
          • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
          • -+
          • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
          • -+
          • {{dmsftn(8)}} (a thumbnail with height of 200px)
          • -+
          • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
          • -+
          • {{dmsfw(8)}} (approval workflow status of a document with id 8)
          • -+
          -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
          -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
        • -+
        -+ -+
          -
        • Versions: -
            -
          • version#3 (link to version with id 3)
          • -Index: public/help/az/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/az/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/az/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
          - -
            -+
          • -+ DMSF: -+
              -+
            • {{dmsf(17)}} (a link to the file with id 17)
            • -+
            • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
            • -+
            • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
            • -+
            • {{dmsfd(17)}} (a link to the details of the file with id 17)
            • -+
            • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
            • -+
            • {{dmsff(5)}} (a link to the folder with id 5)
            • -+
            • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
            • -+
            • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
            • -+
            • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
            • -+
            • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
            • -+
            • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
            • -+
            • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
            • -+
            • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
            • -+
            • {{dmsftn(8)}} (a thumbnail with height of 200px)
            • -+
            • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
            • -+
            • {{dmsfw(8)}} (approval workflow status of a document with id 8)
            • -+
            -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
            -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
          • -+
          -+ -+
            -
          • Versions: -
              -
            • version#3 (link to version with id 3)
            • -Index: public/help/az/wiki_syntax_markdown.html -=================================================================== ---- public/help/az/wiki_syntax_markdown.html (revision 16952) -+++ public/help/az/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/az/wiki_syntax_textile.html -=================================================================== ---- public/help/az/wiki_syntax_textile.html (revision 16952) -+++ public/help/az/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/bg/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/bg/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/bg/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
            - -
              -+
            • -+ DMSF: -+
                -+
              • {{dmsf(17)}} (a link to the file with id 17)
              • -+
              • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
              • -+
              • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
              • -+
              • {{dmsfd(17)}} (a link to the details of the file with id 17)
              • -+
              • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
              • -+
              • {{dmsff(5)}} (a link to the folder with id 5)
              • -+
              • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
              • -+
              • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
              • -+
              • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
              • -+
              • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
              • -+
              • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
              • -+
              • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
              • -+
              • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
              • -+
              • {{dmsftn(8)}} (a thumbnail with height of 200px)
              • -+
              • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
              • -+
              • {{dmsfw(8)}} (approval workflow status of a document with id 8)
              • -+
              -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
              -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
            • -+
            -+ -+
              -
            • Versions: -
                -
              • version#3 (link to version with id 3)
              • -Index: public/help/bg/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/bg/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/bg/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
              - -
                -+
              • -+ DMSF: -+
                  -+
                • {{dmsf(17)}} (a link to the file with id 17)
                • -+
                • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                • -+
                • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                • -+
                • {{dmsfd(17)}} (a link to the details of the file with id 17)
                • -+
                • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                • -+
                • {{dmsff(5)}} (a link to the folder with id 5)
                • -+
                • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                • -+
                • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                • -+
                • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                • -+
                • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                • -+
                • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                • -+
                • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                • -+
                • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                • -+
                • {{dmsftn(8)}} (a thumbnail with height of 200px)
                • -+
                • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                • -+
                • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                • -+
                -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
              • -+
              -+ -+
                -
              • Versions: -
                  -
                • version#3 (link to version with id 3)
                • -Index: public/help/bg/wiki_syntax_markdown.html -=================================================================== ---- public/help/bg/wiki_syntax_markdown.html (revision 16952) -+++ public/help/bg/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/bg/wiki_syntax_textile.html -=================================================================== ---- public/help/bg/wiki_syntax_textile.html (revision 16952) -+++ public/help/bg/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/bs/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/bs/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/bs/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                - -
                  -+
                • -+ DMSF: -+
                    -+
                  • {{dmsf(17)}} (a link to the file with id 17)
                  • -+
                  • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                  • -+
                  • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                  • -+
                  • {{dmsfd(17)}} (a link to the details of the file with id 17)
                  • -+
                  • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                  • -+
                  • {{dmsff(5)}} (a link to the folder with id 5)
                  • -+
                  • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                  • -+
                  • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                  • -+
                  • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                  • -+
                  • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                  • -+
                  • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                  • -+
                  • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                  • -+
                  • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                  • -+
                  • {{dmsftn(8)}} (a thumbnail with height of 200px)
                  • -+
                  • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                  • -+
                  • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                  • -+
                  -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                  -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                • -+
                -+ -+
                  -
                • Versions: -
                    -
                  • version#3 (link to version with id 3)
                  • -Index: public/help/bs/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/bs/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/bs/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                  - -
                    -+
                  • -+ DMSF: -+
                      -+
                    • {{dmsf(17)}} (a link to the file with id 17)
                    • -+
                    • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                    • -+
                    • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                    • -+
                    • {{dmsfd(17)}} (a link to the details of the file with id 17)
                    • -+
                    • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                    • -+
                    • {{dmsff(5)}} (a link to the folder with id 5)
                    • -+
                    • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                    • -+
                    • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                    • -+
                    • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                    • -+
                    • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                    • -+
                    • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                    • -+
                    • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                    • -+
                    • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                    • -+
                    • {{dmsftn(8)}} (a thumbnail with height of 200px)
                    • -+
                    • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                    • -+
                    • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                    • -+
                    -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                    -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                  • -+
                  -+ -+
                    -
                  • Versions: -
                      -
                    • version#3 (link to version with id 3)
                    • -Index: public/help/bs/wiki_syntax_markdown.html -=================================================================== ---- public/help/bs/wiki_syntax_markdown.html (revision 16952) -+++ public/help/bs/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/bs/wiki_syntax_textile.html -=================================================================== ---- public/help/bs/wiki_syntax_textile.html (revision 16952) -+++ public/help/bs/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/ca/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/ca/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/ca/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                    - -
                      -+
                    • -+ DMSF: -+
                        -+
                      • {{dmsf(17)}} (a link to the file with id 17)
                      • -+
                      • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                      • -+
                      • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                      • -+
                      • {{dmsfd(17)}} (a link to the details of the file with id 17)
                      • -+
                      • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                      • -+
                      • {{dmsff(5)}} (a link to the folder with id 5)
                      • -+
                      • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                      • -+
                      • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                      • -+
                      • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                      • -+
                      • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                      • -+
                      • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                      • -+
                      • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                      • -+
                      • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                      • -+
                      • {{dmsftn(8)}} (a thumbnail with height of 200px)
                      • -+
                      • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                      • -+
                      • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                      • -+
                      -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                      -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                    • -+
                    -+ -+
                      -
                    • Versions: -
                        -
                      • version#3 (link to version with id 3)
                      • -Index: public/help/ca/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/ca/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/ca/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                      - -
                        -+
                      • -+ DMSF: -+
                          -+
                        • {{dmsf(17)}} (a link to the file with id 17)
                        • -+
                        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                        • -+
                        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                        • -+
                        • {{dmsfd(17)}} (a link to the details of the file with id 17)
                        • -+
                        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                        • -+
                        • {{dmsff(5)}} (a link to the folder with id 5)
                        • -+
                        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                        • -+
                        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                        • -+
                        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                        • -+
                        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                        • -+
                        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                        • -+
                        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                        • -+
                        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                        • -+
                        • {{dmsftn(8)}} (a thumbnail with height of 200px)
                        • -+
                        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                        • -+
                        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                        • -+
                        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                      • -+
                      -+ -+
                        -
                      • Versions: -
                          -
                        • version#3 (link to version with id 3)
                        • -Index: public/help/ca/wiki_syntax_markdown.html -=================================================================== ---- public/help/ca/wiki_syntax_markdown.html (revision 16952) -+++ public/help/ca/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revisió r43Revisió r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Imatges - Imatge![](imatge_url) -Index: public/help/ca/wiki_syntax_textile.html -=================================================================== ---- public/help/ca/wiki_syntax_textile.html (revision 16952) -+++ public/help/ca/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revisió r43Revisió r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Imatges - Imatge!imatge_url! -Index: public/help/cs/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/cs/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/cs/wiki_syntax_detailed_markdown.html (working copy) -@@ -52,6 +52,32 @@ -
                      • -
                      - -+
                        -+
                      • -+ DMSF: -+
                          -+
                        • {{dmsf(17)}} (a link to the file with id 17)
                        • -+
                        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                        • -+
                        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                        • -+
                        • {{dmsfd(17)}} (a link to the details of the file with id 17)
                        • -+
                        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                        • -+
                        • {{dmsff(5)}} (a link to the folder with id 5)
                        • -+
                        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                        • -+
                        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                        • -+
                        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                        • -+
                        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                        • -+
                        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                        • -+
                        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                        • -+
                        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                        • -+
                        • {{dmsftn(8)}} (a thumbnail with height of 200px)
                        • -+
                        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                        • -+
                        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                        • -+
                        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                      • -+
                      -+ -
                        -
                      • Verze: -
                          -Index: public/help/cs/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/cs/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/cs/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                        - -
                          -+
                        • -+ DMSF: -+
                            -+
                          • {{dmsf(17)}} (a link to the file with id 17)
                          • -+
                          • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                          • -+
                          • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                          • -+
                          • {{dmsfd(17)}} (a link to the details of the file with id 17)
                          • -+
                          • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                          • -+
                          • {{dmsff(5)}} (a link to the folder with id 5)
                          • -+
                          • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                          • -+
                          • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                          • -+
                          • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                          • -+
                          • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                          • -+
                          • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                          • -+
                          • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                          • -+
                          • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                          • -+
                          • {{dmsftn(8)}} (a thumbnail with height of 200px)
                          • -+
                          • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                          • -+
                          • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                          • -+
                          -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                          -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                        • -+
                        -+ -+
                          -
                        • Verze: -
                            -
                          • version#3 (odkaz na verzi s ID 3)
                          • -Index: public/help/cs/wiki_syntax_markdown.html -=================================================================== ---- public/help/cs/wiki_syntax_markdown.html (revision 16952) -+++ public/help/cs/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revize r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Vnořené obrázky - Image![](url_obrázku) -Index: public/help/cs/wiki_syntax_textile.html -=================================================================== ---- public/help/cs/wiki_syntax_textile.html (revision 16952) -+++ public/help/cs/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revize r43Revize r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Vnořené obrázky - Obrázek!url_obrázku! -Index: public/help/da/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/da/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/da/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                          - -
                            -+
                          • -+ DMSF: -+
                              -+
                            • {{dmsf(17)}} (a link to the file with id 17)
                            • -+
                            • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                            • -+
                            • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                            • -+
                            • {{dmsfd(17)}} (a link to the details of the file with id 17)
                            • -+
                            • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                            • -+
                            • {{dmsff(5)}} (a link to the folder with id 5)
                            • -+
                            • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                            • -+
                            • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                            • -+
                            • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                            • -+
                            • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                            • -+
                            • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                            • -+
                            • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                            • -+
                            • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                            • -+
                            • {{dmsftn(8)}} (a thumbnail with height of 200px)
                            • -+
                            • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                            • -+
                            • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                            • -+
                            -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                            -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                          • -+
                          -+ -+
                            -
                          • Versions: -
                              -
                            • version#3 (link to version with id 3)
                            • -Index: public/help/da/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/da/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/da/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                            - -
                              -+
                            • -+ DMSF: -+
                                -+
                              • {{dmsf(17)}} (a link to the file with id 17)
                              • -+
                              • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                              • -+
                              • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                              • -+
                              • {{dmsfd(17)}} (a link to the details of the file with id 17)
                              • -+
                              • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                              • -+
                              • {{dmsff(5)}} (a link to the folder with id 5)
                              • -+
                              • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                              • -+
                              • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                              • -+
                              • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                              • -+
                              • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                              • -+
                              • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                              • -+
                              • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                              • -+
                              • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                              • -+
                              • {{dmsftn(8)}} (a thumbnail with height of 200px)
                              • -+
                              • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                              • -+
                              • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                              • -+
                              -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                              -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                            • -+
                            -+ -+
                              -
                            • Versions: -
                                -
                              • version#3 (link to version with id 3)
                              • -Index: public/help/da/wiki_syntax_markdown.html -=================================================================== ---- public/help/da/wiki_syntax_markdown.html (revision 16952) -+++ public/help/da/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/da/wiki_syntax_textile.html -=================================================================== ---- public/help/da/wiki_syntax_textile.html (revision 16952) -+++ public/help/da/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/de/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/de/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/de/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                              - -
                                -+
                              • -+ DMSF: -+
                                  -+
                                • {{dmsf(17)}} (a link to the file with id 17)
                                • -+
                                • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                • -+
                                • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                • -+
                                • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                • -+
                                • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                • -+
                                • {{dmsff(5)}} (a link to the folder with id 5)
                                • -+
                                • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                • -+
                                • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                • -+
                                • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                • -+
                                • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                • -+
                                • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                • -+
                                • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                • -+
                                • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                • -+
                                • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                • -+
                                • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                • -+
                                • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                • -+
                                -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                              • -+
                              -+ -+
                                -
                              • Versions: -
                                  -
                                • version#3 (link to version with id 3)
                                • -Index: public/help/de/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/de/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/de/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                - -
                                  -+
                                • -+ DMSF: -+
                                    -+
                                  • {{dmsf(17)}} (a link to the file with id 17)
                                  • -+
                                  • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                  • -+
                                  • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                  • -+
                                  • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                  • -+
                                  • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                  • -+
                                  • {{dmsff(5)}} (a link to the folder with id 5)
                                  • -+
                                  • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                  • -+
                                  • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                  • -+
                                  • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                  • -+
                                  • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                  • -+
                                  • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                  • -+
                                  • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                  • -+
                                  • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                  • -+
                                  • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                  • -+
                                  • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                  • -+
                                  • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                  • -+
                                  -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                  -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                • -+
                                -+ -+
                                  -
                                • Versions: -
                                    -
                                  • version#3 (link to version with id 3)
                                  • -Index: public/help/de/wiki_syntax_markdown.html -=================================================================== ---- public/help/de/wiki_syntax_markdown.html (revision 16952) -+++ public/help/de/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/de/wiki_syntax_textile.html -=================================================================== ---- public/help/de/wiki_syntax_textile.html (revision 16952) -+++ public/help/de/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - eingebettete Bilder - Bild!URL_zu_dem_Bild! -Index: public/help/el/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/el/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/el/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                  - -
                                    -+
                                  • -+ DMSF: -+
                                      -+
                                    • {{dmsf(17)}} (a link to the file with id 17)
                                    • -+
                                    • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                    • -+
                                    • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                    • -+
                                    • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                    • -+
                                    • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                    • -+
                                    • {{dmsff(5)}} (a link to the folder with id 5)
                                    • -+
                                    • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                    • -+
                                    • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                    • -+
                                    • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                    • -+
                                    • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                    • -+
                                    • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                    • -+
                                    • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                    • -+
                                    • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                    • -+
                                    • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                    • -+
                                    • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                    • -+
                                    • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                    • -+
                                    -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                    -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                  • -+
                                  -+ -+
                                    -
                                  • Versions: -
                                      -
                                    • version#3 (link to version with id 3)
                                    • -Index: public/help/el/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/el/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/el/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                    - -
                                      -+
                                    • -+ DMSF: -+
                                        -+
                                      • {{dmsf(17)}} (a link to the file with id 17)
                                      • -+
                                      • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                      • -+
                                      • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                      • -+
                                      • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                      • -+
                                      • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                      • -+
                                      • {{dmsff(5)}} (a link to the folder with id 5)
                                      • -+
                                      • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                      • -+
                                      • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                      • -+
                                      • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                      • -+
                                      • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                      • -+
                                      • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                      • -+
                                      • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                      • -+
                                      • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                      • -+
                                      • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                      • -+
                                      • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                      • -+
                                      • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                      • -+
                                      -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                      -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                    • -+
                                    -+ -+
                                      -
                                    • Versions: -
                                        -
                                      • version#3 (link to version with id 3)
                                      • -Index: public/help/el/wiki_syntax_markdown.html -=================================================================== ---- public/help/el/wiki_syntax_markdown.html (revision 16952) -+++ public/help/el/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/el/wiki_syntax_textile.html -=================================================================== ---- public/help/el/wiki_syntax_textile.html (revision 16952) -+++ public/help/el/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/en/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/en/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/en/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                      - -
                                        -+
                                      • -+ DMSF: -+
                                          -+
                                        • {{dmsf(17)}} (a link to the file with id 17)
                                        • -+
                                        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                        • -+
                                        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                        • -+
                                        • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                        • -+
                                        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                        • -+
                                        • {{dmsff(5)}} (a link to the folder with id 5)
                                        • -+
                                        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                        • -+
                                        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                        • -+
                                        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                        • -+
                                        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                        • -+
                                        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                        • -+
                                        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                        • -+
                                        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                        • -+
                                        • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                        • -+
                                        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                        • -+
                                        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                        • -+
                                        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                      • -+
                                      -+ -+
                                        -
                                      • Versions: -
                                          -
                                        • version#3 (link to version with id 3)
                                        • -Index: public/help/en/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/en/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/en/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                        - -
                                          -+
                                        • -+ DMSF: -+
                                            -+
                                          • {{dmsf(17)}} (a link to the file with id 17)
                                          • -+
                                          • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                          • -+
                                          • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                          • -+
                                          • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                          • -+
                                          • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                          • -+
                                          • {{dmsff(5)}} (a link to the folder with id 5)
                                          • -+
                                          • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                          • -+
                                          • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                          • -+
                                          • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                          • -+
                                          • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                          • -+
                                          • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                          • -+
                                          • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                          • -+
                                          • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                          • -+
                                          • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                          • -+
                                          • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                          • -+
                                          • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                          • -+
                                          -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                          -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                        • -+
                                        -+ -+
                                          -
                                        • Versions: -
                                            -
                                          • version#3 (link to version with id 3)
                                          • -Index: public/help/en/wiki_syntax_markdown.html -=================================================================== ---- public/help/en/wiki_syntax_markdown.html (revision 16952) -+++ public/help/en/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/en/wiki_syntax_textile.html -=================================================================== ---- public/help/en/wiki_syntax_textile.html (revision 16952) -+++ public/help/en/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/en-gb/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/en-gb/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/en-gb/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                          - -
                                            -+
                                          • -+ DMSF: -+
                                              -+
                                            • {{dmsf(17)}} (a link to the file with id 17)
                                            • -+
                                            • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                            • -+
                                            • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                            • -+
                                            • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                            • -+
                                            • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                            • -+
                                            • {{dmsff(5)}} (a link to the folder with id 5)
                                            • -+
                                            • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                            • -+
                                            • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                            • -+
                                            • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                            • -+
                                            • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                            • -+
                                            • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                            • -+
                                            • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                            • -+
                                            • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                            • -+
                                            • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                            • -+
                                            • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                            • -+
                                            • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                            • -+
                                            -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                            -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                          • -+
                                          -+ -+
                                            -
                                          • Versions: -
                                              -
                                            • version#3 (link to version with id 3)
                                            • -Index: public/help/en-gb/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/en-gb/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/en-gb/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                            - -
                                              -+
                                            • -+ DMSF: -+
                                                -+
                                              • {{dmsf(17)}} (a link to the file with id 17)
                                              • -+
                                              • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                              • -+
                                              • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                              • -+
                                              • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                              • -+
                                              • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                              • -+
                                              • {{dmsff(5)}} (a link to the folder with id 5)
                                              • -+
                                              • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                              • -+
                                              • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                              • -+
                                              • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                              • -+
                                              • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                              • -+
                                              • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                              • -+
                                              • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                              • -+
                                              • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                              • -+
                                              • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                              • -+
                                              • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                              • -+
                                              • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                              • -+
                                              -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                              -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                            • -+
                                            -+ -+
                                              -
                                            • Versions: -
                                                -
                                              • version#3 (link to version with id 3)
                                              • -Index: public/help/en-gb/wiki_syntax_markdown.html -=================================================================== ---- public/help/en-gb/wiki_syntax_markdown.html (revision 16952) -+++ public/help/en-gb/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/en-gb/wiki_syntax_textile.html -=================================================================== ---- public/help/en-gb/wiki_syntax_textile.html (revision 16952) -+++ public/help/en-gb/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/es/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/es/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/es/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                              - -
                                                -+
                                              • -+ DMSF: -+
                                                  -+
                                                • {{dmsf(17)}} (a link to the file with id 17)
                                                • -+
                                                • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                • -+
                                                • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                • -+
                                                • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                • -+
                                                • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                • -+
                                                • {{dmsff(5)}} (a link to the folder with id 5)
                                                • -+
                                                • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                • -+
                                                • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                • -+
                                                • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                • -+
                                                • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                • -+
                                                • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                • -+
                                                • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                • -+
                                                • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                • -+
                                                • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                • -+
                                                • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                • -+
                                                • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                • -+
                                                -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                              • -+
                                              -+ -+
                                                -
                                              • Versions: -
                                                  -
                                                • version#3 (link to version with id 3)
                                                • -Index: public/help/es/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/es/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/es/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                - -
                                                  -+
                                                • -+ DMSF: -+
                                                    -+
                                                  • {{dmsf(17)}} (a link to the file with id 17)
                                                  • -+
                                                  • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                  • -+
                                                  • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                  • -+
                                                  • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                  • -+
                                                  • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                  • -+
                                                  • {{dmsff(5)}} (a link to the folder with id 5)
                                                  • -+
                                                  • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                  • -+
                                                  • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                  • -+
                                                  • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                  • -+
                                                  • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                  • -+
                                                  • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                  • -+
                                                  • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                  • -+
                                                  • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                  • -+
                                                  • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                  • -+
                                                  • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                  • -+
                                                  • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                  • -+
                                                  -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                  -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                • -+
                                                -+ -+
                                                  -
                                                • Versions: -
                                                    -
                                                  • version#3 (link to version with id 3)
                                                  • -Index: public/help/es/wiki_syntax_markdown.html -=================================================================== ---- public/help/es/wiki_syntax_markdown.html (revision 16952) -+++ public/help/es/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/es/wiki_syntax_textile.html -=================================================================== ---- public/help/es/wiki_syntax_textile.html (revision 16952) -+++ public/help/es/wiki_syntax_textile.html (working copy) -@@ -44,6 +44,7 @@ - Revisión r43Revisión r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Imágenes en línea - Imagen!imagen_url! -Index: public/help/es-pa/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/es-pa/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/es-pa/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                  - -
                                                    -+
                                                  • -+ DMSF: -+
                                                      -+
                                                    • {{dmsf(17)}} (a link to the file with id 17)
                                                    • -+
                                                    • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                    • -+
                                                    • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                    • -+
                                                    • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                    • -+
                                                    • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                    • -+
                                                    • {{dmsff(5)}} (a link to the folder with id 5)
                                                    • -+
                                                    • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                    • -+
                                                    • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                    • -+
                                                    • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                    • -+
                                                    • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                    • -+
                                                    • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                    • -+
                                                    • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                    • -+
                                                    • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                    • -+
                                                    • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                    • -+
                                                    • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                    • -+
                                                    • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                    • -+
                                                    -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                    -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                  • -+
                                                  -+ -+
                                                    -
                                                  • Versions: -
                                                      -
                                                    • version#3 (link to version with id 3)
                                                    • -Index: public/help/es-pa/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/es-pa/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/es-pa/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                    - -
                                                      -+
                                                    • -+ DMSF: -+
                                                        -+
                                                      • {{dmsf(17)}} (a link to the file with id 17)
                                                      • -+
                                                      • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                      • -+
                                                      • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                      • -+
                                                      • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                      • -+
                                                      • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                      • -+
                                                      • {{dmsff(5)}} (a link to the folder with id 5)
                                                      • -+
                                                      • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                      • -+
                                                      • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                      • -+
                                                      • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                      • -+
                                                      • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                      • -+
                                                      • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                      • -+
                                                      • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                      • -+
                                                      • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                      • -+
                                                      • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                      • -+
                                                      • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                      • -+
                                                      • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                      • -+
                                                      -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                      -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                    • -+
                                                    -+ -+
                                                      -
                                                    • Versions: -
                                                        -
                                                      • version#3 (link to version with id 3)
                                                      • -Index: public/help/es-pa/wiki_syntax_markdown.html -=================================================================== ---- public/help/es-pa/wiki_syntax_markdown.html (revision 16952) -+++ public/help/es-pa/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/es-pa/wiki_syntax_textile.html -=================================================================== ---- public/help/es-pa/wiki_syntax_textile.html (revision 16952) -+++ public/help/es-pa/wiki_syntax_textile.html (working copy) -@@ -44,6 +44,7 @@ - Revisión r43Revisión r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Imágenes en línea - Imagen!imagen_url! -Index: public/help/et/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/et/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/et/wiki_syntax_detailed_markdown.html (working copy) -@@ -34,6 +34,32 @@ -
                                                      • [[sandbox:]] displays a link to the Sandbox wiki main page
                                                      • -
                                                      - -+
                                                        -+
                                                      • -+ DMSF: -+
                                                          -+
                                                        • {{dmsf(17)}} (a link to the file with id 17)
                                                        • -+
                                                        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                        • -+
                                                        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                        • -+
                                                        • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                        • -+
                                                        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                        • -+
                                                        • {{dmsff(5)}} (a link to the folder with id 5)
                                                        • -+
                                                        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                        • -+
                                                        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                        • -+
                                                        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                        • -+
                                                        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                        • -+
                                                        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                        • -+
                                                        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                        • -+
                                                        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                        • -+
                                                        • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                        • -+
                                                        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                        • -+
                                                        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                        • -+
                                                        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                      • -+
                                                      -+ -

                                                      Wiki links are displayed in red if the page doesn't exist yet, eg: Nonexistent page.

                                                      - -

                                                      Links to other resources:

                                                      -Index: public/help/et/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/et/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/et/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                    - -
                                                      -+
                                                    • -+ DMSF: -+
                                                        -+
                                                      • {{dmsf(17)}} (a link to the file with id 17)
                                                      • -+
                                                      • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                      • -+
                                                      • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                      • -+
                                                      • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                      • -+
                                                      • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                      • -+
                                                      • {{dmsff(5)}} (a link to the folder with id 5)
                                                      • -+
                                                      • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                      • -+
                                                      • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                      • -+
                                                      • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                      • -+
                                                      • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                      • -+
                                                      • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                      • -+
                                                      • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                      • -+
                                                      • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                      • -+
                                                      • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                      • -+
                                                      • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                      • -+
                                                      • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                      • -+
                                                      -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                      -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                    • -+
                                                    -+ -+
                                                      -
                                                    • Versions: -
                                                        -
                                                      • version#3 (link to version with id 3)
                                                      • -Index: public/help/et/wiki_syntax_markdown.html -=================================================================== ---- public/help/et/wiki_syntax_markdown.html (revision 16952) -+++ public/help/et/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/et/wiki_syntax_textile.html -=================================================================== ---- public/help/et/wiki_syntax_textile.html (revision 16952) -+++ public/help/et/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/eu/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/eu/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/eu/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                      - -
                                                        -+
                                                      • -+ DMSF: -+
                                                          -+
                                                        • {{dmsf(17)}} (a link to the file with id 17)
                                                        • -+
                                                        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                        • -+
                                                        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                        • -+
                                                        • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                        • -+
                                                        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                        • -+
                                                        • {{dmsff(5)}} (a link to the folder with id 5)
                                                        • -+
                                                        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                        • -+
                                                        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                        • -+
                                                        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                        • -+
                                                        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                        • -+
                                                        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                        • -+
                                                        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                        • -+
                                                        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                        • -+
                                                        • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                        • -+
                                                        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                        • -+
                                                        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                        • -+
                                                        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                      • -+
                                                      -+ -+
                                                        -
                                                      • Versions: -
                                                          -
                                                        • version#3 (link to version with id 3)
                                                        • -Index: public/help/eu/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/eu/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/eu/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                        - -
                                                          -+
                                                        • -+ DMSF: -+
                                                            -+
                                                          • {{dmsf(17)}} (a link to the file with id 17)
                                                          • -+
                                                          • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                          • -+
                                                          • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                          • -+
                                                          • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                          • -+
                                                          • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                          • -+
                                                          • {{dmsff(5)}} (a link to the folder with id 5)
                                                          • -+
                                                          • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                          • -+
                                                          • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                          • -+
                                                          • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                          • -+
                                                          • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                          • -+
                                                          • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                          • -+
                                                          • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                          • -+
                                                          • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                          • -+
                                                          • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                          • -+
                                                          • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                          • -+
                                                          • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                          • -+
                                                          -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                          -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                        • -+
                                                        -+ -+
                                                          -
                                                        • Versions: -
                                                            -
                                                          • version#3 (link to version with id 3)
                                                          • -Index: public/help/eu/wiki_syntax_markdown.html -=================================================================== ---- public/help/eu/wiki_syntax_markdown.html (revision 16952) -+++ public/help/eu/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/eu/wiki_syntax_textile.html -=================================================================== ---- public/help/eu/wiki_syntax_textile.html (revision 16952) -+++ public/help/eu/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/fa/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/fa/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/fa/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                          - -
                                                            -+
                                                          • -+ DMSF: -+
                                                              -+
                                                            • {{dmsf(17)}} (a link to the file with id 17)
                                                            • -+
                                                            • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                            • -+
                                                            • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                            • -+
                                                            • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                            • -+
                                                            • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                            • -+
                                                            • {{dmsff(5)}} (a link to the folder with id 5)
                                                            • -+
                                                            • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                            • -+
                                                            • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                            • -+
                                                            • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                            • -+
                                                            • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                            • -+
                                                            • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                            • -+
                                                            • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                            • -+
                                                            • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                            • -+
                                                            • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                            • -+
                                                            • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                            • -+
                                                            • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                            • -+
                                                            -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                            -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                          • -+
                                                          -+ -+
                                                            -
                                                          • Versions: -
                                                              -
                                                            • version#3 (link to version with id 3)
                                                            • -Index: public/help/fa/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/fa/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/fa/wiki_syntax_detailed_textile.html (working copy) -@@ -34,6 +34,32 @@ -
                                                            • [[sandbox:]] displays a link to the Sandbox wiki main page
                                                            • -
                                                            - -+
                                                              -+
                                                            • -+ DMSF: -+
                                                                -+
                                                              • {{dmsf(17)}} (a link to the file with id 17)
                                                              • -+
                                                              • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                              • -+
                                                              • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                              • -+
                                                              • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                              • -+
                                                              • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                              • -+
                                                              • {{dmsff(5)}} (a link to the folder with id 5)
                                                              • -+
                                                              • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                              • -+
                                                              • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                              • -+
                                                              • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                              • -+
                                                              • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                              • -+
                                                              • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                              • -+
                                                              • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                              • -+
                                                              • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                              • -+
                                                              • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                              • -+
                                                              • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                              • -+
                                                              • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                              • -+
                                                              -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                              -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                            • -+
                                                            -+ -

                                                            Wiki links are displayed in red if the page doesn't exist yet, eg: Nonexistent page.

                                                            - -

                                                            Links to other resources:

                                                            -Index: public/help/fa/wiki_syntax_markdown.html -=================================================================== ---- public/help/fa/wiki_syntax_markdown.html (revision 16952) -+++ public/help/fa/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/fa/wiki_syntax_textile.html -=================================================================== ---- public/help/fa/wiki_syntax_textile.html (revision 16952) -+++ public/help/fa/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/fi/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/fi/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/fi/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                          - -
                                                            -+
                                                          • -+ DMSF: -+
                                                              -+
                                                            • {{dmsf(17)}} (a link to the file with id 17)
                                                            • -+
                                                            • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                            • -+
                                                            • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                            • -+
                                                            • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                            • -+
                                                            • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                            • -+
                                                            • {{dmsff(5)}} (a link to the folder with id 5)
                                                            • -+
                                                            • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                            • -+
                                                            • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                            • -+
                                                            • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                            • -+
                                                            • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                            • -+
                                                            • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                            • -+
                                                            • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                            • -+
                                                            • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                            • -+
                                                            • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                            • -+
                                                            • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                            • -+
                                                            • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                            • -+
                                                            -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                            -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                          • -+
                                                          -+ -+
                                                            -
                                                          • Versions: -
                                                              -
                                                            • version#3 (link to version with id 3)
                                                            • -Index: public/help/fi/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/fi/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/fi/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                            - -
                                                              -+
                                                            • -+ DMSF: -+
                                                                -+
                                                              • {{dmsf(17)}} (a link to the file with id 17)
                                                              • -+
                                                              • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                              • -+
                                                              • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                              • -+
                                                              • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                              • -+
                                                              • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                              • -+
                                                              • {{dmsff(5)}} (a link to the folder with id 5)
                                                              • -+
                                                              • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                              • -+
                                                              • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                              • -+
                                                              • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                              • -+
                                                              • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                              • -+
                                                              • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                              • -+
                                                              • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                              • -+
                                                              • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                              • -+
                                                              • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                              • -+
                                                              • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                              • -+
                                                              • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                              • -+
                                                              -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                              -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                            • -+
                                                            -+ -+
                                                              -
                                                            • Versions: -
                                                                -
                                                              • version#3 (link to version with id 3)
                                                              • -Index: public/help/fi/wiki_syntax_markdown.html -=================================================================== ---- public/help/fi/wiki_syntax_markdown.html (revision 16952) -+++ public/help/fi/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/fi/wiki_syntax_textile.html -=================================================================== ---- public/help/fi/wiki_syntax_textile.html (revision 16952) -+++ public/help/fi/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/fr/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/fr/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/fr/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                              - -
                                                                -+
                                                              • -+ DMSF: -+
                                                                  -+
                                                                • {{dmsf(17)}} (a link to the file with id 17)
                                                                • -+
                                                                • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                • -+
                                                                • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                • -+
                                                                • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                • -+
                                                                • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                • -+
                                                                • {{dmsff(5)}} (a link to the folder with id 5)
                                                                • -+
                                                                • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                • -+
                                                                • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                • -+
                                                                • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                • -+
                                                                • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                • -+
                                                                • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                • -+
                                                                • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                • -+
                                                                • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                • -+
                                                                • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                • -+
                                                                • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                • -+
                                                                • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                • -+
                                                                -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                              • -+
                                                              -+ -+
                                                                -
                                                              • Versions: -
                                                                  -
                                                                • version#3 (link to version with id 3)
                                                                • -Index: public/help/fr/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/fr/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/fr/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                - -
                                                                  -+
                                                                • -+ DMSF: -+
                                                                    -+
                                                                  • {{dmsf(17)}} (a link to the file with id 17)
                                                                  • -+
                                                                  • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                  • -+
                                                                  • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                  • -+
                                                                  • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                  • -+
                                                                  • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                  • -+
                                                                  • {{dmsff(5)}} (a link to the folder with id 5)
                                                                  • -+
                                                                  • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                  • -+
                                                                  • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                  • -+
                                                                  • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                  • -+
                                                                  • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                  • -+
                                                                  • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                  • -+
                                                                  • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                  • -+
                                                                  • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                  • -+
                                                                  • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                  • -+
                                                                  • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                  • -+
                                                                  • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                  • -+
                                                                  -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                  -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                • -+
                                                                -+ -+
                                                                  -
                                                                • Versions: -
                                                                    -
                                                                  • version#3 (lien vers la version dont l'id est 3)
                                                                  • -Index: public/help/fr/wiki_syntax_markdown.html -=================================================================== ---- public/help/fr/wiki_syntax_markdown.html (revision 16952) -+++ public/help/fr/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/fr/wiki_syntax_textile.html -=================================================================== ---- public/help/fr/wiki_syntax_textile.html (revision 16952) -+++ public/help/fr/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Images en ligne - Image!url_de_l_image! -Index: public/help/gl/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/gl/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/gl/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                  - -
                                                                    -+
                                                                  • -+ DMSF: -+
                                                                      -+
                                                                    • {{dmsf(17)}} (a link to the file with id 17)
                                                                    • -+
                                                                    • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                    • -+
                                                                    • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                    • -+
                                                                    • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                    • -+
                                                                    • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                    • -+
                                                                    • {{dmsff(5)}} (a link to the folder with id 5)
                                                                    • -+
                                                                    • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                    • -+
                                                                    • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                    • -+
                                                                    • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                    • -+
                                                                    • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                    • -+
                                                                    • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                    • -+
                                                                    • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                    • -+
                                                                    • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                    • -+
                                                                    • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                    • -+
                                                                    • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                    • -+
                                                                    • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                    • -+
                                                                    -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                    -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                  • -+
                                                                  -+ -+
                                                                    -
                                                                  • Versions: -
                                                                      -
                                                                    • version#3 (link to version with id 3)
                                                                    • -Index: public/help/gl/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/gl/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/gl/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                    - -
                                                                      -+
                                                                    • -+ DMSF: -+
                                                                        -+
                                                                      • {{dmsf(17)}} (a link to the file with id 17)
                                                                      • -+
                                                                      • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                      • -+
                                                                      • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                      • -+
                                                                      • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                      • -+
                                                                      • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                      • -+
                                                                      • {{dmsff(5)}} (a link to the folder with id 5)
                                                                      • -+
                                                                      • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                      • -+
                                                                      • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                      • -+
                                                                      • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                      • -+
                                                                      • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                      • -+
                                                                      • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                      • -+
                                                                      • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                      • -+
                                                                      • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                      • -+
                                                                      • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                      • -+
                                                                      • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                      • -+
                                                                      • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                      • -+
                                                                      -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                      -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                    • -+
                                                                    -+ -+
                                                                      -
                                                                    • Versions: -
                                                                        -
                                                                      • version#3 (link to version with id 3)
                                                                      • -Index: public/help/gl/wiki_syntax_markdown.html -=================================================================== ---- public/help/gl/wiki_syntax_markdown.html (revision 16952) -+++ public/help/gl/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/gl/wiki_syntax_textile.html -=================================================================== ---- public/help/gl/wiki_syntax_textile.html (revision 16952) -+++ public/help/gl/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/he/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/he/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/he/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                      - -
                                                                        -+
                                                                      • -+ DMSF: -+
                                                                          -+
                                                                        • {{dmsf(17)}} (a link to the file with id 17)
                                                                        • -+
                                                                        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                        • -+
                                                                        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                        • -+
                                                                        • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                        • -+
                                                                        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                        • -+
                                                                        • {{dmsff(5)}} (a link to the folder with id 5)
                                                                        • -+
                                                                        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                        • -+
                                                                        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                        • -+
                                                                        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                        • -+
                                                                        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                        • -+
                                                                        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                        • -+
                                                                        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                        • -+
                                                                        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                        • -+
                                                                        • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                        • -+
                                                                        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                        • -+
                                                                        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                        • -+
                                                                        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                      • -+
                                                                      -+ -+
                                                                        -
                                                                      • Versions: -
                                                                          -
                                                                        • version#3 (link to version with id 3)
                                                                        • -Index: public/help/he/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/he/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/he/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                        - -
                                                                          -+
                                                                        • -+ DMSF: -+
                                                                            -+
                                                                          • {{dmsf(17)}} (a link to the file with id 17)
                                                                          • -+
                                                                          • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                          • -+
                                                                          • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                          • -+
                                                                          • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                          • -+
                                                                          • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                          • -+
                                                                          • {{dmsff(5)}} (a link to the folder with id 5)
                                                                          • -+
                                                                          • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                          • -+
                                                                          • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                          • -+
                                                                          • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                          • -+
                                                                          • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                          • -+
                                                                          • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                          • -+
                                                                          • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                          • -+
                                                                          • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                          • -+
                                                                          • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                          • -+
                                                                          • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                          • -+
                                                                          • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                          • -+
                                                                          -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                          -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                        • -+
                                                                        -+ -+
                                                                          -
                                                                        • Versions: -
                                                                            -
                                                                          • version#3 (link to version with id 3)
                                                                          • -Index: public/help/he/wiki_syntax_markdown.html -=================================================================== ---- public/help/he/wiki_syntax_markdown.html (revision 16952) -+++ public/help/he/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/he/wiki_syntax_textile.html -=================================================================== ---- public/help/he/wiki_syntax_textile.html (revision 16952) -+++ public/help/he/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/hr/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/hr/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/hr/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                          - -
                                                                            -+
                                                                          • -+ DMSF: -+
                                                                              -+
                                                                            • {{dmsf(17)}} (a link to the file with id 17)
                                                                            • -+
                                                                            • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                            • -+
                                                                            • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                            • -+
                                                                            • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                            • -+
                                                                            • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                            • -+
                                                                            • {{dmsff(5)}} (a link to the folder with id 5)
                                                                            • -+
                                                                            • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                            • -+
                                                                            • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                            • -+
                                                                            • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                            • -+
                                                                            • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                            • -+
                                                                            • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                            • -+
                                                                            • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                            • -+
                                                                            • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                            • -+
                                                                            • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                            • -+
                                                                            • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                            • -+
                                                                            • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                            • -+
                                                                            -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                            -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                          • -+
                                                                          -+ -+
                                                                            -
                                                                          • Versions: -
                                                                              -
                                                                            • version#3 (link to version with id 3)
                                                                            • -Index: public/help/hr/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/hr/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/hr/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                            - -
                                                                              -+
                                                                            • -+ DMSF: -+
                                                                                -+
                                                                              • {{dmsf(17)}} (a link to the file with id 17)
                                                                              • -+
                                                                              • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                              • -+
                                                                              • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                              • -+
                                                                              • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                              • -+
                                                                              • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                              • -+
                                                                              • {{dmsff(5)}} (a link to the folder with id 5)
                                                                              • -+
                                                                              • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                              • -+
                                                                              • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                              • -+
                                                                              • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                              • -+
                                                                              • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                              • -+
                                                                              • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                              • -+
                                                                              • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                              • -+
                                                                              • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                              • -+
                                                                              • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                              • -+
                                                                              • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                              • -+
                                                                              • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                              • -+
                                                                              -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                              -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                            • -+
                                                                            -+ -+
                                                                              -
                                                                            • Versions: -
                                                                                -
                                                                              • version#3 (link to version with id 3)
                                                                              • -Index: public/help/hr/wiki_syntax_markdown.html -=================================================================== ---- public/help/hr/wiki_syntax_markdown.html (revision 16952) -+++ public/help/hr/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/hr/wiki_syntax_textile.html -=================================================================== ---- public/help/hr/wiki_syntax_textile.html (revision 16952) -+++ public/help/hr/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/hu/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/hu/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/hu/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                              - -
                                                                                -+
                                                                              • -+ DMSF: -+
                                                                                  -+
                                                                                • {{dmsf(17)}} (a link to the file with id 17)
                                                                                • -+
                                                                                • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                • -+
                                                                                • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                • -+
                                                                                • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                • -+
                                                                                • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                • -+
                                                                                • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                • -+
                                                                                • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                • -+
                                                                                • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                • -+
                                                                                • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                • -+
                                                                                • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                • -+
                                                                                • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                • -+
                                                                                • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                • -+
                                                                                • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                • -+
                                                                                • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                • -+
                                                                                • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                • -+
                                                                                • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                • -+
                                                                                -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                              • -+
                                                                              -+ -+
                                                                                -
                                                                              • Versions: -
                                                                                  -
                                                                                • version#3 (link to version with id 3)
                                                                                • -Index: public/help/hu/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/hu/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/hu/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                - -
                                                                                  -+
                                                                                • -+ DMSF: -+
                                                                                    -+
                                                                                  • {{dmsf(17)}} (a link to the file with id 17)
                                                                                  • -+
                                                                                  • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                  • -+
                                                                                  • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                  • -+
                                                                                  • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                  • -+
                                                                                  • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                  • -+
                                                                                  • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                  • -+
                                                                                  • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                  • -+
                                                                                  • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                  • -+
                                                                                  • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                  • -+
                                                                                  • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                  • -+
                                                                                  • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                  • -+
                                                                                  • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                  • -+
                                                                                  • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                  • -+
                                                                                  • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                  • -+
                                                                                  • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                  • -+
                                                                                  • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                  • -+
                                                                                  -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                  -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                • -+
                                                                                -+ -+
                                                                                  -
                                                                                • Versions: -
                                                                                    -
                                                                                  • version#3 (link to version with id 3)
                                                                                  • -Index: public/help/hu/wiki_syntax_markdown.html -=================================================================== ---- public/help/hu/wiki_syntax_markdown.html (revision 16952) -+++ public/help/hu/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/hu/wiki_syntax_textile.html -=================================================================== ---- public/help/hu/wiki_syntax_textile.html (revision 16952) -+++ public/help/hu/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/id/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/id/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/id/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                  - -
                                                                                    -+
                                                                                  • -+ DMSF: -+
                                                                                      -+
                                                                                    • {{dmsf(17)}} (a link to the file with id 17)
                                                                                    • -+
                                                                                    • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                    • -+
                                                                                    • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                    • -+
                                                                                    • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                    • -+
                                                                                    • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                    • -+
                                                                                    • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                    • -+
                                                                                    • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                    • -+
                                                                                    • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                    • -+
                                                                                    • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                    • -+
                                                                                    • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                    • -+
                                                                                    • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                    • -+
                                                                                    • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                    • -+
                                                                                    • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                    • -+
                                                                                    • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                    • -+
                                                                                    • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                    • -+
                                                                                    • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                    • -+
                                                                                    -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                    -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                  • -+
                                                                                  -+ -+
                                                                                    -
                                                                                  • Versions: -
                                                                                      -
                                                                                    • version#3 (link to version with id 3)
                                                                                    • -Index: public/help/id/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/id/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/id/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                    - -
                                                                                      -+
                                                                                    • -+ DMSF: -+
                                                                                        -+
                                                                                      • {{dmsf(17)}} (a link to the file with id 17)
                                                                                      • -+
                                                                                      • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                      • -+
                                                                                      • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                      • -+
                                                                                      • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                      • -+
                                                                                      • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                      • -+
                                                                                      • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                      • -+
                                                                                      • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                      • -+
                                                                                      • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                      • -+
                                                                                      • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                      • -+
                                                                                      • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                      • -+
                                                                                      • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                      • -+
                                                                                      • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                      • -+
                                                                                      • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                      • -+
                                                                                      • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                      • -+
                                                                                      • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                      • -+
                                                                                      • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                      • -+
                                                                                      -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                      -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                    • -+
                                                                                    -+ -+
                                                                                      -
                                                                                    • Versions: -
                                                                                        -
                                                                                      • version#3 (link to version with id 3)
                                                                                      • -Index: public/help/id/wiki_syntax_markdown.html -=================================================================== ---- public/help/id/wiki_syntax_markdown.html (revision 16952) -+++ public/help/id/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/id/wiki_syntax_textile.html -=================================================================== ---- public/help/id/wiki_syntax_textile.html (revision 16952) -+++ public/help/id/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/it/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/it/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/it/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                      - -
                                                                                        -+
                                                                                      • -+ DMSF: -+
                                                                                          -+
                                                                                        • {{dmsf(17)}} (a link to the file with id 17)
                                                                                        • -+
                                                                                        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                        • -+
                                                                                        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                        • -+
                                                                                        • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                        • -+
                                                                                        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                        • -+
                                                                                        • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                        • -+
                                                                                        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                        • -+
                                                                                        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                        • -+
                                                                                        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                        • -+
                                                                                        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                        • -+
                                                                                        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                        • -+
                                                                                        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                        • -+
                                                                                        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                        • -+
                                                                                        • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                        • -+
                                                                                        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                        • -+
                                                                                        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                        • -+
                                                                                        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                      • -+
                                                                                      -+ -+
                                                                                        -
                                                                                      • Versions: -
                                                                                          -
                                                                                        • version#3 (link to version with id 3)
                                                                                        • -Index: public/help/it/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/it/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/it/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                        - -
                                                                                          -+
                                                                                        • -+ DMSF: -+
                                                                                            -+
                                                                                          • {{dmsf(17)}} (a link to the file with id 17)
                                                                                          • -+
                                                                                          • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                          • -+
                                                                                          • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                          • -+
                                                                                          • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                          • -+
                                                                                          • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                          • -+
                                                                                          • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                          • -+
                                                                                          • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                          • -+
                                                                                          • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                          • -+
                                                                                          • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                          • -+
                                                                                          • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                          • -+
                                                                                          • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                          • -+
                                                                                          • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                          • -+
                                                                                          • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                          • -+
                                                                                          • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                          • -+
                                                                                          • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                          • -+
                                                                                          • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                          • -+
                                                                                          -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                          -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                        • -+
                                                                                        -+ -+
                                                                                          -
                                                                                        • Versions: -
                                                                                            -
                                                                                          • version#3 (link to version with id 3)
                                                                                          • -Index: public/help/it/wiki_syntax_markdown.html -=================================================================== ---- public/help/it/wiki_syntax_markdown.html (revision 16952) -+++ public/help/it/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/it/wiki_syntax_textile.html -=================================================================== ---- public/help/it/wiki_syntax_textile.html (revision 16952) -+++ public/help/it/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/ja/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/ja/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/ja/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                          - -
                                                                                            -+
                                                                                          • -+ DMSF: -+
                                                                                              -+
                                                                                            • {{dmsf(17)}} (a link to the file with id 17)
                                                                                            • -+
                                                                                            • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                            • -+
                                                                                            • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                            • -+
                                                                                            • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                            • -+
                                                                                            • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                            • -+
                                                                                            • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                            • -+
                                                                                            • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                            • -+
                                                                                            • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                            • -+
                                                                                            • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                            • -+
                                                                                            • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                            • -+
                                                                                            • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                            • -+
                                                                                            • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                            • -+
                                                                                            • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                            • -+
                                                                                            • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                            • -+
                                                                                            • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                            • -+
                                                                                            • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                            • -+
                                                                                            -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                            -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                          • -+
                                                                                          -+ -+
                                                                                            -
                                                                                          • バージョン: -
                                                                                              -
                                                                                            • version#3 (id 3のバージョンへのリンク)
                                                                                            • -Index: public/help/ja/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/ja/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/ja/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                            - -
                                                                                              -+
                                                                                            • -+ DMSF: -+
                                                                                                -+
                                                                                              • {{dmsf(17)}} (a link to the file with id 17)
                                                                                              • -+
                                                                                              • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                              • -+
                                                                                              • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                              • -+
                                                                                              • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                              • -+
                                                                                              • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                              • -+
                                                                                              • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                              • -+
                                                                                              • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                              • -+
                                                                                              • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                              • -+
                                                                                              • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                              • -+
                                                                                              • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                              • -+
                                                                                              • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                              • -+
                                                                                              • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                              • -+
                                                                                              • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                              • -+
                                                                                              • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                              • -+
                                                                                              • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                              • -+
                                                                                              • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                              • -+
                                                                                              -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                              -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                            • -+
                                                                                            -+ -+
                                                                                              -
                                                                                            • バージョン: -
                                                                                                -
                                                                                              • version#3 (id 3のバージョンへのリンク)
                                                                                              • -Index: public/help/ja/wiki_syntax_markdown.html -=================================================================== ---- public/help/ja/wiki_syntax_markdown.html (revision 16952) -+++ public/help/ja/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - リビジョン r43リビジョン r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - 画像 - Image![](画像URL) -Index: public/help/ja/wiki_syntax_textile.html -=================================================================== ---- public/help/ja/wiki_syntax_textile.html (revision 16952) -+++ public/help/ja/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - リビジョン r43リビジョン r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - 画像 - Image!画像URL! -Index: public/help/ko/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/ko/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/ko/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                              - -
                                                                                                -+
                                                                                              • -+ DMSF: -+
                                                                                                  -+
                                                                                                • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                • -+
                                                                                                • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                • -+
                                                                                                • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                • -+
                                                                                                • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                • -+
                                                                                                • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                • -+
                                                                                                • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                • -+
                                                                                                • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                • -+
                                                                                                • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                • -+
                                                                                                • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                • -+
                                                                                                • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                • -+
                                                                                                • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                • -+
                                                                                                • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                • -+
                                                                                                • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                • -+
                                                                                                • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                • -+
                                                                                                • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                • -+
                                                                                                • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                • -+
                                                                                                -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                              • -+
                                                                                              -+ -+
                                                                                                -
                                                                                              • Versions: -
                                                                                                  -
                                                                                                • version#3 (link to version with id 3)
                                                                                                • -Index: public/help/ko/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/ko/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/ko/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                - -
                                                                                                  -+
                                                                                                • -+ DMSF: -+
                                                                                                    -+
                                                                                                  • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                  • -+
                                                                                                  • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                  • -+
                                                                                                  • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                  • -+
                                                                                                  • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                  • -+
                                                                                                  • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                  • -+
                                                                                                  • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                  • -+
                                                                                                  • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                  • -+
                                                                                                  • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                  • -+
                                                                                                  • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                  • -+
                                                                                                  • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                  • -+
                                                                                                  • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                  • -+
                                                                                                  • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                  • -+
                                                                                                  • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                  • -+
                                                                                                  • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                  • -+
                                                                                                  • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                  • -+
                                                                                                  • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                  • -+
                                                                                                  -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                  -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                • -+
                                                                                                -+ -+
                                                                                                  -
                                                                                                • Versions: -
                                                                                                    -
                                                                                                  • version#3 (link to version with id 3)
                                                                                                  • -Index: public/help/ko/wiki_syntax_markdown.html -=================================================================== ---- public/help/ko/wiki_syntax_markdown.html (revision 16952) -+++ public/help/ko/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/ko/wiki_syntax_textile.html -=================================================================== ---- public/help/ko/wiki_syntax_textile.html (revision 16952) -+++ public/help/ko/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/lt/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/lt/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/lt/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                  - -
                                                                                                    -+
                                                                                                  • -+ DMSF: -+
                                                                                                      -+
                                                                                                    • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                    • -+
                                                                                                    • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                    • -+
                                                                                                    • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                    • -+
                                                                                                    • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                    • -+
                                                                                                    • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                    • -+
                                                                                                    • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                    • -+
                                                                                                    • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                    • -+
                                                                                                    • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                    • -+
                                                                                                    • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                    • -+
                                                                                                    • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                    • -+
                                                                                                    • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                    • -+
                                                                                                    • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                    • -+
                                                                                                    • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                    • -+
                                                                                                    • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                    • -+
                                                                                                    • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                    • -+
                                                                                                    • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                    • -+
                                                                                                    -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                    -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                  • -+
                                                                                                  -+ -+
                                                                                                    -
                                                                                                  • Versions: -
                                                                                                      -
                                                                                                    • version#3 (link to version with id 3)
                                                                                                    • -Index: public/help/lt/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/lt/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/lt/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                    - -
                                                                                                      -+
                                                                                                    • -+ DMSF: -+
                                                                                                        -+
                                                                                                      • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                      • -+
                                                                                                      • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                      • -+
                                                                                                      • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                      • -+
                                                                                                      • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                      • -+
                                                                                                      • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                      • -+
                                                                                                      • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                      • -+
                                                                                                      • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                      • -+
                                                                                                      • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                      • -+
                                                                                                      • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                      • -+
                                                                                                      • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                      • -+
                                                                                                      • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                      • -+
                                                                                                      • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                      • -+
                                                                                                      • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                      • -+
                                                                                                      • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                      • -+
                                                                                                      • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                      • -+
                                                                                                      • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                      • -+
                                                                                                      -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                      -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                    • -+
                                                                                                    -+ -+
                                                                                                      -
                                                                                                    • Versions: -
                                                                                                        -
                                                                                                      • version#3 (link to version with id 3)
                                                                                                      • -Index: public/help/lt/wiki_syntax_markdown.html -=================================================================== ---- public/help/lt/wiki_syntax_markdown.html (revision 16952) -+++ public/help/lt/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/lt/wiki_syntax_textile.html -=================================================================== ---- public/help/lt/wiki_syntax_textile.html (revision 16952) -+++ public/help/lt/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/lv/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/lv/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/lv/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                      - -
                                                                                                        -+
                                                                                                      • -+ DMSF: -+
                                                                                                          -+
                                                                                                        • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                        • -+
                                                                                                        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                        • -+
                                                                                                        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                        • -+
                                                                                                        • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                        • -+
                                                                                                        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                        • -+
                                                                                                        • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                        • -+
                                                                                                        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                        • -+
                                                                                                        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                        • -+
                                                                                                        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                        • -+
                                                                                                        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                        • -+
                                                                                                        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                        • -+
                                                                                                        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                        • -+
                                                                                                        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                        • -+
                                                                                                        • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                        • -+
                                                                                                        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                        • -+
                                                                                                        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                        • -+
                                                                                                        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                      • -+
                                                                                                      -+ -+
                                                                                                        -
                                                                                                      • Versions: -
                                                                                                          -
                                                                                                        • version#3 (link to version with id 3)
                                                                                                        • -Index: public/help/lv/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/lv/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/lv/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                        - -
                                                                                                          -+
                                                                                                        • -+ DMSF: -+
                                                                                                            -+
                                                                                                          • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                          • -+
                                                                                                          • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                          • -+
                                                                                                          • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                          • -+
                                                                                                          • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                          • -+
                                                                                                          • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                          • -+
                                                                                                          • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                          • -+
                                                                                                          • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                          • -+
                                                                                                          • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                          • -+
                                                                                                          • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                          • -+
                                                                                                          • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                          • -+
                                                                                                          • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                          • -+
                                                                                                          • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                          • -+
                                                                                                          • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                          • -+
                                                                                                          • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                          • -+
                                                                                                          • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                          • -+
                                                                                                          • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                          • -+
                                                                                                          -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                          -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                        • -+
                                                                                                        -+ -+
                                                                                                          -
                                                                                                        • Versions: -
                                                                                                            -
                                                                                                          • version#3 (link to version with id 3)
                                                                                                          • -Index: public/help/lv/wiki_syntax_markdown.html -=================================================================== ---- public/help/lv/wiki_syntax_markdown.html (revision 16952) -+++ public/help/lv/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/lv/wiki_syntax_textile.html -=================================================================== ---- public/help/lv/wiki_syntax_textile.html (revision 16952) -+++ public/help/lv/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/mk/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/mk/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/mk/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                          - -
                                                                                                            -+
                                                                                                          • -+ DMSF: -+
                                                                                                              -+
                                                                                                            • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                            • -+
                                                                                                            • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                            • -+
                                                                                                            • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                            • -+
                                                                                                            • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                            • -+
                                                                                                            • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                            • -+
                                                                                                            • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                            • -+
                                                                                                            • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                            • -+
                                                                                                            • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                            • -+
                                                                                                            • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                            • -+
                                                                                                            • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                            • -+
                                                                                                            • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                            • -+
                                                                                                            • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                            • -+
                                                                                                            • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                            • -+
                                                                                                            • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                            • -+
                                                                                                            • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                            • -+
                                                                                                            • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                            • -+
                                                                                                            -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                            -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                          • -+
                                                                                                          -+ -+
                                                                                                            -
                                                                                                          • Versions: -
                                                                                                              -
                                                                                                            • version#3 (link to version with id 3)
                                                                                                            • -Index: public/help/mk/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/mk/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/mk/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                            - -
                                                                                                              -+
                                                                                                            • -+ DMSF: -+
                                                                                                                -+
                                                                                                              • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                              • -+
                                                                                                              • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                              • -+
                                                                                                              • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                              • -+
                                                                                                              • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                              • -+
                                                                                                              • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                              • -+
                                                                                                              • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                              • -+
                                                                                                              • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                              • -+
                                                                                                              • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                              • -+
                                                                                                              • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                              • -+
                                                                                                              • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                              • -+
                                                                                                              • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                              • -+
                                                                                                              • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                              • -+
                                                                                                              • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                              • -+
                                                                                                              • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                              • -+
                                                                                                              • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                              • -+
                                                                                                              • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                              • -+
                                                                                                              -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                              -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                            • -+
                                                                                                            -+ -+
                                                                                                              -
                                                                                                            • Versions: -
                                                                                                                -
                                                                                                              • version#3 (link to version with id 3)
                                                                                                              • -Index: public/help/mk/wiki_syntax_markdown.html -=================================================================== ---- public/help/mk/wiki_syntax_markdown.html (revision 16952) -+++ public/help/mk/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/mk/wiki_syntax_textile.html -=================================================================== ---- public/help/mk/wiki_syntax_textile.html (revision 16952) -+++ public/help/mk/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/mn/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/mn/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/mn/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                              - -
                                                                                                                -+
                                                                                                              • -+ DMSF: -+
                                                                                                                  -+
                                                                                                                • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                • -+
                                                                                                                • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                • -+
                                                                                                                • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                • -+
                                                                                                                • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                • -+
                                                                                                                • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                • -+
                                                                                                                • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                • -+
                                                                                                                • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                • -+
                                                                                                                • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                • -+
                                                                                                                • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                • -+
                                                                                                                • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                • -+
                                                                                                                • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                • -+
                                                                                                                • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                • -+
                                                                                                                • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                • -+
                                                                                                                • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                • -+
                                                                                                                • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                • -+
                                                                                                                • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                • -+
                                                                                                                -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                              • -+
                                                                                                              -+ -+
                                                                                                                -
                                                                                                              • Versions: -
                                                                                                                  -
                                                                                                                • version#3 (link to version with id 3)
                                                                                                                • -Index: public/help/mn/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/mn/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/mn/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                - -
                                                                                                                  -+
                                                                                                                • -+ DMSF: -+
                                                                                                                    -+
                                                                                                                  • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                  • -+
                                                                                                                  • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                  • -+
                                                                                                                  • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                  • -+
                                                                                                                  • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                  • -+
                                                                                                                  • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                  • -+
                                                                                                                  • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                  • -+
                                                                                                                  • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                  • -+
                                                                                                                  • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                  • -+
                                                                                                                  • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                  • -+
                                                                                                                  • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                  • -+
                                                                                                                  • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                  • -+
                                                                                                                  • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                  • -+
                                                                                                                  • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                  • -+
                                                                                                                  • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                  • -+
                                                                                                                  • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                  • -+
                                                                                                                  • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                  • -+
                                                                                                                  -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                  -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                • -+
                                                                                                                -+ -+
                                                                                                                  -
                                                                                                                • Versions: -
                                                                                                                    -
                                                                                                                  • version#3 (link to version with id 3)
                                                                                                                  • -Index: public/help/mn/wiki_syntax_markdown.html -=================================================================== ---- public/help/mn/wiki_syntax_markdown.html (revision 16952) -+++ public/help/mn/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/mn/wiki_syntax_textile.html -=================================================================== ---- public/help/mn/wiki_syntax_textile.html (revision 16952) -+++ public/help/mn/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/nl/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/nl/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/nl/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                  - -
                                                                                                                    -+
                                                                                                                  • -+ DMSF: -+
                                                                                                                      -+
                                                                                                                    • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                    • -+
                                                                                                                    • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                    • -+
                                                                                                                    • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                    • -+
                                                                                                                    • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                    • -+
                                                                                                                    • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                    • -+
                                                                                                                    • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                    • -+
                                                                                                                    • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                    • -+
                                                                                                                    • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                    • -+
                                                                                                                    • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                    • -+
                                                                                                                    • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                    • -+
                                                                                                                    • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                    • -+
                                                                                                                    • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                    • -+
                                                                                                                    • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                    • -+
                                                                                                                    • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                    • -+
                                                                                                                    • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                    • -+
                                                                                                                    • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                    • -+
                                                                                                                    -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                    -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                  • -+
                                                                                                                  -+ -+
                                                                                                                    -
                                                                                                                  • Versions: -
                                                                                                                      -
                                                                                                                    • version#3 (link to version with id 3)
                                                                                                                    • -Index: public/help/nl/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/nl/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/nl/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                    - -
                                                                                                                      -+
                                                                                                                    • -+ DMSF: -+
                                                                                                                        -+
                                                                                                                      • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                      • -+
                                                                                                                      • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                      • -+
                                                                                                                      • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                      • -+
                                                                                                                      • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                      • -+
                                                                                                                      • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                      • -+
                                                                                                                      • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                      • -+
                                                                                                                      • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                      • -+
                                                                                                                      • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                      • -+
                                                                                                                      • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                      • -+
                                                                                                                      • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                      • -+
                                                                                                                      • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                      • -+
                                                                                                                      • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                      • -+
                                                                                                                      • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                      • -+
                                                                                                                      • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                      • -+
                                                                                                                      • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                      • -+
                                                                                                                      • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                      • -+
                                                                                                                      -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                      -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                    • -+
                                                                                                                    -+ -+
                                                                                                                      -
                                                                                                                    • Versions: -
                                                                                                                        -
                                                                                                                      • version#3 (link to version with id 3)
                                                                                                                      • -Index: public/help/nl/wiki_syntax_markdown.html -=================================================================== ---- public/help/nl/wiki_syntax_markdown.html (revision 16952) -+++ public/help/nl/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/nl/wiki_syntax_textile.html -=================================================================== ---- public/help/nl/wiki_syntax_textile.html (revision 16952) -+++ public/help/nl/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/no/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/no/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/no/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                      - -
                                                                                                                        -+
                                                                                                                      • -+ DMSF: -+
                                                                                                                          -+
                                                                                                                        • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                        • -+
                                                                                                                        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                        • -+
                                                                                                                        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                        • -+
                                                                                                                        • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                        • -+
                                                                                                                        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                        • -+
                                                                                                                        • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                        • -+
                                                                                                                        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                        • -+
                                                                                                                        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                        • -+
                                                                                                                        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                        • -+
                                                                                                                        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                        • -+
                                                                                                                        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                        • -+
                                                                                                                        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                        • -+
                                                                                                                        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                        • -+
                                                                                                                        • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                        • -+
                                                                                                                        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                        • -+
                                                                                                                        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                        • -+
                                                                                                                        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                      • -+
                                                                                                                      -+ -+
                                                                                                                        -
                                                                                                                      • Versions: -
                                                                                                                          -
                                                                                                                        • version#3 (link to version with id 3)
                                                                                                                        • -Index: public/help/no/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/no/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/no/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                        - -
                                                                                                                          -+
                                                                                                                        • -+ DMSF: -+
                                                                                                                            -+
                                                                                                                          • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                          • -+
                                                                                                                          • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                          • -+
                                                                                                                          • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                          • -+
                                                                                                                          • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                          • -+
                                                                                                                          • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                          • -+
                                                                                                                          • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                          • -+
                                                                                                                          • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                          • -+
                                                                                                                          • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                          • -+
                                                                                                                          • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                          • -+
                                                                                                                          • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                          • -+
                                                                                                                          • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                          • -+
                                                                                                                          • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                          • -+
                                                                                                                          • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                          • -+
                                                                                                                          • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                          • -+
                                                                                                                          • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                          • -+
                                                                                                                          • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                          • -+
                                                                                                                          -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                          -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                        • -+
                                                                                                                        -+ -+
                                                                                                                          -
                                                                                                                        • Versions: -
                                                                                                                            -
                                                                                                                          • version#3 (link to version with id 3)
                                                                                                                          • -Index: public/help/no/wiki_syntax_markdown.html -=================================================================== ---- public/help/no/wiki_syntax_markdown.html (revision 16952) -+++ public/help/no/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/no/wiki_syntax_textile.html -=================================================================== ---- public/help/no/wiki_syntax_textile.html (revision 16952) -+++ public/help/no/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/pl/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/pl/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/pl/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                          - -
                                                                                                                            -+
                                                                                                                          • -+ DMSF: -+
                                                                                                                              -+
                                                                                                                            • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                            • -+
                                                                                                                            • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                            • -+
                                                                                                                            • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                            • -+
                                                                                                                            • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                            • -+
                                                                                                                            • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                            • -+
                                                                                                                            • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                            • -+
                                                                                                                            • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                            • -+
                                                                                                                            • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                            • -+
                                                                                                                            • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                            • -+
                                                                                                                            • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                            • -+
                                                                                                                            • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                            • -+
                                                                                                                            • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                            • -+
                                                                                                                            • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                            • -+
                                                                                                                            • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                            • -+
                                                                                                                            • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                            • -+
                                                                                                                            • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                            • -+
                                                                                                                            -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                            -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                          • -+
                                                                                                                          -+ -+
                                                                                                                            -
                                                                                                                          • Versions: -
                                                                                                                              -
                                                                                                                            • version#3 (link to version with id 3)
                                                                                                                            • -Index: public/help/pl/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/pl/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/pl/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                            - -
                                                                                                                              -+
                                                                                                                            • -+ DMSF: -+
                                                                                                                                -+
                                                                                                                              • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                              • -+
                                                                                                                              • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                              • -+
                                                                                                                              • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                              • -+
                                                                                                                              • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                              • -+
                                                                                                                              • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                              • -+
                                                                                                                              • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                              • -+
                                                                                                                              • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                              • -+
                                                                                                                              • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                              • -+
                                                                                                                              • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                              • -+
                                                                                                                              • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                              • -+
                                                                                                                              • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                              • -+
                                                                                                                              • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                              • -+
                                                                                                                              • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                              • -+
                                                                                                                              • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                              • -+
                                                                                                                              • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                              • -+
                                                                                                                              • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                              • -+
                                                                                                                              -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                              -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                            • -+
                                                                                                                            -+ -+
                                                                                                                              -
                                                                                                                            • Versions: -
                                                                                                                                -
                                                                                                                              • version#3 (link to version with id 3)
                                                                                                                              • -Index: public/help/pl/wiki_syntax_markdown.html -=================================================================== ---- public/help/pl/wiki_syntax_markdown.html (revision 16952) -+++ public/help/pl/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/pl/wiki_syntax_textile.html -=================================================================== ---- public/help/pl/wiki_syntax_textile.html (revision 16952) -+++ public/help/pl/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/pt/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/pt/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/pt/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                              - -
                                                                                                                                -+
                                                                                                                              • -+ DMSF: -+
                                                                                                                                  -+
                                                                                                                                • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                • -+
                                                                                                                                • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                • -+
                                                                                                                                • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                • -+
                                                                                                                                • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                • -+
                                                                                                                                • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                • -+
                                                                                                                                • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                • -+
                                                                                                                                • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                • -+
                                                                                                                                • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                • -+
                                                                                                                                • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                • -+
                                                                                                                                • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                • -+
                                                                                                                                • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                • -+
                                                                                                                                • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                • -+
                                                                                                                                • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                • -+
                                                                                                                                • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                • -+
                                                                                                                                • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                • -+
                                                                                                                                • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                • -+
                                                                                                                                -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                              • -+
                                                                                                                              -+ -+
                                                                                                                                -
                                                                                                                              • Versions: -
                                                                                                                                  -
                                                                                                                                • version#3 (link to version with id 3)
                                                                                                                                • -Index: public/help/pt/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/pt/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/pt/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                - -
                                                                                                                                  -+
                                                                                                                                • -+ DMSF: -+
                                                                                                                                    -+
                                                                                                                                  • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                  • -+
                                                                                                                                  • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                  • -+
                                                                                                                                  • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                  • -+
                                                                                                                                  • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                  • -+
                                                                                                                                  • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                  • -+
                                                                                                                                  • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                  • -+
                                                                                                                                  • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                  • -+
                                                                                                                                  • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                  • -+
                                                                                                                                  • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                  • -+
                                                                                                                                  • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                  • -+
                                                                                                                                  • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                  • -+
                                                                                                                                  • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                  • -+
                                                                                                                                  • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                  • -+
                                                                                                                                  • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                  • -+
                                                                                                                                  • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                  • -+
                                                                                                                                  • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                  • -+
                                                                                                                                  -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                  -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                • -+
                                                                                                                                -+ -+
                                                                                                                                  -
                                                                                                                                • Versions: -
                                                                                                                                    -
                                                                                                                                  • version#3 (link to version with id 3)
                                                                                                                                  • -Index: public/help/pt/wiki_syntax_markdown.html -=================================================================== ---- public/help/pt/wiki_syntax_markdown.html (revision 16952) -+++ public/help/pt/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/pt/wiki_syntax_textile.html -=================================================================== ---- public/help/pt/wiki_syntax_textile.html (revision 16952) -+++ public/help/pt/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/pt-br/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/pt-br/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/pt-br/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                  - -
                                                                                                                                    -+
                                                                                                                                  • -+ DMSF: -+
                                                                                                                                      -+
                                                                                                                                    • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                    • -+
                                                                                                                                    • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                    • -+
                                                                                                                                    • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                    • -+
                                                                                                                                    • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                    • -+
                                                                                                                                    • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                    • -+
                                                                                                                                    • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                    • -+
                                                                                                                                    • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                    • -+
                                                                                                                                    • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                    • -+
                                                                                                                                    • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                    • -+
                                                                                                                                    • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                    • -+
                                                                                                                                    • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                    • -+
                                                                                                                                    • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                    • -+
                                                                                                                                    • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                    • -+
                                                                                                                                    • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                    • -+
                                                                                                                                    • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                    • -+
                                                                                                                                    • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                    • -+
                                                                                                                                    -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                    -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                  • -+
                                                                                                                                  -+ -+
                                                                                                                                    -
                                                                                                                                  • Versions: -
                                                                                                                                      -
                                                                                                                                    • version#3 (link to version with id 3)
                                                                                                                                    • -Index: public/help/pt-br/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/pt-br/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/pt-br/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                    - -
                                                                                                                                      -+
                                                                                                                                    • -+ DMSF: -+
                                                                                                                                        -+
                                                                                                                                      • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                      • -+
                                                                                                                                      • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                      • -+
                                                                                                                                      • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                      • -+
                                                                                                                                      • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                      • -+
                                                                                                                                      • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                      • -+
                                                                                                                                      • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                      • -+
                                                                                                                                      • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                      • -+
                                                                                                                                      • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                      • -+
                                                                                                                                      • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                      • -+
                                                                                                                                      • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                      • -+
                                                                                                                                      • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                      • -+
                                                                                                                                      • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                      • -+
                                                                                                                                      • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                      • -+
                                                                                                                                      • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                      • -+
                                                                                                                                      • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                      • -+
                                                                                                                                      • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                      • -+
                                                                                                                                      -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                      -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                    • -+
                                                                                                                                    -+ -+
                                                                                                                                      -
                                                                                                                                    • Versions: -
                                                                                                                                        -
                                                                                                                                      • version#3 (link to version with id 3)
                                                                                                                                      • -Index: public/help/pt-br/wiki_syntax_markdown.html -=================================================================== ---- public/help/pt-br/wiki_syntax_markdown.html (revision 16952) -+++ public/help/pt-br/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/pt-br/wiki_syntax_textile.html -=================================================================== ---- public/help/pt-br/wiki_syntax_textile.html (revision 16952) -+++ public/help/pt-br/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/ro/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/ro/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/ro/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                      - -
                                                                                                                                        -+
                                                                                                                                      • -+ DMSF: -+
                                                                                                                                          -+
                                                                                                                                        • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                        • -+
                                                                                                                                        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                        • -+
                                                                                                                                        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                        • -+
                                                                                                                                        • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                        • -+
                                                                                                                                        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                        • -+
                                                                                                                                        • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                        • -+
                                                                                                                                        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                        • -+
                                                                                                                                        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                        • -+
                                                                                                                                        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                        • -+
                                                                                                                                        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                        • -+
                                                                                                                                        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                        • -+
                                                                                                                                        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                        • -+
                                                                                                                                        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                        • -+
                                                                                                                                        • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                        • -+
                                                                                                                                        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                        • -+
                                                                                                                                        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                        • -+
                                                                                                                                        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                      • -+
                                                                                                                                      -+ -+
                                                                                                                                        -
                                                                                                                                      • Versions: -
                                                                                                                                          -
                                                                                                                                        • version#3 (link to version with id 3)
                                                                                                                                        • -Index: public/help/ro/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/ro/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/ro/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                        - -
                                                                                                                                          -+
                                                                                                                                        • -+ DMSF: -+
                                                                                                                                            -+
                                                                                                                                          • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                          • -+
                                                                                                                                          • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                          • -+
                                                                                                                                          • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                          • -+
                                                                                                                                          • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                          • -+
                                                                                                                                          • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                          • -+
                                                                                                                                          • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                          • -+
                                                                                                                                          • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                          • -+
                                                                                                                                          • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                          • -+
                                                                                                                                          • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                          • -+
                                                                                                                                          • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                          • -+
                                                                                                                                          • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                          • -+
                                                                                                                                          • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                          • -+
                                                                                                                                          • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                          • -+
                                                                                                                                          • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                          • -+
                                                                                                                                          • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                          • -+
                                                                                                                                          • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                          • -+
                                                                                                                                          -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                          -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                        • -+
                                                                                                                                        -+ -+
                                                                                                                                          -
                                                                                                                                        • Versions: -
                                                                                                                                            -
                                                                                                                                          • version#3 (link to version with id 3)
                                                                                                                                          • -Index: public/help/ro/wiki_syntax_markdown.html -=================================================================== ---- public/help/ro/wiki_syntax_markdown.html (revision 16952) -+++ public/help/ro/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/ro/wiki_syntax_textile.html -=================================================================== ---- public/help/ro/wiki_syntax_textile.html (revision 16952) -+++ public/help/ro/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/ru/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/ru/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/ru/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                          - -
                                                                                                                                            -+
                                                                                                                                          • -+ DMSF: -+
                                                                                                                                              -+
                                                                                                                                            • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                            • -+
                                                                                                                                            • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                            • -+
                                                                                                                                            • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                            • -+
                                                                                                                                            • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                            • -+
                                                                                                                                            • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                            • -+
                                                                                                                                            • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                            • -+
                                                                                                                                            • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                            • -+
                                                                                                                                            • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                            • -+
                                                                                                                                            • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                            • -+
                                                                                                                                            • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                            • -+
                                                                                                                                            • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                            • -+
                                                                                                                                            • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                            • -+
                                                                                                                                            • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                            • -+
                                                                                                                                            • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                            • -+
                                                                                                                                            • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                            • -+
                                                                                                                                            • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                            • -+
                                                                                                                                            -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                            -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                          • -+
                                                                                                                                          -+ -+
                                                                                                                                            -
                                                                                                                                          • Versions: -
                                                                                                                                              -
                                                                                                                                            • version#3 (link to version with id 3)
                                                                                                                                            • -Index: public/help/ru/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/ru/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/ru/wiki_syntax_detailed_textile.html (working copy) -@@ -67,6 +67,32 @@ -
                                                                                                                                            - -
                                                                                                                                              -+
                                                                                                                                            • -+ DMSF: -+
                                                                                                                                                -+
                                                                                                                                              • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                              • -+
                                                                                                                                              • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                              • -+
                                                                                                                                              • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                              • -+
                                                                                                                                              • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                              • -+
                                                                                                                                              • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                              • -+
                                                                                                                                              • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                              • -+
                                                                                                                                              • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                              • -+
                                                                                                                                              • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                              • -+
                                                                                                                                              • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                              • -+
                                                                                                                                              • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                              • -+
                                                                                                                                              • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                              • -+
                                                                                                                                              • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                              • -+
                                                                                                                                              • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                              • -+
                                                                                                                                              • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                              • -+
                                                                                                                                              • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                              • -+
                                                                                                                                              • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                              • -+
                                                                                                                                              -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                              -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                            • -+
                                                                                                                                            -+ -+
                                                                                                                                              -
                                                                                                                                            • Этапы: -
                                                                                                                                                -
                                                                                                                                              • version#3 (ссылка на этап с id 3)
                                                                                                                                              • -Index: public/help/ru/wiki_syntax_markdown.html -=================================================================== ---- public/help/ru/wiki_syntax_markdown.html (revision 16952) -+++ public/help/ru/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/ru/wiki_syntax_textile.html -=================================================================== ---- public/help/ru/wiki_syntax_textile.html (revision 16952) -+++ public/help/ru/wiki_syntax_textile.html (working copy) -@@ -132,7 +132,7 @@ - !вложенный_файл! - - -- -+ {{dmsf(83)}}Document #83 - Tables - - -Index: public/help/sk/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/sk/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/sk/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                              - -
                                                                                                                                                -+
                                                                                                                                              • -+ DMSF: -+
                                                                                                                                                  -+
                                                                                                                                                • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                • -+
                                                                                                                                                • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                • -+
                                                                                                                                                • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                • -+
                                                                                                                                                • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                • -+
                                                                                                                                                • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                • -+
                                                                                                                                                • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                • -+
                                                                                                                                                • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                • -+
                                                                                                                                                • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                • -+
                                                                                                                                                • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                • -+
                                                                                                                                                • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                • -+
                                                                                                                                                • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                • -+
                                                                                                                                                • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                • -+
                                                                                                                                                • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                • -+
                                                                                                                                                • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                • -+
                                                                                                                                                • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                • -+
                                                                                                                                                • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                • -+
                                                                                                                                                -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                              • -+
                                                                                                                                              -+ -+
                                                                                                                                                -
                                                                                                                                              • Versions: -
                                                                                                                                                  -
                                                                                                                                                • version#3 (link to version with id 3)
                                                                                                                                                • -Index: public/help/sk/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/sk/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/sk/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                                - -
                                                                                                                                                  -+
                                                                                                                                                • -+ DMSF: -+
                                                                                                                                                    -+
                                                                                                                                                  • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                  • -+
                                                                                                                                                  -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                  -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                • -+
                                                                                                                                                -+ -+
                                                                                                                                                  -
                                                                                                                                                • Versions: -
                                                                                                                                                    -
                                                                                                                                                  • version#3 (link to version with id 3)
                                                                                                                                                  • -Index: public/help/sk/wiki_syntax_markdown.html -=================================================================== ---- public/help/sk/wiki_syntax_markdown.html (revision 16952) -+++ public/help/sk/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/sk/wiki_syntax_textile.html -=================================================================== ---- public/help/sk/wiki_syntax_textile.html (revision 16952) -+++ public/help/sk/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/sl/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/sl/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/sl/wiki_syntax_detailed_markdown.html (working copy) -@@ -34,6 +34,32 @@ -
                                                                                                                                                  • [[sandbox:]] displays a link to the Sandbox wiki main page
                                                                                                                                                  • -
                                                                                                                                                  - -+
                                                                                                                                                    -+
                                                                                                                                                  • -+ DMSF: -+
                                                                                                                                                      -+
                                                                                                                                                    • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                    • -+
                                                                                                                                                    -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                    -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                  • -+
                                                                                                                                                  -+ -

                                                                                                                                                  Wiki links are displayed in red if the page doesn't exist yet, eg: Nonexistent page.

                                                                                                                                                  - -

                                                                                                                                                  Links to other resources:

                                                                                                                                                  -Index: public/help/sl/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/sl/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/sl/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                                - -
                                                                                                                                                  -+
                                                                                                                                                • -+ DMSF: -+
                                                                                                                                                    -+
                                                                                                                                                  • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                  • -+
                                                                                                                                                  • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                  • -+
                                                                                                                                                  -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                  -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                • -+
                                                                                                                                                -+ -+
                                                                                                                                                  -
                                                                                                                                                • Versions: -
                                                                                                                                                    -
                                                                                                                                                  • version#3 (link to version with id 3)
                                                                                                                                                  • -Index: public/help/sl/wiki_syntax_markdown.html -=================================================================== ---- public/help/sl/wiki_syntax_markdown.html (revision 16952) -+++ public/help/sl/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/sl/wiki_syntax_textile.html -=================================================================== ---- public/help/sl/wiki_syntax_textile.html (revision 16952) -+++ public/help/sl/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/sq/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/sq/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/sq/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                                  - -
                                                                                                                                                    -+
                                                                                                                                                  • -+ DMSF: -+
                                                                                                                                                      -+
                                                                                                                                                    • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                    • -+
                                                                                                                                                    • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                    • -+
                                                                                                                                                    -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                    -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                  • -+
                                                                                                                                                  -+ -+
                                                                                                                                                    -
                                                                                                                                                  • Versions: -
                                                                                                                                                      -
                                                                                                                                                    • version#3 (link to version with id 3)
                                                                                                                                                    • -Index: public/help/sq/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/sq/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/sq/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                                    - -
                                                                                                                                                      -+
                                                                                                                                                    • -+ DMSF: -+
                                                                                                                                                        -+
                                                                                                                                                      • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                      • -+
                                                                                                                                                      • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                      • -+
                                                                                                                                                      -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                      -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                    • -+
                                                                                                                                                    -+ -+
                                                                                                                                                      -
                                                                                                                                                    • Versions: -
                                                                                                                                                        -
                                                                                                                                                      • version#3 (link to version with id 3)
                                                                                                                                                      • -Index: public/help/sq/wiki_syntax_markdown.html -=================================================================== ---- public/help/sq/wiki_syntax_markdown.html (revision 16952) -+++ public/help/sq/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/sq/wiki_syntax_textile.html -=================================================================== ---- public/help/sq/wiki_syntax_textile.html (revision 16952) -+++ public/help/sq/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/sr/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/sr/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/sr/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                                      - -
                                                                                                                                                        -+
                                                                                                                                                      • -+ DMSF: -+
                                                                                                                                                          -+
                                                                                                                                                        • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                        • -+
                                                                                                                                                        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                        • -+
                                                                                                                                                        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                      • -+
                                                                                                                                                      -+ -+
                                                                                                                                                        -
                                                                                                                                                      • Versions: -
                                                                                                                                                          -
                                                                                                                                                        • version#3 (link to version with id 3)
                                                                                                                                                        • -Index: public/help/sr/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/sr/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/sr/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                                        - -
                                                                                                                                                          -+
                                                                                                                                                        • -+ DMSF: -+
                                                                                                                                                            -+
                                                                                                                                                          • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                          • -+
                                                                                                                                                          • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                          • -+
                                                                                                                                                          -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                          -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                        • -+
                                                                                                                                                        -+ -+
                                                                                                                                                          -
                                                                                                                                                        • Versions: -
                                                                                                                                                            -
                                                                                                                                                          • version#3 (link to version with id 3)
                                                                                                                                                          • -Index: public/help/sr/wiki_syntax_markdown.html -=================================================================== ---- public/help/sr/wiki_syntax_markdown.html (revision 16952) -+++ public/help/sr/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/sr/wiki_syntax_textile.html -=================================================================== ---- public/help/sr/wiki_syntax_textile.html (revision 16952) -+++ public/help/sr/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/sr-yu/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/sr-yu/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/sr-yu/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                                          - -
                                                                                                                                                            -+
                                                                                                                                                          • -+ DMSF: -+
                                                                                                                                                              -+
                                                                                                                                                            • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                            • -+
                                                                                                                                                            • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                            • -+
                                                                                                                                                            -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                            -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                          • -+
                                                                                                                                                          -+ -+
                                                                                                                                                            -
                                                                                                                                                          • Versions: -
                                                                                                                                                              -
                                                                                                                                                            • version#3 (link to version with id 3)
                                                                                                                                                            • -Index: public/help/sr-yu/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/sr-yu/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/sr-yu/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                                            - -
                                                                                                                                                              -+
                                                                                                                                                            • -+ DMSF: -+
                                                                                                                                                                -+
                                                                                                                                                              • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                              • -+
                                                                                                                                                              • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                              • -+
                                                                                                                                                              -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                              -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                            • -+
                                                                                                                                                            -+ -+
                                                                                                                                                              -
                                                                                                                                                            • Versions: -
                                                                                                                                                                -
                                                                                                                                                              • version#3 (link to version with id 3)
                                                                                                                                                              • -Index: public/help/sr-yu/wiki_syntax_markdown.html -=================================================================== ---- public/help/sr-yu/wiki_syntax_markdown.html (revision 16952) -+++ public/help/sr-yu/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/sr-yu/wiki_syntax_textile.html -=================================================================== ---- public/help/sr-yu/wiki_syntax_textile.html (revision 16952) -+++ public/help/sr-yu/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/sv/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/sv/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/sv/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                                              - -
                                                                                                                                                                -+
                                                                                                                                                              • -+ DMSF: -+
                                                                                                                                                                  -+
                                                                                                                                                                • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                • -+
                                                                                                                                                                • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                • -+
                                                                                                                                                                -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                              • -+
                                                                                                                                                              -+ -+
                                                                                                                                                                -
                                                                                                                                                              • Versions: -
                                                                                                                                                                  -
                                                                                                                                                                • version#3 (link to version with id 3)
                                                                                                                                                                • -Index: public/help/sv/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/sv/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/sv/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                                                - -
                                                                                                                                                                  -+
                                                                                                                                                                • -+ DMSF: -+
                                                                                                                                                                    -+
                                                                                                                                                                  • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                  • -+
                                                                                                                                                                  • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                  • -+
                                                                                                                                                                  -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                  -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                                • -+
                                                                                                                                                                -+ -+
                                                                                                                                                                  -
                                                                                                                                                                • Versions: -
                                                                                                                                                                    -
                                                                                                                                                                  • version#3 (link to version with id 3)
                                                                                                                                                                  • -Index: public/help/sv/wiki_syntax_markdown.html -=================================================================== ---- public/help/sv/wiki_syntax_markdown.html (revision 16952) -+++ public/help/sv/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/sv/wiki_syntax_textile.html -=================================================================== ---- public/help/sv/wiki_syntax_textile.html (revision 16952) -+++ public/help/sv/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/th/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/th/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/th/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                                                  - -
                                                                                                                                                                    -+
                                                                                                                                                                  • -+ DMSF: -+
                                                                                                                                                                      -+
                                                                                                                                                                    • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                    • -+
                                                                                                                                                                    • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                    • -+
                                                                                                                                                                    -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                    -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                                  • -+
                                                                                                                                                                  -+ -+
                                                                                                                                                                    -
                                                                                                                                                                  • Versions: -
                                                                                                                                                                      -
                                                                                                                                                                    • version#3 (link to version with id 3)
                                                                                                                                                                    • -Index: public/help/th/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/th/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/th/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                                                    - -
                                                                                                                                                                      -+
                                                                                                                                                                    • -+ DMSF: -+
                                                                                                                                                                        -+
                                                                                                                                                                      • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                      • -+
                                                                                                                                                                      • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                      • -+
                                                                                                                                                                      -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                      -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                                    • -+
                                                                                                                                                                    -+ -+
                                                                                                                                                                      -
                                                                                                                                                                    • Versions: -
                                                                                                                                                                        -
                                                                                                                                                                      • version#3 (link to version with id 3)
                                                                                                                                                                      • -Index: public/help/th/wiki_syntax_markdown.html -=================================================================== ---- public/help/th/wiki_syntax_markdown.html (revision 16952) -+++ public/help/th/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/th/wiki_syntax_textile.html -=================================================================== ---- public/help/th/wiki_syntax_textile.html (revision 16952) -+++ public/help/th/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/tr/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/tr/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/tr/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                                                      - -
                                                                                                                                                                        -+
                                                                                                                                                                      • -+ DMSF: -+
                                                                                                                                                                          -+
                                                                                                                                                                        • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                        • -+
                                                                                                                                                                        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                        • -+
                                                                                                                                                                        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                                      • -+
                                                                                                                                                                      -+ -+
                                                                                                                                                                        -
                                                                                                                                                                      • Versions: -
                                                                                                                                                                          -
                                                                                                                                                                        • version#3 (link to version with id 3)
                                                                                                                                                                        • -Index: public/help/tr/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/tr/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/tr/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                                                        - -
                                                                                                                                                                          -+
                                                                                                                                                                        • -+ DMSF: -+
                                                                                                                                                                            -+
                                                                                                                                                                          • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                          • -+
                                                                                                                                                                          • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                          • -+
                                                                                                                                                                          -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                          -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                                        • -+
                                                                                                                                                                        -+ -+
                                                                                                                                                                          -
                                                                                                                                                                        • Versions: -
                                                                                                                                                                            -
                                                                                                                                                                          • version#3 (link to version with id 3)
                                                                                                                                                                          • -Index: public/help/tr/wiki_syntax_markdown.html -=================================================================== ---- public/help/tr/wiki_syntax_markdown.html (revision 16952) -+++ public/help/tr/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/tr/wiki_syntax_textile.html -=================================================================== ---- public/help/tr/wiki_syntax_textile.html (revision 16952) -+++ public/help/tr/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/uk/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/uk/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/uk/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                                                          - -
                                                                                                                                                                            -+
                                                                                                                                                                          • -+ DMSF: -+
                                                                                                                                                                              -+
                                                                                                                                                                            • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                            • -+
                                                                                                                                                                            • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                            • -+
                                                                                                                                                                            -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                            -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                                          • -+
                                                                                                                                                                          -+ -+
                                                                                                                                                                            -
                                                                                                                                                                          • Версії: -
                                                                                                                                                                              -
                                                                                                                                                                            • version#3 (посилання на версію з id 3)
                                                                                                                                                                            • -Index: public/help/uk/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/uk/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/uk/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                                                            - -
                                                                                                                                                                              -+
                                                                                                                                                                            • -+ DMSF: -+
                                                                                                                                                                                -+
                                                                                                                                                                              • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                              • -+
                                                                                                                                                                              • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                              • -+
                                                                                                                                                                              -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                              -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                                            • -+
                                                                                                                                                                            -+ -+
                                                                                                                                                                              -
                                                                                                                                                                            • Версії: -
                                                                                                                                                                                -
                                                                                                                                                                              • version#3 (посилання на версію з id 3)
                                                                                                                                                                              • -Index: public/help/uk/wiki_syntax_markdown.html -=================================================================== ---- public/help/uk/wiki_syntax_markdown.html (revision 16952) -+++ public/help/uk/wiki_syntax_markdown.html (working copy) -@@ -42,6 +42,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Вбудовані(inline) зображення - Image![](image_url) -Index: public/help/uk/wiki_syntax_textile.html -=================================================================== ---- public/help/uk/wiki_syntax_textile.html (revision 16952) -+++ public/help/uk/wiki_syntax_textile.html (working copy) -@@ -44,6 +44,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Вбудоване(inline) зображення - Зображення!image_url! -Index: public/help/vi/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/vi/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/vi/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                                                              - -
                                                                                                                                                                                -+
                                                                                                                                                                              • -+ DMSF: -+
                                                                                                                                                                                  -+
                                                                                                                                                                                • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                                • -+
                                                                                                                                                                                • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                                • -+
                                                                                                                                                                                -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                                -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                                              • -+
                                                                                                                                                                              -+ -+
                                                                                                                                                                                -
                                                                                                                                                                              • Versions: -
                                                                                                                                                                                  -
                                                                                                                                                                                • version#3 (link to version with id 3)
                                                                                                                                                                                • -Index: public/help/vi/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/vi/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/vi/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                                                                - -
                                                                                                                                                                                  -+
                                                                                                                                                                                • -+ DMSF: -+
                                                                                                                                                                                    -+
                                                                                                                                                                                  • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                                  • -+
                                                                                                                                                                                  -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                                  -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                                                • -+
                                                                                                                                                                                -+ -+
                                                                                                                                                                                  -
                                                                                                                                                                                • Versions: -
                                                                                                                                                                                    -
                                                                                                                                                                                  • version#3 (link to version with id 3)
                                                                                                                                                                                  • -Index: public/help/vi/wiki_syntax_markdown.html -=================================================================== ---- public/help/vi/wiki_syntax_markdown.html (revision 16952) -+++ public/help/vi/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/vi/wiki_syntax_textile.html -=================================================================== ---- public/help/vi/wiki_syntax_textile.html (revision 16952) -+++ public/help/vi/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image!image_url! -Index: public/help/zh/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/zh/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/zh/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                                                                  - -
                                                                                                                                                                                    -+
                                                                                                                                                                                  • -+ DMSF: -+
                                                                                                                                                                                      -+
                                                                                                                                                                                    • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                                    • -+
                                                                                                                                                                                    -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                                    -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                                                  • -+
                                                                                                                                                                                  -+ -+
                                                                                                                                                                                    -
                                                                                                                                                                                  • Versions: -
                                                                                                                                                                                      -
                                                                                                                                                                                    • version#3 (link to version with id 3)
                                                                                                                                                                                    • -Index: public/help/zh/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/zh/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/zh/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                                                                    - -
                                                                                                                                                                                      -+
                                                                                                                                                                                    • -+ DMSF: -+
                                                                                                                                                                                        -+
                                                                                                                                                                                      • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                                      • -+
                                                                                                                                                                                      -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                                      -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                                                    • -+
                                                                                                                                                                                    -+ -+
                                                                                                                                                                                      -
                                                                                                                                                                                    • 版本: -
                                                                                                                                                                                        -
                                                                                                                                                                                      • version#3 (链接至id为3的版本)
                                                                                                                                                                                      • -Index: public/help/zh/wiki_syntax_markdown.html -=================================================================== ---- public/help/zh/wiki_syntax_markdown.html (revision 16952) -+++ public/help/zh/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - Revision r43Revision r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - Inline images - Image![](image_url) -Index: public/help/zh/wiki_syntax_textile.html -=================================================================== ---- public/help/zh/wiki_syntax_textile.html (revision 16952) -+++ public/help/zh/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - 修订 r43修订 r43 - commit:f30e13e43提交: f30e13e4 - source:some/file代码:source:some/file -+{{dmsf(83)}}Document #83 - - 内嵌图片 - Image!image_url! -Index: public/help/zh-tw/wiki_syntax_detailed_markdown.html -=================================================================== ---- public/help/zh-tw/wiki_syntax_detailed_markdown.html (revision 16952) -+++ public/help/zh-tw/wiki_syntax_detailed_markdown.html (working copy) -@@ -50,6 +50,32 @@ -
                                                                                                                                                                                      - -
                                                                                                                                                                                        -+
                                                                                                                                                                                      • -+ DMSF: -+
                                                                                                                                                                                          -+
                                                                                                                                                                                        • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                                        • -+
                                                                                                                                                                                        -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                                        -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                                                      • -+
                                                                                                                                                                                      -+ -+
                                                                                                                                                                                        -
                                                                                                                                                                                      • 版本: -
                                                                                                                                                                                          -
                                                                                                                                                                                        • version#3 (連結至編號為 3 的版本)
                                                                                                                                                                                        • -Index: public/help/zh-tw/wiki_syntax_detailed_textile.html -=================================================================== ---- public/help/zh-tw/wiki_syntax_detailed_textile.html (revision 16952) -+++ public/help/zh-tw/wiki_syntax_detailed_textile.html (working copy) -@@ -49,6 +49,32 @@ -
                                                                                                                                                                                        - -
                                                                                                                                                                                          -+
                                                                                                                                                                                        • -+ DMSF: -+
                                                                                                                                                                                            -+
                                                                                                                                                                                          • {{dmsf(17)}} (a link to the file with id 17)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsf(17, File)}} (a link to the file with id 17 with the link text "File")
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsf(17, File, 10)}} (a link to the file with id 17 with the link text "File" and the link pointing to the revision 10)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsfd(17)}} (a link to the details of the file with id 17)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsfdesc(17)}} (a link to the description of the file with id 17)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsff(5)}} (a link to the folder with id 5)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsff(5, Folder)}} (a link to the folder with id 5 with the link text "Folder")
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsf_image(8)}} (an inline picture of the file with id 8; it must be an image file such as JPEG, PNG,...)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsf_image(8, size=300)}} (an inline picture with custom size)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsf_image(8, size=640x480)}} (an inline picture with custom size)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsf_image(8, size=50%)}} (an inline picture with custom size)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsf_image(8, height=300)}} (an inline picture with custom size)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsf_image(8, width=300)}} (an inline picture with custom size)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsftn(8)}} (a thumbnail with height of 200px)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsftn(8, size=300)}} (a thumbnail with custom size)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          • {{dmsfw(8)}} (approval workflow status of a document with id 8)
                                                                                                                                                                                          • -+
                                                                                                                                                                                          -+ The DMSF file/revision id can be found in the link for file/revision download from within Redmine.
                                                                                                                                                                                          -+ The DMSF folder id can be found in the link when opening folders within Redmine. -+
                                                                                                                                                                                        • -+
                                                                                                                                                                                        -+ -+
                                                                                                                                                                                          -
                                                                                                                                                                                        • 版本: -
                                                                                                                                                                                            -
                                                                                                                                                                                          • version#3 (連結至編號為 3 的版本)
                                                                                                                                                                                          • -Index: public/help/zh-tw/wiki_syntax_markdown.html -=================================================================== ---- public/help/zh-tw/wiki_syntax_markdown.html (revision 16952) -+++ public/help/zh-tw/wiki_syntax_markdown.html (working copy) -@@ -41,6 +41,7 @@ - 版次 r43版次 r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - 內嵌圖像 - 圖像![](圖像_url) -Index: public/help/zh-tw/wiki_syntax_textile.html -=================================================================== ---- public/help/zh-tw/wiki_syntax_textile.html (revision 16952) -+++ public/help/zh-tw/wiki_syntax_textile.html (working copy) -@@ -43,6 +43,7 @@ - 版次 r43版次 r43 - commit:f30e13e43f30e13e4 - source:some/filesource:some/file -+{{dmsf(83)}}Document #83 - - 內嵌圖像 - 圖像!圖像_url! diff --git a/lib/redmine_dmsf.rb b/lib/redmine_dmsf.rb index 9d391a27..447ba9d1 100644 --- a/lib/redmine_dmsf.rb +++ b/lib/redmine_dmsf.rb @@ -31,6 +31,7 @@ require File.dirname(__FILE__) + '/../app/validators/dmsf_url_validator' require File.dirname(__FILE__) + '/../app/validators/dmsf_folder_parent_validator' # Plugin's patches +require File.dirname(__FILE__) + '/redmine_dmsf/patches/formatting_helper_patch' require File.dirname(__FILE__) + '/redmine_dmsf/patches/projects_helper_patch' require File.dirname(__FILE__) + '/redmine_dmsf/patches/project_patch' require File.dirname(__FILE__) + '/redmine_dmsf/patches/user_preference_patch' diff --git a/lib/redmine_dmsf/hooks/views/base_view_hooks.rb b/lib/redmine_dmsf/hooks/views/base_view_hooks.rb index 35077d2e..4c6fb235 100644 --- a/lib/redmine_dmsf/hooks/views/base_view_hooks.rb +++ b/lib/redmine_dmsf/hooks/views/base_view_hooks.rb @@ -25,7 +25,7 @@ module RedmineDmsf class BaseViewHooks < Redmine::Hook::ViewListener def view_layouts_base_html_head(context={}) - return unless /^(Dmsf|Projects|Issues|Queries|EasyCrmCases|MyController|SettingsController)/.match?( + return unless /^(Dmsf|Projects|Issues|Queries|EasyCrmCases|MyController|SettingsController|WikiController)/.match?( context[:controller].class.name) meta = "\n".html_safe + stylesheet_link_tag('redmine_dmsf.css', plugin: :redmine_dmsf) + "\n".html_safe + stylesheet_link_tag('select2.min.css', plugin: :redmine_dmsf) + diff --git a/lib/redmine_dmsf/patches/formatting_helper_patch.rb b/lib/redmine_dmsf/patches/formatting_helper_patch.rb new file mode 100644 index 00000000..b46c5562 --- /dev/null +++ b/lib/redmine_dmsf/patches/formatting_helper_patch.rb @@ -0,0 +1,61 @@ +# encoding: utf-8 +# frozen_string_literal: true +# +# Redmine plugin for Document Management System "Features" +# +# Copyright © 2011-23 Karel Pičman +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +module RedmineDmsf + module Patches + module FormattingHelperPatch + + def heads_for_wiki_formatter + super + return if @dmsf_macro_list + @dmsf_macro_list = [] + Redmine::WikiFormatting::Macros.available_macros.each do |key, value| + if key.to_s =~ /^dmsf/ + @dmsf_macro_list << key.to_s + end + end + # If localized files for the current language are not available, switch to English + lang = current_language.to_s.downcase + path = File.join(File.dirname(__FILE__), + '..', '..', '..', 'assets', 'help', lang, 'wiki_syntax.html') + if File.exist?(path) + @dmsf_macro_list << "#{lang};#{l(:label_help)}" + else + @dmsf_macro_list << "en;#{l(:label_help)}" + end + path = File.join(File.dirname(__FILE__), + '..', '..', '..', 'assets', 'javascripts', 'lang', "dmsf_button-#{lang}.js") + unless File.exist?(path) + lang = 'en' + end + content_for :header_tags do + javascript_include_tag("lang/dmsf_button-#{lang}", plugin: 'redmine_dmsf') + + javascript_include_tag('dmsf_button', plugin: 'redmine_dmsf') + + javascript_tag("jsToolBar.prototype.dmsfList = #{@dmsf_macro_list.to_json};") + end + end + + end + end +end + +# Apply the patch +Redmine::WikiFormatting::Textile::Helper.prepend RedmineDmsf::Patches::FormattingHelperPatch