##// END OF EJS Templates
rename textile wiki syntax help files (#16373)...
Toshi MARUYAMA -
r13805:06ea3e48eb78
parent child
Show More
@@ -1,46 +1,46
1 1 # Redmine - project management software
2 2 # Copyright (C) 2006-2015 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 module Redmine
19 19 module WikiFormatting
20 20 module Textile
21 21 module Helper
22 22 def wikitoolbar_for(field_id)
23 23 heads_for_wiki_formatter
24 24 # Is there a simple way to link to a public resource?
25 url = "#{Redmine::Utils.relative_url_root}/help/#{current_language.to_s.downcase}/wiki_syntax.html"
25 url = "#{Redmine::Utils.relative_url_root}/help/#{current_language.to_s.downcase}/wiki_syntax_textile.html"
26 26 javascript_tag("var wikiToolbar = new jsToolBar(document.getElementById('#{field_id}')); wikiToolbar.setHelpLink('#{escape_javascript url}'); wikiToolbar.draw();")
27 27 end
28 28
29 29 def initial_page_content(page)
30 30 "h1. #{@page.pretty_title}"
31 31 end
32 32
33 33 def heads_for_wiki_formatter
34 34 unless @heads_for_wiki_formatter_included
35 35 content_for :header_tags do
36 36 javascript_include_tag('jstoolbar/jstoolbar-textile.min') +
37 37 javascript_include_tag("jstoolbar/lang/jstoolbar-#{current_language.to_s.downcase}") +
38 38 stylesheet_link_tag('jstoolbar')
39 39 end
40 40 @heads_for_wiki_formatter_included = true
41 41 end
42 42 end
43 43 end
44 44 end
45 45 end
46 46 end
1 NO CONTENT: file renamed from public/help/ar/wiki_syntax_detailed.html to public/help/ar/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/az/wiki_syntax_detailed.html to public/help/az/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/bg/wiki_syntax_detailed.html to public/help/bg/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/bs/wiki_syntax_detailed.html to public/help/bs/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/ca/wiki_syntax_detailed.html to public/help/ca/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/cs/wiki_syntax_detailed.html to public/help/cs/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Syntaxe Wiki - rychlý náhled</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Styly písma</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Tučný" /></th><td style="width:50%;">*Tučný*</td><td style="width:50%;"><strong>Tučný</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Kurzívou" /></th><td>_Kurzívou_</td><td><em>Kurzívou</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Podtržený" /></th><td>+Podtržený+</td><td><ins>Podtržený</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Smazaný" /></th><td>-Smazaný-</td><td><del>Smazaný</del></td></tr>
31 31 <tr><th></th><td>??Citace??</td><td><cite>Citace</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Vnořený kód" /></th><td>@Vnořený kód@</td><td><code>Vnořený kód</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Předformátovaný text" /></th><td>&lt;pre&gt;<br />&nbsp;řádky<br />&nbsp;kódu<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 řádky
36 36 kódu
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Seznamy</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Nesetříděný seznam" /></th><td>* Položka 1<br />** Sub<br />* Položka 2</td><td><ul><li>Položka 1<ul><li>Sub</li></ul></li><li>Položka 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Setříděný seznam" /></th><td># Položka 1<br />## Sub<br /># Položka 2</td><td><ol><li>Položka 1<ol><li>Sub</li></ol></li><li>Položka 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Nadpisy</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Nadpis 1" /></th><td>h1. Nadpis 1</td><td><h1>Nadpis 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Nadpis 2" /></th><td>h2. Nadpis 2</td><td><h2>Nadpis 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Nadpis 3" /></th><td>h3. Nadpis 3</td><td><h3>Nadpis 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Odkazy</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Odkaz":http://foo.bar</td><td><a href="#">Odkaz</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine odkazy</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Odkaz na Wiki stránku" /></th><td>[[Wiki stránka]]</td><td><a href="#">Wiki stránka</a></td></tr>
55 55 <tr><th></th><td>Úkol #12</td><td>Úkol <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revize r43</td><td>Revize <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Vnořené obrázky</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Obrázek" /></th><td>!<em>url_obrázku</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>vnořený_obrázek</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">Více informací</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">Více informací</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/da/wiki_syntax_detailed.html to public/help/da/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/de/wiki_syntax_detailed.html to public/help/de/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wikiformatierung</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Schnellreferenz</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Schriftarten</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Fett" /></th><td style="width:50%;">*Fett*</td><td style="width:50%;"><strong>Fett</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Kursiv" /></th><td>_Kursiv_</td><td><em>Kursiv</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Unterstrichen" /></th><td>+Unterstrichen+</td><td><ins>Unterstrichen</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Durchgestrichen" /></th><td>-Durchgestrichen-</td><td><del>Durchgestrichen</del></td></tr>
31 31 <tr><th></th><td>??Zitat??</td><td><cite>Zitat</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline-Code" /></th><td>@Inline-Code@</td><td><code>Inline-Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Vorformatierter Text" /></th><td>&lt;pre&gt;<br />&nbsp;vorformatierte<br />&nbsp;Codezeilen<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 vorformartierte
36 36 Codezeilen
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Listen</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unsortierte Liste" /></th><td>* Element 1<br />** Sub<br />* Element 2</td><td><ul><li>Element 1<ul><li>Sub</li></ul></li><li>Element 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Sortierte Liste" /></th><td># Element 1<br />## Sub<br /># Element 2</td><td><ol><li>Element 1<ol><li>Sub</li></ol></li><li>Element 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">&Uuml;berschriften</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="&Uuml;berschrift 1" /></th><td>h1. &Uuml;berschrift 1</td><td><h1>&Uuml;berschrift 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="&Uuml;berschrift 2" /></th><td>h2. &Uuml;berschrift 2</td><td><h2>&Uuml;berschrift 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="&Uuml;berschrift 3" /></th><td>h3. &Uuml;berschrift 3</td><td><h3>&Uuml;berschrift 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine Links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link zu einer Wiki Seite" /></th><td>[[Wiki Seite]]</td><td><a href="#">Wiki Seite</a></td></tr>
55 55 <tr><th></th><td>Ticket #12</td><td>Ticket <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">eingebettete Bilder</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Bild" /></th><td>!<em>URL_zu_dem_Bild</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>angeh&auml;ngtes_Bild</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">weitere Informationen</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">weitere Informationen</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/el/wiki_syntax_detailed.html to public/help/el/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/en-gb/wiki_syntax_detailed.html to public/help/en-gb/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/en/wiki_syntax_detailed.html to public/help/en/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/es/wiki_syntax_detailed.html to public/help/es/wiki_syntax_detailed_textile.html
@@ -1,86 +1,86
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Formato de la Wiki</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Guia R&aacute;pida de Sintaxis de la Wiki</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Estilo de fuentes</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Negrita" /></th><td style="width:50%;">*Negrita*</td><td style="width:50%;"><strong>Negrita</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Cursiva" /></th><td>_Cursiva_</td><td><em>Cursiva</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Subrayado" /></th><td>+Subrayado+</td><td><ins>Subrayado</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Tachado" /></th><td>-Tachado-</td><td><del>Tachado</del></td></tr>
31 31 <tr><th></th><td>??Cita??</td><td><cite>Cita</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="C&oacute;digo en linea" /></th><td>@C&oacute;digo en linea@</td><td><code>C&oacute;digo en linea</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="C&oacute; preformateado" /></th><td>&lt;pre&gt;<br />&nbsp;L&iacute;neas<br />&nbsp;de c&oacute;<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 l&iacute;neas
36 36 de c&oacute;digo
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Listas</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Lista no ordenada" /></th><td>* art&iacute;culo 1<br />** Sub<br />* art&iacute;culo 2</td><td><ul><li>art&iacute;culo 1<ul><li>Sub</li></ul></li><li>art&iacute;culo</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Lista ordenada" /></th><td># art&iacute;culo 1<br />## Sub<br /># art&iacute;culo 2</td><td><ol><li>art&iacute;culo 1<ol><li>Sub</li></ol></li><li>art&iacute;culo 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Cabeceras</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Cabecera 1" /></th><td>h1. T&iacute;tulo 1</td><td><h1>T&iacute;tulo 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Cabecera 2" /></th><td>h2. T&iacute;tulo 2</td><td><h2>T&iacute;tulo 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Cabecera 3" /></th><td>h3. T&iacute;tulo 3</td><td><h3>T&iacute;tulo 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Enlaces</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Enlaces de Redmine</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Enlace a una p&aacute;gina de la Wiki" /></th><td>[[pagina Wiki]]</td><td><a href="#">Pagina Wiki</a></td></tr>
55 55 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Enlace a una p&aacute;gina de la Wiki con nombre descripciptivo" /></th><td>[[pagina Wiki|Nombre descriptivo]]</td><td><a href="#">Nombre descriptivo</a></td></tr>
56 56 <tr><th></th><td>Petici&oacute;n #12</td><td>Petici&oacute;n <a href="#">#12</a></td></tr>
57 57 <tr><th></th><td>Revisi&oacute;n r43</td><td>Revisi&oacute;n <a href="#">r43</a></td></tr>
58 58 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
59 59 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
60 60
61 61 <tr><th colspan="3">Im&aacute;genes en l&iacute;nea</th></tr>
62 62 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Imagen" /></th><td>!<em>imagen_url</em>!</td><td></td></tr>
63 63 <tr><th></th><td>!<em>imagen_adjunta</em>!</td><td></td></tr>
64 64
65 65 <tr><th colspan="3">Tables</th></tr>
66 66 <tr>
67 67 <th></th>
68 68 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
69 69 <td>
70 70 <table class="sample">
71 71 <tbody>
72 72 <th>A</th><th>B</th><th>C</th>
73 73 <tr><td>A</td><td>B</td><td>C</td></tr>
74 74 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
75 75 <tr><td colspan="2">col span</td></tr>
76 76 </tbody>
77 77 </table>
78 78 </td>
79 79 </tr>
80 80
81 81 </table>
82 82
83 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">M&aacute;s informaci&oacute;n</a></p>
83 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">M&aacute;s informaci&oacute;n</a></p>
84 84
85 85 </body>
86 86 </html>
1 NO CONTENT: file renamed from public/help/et/wiki_syntax_detailed.html to public/help/et/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/eu/wiki_syntax_detailed.html to public/help/eu/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/fa/wiki_syntax_detailed.html to public/help/fa/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/fi/wiki_syntax_detailed.html to public/help/fi/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/fr/wiki_syntax_detailed.html to public/help/fr/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Syntaxe rapide des Wikis</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Gras*</td><td style="width:50%;"><strong>Gras</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italique_</td><td><em>Italique</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Sous-ligné+</td><td><ins>Sous-ligné</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Barré-</td><td><del>Barré</del></td></tr>
31 31 <tr><th></th><td>??Citation??</td><td><cite>Citation</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Code en ligne@</td><td><code>Code en ligne</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lignes<br />&nbsp;de code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lignes
36 36 de code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Listes</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Titres</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Titre 1</td><td><h1>Titre 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Titre 2</td><td><h2>Titre 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Titre 3</td><td><h3>Titre 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Liens</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Liens Redmine</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Demande #12</td><td>Demande <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Images en ligne</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>url_de_l_image</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>image_en_pièce_jointe</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">Plus d'informations</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">Plus d'informations</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/gl/wiki_syntax_detailed.html to public/help/gl/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/he/wiki_syntax_detailed.html to public/help/he/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/hr/wiki_syntax_detailed.html to public/help/hr/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/hu/wiki_syntax_detailed.html to public/help/hu/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/id/wiki_syntax_detailed.html to public/help/id/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/it/wiki_syntax_detailed.html to public/help/it/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/ja/wiki_syntax_detailed.html to public/help/ja/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki記法 クイックリファレンス</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">フォントスタイル</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="太字" /></th><td style="width:50%;">*太字*</td><td style="width:50%;"><strong>太字</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="斜体" /></th><td>_斜体_</td><td><em>斜体</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="下線" /></th><td>+下線+</td><td><ins>下線</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="取り消し線" /></th><td>-取り消し線-</td><td><del>取り消し線</del></td></tr>
31 31 <tr><th></th><td>??引用??</td><td><cite>引用</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="コード" /></th><td>@コード@</td><td><code>コード</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="整形済みテキスト" /></th><td>&lt;pre&gt;<br />&nbsp;複数行の<br />&nbsp;コード<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 複数行の
36 36 コード
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">リスト</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="リスト" /></th><td>* 項目1<br />** 下位階層の項目<br />* 項目2</td><td><ul><li>項目1<ul><li>下位階層の項目</li></ul></li><li>項目2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="順序付きリスト" /></th><td># 項目1<br />## 下位階層の項目<br /># 項目2</td><td><ol><li>項目1<ol><li>下位階層の項目</li></ol></li><li>項目2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">見出し</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="見出し1" /></th><td>h1. タイトル1</td><td><h1>タイトル1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="見出し2" /></th><td>h2. タイトル2</td><td><h2>タイトル2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="見出し3" /></th><td>h3. タイトル3</td><td><h3>タイトル3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">リンク</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine内のリンク</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Wikiページへのリンク" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>チケット #12</td><td>チケット <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>リビジョン r43</td><td>リビジョン <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">画像</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>画像URL</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>添付ファイル名</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">より詳細なリファレンス</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">より詳細なリファレンス</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/ko/wiki_syntax_detailed.html to public/help/ko/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/lt/wiki_syntax_detailed.html to public/help/lt/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/lv/wiki_syntax_detailed.html to public/help/lv/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/mk/wiki_syntax_detailed.html to public/help/mk/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/mn/wiki_syntax_detailed.html to public/help/mn/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/nl/wiki_syntax_detailed.html to public/help/nl/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/no/wiki_syntax_detailed.html to public/help/no/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/pl/wiki_syntax_detailed.html to public/help/pl/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/pt-br/wiki_syntax_detailed.html to public/help/pt-br/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/pt/wiki_syntax_detailed.html to public/help/pt/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/ro/wiki_syntax_detailed.html to public/help/ro/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/ru/wiki_syntax_detailed.html to public/help/ru/wiki_syntax_detailed_textile.html
@@ -1,170 +1,170
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Форматирование Wiki</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Синтаксис Wiki Краткая Справка</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr>
27 27 <th colspan="3">Стили Шрифтов</th>
28 28 </tr>
29 29 <tr>
30 30 <th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Выделенный"/></th>
31 31 <td style="width:50%;">*Выделенный*</td>
32 32 <td style="width:50%;"><strong>Выделенный</strong></td>
33 33 </tr>
34 34 <tr>
35 35 <th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Наклонный"/></th>
36 36 <td>_Наклонный_</td>
37 37 <td><em>Наклонный</em></td>
38 38 </tr>
39 39 <tr>
40 40 <th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Подчёркнутый"/></th>
41 41 <td>+Подчёркнутый+</td>
42 42 <td>
43 43 <ins>Подчёркнутый</ins>
44 44 </td>
45 45 </tr>
46 46 <tr>
47 47 <th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Зачёркнутый"/></th>
48 48 <td>-Зачёркнутый-</td>
49 49 <td>
50 50 <del>Зачёркнутый</del>
51 51 </td>
52 52 </tr>
53 53 <tr>
54 54 <th></th>
55 55 <td>??Цитата??</td>
56 56 <td><cite>Цитата</cite></td>
57 57 </tr>
58 58 <tr>
59 59 <th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Вставка Кода"/></th>
60 60 <td>@Вставка Кода@</td>
61 61 <td><code>Вставка Кода</code></td>
62 62 </tr>
63 63 <tr>
64 64 <th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Отформатированный текст"/></th>
65 65 <td>&lt;pre&gt;<br/>&nbsp;строки<br/>&nbsp;кода<br/>&lt;/pre&gt;</td>
66 66 <td>
67 67 <pre>
68 68 строки
69 69 кода
70 70 </pre>
71 71 </td>
72 72 </tr>
73 73 <tr><th colspan="3">Списки</th></tr>
74 74 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Несортированный список" /></th><td>* Элемент 1<br />** Sub<br />* Элемент 2</td><td><ul><li>Элемент 1<ul><li>Sub</li></ul></li><li>Элемент 2</li></ul></td></tr>
75 75 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Сортированный список" /></th><td># Элемент 1<br />## Sub<br /># Элемент 2</td><td><ol><li>Элемент 1<ol><li>Sub</li></ol></li><li>Элемент 2</li></ol></td></tr>
76 76 <tr>
77 77 <th colspan="3">Заголовки</th>
78 78 </tr>
79 79 <tr>
80 80 <th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Заголовок 1"/></th>
81 81 <td>h1. Название 1</td>
82 82 <td><h1>Название 1</h1></td>
83 83 </tr>
84 84 <tr>
85 85 <th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Заголовок 2"/></th>
86 86 <td>h2. Название 2</td>
87 87 <td><h2>Название 2</h2></td>
88 88 </tr>
89 89 <tr>
90 90 <th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Заголовок 3"/></th>
91 91 <td>h3. Название 3</td>
92 92 <td><h3>Название 3</h3></td>
93 93 </tr>
94 94 <tr>
95 95 <th colspan="3">Ссылки</th>
96 96 </tr>
97 97 <tr>
98 98 <th></th>
99 99 <td>http://foo.bar</td>
100 100 <td><a href="#">http://foo.bar</a></td>
101 101 </tr>
102 102 <tr>
103 103 <th></th>
104 104 <td>"Foo":http://foo.bar</td>
105 105 <td><a href="#">Foo</a></td>
106 106 </tr>
107 107 <tr>
108 108 <th colspan="3">Ссылки Redmine</th>
109 109 </tr>
110 110 <tr>
111 111 <th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Ссылка на Wiki страницу"/></th>
112 112 <td>[[Wiki страница]]</td>
113 113 <td><a href="#">Wiki страница</a></td>
114 114 </tr>
115 115 <tr>
116 116 <th></th>
117 117 <td>Задача #12</td>
118 118 <td>Задача <a href="#">#12</a></td>
119 119 </tr>
120 120 <tr>
121 121 <th></th>
122 122 <td>Фиксация r43</td>
123 123 <td>Фиксация <a href="#">r43</a></td>
124 124 </tr>
125 125 <tr>
126 126 <th></th>
127 127 <td>commit:f30e13e43</td>
128 128 <td><a href="#">f30e13e4</a></td>
129 129 </tr>
130 130 <tr>
131 131 <th></th>
132 132 <td>source:some/file</td>
133 133 <td><a href="#">source:some/file</a></td>
134 134 </tr>
135 135 <tr>
136 136 <th colspan="3">Вставка изображений</th>
137 137 </tr>
138 138 <tr>
139 139 <th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Изображение"/></th>
140 140 <td>!<em>url_картинки</em>!</td>
141 141 <td></td>
142 142 </tr>
143 143 <tr>
144 144 <th></th>
145 145 <td>!<em>вложенный_файл</em>!</td>
146 146 <td></td>
147 147 </tr>
148 148
149 149 <tr><th colspan="3">Tables</th></tr>
150 150 <tr>
151 151 <th></th>
152 152 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
153 153 <td>
154 154 <table class="sample">
155 155 <tbody>
156 156 <th>A</th><th>B</th><th>C</th>
157 157 <tr><td>A</td><td>B</td><td>C</td></tr>
158 158 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
159 159 <tr><td colspan="2">col span</td></tr>
160 160 </tbody>
161 161 </table>
162 162 </td>
163 163 </tr>
164 164
165 165 </table>
166 166
167 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">Больше информации</a></p>
167 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">Больше информации</a></p>
168 168
169 169 </body>
170 170 </html>
1 NO CONTENT: file renamed from public/help/sk/wiki_syntax_detailed.html to public/help/sk/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/sl/wiki_syntax_detailed.html to public/help/sl/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/sq/wiki_syntax_detailed.html to public/help/sq/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/sr-yu/wiki_syntax_detailed.html to public/help/sr-yu/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/sr/wiki_syntax_detailed.html to public/help/sr/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/sv/wiki_syntax_detailed.html to public/help/sv/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/th/wiki_syntax_detailed.html to public/help/th/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/tr/wiki_syntax_detailed.html to public/help/tr/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/uk/wiki_syntax_detailed.html to public/help/uk/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/vi/wiki_syntax_detailed.html to public/help/vi/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/zh-tw/wiki_syntax_detailed.html to public/help/zh-tw/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki 格式設定</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki 語法快速對照表</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">字型樣式</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="粗體(加強語氣)" /></th><td style="width:50%;">*粗體(加強語氣)*</td><td style="width:50%;"><strong>粗體(加強語氣)</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="斜體" /></th><td>_斜體_</td><td><em>斜體</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="底線" /></th><td>+底線+</td><td><ins>底線</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="刪除線" /></th><td>-刪除線-</td><td><del>刪除線</del></td></tr>
31 31 <tr><th></th><td>??引文??</td><td><cite>引文</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="內嵌程式碼" /></th><td>@內嵌程式碼@</td><td><code>內嵌程式碼 (inline code)</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="預先格式化的段落文字" /></th><td>&lt;pre&gt;<br />&nbsp;格式化<br />&nbsp;的段落<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 格式化
36 36 的段落
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">清單</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="不排序清單" /></th><td>* 清單項目 1<br />** Sub<br />* 清單項目 2</td><td><ul><li>清單項目 1<ul><li>Sub</li></ul></li><li>清單項目 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="排序清單" /></th><td># 清單項目 1<br />## Sub<br /># 清單項目 2</td><td><ol><li>清單項目 1<ol><li>Sub</li></ol></li><li>清單項目 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">標題</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="標題 1" /></th><td>h1. 標題 1</td><td><h1>標題 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="標題 2" /></th><td>h2. 標題 2</td><td><h2>標題 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="標題 3" /></th><td>h3. 標題 3</td><td><h3>標題 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">連結</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine 連結</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="連結至一個 Wiki 頁面" /></th><td>[[Wiki 頁面]]</td><td><a href="#">Wiki 頁面</a></td></tr>
55 55 <tr><th></th><td>問題 #12</td><td>問題 <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>版次 r43</td><td>版次 <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">內置圖像</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="圖像" /></th><td>!<em>圖像_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>附加_圖像</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">更多資訊</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">更多資訊</a></p>
83 83
84 84 </body>
85 85 </html>
1 NO CONTENT: file renamed from public/help/zh/wiki_syntax_detailed.html to public/help/zh/wiki_syntax_detailed_textile.html
@@ -1,85 +1,85
1 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 2 <html xmlns="http://www.w3.org/1999/xhtml">
3 3 <head>
4 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 5 <meta http-equiv="Content-Style-Type" content="text/css" />
6 6 <title>Wiki formatting</title>
7 7 <style type="text/css">
8 8 h1 { font-family: Verdana, sans-serif; font-size: 14px; text-align: center; color: #444; }
9 9 body { font-family: Verdana, sans-serif; font-size: 12px; color: #444; }
10 10 table th { padding-top: 1em; }
11 11 table td { vertical-align: top; background-color: #f5f5f5; height: 2em; vertical-align: middle;}
12 12 table td code { font-size: 1.2em; }
13 13 table td h1 { font-size: 1.8em; text-align: left; }
14 14 table td h2 { font-size: 1.4em; text-align: left; }
15 15 table td h3 { font-size: 1.2em; text-align: left; }
16 16
17 17 table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; }
18 18 table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
19 19 </style>
20 20 </head>
21 21 <body>
22 22
23 23 <h1>Wiki Syntax Quick Reference</h1>
24 24
25 25 <table style="width:100%">
26 26 <tr><th colspan="3">Font Styles</th></tr>
27 27 <tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" alt="Strong" /></th><td style="width:50%;">*Strong*</td><td style="width:50%;"><strong>Strong</strong></td></tr>
28 28 <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="Italic" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
29 29 <tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" alt="Underline" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
30 30 <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="Deleted" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
31 31 <tr><th></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
32 32 <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="Inline Code" /></th><td>@Inline Code@</td><td><code>Inline Code</code></td></tr>
33 33 <tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="Preformatted text" /></th><td>&lt;pre&gt;<br />&nbsp;lines<br />&nbsp;of code<br />&lt;/pre&gt;</td><td>
34 34 <pre>
35 35 lines
36 36 of code
37 37 </pre>
38 38 </td></tr>
39 39
40 40 <tr><th colspan="3">Lists</th></tr>
41 41 <tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" alt="Unordered list" /></th><td>* Item 1<br />** Sub<br />* Item 2</td><td><ul><li>Item 1<ul><li>Sub</li></ul></li><li>Item 2</li></ul></td></tr>
42 42 <tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" alt="Ordered list" /></th><td># Item 1<br />## Sub<br /># Item 2</td><td><ol><li>Item 1<ol><li>Sub</li></ol></li><li>Item 2</li></ol></td></tr>
43 43
44 44 <tr><th colspan="3">Headings</th></tr>
45 45 <tr><th><img src="../../images/jstoolbar/bt_h1.png" style="border: 1px solid #bbb;" alt="Heading 1" /></th><td>h1. Title 1</td><td><h1>Title 1</h1></td></tr>
46 46 <tr><th><img src="../../images/jstoolbar/bt_h2.png" style="border: 1px solid #bbb;" alt="Heading 2" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
47 47 <tr><th><img src="../../images/jstoolbar/bt_h3.png" style="border: 1px solid #bbb;" alt="Heading 3" /></th><td>h3. Title 3</td><td><h3>Title 3</h3></td></tr>
48 48
49 49 <tr><th colspan="3">Links</th></tr>
50 50 <tr><th></th><td>http://foo.bar</td><td><a href="#">http://foo.bar</a></td></tr>
51 51 <tr><th></th><td>"Foo":http://foo.bar</td><td><a href="#">Foo</a></td></tr>
52 52
53 53 <tr><th colspan="3">Redmine links</th></tr>
54 54 <tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" alt="Link to a Wiki page" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
55 55 <tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
56 56 <tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr>
57 57 <tr><th></th><td>commit:f30e13e43</td><td><a href="#">f30e13e4</a></td></tr>
58 58 <tr><th></th><td>source:some/file</td><td><a href="#">source:some/file</a></td></tr>
59 59
60 60 <tr><th colspan="3">Inline images</th></tr>
61 61 <tr><th><img src="../../images/jstoolbar/bt_img.png" style="border: 1px solid #bbb;" alt="Image" /></th><td>!<em>image_url</em>!</td><td></td></tr>
62 62 <tr><th></th><td>!<em>attached_image</em>!</td><td></td></tr>
63 63
64 64 <tr><th colspan="3">Tables</th></tr>
65 65 <tr>
66 66 <th></th>
67 67 <td>|_. A |_. B |_. C |<br />| A | B | C |<br />|/2. row span | B | C |<br />|\2. col span |</td>
68 68 <td>
69 69 <table class="sample">
70 70 <tbody>
71 71 <th>A</th><th>B</th><th>C</th>
72 72 <tr><td>A</td><td>B</td><td>C</td></tr>
73 73 <tr><td rowspan="2">row span</td><td>B</td><td>C</td></tr>
74 74 <tr><td colspan="2">col span</td></tr>
75 75 </tbody>
76 76 </table>
77 77 </td>
78 78 </tr>
79 79
80 80 </table>
81 81
82 <p><a href="wiki_syntax_detailed.html" onclick="window.open('wiki_syntax_detailed.html', '', ''); return false;">More Information</a></p>
82 <p><a href="wiki_syntax_detailed_textile.html" onclick="window.open('wiki_syntax_detailed_textile.html', '', ''); return false;">More Information</a></p>
83 83
84 84 </body>
85 85 </html>
General Comments 0
You need to be logged in to leave comments. Login now