]> source.dussan.org Git - redmine.git/commitdiff
Added wiki syntax to online help.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 17 Aug 2007 15:53:39 +0000 (15:53 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 17 Aug 2007 15:53:39 +0000 (15:53 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@655 e93f8b46-1217-0410-a6f0-8f06a7374b81

25 files changed:
config/help.yml
doc/docbook/en/redmine-userdoc-en.xml
doc/docbook/fr/redmine-userdoc-fr.xml
public/manual/en/ch02.html
public/manual/en/ch02s09.html
public/manual/en/ch02s10.html
public/manual/en/ch02s11.html [new file with mode: 0644]
public/manual/en/ch03.html
public/manual/en/ch03s01.html
public/manual/en/ch03s02.html
public/manual/en/ch03s03.html
public/manual/en/ch03s04.html
public/manual/en/html.css
public/manual/en/index.html
public/manual/fr/ch02.html
public/manual/fr/ch02s09.html
public/manual/fr/ch02s10.html
public/manual/fr/ch02s11.html
public/manual/fr/ch03.html
public/manual/fr/ch03s01.html
public/manual/fr/ch03s02.html
public/manual/fr/ch03s03.html
public/manual/fr/ch03s04.html
public/manual/fr/html.css
public/manual/fr/index.html

index 0315aad2430130ad78f1e939558b47f4c14c92da..80559cbd72895b20d7b0683f8e5a9754455d6c50 100644 (file)
@@ -57,13 +57,13 @@ pages:
     list_issues:    ch02s03.html\r
     add_news:       ch02s06.html\r
     list_news:      ch02s06.html\r
-    add_file:       ch02s08.html\r
-    list_files:     ch02s08.html\r
+    add_file:       ch02s11.html\r
+    list_files:     ch02s11.html\r
     changelog:      ch02s05.html\r
   issues:\r
     index:          ch02s03.html\r
   documents:\r
-    index:          ch02s07.html\r
+    index:          ch02s09.html\r
   news:\r
     index:          ch02s06.html\r
   versions:\r
@@ -80,4 +80,5 @@ pages:
     lost_password:  ch03s03.html\r
     register:       ch03s04.html\r
   wiki:\r
+    index:          ch02s10.html\r
     syntax:         wiki_syntax.html
\ No newline at end of file
index d3093114d624eecf87a604a4f5e137dcbc038cb6..44f9c5f2ac55a4d582157c69530a1f7bac6ce845 100644 (file)
       versions).</para>
     </section>
 
+    <section>
+      <title>Wiki</title>
+
+      <para></para>
+
+      <section>
+        <title>Wiki syntax</title>
+
+        <para></para>
+
+        <section>
+          <title>Formatting</title>
+
+          <para></para>
+
+          <itemizedlist>
+            <listitem>
+              <para><code>*bold*</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>_italic_</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>+underline+</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>-strike-</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>??inline quote??</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>@code@</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>h1. page title</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>h2. level 2 title</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>h3. level 3 title</code></para>
+            </listitem>
+          </itemizedlist>
+
+          <para></para>
+        </section>
+
+        <section>
+          <title>Links</title>
+
+          <para></para>
+
+          <itemizedlist>
+            <listitem>
+              <para>External link : <code>http://www.redmine.org</code></para>
+            </listitem>
+
+            <listitem>
+              <para>External link with specific text :
+              <code>"Redmine":http://www.redmine.org</code></para>
+            </listitem>
+
+            <listitem>
+              <para>Link to an other wiki page (can be a page from an other
+              project wiki) :</para>
+
+              <itemizedlist>
+                <listitem>
+                  <para><code>[[Page name]]</code></para>
+                </listitem>
+
+                <listitem>
+                  <para><code>[[Page name|Title]]</code></para>
+                </listitem>
+
+                <listitem>
+                  <para><code>[[Project:]]</code></para>
+                </listitem>
+
+                <listitem>
+                  <para><code>[[Project:|Title]]</code></para>
+                </listitem>
+
+                <listitem>
+                  <para><code>[[Project:Page name]]</code></para>
+                </listitem>
+
+                <listitem>
+                  <para><code>[[Project:Page name|Title]]</code></para>
+                </listitem>
+              </itemizedlist>
+            </listitem>
+          </itemizedlist>
+
+          <itemizedlist>
+            <listitem>
+              <para>Link to an issue : <code>#52</code></para>
+            </listitem>
+
+            <listitem>
+              <para>Link to a changeset : <code>r52</code></para>
+            </listitem>
+          </itemizedlist>
+        </section>
+
+        <section>
+          <title>Embedded images</title>
+
+          <para></para>
+
+          <itemizedlist>
+            <listitem>
+              <para>External image :
+              <code>!http://foo.bar/my_image.jpg!</code></para>
+            </listitem>
+
+            <listitem>
+              <para>Image attached to the wiki page :
+              <code>!my_image.jpg!</code></para>
+            </listitem>
+
+            <listitem>
+              <para>Right floating image :
+              <code>!&gt;my_image.jpg!</code></para>
+            </listitem>
+          </itemizedlist>
+
+          <para></para>
+        </section>
+      </section>
+    </section>
+
     <section>
       <title>Files</title>
 
index 966f1446f64bb57cd1e7f67a518e6f43f2d8f7e6..4b5dd09d3f93f948a837c9a898ce24bd88e2b94a 100644 (file)
       révisions ou versions successives).</para>
     </section>
 
+    <section>
+      <title>Wiki</title>
+
+      <para></para>
+
+      <section>
+        <title>Syntaxe wiki</title>
+
+        <para></para>
+
+        <section>
+          <title>Mise en forme</title>
+
+          <para></para>
+
+          <itemizedlist>
+            <listitem>
+              <para><code>*gras*</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>_italique_</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>+souligné+</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>-rayé-</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>??citation??</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>@code@</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>h1. titre de la page</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>h2. titre de niveau 2</code></para>
+            </listitem>
+
+            <listitem>
+              <para><code>h3. titre de niveau 3</code></para>
+            </listitem>
+          </itemizedlist>
+
+          <para></para>
+        </section>
+
+        <section>
+          <title>Liens</title>
+
+          <para></para>
+
+          <itemizedlist>
+            <listitem>
+              <para>Lien externe : <code>http://www.redmine.org</code></para>
+            </listitem>
+
+            <listitem>
+              <para>Lien externe avec texte spécifique :
+              <code>"Redmine":http://www.redmine.org</code></para>
+            </listitem>
+
+            <listitem>
+              <para>Lien vers une page wiki (éventuellement d'un autre projet)
+              :</para>
+
+              <itemizedlist>
+                <listitem>
+                  <para><code>[[Nom de page]]</code></para>
+                </listitem>
+
+                <listitem>
+                  <para><code>[[Nom de page|Titre]]</code></para>
+                </listitem>
+
+                <listitem>
+                  <para><code>[[Projet:]]</code></para>
+                </listitem>
+
+                <listitem>
+                  <para><code>[[Projet:|Titre]]</code></para>
+                </listitem>
+
+                <listitem>
+                  <para><code>[[Projet:Nom de page]]</code></para>
+                </listitem>
+
+                <listitem>
+                  <para><code>[[Projet:Nom de page|Titre]]</code></para>
+                </listitem>
+              </itemizedlist>
+            </listitem>
+          </itemizedlist>
+
+          <itemizedlist>
+            <listitem>
+              <para>Lien vers une demande : <code>#52</code></para>
+            </listitem>
+
+            <listitem>
+              <para>Lien vers une révision du dépôt (commit) :
+              <code>r52</code></para>
+            </listitem>
+          </itemizedlist>
+        </section>
+
+        <section>
+          <title>Images</title>
+
+          <para></para>
+
+          <itemizedlist>
+            <listitem>
+              <para>Image externe :
+              <code>!http://foo.bar/mon_image.jpg!</code></para>
+            </listitem>
+
+            <listitem>
+              <para>Image attachée à la page wiki :
+              <code>!mon_image.jpg!</code></para>
+            </listitem>
+
+            <listitem>
+              <para>Image flotante à droite :
+              <code>!&gt;mon_image.jpg!</code></para>
+            </listitem>
+          </itemizedlist>
+
+          <para></para>
+        </section>
+      </section>
+    </section>
+
     <section>
       <title>Fichiers</title>
 
index 34af726763460ab2b86d351cbfc8db54d7bf6e18..ceba59301b8a9bd28ac257635f6a7919f1d6eab3 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;2.&nbsp;Projects</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="index.html" title="Documentation"><link rel="prev" href="ch01s12.html" title="12.&nbsp;Information"><link rel="next" href="ch02s01.html" title="1.&nbsp;Project overview"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;2.&nbsp;Projects</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s12.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch02s01.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e581"></a>Chapter&nbsp;2.&nbsp;Projects</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch02s01.html">1. Project overview</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Planning</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e594">2.1. Project calendar</a></span></dt><dt><span class="section"><a href="ch02s02.html#d0e622">2.2. Gantt chart</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Issue management</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s03.html#d0e640">3.1. Issue list</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s04.html">4. Reports</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. Activity</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Change log</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Roadmap</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. News</a></span></dt><dt><span class="section"><a href="ch02s09.html">9. Documents</a></span></dt><dt><span class="section"><a href="ch02s10.html">10. Files</a></span></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s12.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">12.&nbsp;Information&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;1.&nbsp;Project overview</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>Chapter&nbsp;2.&nbsp;Projects</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="index.html" title="Documentation"><link rel="prev" href="ch01s12.html" title="12.&nbsp;Information"><link rel="next" href="ch02s01.html" title="1.&nbsp;Project overview"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;2.&nbsp;Projects</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s12.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch02s01.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e581"></a>Chapter&nbsp;2.&nbsp;Projects</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch02s01.html">1. Project overview</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Planning</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e594">2.1. Project calendar</a></span></dt><dt><span class="section"><a href="ch02s02.html#d0e622">2.2. Gantt chart</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Issue management</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s03.html#d0e640">3.1. Issue list</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s04.html">4. Reports</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. Activity</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Change log</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Roadmap</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. News</a></span></dt><dt><span class="section"><a href="ch02s09.html">9. Documents</a></span></dt><dt><span class="section"><a href="ch02s10.html">10. Wiki</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s10.html#d0e709">10.1. Wiki syntax</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s10.html#d0e713">10.1.1. Formatting</a></span></dt><dt><span class="section"><a href="ch02s10.html#d0e755">10.1.2. Links</a></span></dt><dt><span class="section"><a href="ch02s10.html#d0e809">10.1.3. Embedded images</a></span></dt></dl></dd></dl></dd><dt><span class="section"><a href="ch02s11.html">11. Files</a></span></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s12.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">12.&nbsp;Information&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;1.&nbsp;Project overview</td></tr></table></div></body></html>
\ No newline at end of file
index 2bf83d94a1ac227c122d55084fb9117e6f05596e..c47e709673417d6b0bda62eb91fd8f4b0a119d08 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>9.&nbsp;Documents</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="prev" href="ch02s08.html" title="8.&nbsp;News"><link rel="next" href="ch02s10.html" title="10.&nbsp;Files"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">9.&nbsp;Documents</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s08.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projects</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch02s10.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e700"></a>9.&nbsp;Documents</h2></div></div></div><p>Documents are grouped by categories (see Value Lists). A document can contain several files (for example: revisions or successive versions).</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s08.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s10.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">8.&nbsp;News&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;10.&nbsp;Files</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>9.&nbsp;Documents</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="prev" href="ch02s08.html" title="8.&nbsp;News"><link rel="next" href="ch02s10.html" title="10.&nbsp;Wiki"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">9.&nbsp;Documents</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s08.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projects</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch02s10.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e700"></a>9.&nbsp;Documents</h2></div></div></div><p>Documents are grouped by categories (see Value Lists). A document can contain several files (for example: revisions or successive versions).</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s08.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s10.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">8.&nbsp;News&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;10.&nbsp;Wiki</td></tr></table></div></body></html>
\ No newline at end of file
index 8ab33bf7f8a5641d40230bf9c43861aae697dd81..862db2301de9d6cb564773d87159c78368f3689e 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>10.&nbsp;Files</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="prev" href="ch02s09.html" title="9.&nbsp;Documents"><link rel="next" href="ch03.html" title="Chapter&nbsp;3.&nbsp;User accounts"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">10.&nbsp;Files</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s09.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projects</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e705"></a>10.&nbsp;Files</h2></div></div></div><p>This module allows you to display various folders (sources, binaires, ...) for each version of the application.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s09.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">9.&nbsp;Documents&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;3.&nbsp;User accounts</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>10.&nbsp;Wiki</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="prev" href="ch02s09.html" title="9.&nbsp;Documents"><link rel="next" href="ch02s11.html" title="11.&nbsp;Files"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">10.&nbsp;Wiki</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s09.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projects</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch02s11.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e705"></a>10.&nbsp;Wiki</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e709"></a>10.1.&nbsp;Wiki syntax</h3></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="d0e713"></a>10.1.1.&nbsp;Formatting</h4></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p><code class="code">*bold*</code></p></li><li><p><code class="code">_italic_</code></p></li><li><p><code class="code">+underline+</code></p></li><li><p><code class="code">-strike-</code></p></li><li><p><code class="code">??inline quote??</code></p></li><li><p><code class="code">@code@</code></p></li><li><p><code class="code">h1. page title</code></p></li><li><p><code class="code">h2. level 2 title</code></p></li><li><p><code class="code">h3. level 3 title</code></p></li></ul></div><p></p></div><div class="section" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="d0e755"></a>10.1.2.&nbsp;Links</h4></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p>External link : <code class="code">http://www.redmine.org</code></p></li><li><p>External link with specific text : <code class="code">"Redmine":http://www.redmine.org</code></p></li><li><p>Link to an other wiki page (can be a page from an other project wiki) :</p><div class="itemizedlist"><ul type="circle"><li><p><code class="code">[[Page name]]</code></p></li><li><p><code class="code">[[Page name|Title]]</code></p></li><li><p><code class="code">[[Project:]]</code></p></li><li><p><code class="code">[[Project:|Title]]</code></p></li><li><p><code class="code">[[Project:Page name]]</code></p></li><li><p><code class="code">[[Project:Page name|Title]]</code></p></li></ul></div></li></ul></div><div class="itemizedlist"><ul type="disc"><li><p>Link to an issue : <code class="code">#52</code></p></li><li><p>Link to a changeset : <code class="code">r52</code></p></li></ul></div></div><div class="section" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="d0e809"></a>10.1.3.&nbsp;Embedded images</h4></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p>External image : <code class="code">!http://foo.bar/my_image.jpg!</code></p></li><li><p>Image attached to the wiki page : <code class="code">!my_image.jpg!</code></p></li><li><p>Right floating image : <code class="code">!&gt;my_image.jpg!</code></p></li></ul></div><p></p></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s09.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s11.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">9.&nbsp;Documents&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;11.&nbsp;Files</td></tr></table></div></body></html>
\ No newline at end of file
diff --git a/public/manual/en/ch02s11.html b/public/manual/en/ch02s11.html
new file mode 100644 (file)
index 0000000..86bce49
--- /dev/null
@@ -0,0 +1,3 @@
+<html><head>
+      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+   <title>11.&nbsp;Files</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projects"><link rel="prev" href="ch02s10.html" title="10.&nbsp;Wiki"><link rel="next" href="ch03.html" title="Chapter&nbsp;3.&nbsp;User accounts"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">11.&nbsp;Files</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s10.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projects</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e830"></a>11.&nbsp;Files</h2></div></div></div><p>This module allows you to display various folders (sources, binaires, ...) for each version of the application.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s10.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">10.&nbsp;Wiki&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;3.&nbsp;User accounts</td></tr></table></div></body></html>
\ No newline at end of file
index aeb4e89fe95332272711f811236afc6fc2543657..b2e0d2179fb00c4d7e83952f9d322b155cd47614 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;3.&nbsp;User accounts</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="index.html" title="Documentation"><link rel="prev" href="ch02s10.html" title="10.&nbsp;Files"><link rel="next" href="ch03s01.html" title="1.&nbsp;My account"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;3.&nbsp;User accounts</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s10.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s01.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e710"></a>Chapter&nbsp;3.&nbsp;User accounts</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch03s01.html">1. My account</a></span></dt><dd><dl><dt><span class="section"><a href="ch03s01.html#d0e718">1.1. Information</a></span></dt><dt><span class="section"><a href="ch03s01.html#d0e728">1.2. Password</a></span></dt></dl></dd><dt><span class="section"><a href="ch03s02.html">2. My page</a></span></dt><dt><span class="section"><a href="ch03s03.html">3. Password lost</a></span></dt><dt><span class="section"><a href="ch03s04.html">4. Register</a></span></dt></dl></div><p></p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s10.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">10.&nbsp;Files&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;1.&nbsp;My account</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>Chapter&nbsp;3.&nbsp;User accounts</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="index.html" title="Documentation"><link rel="prev" href="ch02s11.html" title="11.&nbsp;Files"><link rel="next" href="ch03s01.html" title="1.&nbsp;My account"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;3.&nbsp;User accounts</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s11.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s01.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e835"></a>Chapter&nbsp;3.&nbsp;User accounts</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch03s01.html">1. My account</a></span></dt><dd><dl><dt><span class="section"><a href="ch03s01.html#d0e843">1.1. Information</a></span></dt><dt><span class="section"><a href="ch03s01.html#d0e853">1.2. Password</a></span></dt></dl></dd><dt><span class="section"><a href="ch03s02.html">2. My page</a></span></dt><dt><span class="section"><a href="ch03s03.html">3. Password lost</a></span></dt><dt><span class="section"><a href="ch03s04.html">4. Register</a></span></dt></dl></div><p></p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s11.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">11.&nbsp;Files&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;1.&nbsp;My account</td></tr></table></div></body></html>
\ No newline at end of file
index 36cc576ecf655cc5444d2c0a172cfc608a106e79..4b136be325c1edd78aff28d5b1919a4903828ac8 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>1.&nbsp;My account</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;User accounts"><link rel="prev" href="ch03.html" title="Chapter&nbsp;3.&nbsp;User accounts"><link rel="next" href="ch03s02.html" title="2.&nbsp;My page"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">1.&nbsp;My account</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;User accounts</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s02.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e714"></a>1.&nbsp;My account</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e718"></a>1.1.&nbsp;Information</h3></div></div></div><p>This screen allows you to modify your account: lastname, firstname, email address, language.</p><p>If <span class="guilabel">Mail notifications</span> is unchecked, no email will be sent to you.</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e728"></a>1.2.&nbsp;Password</h3></div></div></div><p>To change your password, type your old password and your new password (twice). Password length must be between 4 and 12 characters.</p><p>If your account uses an external authentication (LDAP), you can't change your password in redMine.</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;3.&nbsp;User accounts&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;2.&nbsp;My page</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>1.&nbsp;My account</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;User accounts"><link rel="prev" href="ch03.html" title="Chapter&nbsp;3.&nbsp;User accounts"><link rel="next" href="ch03s02.html" title="2.&nbsp;My page"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">1.&nbsp;My account</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;User accounts</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s02.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e839"></a>1.&nbsp;My account</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e843"></a>1.1.&nbsp;Information</h3></div></div></div><p>This screen allows you to modify your account: lastname, firstname, email address, language.</p><p>If <span class="guilabel">Mail notifications</span> is unchecked, no email will be sent to you.</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e853"></a>1.2.&nbsp;Password</h3></div></div></div><p>To change your password, type your old password and your new password (twice). Password length must be between 4 and 12 characters.</p><p>If your account uses an external authentication (LDAP), you can't change your password in redMine.</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;3.&nbsp;User accounts&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;2.&nbsp;My page</td></tr></table></div></body></html>
\ No newline at end of file
index 9170837c60f799f316488d13e4b36b829cd1cbcd..09a1f52164d759b2da2f5ffbe0ad232ad7dcb1ca 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>2.&nbsp;My page</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;User accounts"><link rel="prev" href="ch03s01.html" title="1.&nbsp;My account"><link rel="next" href="ch03s03.html" title="3.&nbsp;Password lost"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">2.&nbsp;My page</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s01.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;User accounts</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s03.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e735"></a>2.&nbsp;My page</h2></div></div></div><p>This page allows you to display various information about your projects.</p><p>To personalize your page, click on <span class="guilabel">Personalize this page</span>. Then you can choose which information to display and where it is displayed.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03s01.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">1.&nbsp;My account&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;3.&nbsp;Password lost</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>2.&nbsp;My page</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;User accounts"><link rel="prev" href="ch03s01.html" title="1.&nbsp;My account"><link rel="next" href="ch03s03.html" title="3.&nbsp;Password lost"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">2.&nbsp;My page</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s01.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;User accounts</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s03.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e860"></a>2.&nbsp;My page</h2></div></div></div><p>This page allows you to display various information about your projects.</p><p>To personalize your page, click on <span class="guilabel">Personalize this page</span>. Then you can choose which information to display and where it is displayed.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03s01.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">1.&nbsp;My account&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;3.&nbsp;Password lost</td></tr></table></div></body></html>
\ No newline at end of file
index e7840caa7433ffdc85613d05119b6d0fefd91fae..c05f727fedab8a80f4a1d9f7df670a78e0dc5a93 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>3.&nbsp;Password lost</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;User accounts"><link rel="prev" href="ch03s02.html" title="2.&nbsp;My page"><link rel="next" href="ch03s04.html" title="4.&nbsp;Register"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">3.&nbsp;Password lost</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s02.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;User accounts</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s04.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e745"></a>3.&nbsp;Password lost</h2></div></div></div><p>If you loose your forget, a procedure allows you to choose a new one.</p><p>On the login screen, click on <span class="guilabel">Lost password</span>. Type your email address and submit the form. An email is then sent to you. It contains a link that allows you to change your password.</p><p>If your account uses an external authentication (LDAP), this procedure isn't be available.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03s02.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">2.&nbsp;My page&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;4.&nbsp;Register</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>3.&nbsp;Password lost</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;User accounts"><link rel="prev" href="ch03s02.html" title="2.&nbsp;My page"><link rel="next" href="ch03s04.html" title="4.&nbsp;Register"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">3.&nbsp;Password lost</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s02.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;User accounts</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s04.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e870"></a>3.&nbsp;Password lost</h2></div></div></div><p>If you loose your forget, a procedure allows you to choose a new one.</p><p>On the login screen, click on <span class="guilabel">Lost password</span>. Type your email address and submit the form. An email is then sent to you. It contains a link that allows you to change your password.</p><p>If your account uses an external authentication (LDAP), this procedure isn't be available.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03s02.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">2.&nbsp;My page&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;4.&nbsp;Register</td></tr></table></div></body></html>
\ No newline at end of file
index 6c4cf0b1586032dc3342d1761b2854d403ab5f09..0b1e1375b45a8b9e4f3a7f8f4a17313d30ec9e5f 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>4.&nbsp;Register</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;User accounts"><link rel="prev" href="ch03s03.html" title="3.&nbsp;Password lost"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">4.&nbsp;Register</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s03.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;User accounts</th><td width="20%" align="right">&nbsp;</td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e757"></a>4.&nbsp;Register</h2></div></div></div><p>By registering, you can get an account without the intervention of the administrator.</p><p>On the login screen, click on <span class="guilabel">Register</span>. Fill the form and submit it. An email will be sent to you. To activate your account, use the link that is contained in this mail.</p><p>The possibility to register can be desactived in the application configuration.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03s03.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;</td></tr><tr><td width="40%" align="left" valign="top">3.&nbsp;Password lost&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>4.&nbsp;Register</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;User accounts"><link rel="prev" href="ch03s03.html" title="3.&nbsp;Password lost"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">4.&nbsp;Register</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s03.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;User accounts</th><td width="20%" align="right">&nbsp;</td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e882"></a>4.&nbsp;Register</h2></div></div></div><p>By registering, you can get an account without the intervention of the administrator.</p><p>On the login screen, click on <span class="guilabel">Register</span>. Fill the form and submit it. An email will be sent to you. To activate your account, use the link that is contained in this mail.</p><p>The possibility to register can be desactived in the application configuration.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03s03.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;</td></tr><tr><td width="40%" align="left" valign="top">3.&nbsp;Password lost&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;</td></tr></table></div></body></html>
\ No newline at end of file
index c5eb0ef9672fb730432d86b2b7dc944a0e99ab39..c9594a30b3d2eb4d7d4bed6f00bdefec840d65ef 100644 (file)
@@ -54,6 +54,12 @@ pre.programlisting {
     white-space: pre;
 }
 
+code.code {
+    padding: 2px; 
+    font-size: 10pt;
+    white-space: pre;
+}
+
 li p {
     margin-top: 3px;
     margin-bottom: 3px;
index 3cc024ef751fe6cfec2b809737d44898295715bd..def950c3bfda2805b745119078750373b7438d32 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Documentation</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="next" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Documentation</th></tr><tr><td width="20%" align="left">&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="d0e1"></a>Documentation</h1></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="ch01.html">1. Administration</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html">1. Projects</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e12">1.1. Project list</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e19">1.2. Settings</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e23">1.2.1. Project properties</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e59">1.2.2. Repository</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e64">1.2.3. Wiki</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e69">1.2.4. Members</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e74">1.2.5. Versions</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e79">1.2.6. Request categories</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e84">1.2.7. Forums</a></span></dt></dl></dd></dl></dd><dt><span class="section"><a href="ch01s02.html">2. Users</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s02.html#d0e94">2.1. Users&#8217; List</a></span></dt><dt><span class="section"><a href="ch01s02.html#d0e124">2.2. User Creation or Modification</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s03.html">3. Roles and Permissions</a></span></dt><dt><span class="section"><a href="ch01s04.html">4. Trackers</a></span></dt><dt><span class="section"><a href="ch01s05.html">5. Custom fields</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s05.html#d0e235">5.1. Fields for Projects</a></span></dt><dt><span class="section"><a href="ch01s05.html#d0e246">5.2. Fields for Issues</a></span></dt><dt><span class="section"><a href="ch01s05.html#d0e259">5.3. Field for Users</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s06.html">6. Issue status</a></span></dt><dt><span class="section"><a href="ch01s07.html">7. Workflow</a></span></dt><dt><span class="section"><a href="ch01s08.html">8. Enumerations</a></span></dt><dt><span class="section"><a href="ch01s09.html">9. E-mail notifications</a></span></dt><dt><span class="section"><a href="ch01s10.html">10. Authentication</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s10.html#d0e341">10.1. LDAP statement</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s11.html">11. Settings</a></span></dt><dt><span class="section"><a href="ch01s12.html">12. Information</a></span></dt></dl></dd><dt><span class="chapter"><a href="ch02.html">2. Projects</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s01.html">1. Project overview</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Planning</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e594">2.1. Project calendar</a></span></dt><dt><span class="section"><a href="ch02s02.html#d0e622">2.2. Gantt chart</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Issue management</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s03.html#d0e640">3.1. Issue list</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s04.html">4. Reports</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. Activity</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Change log</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Roadmap</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. News</a></span></dt><dt><span class="section"><a href="ch02s09.html">9. Documents</a></span></dt><dt><span class="section"><a href="ch02s10.html">10. Files</a></span></dt></dl></dd><dt><span class="chapter"><a href="ch03.html">3. User accounts</a></span></dt><dd><dl><dt><span class="section"><a href="ch03s01.html">1. My account</a></span></dt><dd><dl><dt><span class="section"><a href="ch03s01.html#d0e718">1.1. Information</a></span></dt><dt><span class="section"><a href="ch03s01.html#d0e728">1.2. Password</a></span></dt></dl></dd><dt><span class="section"><a href="ch03s02.html">2. My page</a></span></dt><dt><span class="section"><a href="ch03s03.html">3. Password lost</a></span></dt><dt><span class="section"><a href="ch03s04.html">4. Register</a></span></dt></dl></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;1.&nbsp;Administration</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>Documentation</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="next" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Documentation</th></tr><tr><td width="20%" align="left">&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="d0e1"></a>Documentation</h1></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="ch01.html">1. Administration</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html">1. Projects</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e12">1.1. Project list</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e19">1.2. Settings</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e23">1.2.1. Project properties</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e59">1.2.2. Repository</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e64">1.2.3. Wiki</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e69">1.2.4. Members</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e74">1.2.5. Versions</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e79">1.2.6. Request categories</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e84">1.2.7. Forums</a></span></dt></dl></dd></dl></dd><dt><span class="section"><a href="ch01s02.html">2. Users</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s02.html#d0e94">2.1. Users&#8217; List</a></span></dt><dt><span class="section"><a href="ch01s02.html#d0e124">2.2. User Creation or Modification</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s03.html">3. Roles and Permissions</a></span></dt><dt><span class="section"><a href="ch01s04.html">4. Trackers</a></span></dt><dt><span class="section"><a href="ch01s05.html">5. Custom fields</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s05.html#d0e235">5.1. Fields for Projects</a></span></dt><dt><span class="section"><a href="ch01s05.html#d0e246">5.2. Fields for Issues</a></span></dt><dt><span class="section"><a href="ch01s05.html#d0e259">5.3. Field for Users</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s06.html">6. Issue status</a></span></dt><dt><span class="section"><a href="ch01s07.html">7. Workflow</a></span></dt><dt><span class="section"><a href="ch01s08.html">8. Enumerations</a></span></dt><dt><span class="section"><a href="ch01s09.html">9. E-mail notifications</a></span></dt><dt><span class="section"><a href="ch01s10.html">10. Authentication</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s10.html#d0e341">10.1. LDAP statement</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s11.html">11. Settings</a></span></dt><dt><span class="section"><a href="ch01s12.html">12. Information</a></span></dt></dl></dd><dt><span class="chapter"><a href="ch02.html">2. Projects</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s01.html">1. Project overview</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Planning</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e594">2.1. Project calendar</a></span></dt><dt><span class="section"><a href="ch02s02.html#d0e622">2.2. Gantt chart</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Issue management</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s03.html#d0e640">3.1. Issue list</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s04.html">4. Reports</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. Activity</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Change log</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Roadmap</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. News</a></span></dt><dt><span class="section"><a href="ch02s09.html">9. Documents</a></span></dt><dt><span class="section"><a href="ch02s10.html">10. Wiki</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s10.html#d0e709">10.1. Wiki syntax</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s10.html#d0e713">10.1.1. Formatting</a></span></dt><dt><span class="section"><a href="ch02s10.html#d0e755">10.1.2. Links</a></span></dt><dt><span class="section"><a href="ch02s10.html#d0e809">10.1.3. Embedded images</a></span></dt></dl></dd></dl></dd><dt><span class="section"><a href="ch02s11.html">11. Files</a></span></dt></dl></dd><dt><span class="chapter"><a href="ch03.html">3. User accounts</a></span></dt><dd><dl><dt><span class="section"><a href="ch03s01.html">1. My account</a></span></dt><dd><dl><dt><span class="section"><a href="ch03s01.html#d0e843">1.1. Information</a></span></dt><dt><span class="section"><a href="ch03s01.html#d0e853">1.2. Password</a></span></dt></dl></dd><dt><span class="section"><a href="ch03s02.html">2. My page</a></span></dt><dt><span class="section"><a href="ch03s03.html">3. Password lost</a></span></dt><dt><span class="section"><a href="ch03s04.html">4. Register</a></span></dt></dl></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;1.&nbsp;Administration</td></tr></table></div></body></html>
\ No newline at end of file
index d86096430870f885f3fdfaec7f3c48a8d274408f..da882ffcbfcc342953209b6c3d91426cee2a4f00 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;2.&nbsp;Projets</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="index.html" title="Documentation"><link rel="prev" href="ch01s12.html" title="12.&nbsp;Informations"><link rel="next" href="ch02s01.html" title="1.&nbsp;Aper&ccedil;u du projet"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;2.&nbsp;Projets</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s12.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch02s01.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e634"></a>Chapter&nbsp;2.&nbsp;Projets</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch02s01.html">1. Aper&ccedil;u du projet</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Planning</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e647">2.1. Calendrier du projet</a></span></dt><dt><span class="section"><a href="ch02s02.html#d0e679">2.2. Diagramme de Gantt</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Gestion des demandes</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s03.html#d0e703">3.1. Liste des demandes</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s04.html">4. Rapports</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. Activit&eacute;</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Historique</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Roadmap</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. Annonces</a></span></dt><dt><span class="section"><a href="ch02s09.html">9. Documents</a></span></dt><dt><span class="section"><a href="ch02s10.html">10. Fichiers</a></span></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s12.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">12.&nbsp;Informations&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;1.&nbsp;Aper&ccedil;u du projet</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>Chapter&nbsp;2.&nbsp;Projets</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="index.html" title="Documentation"><link rel="prev" href="ch01s12.html" title="12.&nbsp;Informations"><link rel="next" href="ch02s01.html" title="1.&nbsp;Aper&ccedil;u du projet"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;2.&nbsp;Projets</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s12.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch02s01.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e634"></a>Chapter&nbsp;2.&nbsp;Projets</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch02s01.html">1. Aper&ccedil;u du projet</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Planning</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e647">2.1. Calendrier du projet</a></span></dt><dt><span class="section"><a href="ch02s02.html#d0e679">2.2. Diagramme de Gantt</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Gestion des demandes</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s03.html#d0e703">3.1. Liste des demandes</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s04.html">4. Rapports</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. Activit&eacute;</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Historique</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Roadmap</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. Annonces</a></span></dt><dt><span class="section"><a href="ch02s09.html">9. Documents</a></span></dt><dt><span class="section"><a href="ch02s10.html">10. Wiki</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s10.html#d0e778">10.1. Syntaxe wiki</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s10.html#d0e782">10.1.1. Mise en forme</a></span></dt><dt><span class="section"><a href="ch02s10.html#d0e824">10.1.2. Liens</a></span></dt><dt><span class="section"><a href="ch02s10.html#d0e878">10.1.3. Images</a></span></dt></dl></dd></dl></dd><dt><span class="section"><a href="ch02s11.html">11. Fichiers</a></span></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s12.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">12.&nbsp;Informations&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;1.&nbsp;Aper&ccedil;u du projet</td></tr></table></div></body></html>
\ No newline at end of file
index 0560b3cc820fe43be10ef9400b4cf1f968e04ffd..300652e95e1e70da9015fbd8b8f1ed08fca91816 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>9.&nbsp;Documents</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02s08.html" title="8.&nbsp;Annonces"><link rel="next" href="ch02s10.html" title="10.&nbsp;Fichiers"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">9.&nbsp;Documents</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s08.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch02s10.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e769"></a>9.&nbsp;Documents</h2></div></div></div><p>Les documents sont group&eacute;s par cat&eacute;gories (voir Listes de valeurs). Un document peut contenir plusieurs fichiers (exemple: r&eacute;visions ou versions successives).</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s08.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s10.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">8.&nbsp;Annonces&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;10.&nbsp;Fichiers</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>9.&nbsp;Documents</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02s08.html" title="8.&nbsp;Annonces"><link rel="next" href="ch02s10.html" title="10.&nbsp;Wiki"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">9.&nbsp;Documents</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s08.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch02s10.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e769"></a>9.&nbsp;Documents</h2></div></div></div><p>Les documents sont group&eacute;s par cat&eacute;gories (voir Listes de valeurs). Un document peut contenir plusieurs fichiers (exemple: r&eacute;visions ou versions successives).</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s08.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s10.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">8.&nbsp;Annonces&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;10.&nbsp;Wiki</td></tr></table></div></body></html>
\ No newline at end of file
index 830747645aad5c727091009a893720e25ec7dfe7..8f53b0d8849381c53601a880fc75017fa9f1efe9 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>10.&nbsp;Fichiers</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02s09.html" title="9.&nbsp;Documents"><link rel="next" href="ch03.html" title="Chapter&nbsp;3.&nbsp;Comptes utilisateurs"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">10.&nbsp;Fichiers</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s09.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e774"></a>10.&nbsp;Fichiers</h2></div></div></div><p>Ce module vous permet de publier les diff&eacute;rents fichiers (sources, binaires, ...) pour chaque version du projet.</p><p></p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s09.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">9.&nbsp;Documents&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;3.&nbsp;Comptes utilisateurs</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>10.&nbsp;Wiki</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02s09.html" title="9.&nbsp;Documents"><link rel="next" href="ch02s11.html" title="11.&nbsp;Fichiers"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">10.&nbsp;Wiki</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s09.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch02s11.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e774"></a>10.&nbsp;Wiki</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e778"></a>10.1.&nbsp;Syntaxe wiki</h3></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="d0e782"></a>10.1.1.&nbsp;Mise en forme</h4></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p><code class="code">*gras*</code></p></li><li><p><code class="code">_italique_</code></p></li><li><p><code class="code">+soulign&eacute;+</code></p></li><li><p><code class="code">-ray&eacute;-</code></p></li><li><p><code class="code">??citation??</code></p></li><li><p><code class="code">@code@</code></p></li><li><p><code class="code">h1. titre de la page</code></p></li><li><p><code class="code">h2. titre de niveau 2</code></p></li><li><p><code class="code">h3. titre de niveau 3</code></p></li></ul></div><p></p></div><div class="section" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="d0e824"></a>10.1.2.&nbsp;Liens</h4></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p>Lien externe : <code class="code">http://www.redmine.org</code></p></li><li><p>Lien externe avec texte sp&eacute;cifique : <code class="code">"Redmine":http://www.redmine.org</code></p></li><li><p>Lien vers une page wiki (&eacute;ventuellement d'un autre projet) :</p><div class="itemizedlist"><ul type="circle"><li><p><code class="code">[[Nom de page]]</code></p></li><li><p><code class="code">[[Nom de page|Titre]]</code></p></li><li><p><code class="code">[[Projet:]]</code></p></li><li><p><code class="code">[[Projet:|Titre]]</code></p></li><li><p><code class="code">[[Projet:Nom de page]]</code></p></li><li><p><code class="code">[[Projet:Nom de page|Titre]]</code></p></li></ul></div></li></ul></div><div class="itemizedlist"><ul type="disc"><li><p>Lien vers une demande : <code class="code">#52</code></p></li><li><p>Lien vers une r&eacute;vision du d&eacute;p&ocirc;t (commit) : <code class="code">r52</code></p></li></ul></div></div><div class="section" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="d0e878"></a>10.1.3.&nbsp;Images</h4></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p>Image externe : <code class="code">!http://foo.bar/mon_image.jpg!</code></p></li><li><p>Image attach&eacute;e &agrave; la page wiki : <code class="code">!mon_image.jpg!</code></p></li><li><p>Image flotante &agrave; droite : <code class="code">!&gt;mon_image.jpg!</code></p></li></ul></div><p></p></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s09.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch02s11.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">9.&nbsp;Documents&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;11.&nbsp;Fichiers</td></tr></table></div></body></html>
\ No newline at end of file
index 22da267e221cd6a6d9bf9ebd8958144ad6549b2e..d68061fc66ee450fecae9c036d3cd51d47a371ad 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>11.&nbsp;Configuration du projet</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02s10.html" title="10.&nbsp;Fichiers"><link rel="next" href="ch03.html" title="Chapter&nbsp;3.&nbsp;Comptes utilisateurs"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">11.&nbsp;Configuration du projet</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s10.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e779"></a>11.&nbsp;Configuration du projet</h2></div></div></div><p></p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s10.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">10.&nbsp;Fichiers&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;3.&nbsp;Comptes utilisateurs</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>11.&nbsp;Fichiers</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch02.html" title="Chapter&nbsp;2.&nbsp;Projets"><link rel="prev" href="ch02s10.html" title="10.&nbsp;Wiki"><link rel="next" href="ch03.html" title="Chapter&nbsp;3.&nbsp;Comptes utilisateurs"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">11.&nbsp;Fichiers</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s10.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;2.&nbsp;Projets</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e899"></a>11.&nbsp;Fichiers</h2></div></div></div><p>Ce module vous permet de publier les diff&eacute;rents fichiers (sources, binaires, ...) pour chaque version du projet.</p><p></p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s10.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">10.&nbsp;Wiki&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;3.&nbsp;Comptes utilisateurs</td></tr></table></div></body></html>
\ No newline at end of file
index b39193e788d5c72aed2c9f613337a0a6b5e67efa..12f01495fc9509d23105d26dde15d90c9d81680c 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Chapter&nbsp;3.&nbsp;Comptes utilisateurs</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="index.html" title="Documentation"><link rel="prev" href="ch02s10.html" title="10.&nbsp;Fichiers"><link rel="next" href="ch03s01.html" title="1.&nbsp;Mon compte"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;3.&nbsp;Comptes utilisateurs</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s10.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s01.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e780"></a>Chapter&nbsp;3.&nbsp;Comptes utilisateurs</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch03s01.html">1. Mon compte</a></span></dt><dd><dl><dt><span class="section"><a href="ch03s01.html#d0e788">1.1. Informations</a></span></dt><dt><span class="section"><a href="ch03s01.html#d0e798">1.2. Changement de mot de passe</a></span></dt></dl></dd><dt><span class="section"><a href="ch03s02.html">2. Ma page</a></span></dt><dt><span class="section"><a href="ch03s03.html">3. Mot de passe perdu</a></span></dt><dt><span class="section"><a href="ch03s04.html">4. S'enregistrer</a></span></dt></dl></div><p></p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s10.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">10.&nbsp;Fichiers&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;1.&nbsp;Mon compte</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>Chapter&nbsp;3.&nbsp;Comptes utilisateurs</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="index.html" title="Documentation"><link rel="prev" href="ch02s11.html" title="11.&nbsp;Fichiers"><link rel="next" href="ch03s01.html" title="1.&nbsp;Mon compte"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;3.&nbsp;Comptes utilisateurs</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s11.html">Prev</a>&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s01.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e905"></a>Chapter&nbsp;3.&nbsp;Comptes utilisateurs</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch03s01.html">1. Mon compte</a></span></dt><dd><dl><dt><span class="section"><a href="ch03s01.html#d0e913">1.1. Informations</a></span></dt><dt><span class="section"><a href="ch03s01.html#d0e923">1.2. Changement de mot de passe</a></span></dt></dl></dd><dt><span class="section"><a href="ch03s02.html">2. Ma page</a></span></dt><dt><span class="section"><a href="ch03s03.html">3. Mot de passe perdu</a></span></dt><dt><span class="section"><a href="ch03s04.html">4. S'enregistrer</a></span></dt></dl></div><p></p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s11.html">Prev</a>&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">11.&nbsp;Fichiers&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;1.&nbsp;Mon compte</td></tr></table></div></body></html>
\ No newline at end of file
index 0b33b69ad9e68b3a9eb69617820b77c8965fc729..ce1391118c3a8f67e3f659964ce4db1a35cd8b43 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>1.&nbsp;Mon compte</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;Comptes utilisateurs"><link rel="prev" href="ch03.html" title="Chapter&nbsp;3.&nbsp;Comptes utilisateurs"><link rel="next" href="ch03s02.html" title="2.&nbsp;Ma page"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">1.&nbsp;Mon compte</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;Comptes utilisateurs</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s02.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e784"></a>1.&nbsp;Mon compte</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e788"></a>1.1.&nbsp;Informations</h3></div></div></div><p>Cet &eacute;cran vous permet de modifier les informations relatives &agrave; votre compte: nom, pr&eacute;nom, adresse mail, langue (Anglais, Allemand, Espagnol ou Fran&ccedil;ais).</p><p>Si la case <span class="guilabel">Notifications par mail</span> est d&eacute;coch&eacute;e, aucune notification par mail ne vous sera envoy&eacute;e.</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e798"></a>1.2.&nbsp;Changement de mot de passe</h3></div></div></div><p>Pour changer votre mot de passe, saisissez votre mot de passe actuel et le nouveau mot de passe souhait&eacute; (double saisie pour confirmation). Le mot de passe doit avoir une longueur comprise entre 4 et 12 caract&egrave;res.</p><p>Si votre compte utilise une authentification externe (un annuaire LDAP), vous ne pouvez pas changer votre mot de passe dans redMine.</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;3.&nbsp;Comptes utilisateurs&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;2.&nbsp;Ma page</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>1.&nbsp;Mon compte</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;Comptes utilisateurs"><link rel="prev" href="ch03.html" title="Chapter&nbsp;3.&nbsp;Comptes utilisateurs"><link rel="next" href="ch03s02.html" title="2.&nbsp;Ma page"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">1.&nbsp;Mon compte</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;Comptes utilisateurs</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s02.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e909"></a>1.&nbsp;Mon compte</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e913"></a>1.1.&nbsp;Informations</h3></div></div></div><p>Cet &eacute;cran vous permet de modifier les informations relatives &agrave; votre compte: nom, pr&eacute;nom, adresse mail, langue (Anglais, Allemand, Espagnol ou Fran&ccedil;ais).</p><p>Si la case <span class="guilabel">Notifications par mail</span> est d&eacute;coch&eacute;e, aucune notification par mail ne vous sera envoy&eacute;e.</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e923"></a>1.2.&nbsp;Changement de mot de passe</h3></div></div></div><p>Pour changer votre mot de passe, saisissez votre mot de passe actuel et le nouveau mot de passe souhait&eacute; (double saisie pour confirmation). Le mot de passe doit avoir une longueur comprise entre 4 et 12 caract&egrave;res.</p><p>Si votre compte utilise une authentification externe (un annuaire LDAP), vous ne pouvez pas changer votre mot de passe dans redMine.</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;3.&nbsp;Comptes utilisateurs&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;2.&nbsp;Ma page</td></tr></table></div></body></html>
\ No newline at end of file
index 159182bf46c480bad3b1aa4a309f4811e72433b0..012630b937f0497b6bd5bf056690cbca60430753 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>2.&nbsp;Ma page</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;Comptes utilisateurs"><link rel="prev" href="ch03s01.html" title="1.&nbsp;Mon compte"><link rel="next" href="ch03s03.html" title="3.&nbsp;Mot de passe perdu"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">2.&nbsp;Ma page</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s01.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;Comptes utilisateurs</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s03.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e805"></a>2.&nbsp;Ma page</h2></div></div></div><p>Cette page vous permet d'afficher de mani&egrave;re synth&eacute;tique des informations sur vos projets.</p><p>Pour personnaliser votre page, cliquer sur le lien <span class="guilabel">Personnaliser cette page</span>. Vous pouvez alors s&eacute;lectionner les informations &agrave; afficher et les positionner o&ugrave; vous le souhaitez sur la page, par glisser-d&eacute;poser.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03s01.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">1.&nbsp;Mon compte&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;3.&nbsp;Mot de passe perdu</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>2.&nbsp;Ma page</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;Comptes utilisateurs"><link rel="prev" href="ch03s01.html" title="1.&nbsp;Mon compte"><link rel="next" href="ch03s03.html" title="3.&nbsp;Mot de passe perdu"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">2.&nbsp;Ma page</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s01.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;Comptes utilisateurs</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s03.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e930"></a>2.&nbsp;Ma page</h2></div></div></div><p>Cette page vous permet d'afficher de mani&egrave;re synth&eacute;tique des informations sur vos projets.</p><p>Pour personnaliser votre page, cliquer sur le lien <span class="guilabel">Personnaliser cette page</span>. Vous pouvez alors s&eacute;lectionner les informations &agrave; afficher et les positionner o&ugrave; vous le souhaitez sur la page, par glisser-d&eacute;poser.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03s01.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">1.&nbsp;Mon compte&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;3.&nbsp;Mot de passe perdu</td></tr></table></div></body></html>
\ No newline at end of file
index ee5d838162e97f0aba43817d6f6fa80df5a8a2e0..54d6f61715c891addccf50c2eaad75ef3c9c5b1e 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>3.&nbsp;Mot de passe perdu</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;Comptes utilisateurs"><link rel="prev" href="ch03s02.html" title="2.&nbsp;Ma page"><link rel="next" href="ch03s04.html" title="4.&nbsp;S'enregistrer"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">3.&nbsp;Mot de passe perdu</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s02.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;Comptes utilisateurs</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s04.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e815"></a>3.&nbsp;Mot de passe perdu</h2></div></div></div><p>En cas de perte de votre mot de passe, une proc&eacute;dure par mail vous permet d'en choisir un nouveau.</p><p>Sur l'&eacute;cran d'authentification, cliquez sur <span class="guilabel">Mot de passe perdu</span>. Saisissez ensuite votre adresse mail dans le champ pr&eacute;vu et validez. Un mail vous est alors transmis. Il contient un lien qui vous permettra d'acc&eacute;der &agrave; la page de choix du nouveau mot de passe.</p><p>Si votre compte utilise une authentification externe (un annuaire LDAP), cette proc&eacute;dure n'est pas disponible.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03s02.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">2.&nbsp;Ma page&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;4.&nbsp;S'enregistrer</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>3.&nbsp;Mot de passe perdu</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;Comptes utilisateurs"><link rel="prev" href="ch03s02.html" title="2.&nbsp;Ma page"><link rel="next" href="ch03s04.html" title="4.&nbsp;S'enregistrer"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">3.&nbsp;Mot de passe perdu</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s02.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;Comptes utilisateurs</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch03s04.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e940"></a>3.&nbsp;Mot de passe perdu</h2></div></div></div><p>En cas de perte de votre mot de passe, une proc&eacute;dure par mail vous permet d'en choisir un nouveau.</p><p>Sur l'&eacute;cran d'authentification, cliquez sur <span class="guilabel">Mot de passe perdu</span>. Saisissez ensuite votre adresse mail dans le champ pr&eacute;vu et validez. Un mail vous est alors transmis. Il contient un lien qui vous permettra d'acc&eacute;der &agrave; la page de choix du nouveau mot de passe.</p><p>Si votre compte utilise une authentification externe (un annuaire LDAP), cette proc&eacute;dure n'est pas disponible.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03s02.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch03s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">2.&nbsp;Ma page&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;4.&nbsp;S'enregistrer</td></tr></table></div></body></html>
\ No newline at end of file
index f886ffdd9901ba500009c956450e6dc3a226fdcb..69e79c8673effab36b25fe43bd48d4d7b7a0bd72 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>4.&nbsp;S'enregistrer</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;Comptes utilisateurs"><link rel="prev" href="ch03s03.html" title="3.&nbsp;Mot de passe perdu"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">4.&nbsp;S'enregistrer</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s03.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;Comptes utilisateurs</th><td width="20%" align="right">&nbsp;</td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e827"></a>4.&nbsp;S'enregistrer</h2></div></div></div><p>L'enregistrement vous permet d'obtenir un compte sans intervention de l'administrateur.</p><p>Sur l'&eacute;cran d'authentification, cliquez sur <span class="guilabel">S'enregistrer</span>. Compl&eacute;tez le formulaire d'inscription et validez. Un mail vous est alors transmis. Pour activer votre compte, utilisez le lien pr&eacute;sent dans le mail qui vous a &eacute;t&eacute; envoy&eacute;.</p><p>La possibilit&eacute; de s'enregistrer peut avoir &eacute;t&eacute; d&eacute;sactiv&eacute;e par l'administrateur.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03s03.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;</td></tr><tr><td width="40%" align="left" valign="top">3.&nbsp;Mot de passe perdu&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>4.&nbsp;S'enregistrer</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="up" href="ch03.html" title="Chapter&nbsp;3.&nbsp;Comptes utilisateurs"><link rel="prev" href="ch03s03.html" title="3.&nbsp;Mot de passe perdu"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">4.&nbsp;S'enregistrer</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s03.html">Prev</a>&nbsp;</td><th width="60%" align="center">Chapter&nbsp;3.&nbsp;Comptes utilisateurs</th><td width="20%" align="right">&nbsp;</td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e952"></a>4.&nbsp;S'enregistrer</h2></div></div></div><p>L'enregistrement vous permet d'obtenir un compte sans intervention de l'administrateur.</p><p>Sur l'&eacute;cran d'authentification, cliquez sur <span class="guilabel">S'enregistrer</span>. Compl&eacute;tez le formulaire d'inscription et validez. Un mail vous est alors transmis. Pour activer votre compte, utilisez le lien pr&eacute;sent dans le mail qui vous a &eacute;t&eacute; envoy&eacute;.</p><p>La possibilit&eacute; de s'enregistrer peut avoir &eacute;t&eacute; d&eacute;sactiv&eacute;e par l'administrateur.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch03s03.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right">&nbsp;</td></tr><tr><td width="40%" align="left" valign="top">3.&nbsp;Mot de passe perdu&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;</td></tr></table></div></body></html>
\ No newline at end of file
index c5eb0ef9672fb730432d86b2b7dc944a0e99ab39..c9594a30b3d2eb4d7d4bed6f00bdefec840d65ef 100644 (file)
@@ -54,6 +54,12 @@ pre.programlisting {
     white-space: pre;
 }
 
+code.code {
+    padding: 2px; 
+    font-size: 10pt;
+    white-space: pre;
+}
+
 li p {
     margin-top: 3px;
     margin-bottom: 3px;
index 872c1b99b735809e1a674574913fe1ea4b3193fa..f9d20c11ffa95026fc7df3c5a2b8e46f9920ac6f 100644 (file)
@@ -1,3 +1,3 @@
 <html><head>
       <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-   <title>Documentation</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="next" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Documentation</th></tr><tr><td width="20%" align="left">&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="d0e1"></a>Documentation</h1></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="ch01.html">1. Administration</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html">1. Projets</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e13">1.1. Liste des projets</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e20">1.2. Cr&eacute;ation ou modification d'un projet</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e24">1.2.1. Propri&eacute;t&eacute;s du projet</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e60">1.2.2. D&eacute;p&ocirc;t</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e76">1.2.3. Wiki</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e86">1.2.4. Membres</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e91">1.2.5. Versions</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e111">1.2.6. Cat&eacute;gories des demandes</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e118">1.2.7. Forums</a></span></dt></dl></dd></dl></dd><dt><span class="section"><a href="ch01s02.html">2. Utilisateurs</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s02.html#d0e129">2.1. Liste des utilisateurs</a></span></dt><dt><span class="section"><a href="ch01s02.html#d0e159">2.2. Cr&eacute;ation ou modification d'un utilisateur</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s03.html">3. R&ocirc;les et permissions</a></span></dt><dt><span class="section"><a href="ch01s04.html">4. Trackers</a></span></dt><dt><span class="section"><a href="ch01s05.html">5. Champs personnalis&eacute;s</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s05.html#d0e275">5.1. Champs pour les projets</a></span></dt><dt><span class="section"><a href="ch01s05.html#d0e286">5.2. Champs pour les demandes</a></span></dt><dt><span class="section"><a href="ch01s05.html#d0e309">5.3. Champs pour les utilisateurs</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s06.html">6. Statut des demandes</a></span></dt><dt><span class="section"><a href="ch01s07.html">7. Workflow</a></span></dt><dt><span class="section"><a href="ch01s08.html">8. Listes de valeurs</a></span></dt><dt><span class="section"><a href="ch01s09.html">9. Notifications par mail</a></span></dt><dt><span class="section"><a href="ch01s10.html">10. Authentification</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s10.html#d0e394">10.1. Annuaire LDAP</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s11.html">11. Configuration</a></span></dt><dt><span class="section"><a href="ch01s12.html">12. Informations</a></span></dt></dl></dd><dt><span class="chapter"><a href="ch02.html">2. Projets</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s01.html">1. Aper&ccedil;u du projet</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Planning</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e647">2.1. Calendrier du projet</a></span></dt><dt><span class="section"><a href="ch02s02.html#d0e679">2.2. Diagramme de Gantt</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Gestion des demandes</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s03.html#d0e703">3.1. Liste des demandes</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s04.html">4. Rapports</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. Activit&eacute;</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Historique</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Roadmap</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. Annonces</a></span></dt><dt><span class="section"><a href="ch02s09.html">9. Documents</a></span></dt><dt><span class="section"><a href="ch02s10.html">10. Fichiers</a></span></dt></dl></dd><dt><span class="chapter"><a href="ch03.html">3. Comptes utilisateurs</a></span></dt><dd><dl><dt><span class="section"><a href="ch03s01.html">1. Mon compte</a></span></dt><dd><dl><dt><span class="section"><a href="ch03s01.html#d0e788">1.1. Informations</a></span></dt><dt><span class="section"><a href="ch03s01.html#d0e798">1.2. Changement de mot de passe</a></span></dt></dl></dd><dt><span class="section"><a href="ch03s02.html">2. Ma page</a></span></dt><dt><span class="section"><a href="ch03s03.html">3. Mot de passe perdu</a></span></dt><dt><span class="section"><a href="ch03s04.html">4. S'enregistrer</a></span></dt></dl></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;1.&nbsp;Administration</td></tr></table></div></body></html>
\ No newline at end of file
+   <title>Documentation</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.70.1"><link rel="start" href="index.html" title="Documentation"><link rel="next" href="ch01.html" title="Chapter&nbsp;1.&nbsp;Administration"></head><body><a href="http://redmine.rubyforge.org/"><img src="../redmine.png" alt="redmine"></a><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Documentation</th></tr><tr><td width="20%" align="left">&nbsp;</td><th width="60%" align="center">&nbsp;</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="d0e1"></a>Documentation</h1></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="ch01.html">1. Administration</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html">1. Projets</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e13">1.1. Liste des projets</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e20">1.2. Cr&eacute;ation ou modification d'un projet</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e24">1.2.1. Propri&eacute;t&eacute;s du projet</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e60">1.2.2. D&eacute;p&ocirc;t</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e76">1.2.3. Wiki</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e86">1.2.4. Membres</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e91">1.2.5. Versions</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e111">1.2.6. Cat&eacute;gories des demandes</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e118">1.2.7. Forums</a></span></dt></dl></dd></dl></dd><dt><span class="section"><a href="ch01s02.html">2. Utilisateurs</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s02.html#d0e129">2.1. Liste des utilisateurs</a></span></dt><dt><span class="section"><a href="ch01s02.html#d0e159">2.2. Cr&eacute;ation ou modification d'un utilisateur</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s03.html">3. R&ocirc;les et permissions</a></span></dt><dt><span class="section"><a href="ch01s04.html">4. Trackers</a></span></dt><dt><span class="section"><a href="ch01s05.html">5. Champs personnalis&eacute;s</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s05.html#d0e275">5.1. Champs pour les projets</a></span></dt><dt><span class="section"><a href="ch01s05.html#d0e286">5.2. Champs pour les demandes</a></span></dt><dt><span class="section"><a href="ch01s05.html#d0e309">5.3. Champs pour les utilisateurs</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s06.html">6. Statut des demandes</a></span></dt><dt><span class="section"><a href="ch01s07.html">7. Workflow</a></span></dt><dt><span class="section"><a href="ch01s08.html">8. Listes de valeurs</a></span></dt><dt><span class="section"><a href="ch01s09.html">9. Notifications par mail</a></span></dt><dt><span class="section"><a href="ch01s10.html">10. Authentification</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s10.html#d0e394">10.1. Annuaire LDAP</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s11.html">11. Configuration</a></span></dt><dt><span class="section"><a href="ch01s12.html">12. Informations</a></span></dt></dl></dd><dt><span class="chapter"><a href="ch02.html">2. Projets</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s01.html">1. Aper&ccedil;u du projet</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Planning</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e647">2.1. Calendrier du projet</a></span></dt><dt><span class="section"><a href="ch02s02.html#d0e679">2.2. Diagramme de Gantt</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Gestion des demandes</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s03.html#d0e703">3.1. Liste des demandes</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s04.html">4. Rapports</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. Activit&eacute;</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Historique</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Roadmap</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. Annonces</a></span></dt><dt><span class="section"><a href="ch02s09.html">9. Documents</a></span></dt><dt><span class="section"><a href="ch02s10.html">10. Wiki</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s10.html#d0e778">10.1. Syntaxe wiki</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s10.html#d0e782">10.1.1. Mise en forme</a></span></dt><dt><span class="section"><a href="ch02s10.html#d0e824">10.1.2. Liens</a></span></dt><dt><span class="section"><a href="ch02s10.html#d0e878">10.1.3. Images</a></span></dt></dl></dd></dl></dd><dt><span class="section"><a href="ch02s11.html">11. Fichiers</a></span></dt></dl></dd><dt><span class="chapter"><a href="ch03.html">3. Comptes utilisateurs</a></span></dt><dd><dl><dt><span class="section"><a href="ch03s01.html">1. Mon compte</a></span></dt><dd><dl><dt><span class="section"><a href="ch03s01.html#d0e913">1.1. Informations</a></span></dt><dt><span class="section"><a href="ch03s01.html#d0e923">1.2. Changement de mot de passe</a></span></dt></dl></dd><dt><span class="section"><a href="ch03s02.html">2. Ma page</a></span></dt><dt><span class="section"><a href="ch03s03.html">3. Mot de passe perdu</a></span></dt><dt><span class="section"><a href="ch03s04.html">4. S'enregistrer</a></span></dt></dl></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right">&nbsp;<a accesskey="n" href="ch01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">&nbsp;</td><td width="20%" align="center">&nbsp;</td><td width="40%" align="right" valign="top">&nbsp;Chapter&nbsp;1.&nbsp;Administration</td></tr></table></div></body></html>
\ No newline at end of file