git-svn-id: http://redmine.rubyforge.org/svn/trunk@7 e93f8b46-1217-0410-a6f0-8f06a7374b81pull/351/head
@ -1,12 +1,12 @@ |
||||
<div class="box"> |
||||
<h2><%=_ 'Please login' %></h2> |
||||
<h2><%=_('Please login') %></h2> |
||||
|
||||
<%= start_form_tag :action=> "login" %> |
||||
<p><label for="user_login"><%=_ 'Login' %>:</label><br/> |
||||
<input type="text" name="user[login]" id="user_login" size="30" /></p> |
||||
<p><label for="login"><%=_ 'Login' %>:</label><br/> |
||||
<%= text_field_tag 'login', nil, :size => 25 %></p> |
||||
|
||||
<p><label for="user_password"><%=_ 'Password' %>:</label><br/> |
||||
<input type="password" name="user[password]" id="user_password" size="30"/></p> |
||||
<%= password_field_tag 'password', nil, :size => 25 %></p> |
||||
|
||||
<p><input type="submit" name="login" value="<%=_ 'Log in' %> »" class="primary" /></p> |
||||
<%= end_form_tag %> |
||||
|
@ -1,4 +1,10 @@ |
||||
<h2><%=_('Information')%></h2> |
||||
|
||||
<%=_('Version')%>: <%= RDM_APP_NAME %> <%= RDM_APP_VERSION %><br /> |
||||
<%=_('Database')%>: <%= @adapter_name %> |
||||
<p><%=_('Version')%>: <strong><%= RDM_APP_NAME %> <%= RDM_APP_VERSION %></strong></p> |
||||
|
||||
Environment: |
||||
<ul> |
||||
<% Rails::Info.properties.each do |name, value| %> |
||||
<li><%= name %>: <%= value %></li> |
||||
<% end %> |
||||
</ul> |
@ -1,13 +1,13 @@ |
||||
<%= error_messages_for 'version' %> |
||||
|
||||
<!--[form:version]--> |
||||
<p><label for="version_name"><%=_('Version')%></label><br/> |
||||
<p><label for="version_name"><%=_('Version')%></label> <span class="required">*</span><br/> |
||||
<%= text_field 'version', 'name', :size => 20 %></p> |
||||
|
||||
<p><label for="version_descr"><%=_('Description')%></label><br/> |
||||
<%= text_field 'version', 'descr', :size => 60 %></p> |
||||
|
||||
<p><label for="version_date"><%=_('Date')%></label><br/> |
||||
<%= date_select 'version', 'date' %></p> |
||||
<p><label for="version_effective_date"><%=_('Date')%></label><br/> |
||||
<%= date_select 'version', 'effective_date' %></p> |
||||
<!--[eoform:version]--> |
||||
|
||||
|
@ -0,0 +1,19 @@ |
||||
# Settings specified here will take precedence over those in config/environment.rb |
||||
|
||||
# In the development environment your application's code is reloaded on |
||||
# every request. This slows down response time but is perfect for development |
||||
# since you don't have to restart the webserver when you make code changes. |
||||
config.cache_classes = false |
||||
|
||||
# Log error messages when you accidentally call methods on nil. |
||||
config.whiny_nils = true |
||||
|
||||
# Enable the breakpoint server that script/breakpointer connects to |
||||
config.breakpoint_server = true |
||||
|
||||
# Show full error reports and disable caching |
||||
config.action_controller.consider_all_requests_local = true |
||||
config.action_controller.perform_caching = false |
||||
|
||||
# Don't care if the mailer can't send |
||||
config.action_mailer.raise_delivery_errors = false |
@ -0,0 +1,19 @@ |
||||
# Settings specified here will take precedence over those in config/environment.rb |
||||
|
||||
# In the development environment your application's code is reloaded on |
||||
# every request. This slows down response time but is perfect for development |
||||
# since you don't have to restart the webserver when you make code changes. |
||||
config.cache_classes = false |
||||
|
||||
# Log error messages when you accidentally call methods on nil. |
||||
config.whiny_nils = true |
||||
|
||||
# Enable the breakpoint server that script/breakpointer connects to |
||||
config.breakpoint_server = true |
||||
|
||||
# Show full error reports and disable caching |
||||
config.action_controller.consider_all_requests_local = true |
||||
config.action_controller.perform_caching = false |
||||
|
||||
# Don't care if the mailer can't send |
||||
config.action_mailer.raise_delivery_errors = false |
@ -0,0 +1,15 @@ |
||||
# Settings specified here will take precedence over those in config/environment.rb |
||||
|
||||
# The test environment is used exclusively to run your application's |
||||
# test suite. You never need to work with it otherwise. Remember that |
||||
# your test database is "scratch space" for the test suite and is wiped |
||||
# and recreated between test runs. Don't rely on the data there! |
||||
config.cache_classes = true |
||||
|
||||
# Log error messages when you accidentally call methods on nil. |
||||
config.whiny_nils = true |
||||
|
||||
# Show full error reports and disable caching |
||||
config.action_controller.consider_all_requests_local = true |
||||
config.action_controller.perform_caching = false |
||||
|
@ -0,0 +1,15 @@ |
||||
# Settings specified here will take precedence over those in config/environment.rb |
||||
|
||||
# The test environment is used exclusively to run your application's |
||||
# test suite. You never need to work with it otherwise. Remember that |
||||
# your test database is "scratch space" for the test suite and is wiped |
||||
# and recreated between test runs. Don't rely on the data there! |
||||
config.cache_classes = true |
||||
|
||||
# Log error messages when you accidentally call methods on nil. |
||||
config.whiny_nils = true |
||||
|
||||
# Show full error reports and disable caching |
||||
config.action_controller.consider_all_requests_local = true |
||||
config.action_controller.perform_caching = false |
||||
|
@ -0,0 +1,15 @@ |
||||
# Settings specified here will take precedence over those in config/environment.rb |
||||
|
||||
# The test environment is used exclusively to run your application's |
||||
# test suite. You never need to work with it otherwise. Remember that |
||||
# your test database is "scratch space" for the test suite and is wiped |
||||
# and recreated between test runs. Don't rely on the data there! |
||||
config.cache_classes = true |
||||
|
||||
# Log error messages when you accidentally call methods on nil. |
||||
config.whiny_nils = true |
||||
|
||||
# Show full error reports and disable caching |
||||
config.action_controller.consider_all_requests_local = true |
||||
config.action_controller.perform_caching = false |
||||
|
@ -1,21 +1,62 @@ |
||||
# administration |
||||
admin: |
||||
index: administration.html |
||||
mail_options: administration.html#mail_notifications |
||||
info: administration.html#app_info |
||||
users: |
||||
index: administration.html#users |
||||
roles: |
||||
index: administration.html#roles |
||||
workflow: administration.html#workflow |
||||
trackers: |
||||
index: administration.html#trackers |
||||
issue_statuses: |
||||
index: administration.html#issue_statuses |
||||
# redMine - project management software |
||||
# Copyright (C) 2006 Jean-Philippe Lang |
||||
# |
||||
# This program is free software; you can redistribute it and/or |
||||
# modify it under the terms of the GNU General Public License |
||||
# as published by the Free Software Foundation; either version 2 |
||||
# of the License, or (at your option) any later version. |
||||
# |
||||
# This program is distributed in the hope that it will be useful, |
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
# GNU General Public License for more details. |
||||
# |
||||
# You should have received a copy of the GNU General Public License |
||||
# along with this program; if not, write to the Free Software |
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
||||
|
||||
# projects |
||||
projects: |
||||
add: projects.html#settings |
||||
# available languages for help pages |
||||
langs: |
||||
- fr |
||||
|
||||
|
||||
# issues |
||||
# mapping between controller/action and help pages |
||||
# if action is not defined here, 'index' page will be displayed |
||||
pages: |
||||
# administration |
||||
admin: |
||||
index: ch01.html |
||||
mail_options: ch01s08.html |
||||
info: ch01s09.html |
||||
users: |
||||
index: ch01s01.html |
||||
roles: |
||||
index: ch01s02.html |
||||
workflow: ch01s06.html |
||||
trackers: |
||||
index: ch01s03.html |
||||
issue_statuses: |
||||
index: ch01s05.html |
||||
# projects |
||||
projects: |
||||
index: ch02.html |
||||
add: ch02s08.html |
||||
show: ch02s01.html |
||||
add_document: ch02s06.html |
||||
list_documents: ch02s06.html |
||||
add_issue: ch02s02.html |
||||
list_issues: ch02s02.html |
||||
add_news: ch02s05.html |
||||
list_news: ch02s05.html |
||||
add_file: ch02s07.html |
||||
list_files: ch02s07.html |
||||
changelog: ch02s04.html |
||||
issues: |
||||
index: ch02s02.html |
||||
documents: |
||||
index: ch02s06.html |
||||
news: |
||||
index: ch02s05.html |
||||
versions: |
||||
index: ch02s08.html |
||||
reports: |
||||
index: ch02s03.html |
@ -1,121 +0,0 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
||||
|
||||
<head> |
||||
<title>redMine - Aide en ligne</title> |
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> |
||||
<meta name="description" content="redMine" /> |
||||
<meta name="keywords" content="issue,bug,tracker" /> |
||||
<link href="stylesheets/help.css" rel="stylesheet" type="text/css" /> |
||||
</head> |
||||
|
||||
<body> |
||||
<p align="right">[ <a href="index.html">Index</a> ]</p> |
||||
<h1>Administration</h1> |
||||
Sommaire: |
||||
<ol> |
||||
<li><a href="administration.html#users">Utilisateurs</a></li> |
||||
<li><a href="administration.html#roles">Rôles et permissions</a></li> |
||||
<li><a href="administration.html#trackers">Trackers</a></li> |
||||
<li><a href="administration.html#custom_fields">Champs personnalisés</a></li> |
||||
<li><a href="administration.html#issue_statuses">Statuts de demande</a></li> |
||||
<li><a href="administration.html#workflow">Workflow</a></li> |
||||
<li><a href="administration.html#enumerations">Listes de valeurs</a></li> |
||||
<li><a href="administration.html#mail_notifications">Notifications par mail</a></li> |
||||
<li><a href="administration.html#app_info">Informations</a></li> |
||||
</ol> |
||||
|
||||
|
||||
<h2><a name="users"></a>1. Utilisateurs</h2> |
||||
<p>Ces écrans vous permettent de gérer les utilisateurs de l'application.</p> |
||||
<h3>1.1 Liste des utilisateurs</h3> |
||||
<center><img src="images/users_list.png"><br /> |
||||
<i><small>Liste des utilisateurs</small></i></center> |
||||
<h3>1.2 Création ou modification d'un utilisateur</h3> |
||||
<ul> |
||||
<li><b>Administrateur</b>: déclare l'utilisateur comme administrateur de l'application.</li> |
||||
<li><b>Notifications par mail</b>: permet d'activer ou non l'envoi automatique de notifications par mail pour cet utilisateur</li> |
||||
<li><b>Verrouillé</b>: désactive le compte de l'utilisateur</li> |
||||
</ul> |
||||
<p>En mode modification, laissez le champ <b>Password</b> vide pour laisser le mot de passe de l'utilisateur inchangé.</p> |
||||
<p>Un utilisateur déclaré comme administrateur dispose de toutes les permissions sur l'application et sur tous les projets.</p> |
||||
|
||||
|
||||
<h2><a name="roles"></a>2. Rôles et permissions</h2> |
||||
<p>Les rôles permettent de définir les permissions des différents membres d'un projet.<br /> |
||||
Chaque membre d'un projet dispose d'un rôle unique au sein d'un projet. |
||||
Un utilisateur peut avoir différents rôles au sein de différents projets.</p> |
||||
<p>Sur l'écran d'édition du rôle, cochez les actions que vous souhaitez autoriser pour le rôle.</p> |
||||
|
||||
|
||||
<h2><a name="trackers"></a>3. Trackers</h2> |
||||
<p>Les trackers permettent de typer les demandes et de définir des workflows spécifiques pour chacun de ces types.</p> |
||||
|
||||
<h2><a name="custom_fields"></a>4. Champs personnalisés</h2> |
||||
<p>Les champs personnalisés vous permettent d'ajouter des informations supplémentaires sur les demandes.</p> |
||||
Un champ personnalisé peut être de l'un des types suivants: |
||||
<ul> |
||||
<li><b>Integer</b>: entier positif ou négatif</li> |
||||
<li><b>String</b>: chaîne de caractère</li> |
||||
<li><b>Date</b>: date</li> |
||||
<li><b>Boolean</b>: booléen (case à cocher)</li> |
||||
<li><b>List</b>: valeur à sélectionnée parmi une liste prédéfinie (liste déroulante)</li> |
||||
</ul> |
||||
Des éléments de validation peuvent être définis: |
||||
<ul> |
||||
<li><b>Required</b>: champ dont la saisie est obligatoire sur les demandes</li> |
||||
<li><b>For all projects</b>: champ automatiquement associé à l'ensemble des projets</li> |
||||
<li><b>Min - max length</b>: longueurs minimales et maximales pour les champs en saisie libre (0 signifie qu'il n'y a pas de restriction)</li> |
||||
<li><b>Regular expression</b>: expression régulière permettant de valider la valeur saisie</li> |
||||
<li><b>Possible values (only for lists)</b>: valeurs possibles pour les champs de type "List". Les valeurs sont séparées par le caractère |</li> |
||||
</ul> |
||||
<p>Si l'option <b>For all projects</b> n'est pas activée, chaque projet pourra ou non utilisé le champ personnalisé pour ses demandes |
||||
(voir <a href="projects.html#settings">Project settings</a>).</p> |
||||
|
||||
|
||||
<h2><a name="issue_statuses"></a>5. Statuts des demandes</h2> |
||||
<p>Cet écran vous permet de définir les différents statuts possibles des demandes.</p> |
||||
<ul> |
||||
<li><b>Closed</b>: indique que le statut correspond à une demande considérée comme fermée</li> |
||||
<li><b>Default</b>: statut appliqué par défaut aux nouvelles demandes (seul un statut peut être déclaré comme statut par défaut)</li> |
||||
<li><b>HTML color</b>: code de couleur HTML représentant le statut à l'affichage</li> |
||||
</ul> |
||||
|
||||
|
||||
<h2><a name="workflow"></a>6. Workflow</h2> |
||||
<p>Le workflow permet de définir quels changements les différents membres d'un projet sont autorisés à effectuer sur le statut des demandes, en fonction de leur type.</p> |
||||
<p>Sélectionnez le rôle et le type de demande pour lesquels vous souhaitez modifier le workflow, puis cliquez sur <b>Edit</b>. |
||||
L'écran vous permet alors de modifier, pour le rôle et le type de demande choisi, les changements autorisés.</p> |
||||
<p>Les lignes représentent les statuts initiaux des demandes. Les colonnes représentent les statuts autorisés à être appliqués.</p> |
||||
<p>Dans l'exemple ci-dessous, les demandes de type Bug au statut New pourront être passées au statut Assigned ou Resolved par le rôle Développeur.<br /> |
||||
Celles au statut Assigned pourront être passées au statut Resolved.<br /> |
||||
Le statut de toutes les autres demandes de type Bug ne pourra pas être modifié par le Développeur.</p> |
||||
<center><img src="images/workflow.png"><br /> |
||||
<i><small>Exemple de configuration d'un workflow</small></i></center> |
||||
<p><b>Remarque</b>: pour qu'un rôle puisse changer le statut des demandes, la permission <i>"Changer le statut des demandes"</i> doit lui être explicitement donnée indépendemment de la configuration du workflow (voir <a href="#roles">Roles et permissions</a>). |
||||
|
||||
|
||||
<h2><a name="enumerations"></a>7. Listes de valeurs</h2> |
||||
<p>Les listes de valeurs utilisées par l'application (exemple: les priorités des demandes) peuvent être personnalisées en fonction de vos besoins.<br /> |
||||
Cet écran vous permet de définir les valeurs possibles pour chacune des listes suivantes:</p> |
||||
<ul> |
||||
<li><b>Priorités des demandes</b></li> |
||||
<li><b>Catégories de documents</b></li> |
||||
</ul> |
||||
|
||||
|
||||
<h2><a name="mail_notifications"></a>8. Notifications par mail</h2> |
||||
<p>Cet écran vous permet de sélectionner les actions qui donneront lieu à une notification par mail aux membres du projet.</p> |
||||
<p><b>Remarque</b>: l'envoi de mails doit être activé dans la configuration de l'application si souhaitez effectuer des notifications.</p> |
||||
|
||||
|
||||
<h2><a name="app_info"></a>9. Informations</h2> |
||||
<p>Affiche des informations relatives à l'application</p> |
||||
<ul> |
||||
<li><b>Version</b>: version de l'application</li> |
||||
<li><b>Database</b>: type de base de données utilisée</li> |
||||
</ul> |
||||
|
||||
|
||||
</body> |
||||
</html> |
||||
|
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>Chapter 1. Administration</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 redMine"><link rel="up" href="index.html" title="Documentation redMine"><link rel="prev" href="index.html" title="Documentation redMine"><link rel="next" href="ch01s01.html" title="1. Utilisateurs"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 1. Administration</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="ch01s01.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e4"></a>Chapter 1. Administration</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch01s01.html">1. Utilisateurs</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e12">1.1. Liste des utilisateurs</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e26">1.2. Création ou modification d'un utilisateur</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s02.html">2. Rôles et permissions</a></span></dt><dt><span class="section"><a href="ch01s03.html">3. Trackers</a></span></dt><dt><span class="section"><a href="ch01s04.html">4. Champs personnalisés</a></span></dt><dt><span class="section"><a href="ch01s05.html">5. Statut des demandes</a></span></dt><dt><span class="section"><a href="ch01s06.html">6. Workflow</a></span></dt><dt><span class="section"><a href="ch01s07.html">7. Listes de valeurs</a></span></dt><dt><span class="section"><a href="ch01s08.html">8. Notifications par mail</a></span></dt><dt><span class="section"><a href="ch01s09.html">9. Informations</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="index.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="ch01s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Documentation redMine </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 1. Utilisateurs</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>1. 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 redMine"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01.html" title="Chapter 1. Administration"><link rel="next" href="ch01s02.html" title="2. Rôles et permissions"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">1. Utilisateurs</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01.html">Prev</a> </td><th width="60%" align="center">Chapter 1. Administration</th><td width="20%" align="right"> <a accesskey="n" href="ch01s02.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="d0e7"></a>1. Utilisateurs</h2></div></div></div><p>Ces écrans vous permettent de gérer les utilisateurs de l'application.</p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e12"></a>1.1. Liste des utilisateurs</h3></div></div></div><p></p><div class="screenshot"><div class="mediaobject"><img src="resources/users_list.png"></div></div><p>Les boutons Lock/Unlock vous permettent de vérouiller/dévérouiller les comptes utilisateurs.</p><p>Un utilisateur dont le compte est vérouillé ne peut plus s'identifier pour accéder à l'application.</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e26"></a>1.2. Création ou modification d'un utilisateur</h3></div></div></div><p>En mode modification, laissez le champ Password vide pour laisser le mot de passe de l'utilisateur inchangé.</p><p>Un utilisateur déclaré comme administrateur dispose de toutes les permissions sur l'application et sur tous les projets.</p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Administrateur</span>: déclare l'utilisateur comme administrateur de l'application.</p></li><li><p><span class="guilabel">Notifications par mail</span>: permet d'activer ou non l'envoi automatique de notifications par mail pour cet utilisateur</p></li><li><p><span class="guilabel">Vérouillé</span>: désactive le compte de l'utilisateur</p></li></ul></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 1. Administration </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 2. Rôles et permissions</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>2. Rôles et permissions</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 redMine"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s01.html" title="1. Utilisateurs"><link rel="next" href="ch01s03.html" title="3. Trackers"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">2. Rôles et permissions</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s01.html">Prev</a> </td><th width="60%" align="center">Chapter 1. Administration</th><td width="20%" align="right"> <a accesskey="n" href="ch01s03.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="d0e49"></a>2. Rôles et permissions</h2></div></div></div><p>Les rôles permettent de définir les permissions des différents membres d'un projet. Chaque membre d'un projet dispose d'un rôle unique au sein d'un projet. Un utilisateur peut avoir différents rôles au sein de différents projets.</p><p>Sur l'écran d'édition du rôle, cochez les actions que vous souhaitez autoriser pour le rôle.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s01.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">1. Utilisateurs </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 3. Trackers</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>3. Trackers</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 redMine"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s02.html" title="2. Rôles et permissions"><link rel="next" href="ch01s04.html" title="4. Champs personnalisés"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">3. Trackers</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s02.html">Prev</a> </td><th width="60%" align="center">Chapter 1. Administration</th><td width="20%" align="right"> <a accesskey="n" href="ch01s04.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="d0e56"></a>3. Trackers</h2></div></div></div><p>Les trackers permettent de typer les demandes et de définir des workflows spécifiques pour chacun de ces types.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s02.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">2. Rôles et permissions </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 4. Champs personnalisés</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>4. Champs personnalisés</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 redMine"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s03.html" title="3. Trackers"><link rel="next" href="ch01s05.html" title="5. Statut des demandes"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">4. Champs personnalisés</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s03.html">Prev</a> </td><th width="60%" align="center">Chapter 1. Administration</th><td width="20%" align="right"> <a accesskey="n" href="ch01s05.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="d0e61"></a>4. Champs personnalisés</h2></div></div></div><p>Les champs personnalisés vous permettent d'ajouter des informations supplémentaires sur les demandes. Un champ personnalisé peut être de l'un des types suivants:</p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Integer</span>: entier positif ou négatif</p></li><li><p><span class="guilabel">String</span>: chaîne de caractère</p></li><li><p><span class="guilabel">Date</span>: date</p></li><li><p><span class="guilabel">Boolean</span>: booléen (case à cocher)</p></li><li><p><span class="guilabel">List</span>: valeur à sélectionnée parmi une liste prédéfinie (liste déroulante)</p></li></ul></div><p>Des éléments de validation peuvent être définis:</p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Obligatoire</span>: champ dont la saisie est obligatoire sur les demandes</p></li><li><p><span class="guilabel">Pour tous les projects</span>: champ automatiquement associé à l'ensemble des projets</p></li><li><p><span class="guilabel">Min - max length</span>: longueurs minimales et maximales pour les champs en saisie libre (0 signifie qu'il n'y a pas de restriction)</p></li><li><p><span class="guilabel">Expression régulière</span>: expression régulière permettant de valider la valeur saisie</p></li><li><p><span class="guilabel">Valeurs possibles</span>: valeurs possibles pour les champs de type "Liste". Les valeurs sont séparées par le caractère |</p></li></ul></div><p>Si l'option <span class="guilabel">Pour tous les projets</span> n'est pas activée, chaque projet pourra choisir d'utiliser ou non le champ pour ses demandes.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s03.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s05.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">3. Trackers </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 5. Statut des demandes</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>5. Statut des demandes</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 redMine"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s04.html" title="4. Champs personnalisés"><link rel="next" href="ch01s06.html" title="6. Workflow"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">5. Statut des demandes</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s04.html">Prev</a> </td><th width="60%" align="center">Chapter 1. Administration</th><td width="20%" align="right"> <a accesskey="n" href="ch01s06.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="d0e125"></a>5. Statut des demandes</h2></div></div></div><p>Ces écrans vous permettent de définir les différents statuts possibles des demandes.</p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Demande fermée</span>: indique que le statut correspond à une demande considérée comme fermée</p></li><li><p><span class="guilabel">Statut par défaut</span>: statut appliqué par défaut aux nouvelles demandes (seul un statut peut être déclaré comme statut par défaut)</p></li><li><p><span class="guilabel">Couleur</span>: code couleur HTML (6 caractères) représentant le statut à l'affichage</p></li></ul></div><p></p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s04.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s06.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">4. Champs personnalisés </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 6. Workflow</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>6. Workflow</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 redMine"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s05.html" title="5. Statut des demandes"><link rel="next" href="ch01s07.html" title="7. Listes de valeurs"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">6. Workflow</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s05.html">Prev</a> </td><th width="60%" align="center">Chapter 1. Administration</th><td width="20%" align="right"> <a accesskey="n" href="ch01s07.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="d0e147"></a>6. Workflow</h2></div></div></div><p>Le workflow permet de définir les changements que les différents membres d'un projet sont autorisés à effectuer sur les demandes, en fonction de leur type.</p><p>Sélectionnez le rôle et le tracker pour lesquels vous souhaitez modifier le workflow, puis cliquez sur Edit. L'écran vous permet alors de modifier, pour le rôle et le tracker choisi, les changements autorisés. Les lignes représentent les statuts initiaux des demandes. Les colonnes représentent les statuts autorisés à être appliqués.</p><p>Remarque: pour qu'un rôle puisse changer le statut des demandes, la permission doit lui être explicitement donnée indépendemment de la configuration du workflow.</p><p></p><div class="screenshot"><div class="mediaobject"><img src="resources/workflow.png"></div></div><p>Dans l'exemple ci-dessus, les demandes de type Bug au statut Nouveau pourront être passées au statut Assignée ou Résolue par le rôle Développeur. Celles au statut Assignée pourront être passées au statut Résolue. Le statut de toutes les autres demandes de type Bug ne pourra pas être modifié par le Développeur.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s05.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s07.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">5. Statut des demandes </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 7. Listes de valeurs</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>7. Listes de valeurs</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 redMine"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s06.html" title="6. Workflow"><link rel="next" href="ch01s08.html" title="8. Notifications par mail"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">7. Listes de valeurs</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s06.html">Prev</a> </td><th width="60%" align="center">Chapter 1. Administration</th><td width="20%" align="right"> <a accesskey="n" href="ch01s08.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="d0e165"></a>7. Listes de valeurs</h2></div></div></div><p>Les listes de valeurs utilisées par l'application (exemple: les priorités des demandes) peuvent être personnalisées. Cet écran vous permet de définir les valeurs possibles pour chacune des listes suivantes:</p><div class="itemizedlist"><ul type="disc"><li><p>Priorités des demandes</p></li><li><p>Catégories de documents</p></li></ul></div><p></p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s06.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s08.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">6. Workflow </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 8. Notifications par mail</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>8. Notifications par mail</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 redMine"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s07.html" title="7. Listes de valeurs"><link rel="next" href="ch01s09.html" title="9. Informations"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">8. Notifications par mail</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s07.html">Prev</a> </td><th width="60%" align="center">Chapter 1. Administration</th><td width="20%" align="right"> <a accesskey="n" href="ch01s09.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="d0e178"></a>8. Notifications par mail</h2></div></div></div><p>Cet écran vous permet de sélectionner les actions qui donneront lieu à une notification par mail aux membres du projet.</p><p>Remarque: l'envoi de mails doit être activé dans la configuration de l'application si souhaitez effectuer des notifications.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s07.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s09.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">7. Listes de valeurs </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 9. Informations</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>9. Informations</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 redMine"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s08.html" title="8. Notifications par mail"><link rel="next" href="ch02.html" title="Chapter 2. Projets"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">9. Informations</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s08.html">Prev</a> </td><th width="60%" align="center">Chapter 1. Administration</th><td width="20%" align="right"> <a accesskey="n" href="ch02.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="d0e185"></a>9. Informations</h2></div></div></div><p>Affiche des informations relatives à l'application et à son environnement.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s08.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">8. Notifications par mail </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 2. Projets</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>Chapter 2. 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 redMine"><link rel="up" href="index.html" title="Documentation redMine"><link rel="prev" href="ch01s09.html" title="9. Informations"><link rel="next" href="ch02s01.html" title="1. Aperçu du projet"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 2. Projets</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s09.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <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="d0e190"></a>Chapter 2. 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çu du projet</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Gestion des demandes</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e204">2.1. Liste des demandes</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Rapports</a></span></dt><dt><span class="section"><a href="ch02s04.html">4. Historique</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. Annonces</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Documents</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Fichiers</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. Configuration du projet</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s08.html#d0e248">8.1. Propriétés du projet</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e264">8.2. Membres</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e269">8.3. Versions</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e274">8.4. Catégories des demandes</a></span></dt></dl></dd></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="ch01s09.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="ch02s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">9. Informations </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 1. Aperçu du projet</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>1. Aperçu 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 redMine"><link rel="up" href="ch02.html" title="Chapter 2. Projets"><link rel="prev" href="ch02.html" title="Chapter 2. Projets"><link rel="next" href="ch02s02.html" title="2. Gestion des demandes"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">1. Aperçu du projet</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projets</th><td width="20%" align="right"> <a accesskey="n" href="ch02s02.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="d0e194"></a>1. Aperçu du projet</h2></div></div></div><p>L'aperçu vous présente les informations générales relatives au projet, les principaux membres, les dernières annonces, ainsi qu'une synthèse du nombre de demandes ouvertes par tracker.</p><p></p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 2. Projets </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 2. Gestion des demandes</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>2. Gestion des demandes</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 redMine"><link rel="up" href="ch02.html" title="Chapter 2. Projets"><link rel="prev" href="ch02s01.html" title="1. Aperçu du projet"><link rel="next" href="ch02s03.html" title="3. Rapports"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">2. Gestion des demandes</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s01.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projets</th><td width="20%" align="right"> <a accesskey="n" href="ch02s03.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="d0e200"></a>2. Gestion des demandes</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e204"></a>2.1. Liste des demandes</h3></div></div></div><p>Par défaut, l'ensemble des demandes ouvertes du projet sont affichées. Différents filtres vous permettent de sélectionner les demandes à afficher. Si le projet comporte des sous-projets, vous avez la possibilité d'afficher également les demandes relatives aux sous-projets (non affichées par défaut).</p><p>Une fois appliqué, un filtre reste valable durant toute votre session. Vous pouvez le redéfinir, ou le supprimer en cliquant sur Annuler.</p><p></p><div class="screenshot"><div class="mediaobject"><img src="resources/issues_list.png"></div></div><p></p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s01.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">1. Aperçu du projet </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 3. Rapports</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>3. Rapports</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 redMine"><link rel="up" href="ch02.html" title="Chapter 2. Projets"><link rel="prev" href="ch02s02.html" title="2. Gestion des demandes"><link rel="next" href="ch02s04.html" title="4. Historique"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">3. Rapports</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s02.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projets</th><td width="20%" align="right"> <a accesskey="n" href="ch02s04.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="d0e219"></a>3. Rapports</h2></div></div></div><p>Cet écran présente la synthèse du nombre de demandes par statut et selon différents critères (tracker, priorité, catégorie). Des liens directs permettent d'accéder à la liste détaillée des demandes pour chaque critère.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s02.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">2. Gestion des demandes </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 4. Historique</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>4. Historique</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 redMine"><link rel="up" href="ch02.html" title="Chapter 2. Projets"><link rel="prev" href="ch02s03.html" title="3. Rapports"><link rel="next" href="ch02s05.html" title="5. Annonces"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">4. Historique</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s03.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projets</th><td width="20%" align="right"> <a accesskey="n" href="ch02s05.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="d0e224"></a>4. Historique</h2></div></div></div><p>Cette page présente l'ensemble des demandes résolues dans chacune des versions du projet. Certains types de demande peuvent être exclus de cet affichage.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s03.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s05.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">3. Rapports </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 5. Annonces</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>5. Annonces</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 redMine"><link rel="up" href="ch02.html" title="Chapter 2. Projets"><link rel="prev" href="ch02s04.html" title="4. Historique"><link rel="next" href="ch02s06.html" title="6. Documents"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">5. Annonces</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s04.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projets</th><td width="20%" align="right"> <a accesskey="n" href="ch02s06.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="d0e229"></a>5. Annonces</h2></div></div></div><p>Les nouvelles vous permettent d'informer les utilisateurs sur l'activité du projet.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s04.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s06.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">4. Historique </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 6. Documents</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>6. 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 redMine"><link rel="up" href="ch02.html" title="Chapter 2. Projets"><link rel="prev" href="ch02s05.html" title="5. Annonces"><link rel="next" href="ch02s07.html" title="7. Fichiers"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">6. Documents</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s05.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projets</th><td width="20%" align="right"> <a accesskey="n" href="ch02s07.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="d0e234"></a>6. Documents</h2></div></div></div><p>Les documents sont groupés par catégories (voir Listes de valeurs). Un document peut contenir plusieurs fichiers (exemple: ré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="ch02s05.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s07.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">5. Annonces </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 7. Fichiers</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>7. 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 redMine"><link rel="up" href="ch02.html" title="Chapter 2. Projets"><link rel="prev" href="ch02s06.html" title="6. Documents"><link rel="next" href="ch02s08.html" title="8. Configuration du projet"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">7. Fichiers</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s06.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projets</th><td width="20%" align="right"> <a accesskey="n" href="ch02s08.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="d0e239"></a>7. Fichiers</h2></div></div></div><p>Ce module vous permet de publier les différents fichiers (sources, binaires, ...) pour chaque version de l'application.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s06.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s08.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">6. Documents </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 8. Configuration du projet</td></tr></table></div></body></html> |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>8. 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 redMine"><link rel="up" href="ch02.html" title="Chapter 2. Projets"><link rel="prev" href="ch02s07.html" title="7. Fichiers"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">8. Configuration du projet</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s07.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projets</th><td width="20%" align="right"> </td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e244"></a>8. Configuration du projet</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e248"></a>8.1. Propriétés du projet</h3></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Public</span>: si le projet est public, il sera visible (consultation des demandes, des documents, ...) pour l'ensemble des utilisateurs, y compris ceux qui ne sont pas membres du projet. Si le projet n'est pas public, seuls les membres du projet y ont accès, en fonction de leur rôle.</p></li><li><p><span class="guilabel">Champs personnalisés</span>: sélectionner les champs personnalisés que vous souhaitez utiliser au sein du projet. Seul l'administrateur peut ajouter de nouveaux champs personnalisés.</p></li></ul></div><p></p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e264"></a>8.2. Membres</h3></div></div></div><p>Cet écran vous permet de définir les membres du projet ainsi que leurs rôles respectifs. Un utilisateur ne peut avoir qu'un rôle au sein d'un projet donné. Le rôle d'un membre détermine les permissions dont il bénéficie sur le projet.</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e269"></a>8.3. Versions</h3></div></div></div><p>Les versions vous permettent de suivre les changements survenus tout au long du projet. A la fermeture d'une demande, vous pouvez par exemple indiquer quelle version la prend en compte. Vous pouvez par ailleurs publier les différentes versions de l'application (voir Fichiers).</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e274"></a>8.4. Catégories des demandes</h3></div></div></div><p>Les catégories de demande vous permettent de typer les demandes. Les catégories peuvent par exemple correspondre aux différents modules du projet.</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s07.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">7. Fichiers </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html> |
@ -0,0 +1,55 @@ |
||||
body { |
||||
background: #FFFFFF; |
||||
font: 0.8em Verdana,Tahoma,Arial,sans-serif; |
||||
} |
||||
|
||||
h1, h2, h3, h4, h5 { |
||||
color: #800000; |
||||
font-family: sans-serif; |
||||
} |
||||
|
||||
table { |
||||
font-size: 1em; |
||||
} |
||||
|
||||
a{ |
||||
color:#467aa7; |
||||
font-weight:bold; |
||||
text-decoration:none; |
||||
background-color:inherit; |
||||
} |
||||
|
||||
a:hover{ |
||||
color: #800000; |
||||
text-decoration:underline; |
||||
background-color:inherit; |
||||
} |
||||
|
||||
a img{border:none;} |
||||
|
||||
.screenshot { |
||||
text-align: center; |
||||
} |
||||
|
||||
.guilabel { |
||||
font-weight: bold; |
||||
} |
||||
|
||||
span.term { |
||||
font-weight: bold; |
||||
} |
||||
|
||||
div.sidebar { |
||||
background: #F0F0F0; |
||||
border: 1px solid gray; |
||||
padding: 5px; |
||||
margin: 20px; |
||||
} |
||||
|
||||
pre.programlisting { |
||||
background: #F0F0F0; |
||||
border: 1px solid gray; |
||||
padding: 2px; |
||||
font-size: 10pt; |
||||
white-space: pre; |
||||
} |
@ -0,0 +1,3 @@ |
||||
<html><head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
||||
<title>Documentation redMine</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 redMine"><link rel="next" href="ch01.html" title="Chapter 1. Administration"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Documentation redMine</th></tr><tr><td width="20%" align="left"> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <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 redMine</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. Utilisateurs</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e12">1.1. Liste des utilisateurs</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e26">1.2. Création ou modification d'un utilisateur</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s02.html">2. Rôles et permissions</a></span></dt><dt><span class="section"><a href="ch01s03.html">3. Trackers</a></span></dt><dt><span class="section"><a href="ch01s04.html">4. Champs personnalisés</a></span></dt><dt><span class="section"><a href="ch01s05.html">5. Statut des demandes</a></span></dt><dt><span class="section"><a href="ch01s06.html">6. Workflow</a></span></dt><dt><span class="section"><a href="ch01s07.html">7. Listes de valeurs</a></span></dt><dt><span class="section"><a href="ch01s08.html">8. Notifications par mail</a></span></dt><dt><span class="section"><a href="ch01s09.html">9. 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çu du projet</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Gestion des demandes</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s02.html#d0e204">2.1. Liste des demandes</a></span></dt></dl></dd><dt><span class="section"><a href="ch02s03.html">3. Rapports</a></span></dt><dt><span class="section"><a href="ch02s04.html">4. Historique</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. Annonces</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Documents</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Fichiers</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. Configuration du projet</a></span></dt><dd><dl><dt><span class="section"><a href="ch02s08.html#d0e248">8.1. Propriétés du projet</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e264">8.2. Membres</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e269">8.3. Versions</a></span></dt><dt><span class="section"><a href="ch02s08.html#d0e274">8.4. Catégories des demandes</a></span></dt></dl></dd></dl></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="ch01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"> </td><td width="20%" align="center"> </td><td width="40%" align="right" valign="top"> Chapter 1. Administration</td></tr></table></div></body></html> |
After Width: | Height: | Size: 8.0 KiB |
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 4.9 KiB |
@ -1,64 +0,0 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
||||
|
||||
<head> |
||||
<title>redMine - Aide en ligne</title> |
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> |
||||
<meta name="description" content="redMine" /> |
||||
<meta name="keywords" content="issue,bug,tracker" /> |
||||
<link href="stylesheets/help.css" rel="stylesheet" type="text/css" /> |
||||
</head> |
||||
|
||||
<body> |
||||
<h1>Aide</h1> |
||||
|
||||
<p>Documentation en ligne redMine</p> |
||||
|
||||
Sommaire: |
||||
<ul> |
||||
|
||||
<li> |
||||
<a href="administration.html">Administration</a> |
||||
<ol> |
||||
<li><a href="administration.html#users">Utilisateur</a></li> |
||||
<li><a href="administration.html#roles">Rôles et permissions</a></li> |
||||
<li><a href="administration.html#trackers">Trackers</a></li> |
||||
<li><a href="administration.html#custom_fields">Champs personnalisés</a></li> |
||||
<li><a href="administration.html#issue_statuses">Statuts de demande</a></li> |
||||
<li><a href="administration.html#workflow">Workflow</a></li> |
||||
<li><a href="administration.html#enumerations">Liste de valeurs</a></li> |
||||
<li><a href="administration.html#mail_notifications">Notifications par mail</a></li> |
||||
<li><a href="administration.html#app_info">Informations</a></li> |
||||
</ol> |
||||
</li> |
||||
|
||||
<li><a href="projects.html">Projets</a> |
||||
<ol> |
||||
<li><a href="projects.html#overview">Aperçu</a></li> |
||||
<li><a href="projects.html#issues">Demandes</a> |
||||
<ul> |
||||
<li>Liste des demandes</li> |
||||
<li>Nouvelle demande</li> |
||||
<li>Changer le statut d'une demande</li> |
||||
</ul> |
||||
</li> |
||||
<li><a href="projects.html#reports">Rapports</a></li> |
||||
<li><a href="projects.html#news">Annonces</a></li> |
||||
<li><a href="projects.html#changelog">Historique</a></li> |
||||
<li><a href="projects.html#documents">Documents</a></li> |
||||
<li><a href="projects.html#members">Membres</a></li> |
||||
<li><a href="projects.html#files">Fichiers</a></li> |
||||
<li><a href="projects.html#settings">Configuration</a></li> |
||||
<ul> |
||||
<li>Projet</li> |
||||
<li>Membres</li> |
||||
<li>Versions</li> |
||||
<li>Catégories de demande</li> |
||||
</ul> |
||||
</ol> |
||||
</li> |
||||
|
||||
|
||||
</ul> |
||||
|
||||
</body> |
||||
</html> |
@ -1,109 +0,0 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
||||
|
||||
<head> |
||||
<title>redMine - Aide en ligne</title> |
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> |
||||
<meta name="description" content="redMine" /> |
||||
<meta name="keywords" content="issue,bug,tracker" /> |
||||
<link href="stylesheets/help.css" rel="stylesheet" type="text/css" /> |
||||
</head> |
||||
|
||||
<body> |
||||
<p align="right">[ <a href="index.html">Index</a> ]</p> |
||||
<h1>Projets</h1> |
||||
Sommaire: |
||||
<ol> |
||||
<li><a href="projects.html#overview">Aperçu</a></li> |
||||
<li><a href="projects.html#issues">Demandes</a> |
||||
<ul> |
||||
<li>Liste des demandes</li> |
||||
<li>Nouvelle demande</li> |
||||
<li>Changer le statut d'une demande</li> |
||||
</ul> |
||||
</li> |
||||
<li><a href="projects.html#reports">Rapports</a></li> |
||||
<li><a href="projects.html#news">Annonces</a></li> |
||||
<li><a href="projects.html#changelog">Historique</a></li> |
||||
<li><a href="projects.html#documents">Documents</a></li> |
||||
<li><a href="projects.html#members">Membres</a></li> |
||||
<li><a href="projects.html#files">Fichiers</a></li> |
||||
<li><a href="projects.html#settings">Configuration</a></li> |
||||
<ul> |
||||
<li>Projet</li> |
||||
<li>Membres</li> |
||||
<li>Versions</li> |
||||
<li>Catégories de demande</li> |
||||
</ul> |
||||
</ol> |
||||
|
||||
|
||||
<h2><a name="overview"></a>1. Aperçu</h2> |
||||
<p>L'aperçu vous présente les informations générales relatives au projet, les principaux membres, les dernières annonces, ainsi qu'une synthèse du nombre de demandes ouvertes par tracker. |
||||
|
||||
|
||||
<h2><a name="issues"></a>2. Demandes</h2> |
||||
<h3>2.1 Liste des demandes</h3> |
||||
Par défaut, l'ensemble des demandes sont affichées. Vous pouvez utiliser les différents filtres pour limiter l'affichage à certaines demandes seulement.<br /> |
||||
Lorsque vous appliquez un filtre, il reste en place durant toute votre session. Vous pouvez le redéfinir, ou le supprimer en cliquant sur <b>Annuler</b>. |
||||
<center><img src="images/issues_list.png"><br /> |
||||
<i><small>Liste des demandes</small></i></center> |
||||
|
||||
<h3>2.2 Nouvelle demande</h3> |
||||
<p>TODO</p> |
||||
|
||||
<h3>2.3 Changer le statut d'une demande</h3> |
||||
<p>TODO</p> |
||||
|
||||
|
||||
<h2><a name="reports"></a>3. Rapports</h2> |
||||
<p>Synthèse du nombre de demandes par statut et selon différents critères (tracker, priorité, catégorie). |
||||
Des liens directs permettent d'accéder à la liste détaillée des demandes pour chaque critère.</p> |
||||
|
||||
|
||||
<h2><a name="news"></a>4. Annonces</h2> |
||||
<p>Les nouvelles vous permettent d'informer les utilisateurs sur l'activité du projet.</p> |
||||
|
||||
|
||||
<h2><a name="changelog"></a>5. Historique</h2> |
||||
<p>Cette page présente l'ensemble des demandes résolues dans chacune des versions du projet. |
||||
Certains types de demande peuvent être exclus de cet affichage (voir <a href="administration.html#trackers">Trackers</a>).</p> |
||||
|
||||
|
||||
<h2><a name="documents"></a>6. Documents</h2> |
||||
<p>Les documents sont groupés par catégories (voir <a href="administration.html#enumerations">Listes de valeurs</a>).<br /> |
||||
Un document peut contenir plusieurs fichiers (exemple: révisions ou versions successives)</p> |
||||
|
||||
|
||||
<h2><a name="members"></a>7. Membres</h2> |
||||
<p>Affichage de l'ensemble des membres du projet, par rôle</p> |
||||
|
||||
|
||||
<h2><a name="files"></a>8. Fichiers</h2> |
||||
<p>Ce module vous permet de publier les fichiers de l'application (sources, binaires, ...) pour chaque version de l'application .</p> |
||||
|
||||
<h2><a name="settings"></a>9. Configuration</h2> |
||||
<h3>9.1 Projet</h3> |
||||
<ul> |
||||
<li><b>Public</b>: si le projet est public, il sera visible (consultation des demandes, des documents, ...) pour l'ensemble des utilisateurs, y compris ceux qui ne sont pas membres du projet.<br /> |
||||
Si le projet n'est pas public, seuls les membres du projet y ont accès, en fonction de leur rôle.</li> |
||||
<li><b>Champs personnalisés</b>: sélectionner les champs personnalisés que vous souhaitez utiliser au sein du projet.<br /> |
||||
Seul l'administrateur peut ajouter de nouveaux champs personnalisés.</li> |
||||
</ul> |
||||
<h3>9.2 Membres</h3> |
||||
<p>Cette section vous permet de définir les membres du projet ainsi que leurs rôles respectifs.<br /> |
||||
Un utilisateur ne peut avoir qu'un rôle au sein d'un projet donné. Le rôle d'un membre détermine les permissions dont il bénéficie sur le projet.</p> |
||||
|
||||
<h3>9.3 Versions</h3> |
||||
<p>Les versions vous permettent de suivre les changements survenus tout au long du projet. |
||||
A la fermeture d'une demande, vous pouvez indiquer quelle version la prend en compte.<br /> |
||||
Vous pouvez par ailleurs publier les différentes versions de l'application (voir <a href="projects.html#files">Fichiers</a>). |
||||
</p> |
||||
|
||||
|
||||
<h3>9.4 Catégories de demande</h3> |
||||
<p>Les catégories de demande vous permettent de typer les demandes. Les catégories peuvent par exemple correspondre aux modules de l'application.</p> |
||||
|
||||
|
||||
</body> |
||||
</html> |
||||
|
@ -1,70 +0,0 @@ |
||||
/* andreas08 - an open source xhtml/css website layout by Andreas Viklund - http://andreasviklund.com . Free to use in any way and for any purpose as long as the proper credits are given to the original designer. Version: 1.0, November 28, 2005 */ |
||||
|
||||
/**************** Body and tag styles ****************/ |
||||
|
||||
|
||||
|
||||
body{ |
||||
font:76% Verdana,Tahoma,Arial,sans-serif; |
||||
line-height:1.4em; |
||||
color:#303030; |
||||
margin: 20px; |
||||
} |
||||
|
||||
a{ |
||||
color:#467aa7; |
||||
font-weight:bold; |
||||
text-decoration:none; |
||||
background-color:inherit; |
||||
} |
||||
|
||||
a:hover{color:#2a5a8a; text-decoration:none; background-color:inherit;} |
||||
a img{border:none;} |
||||
|
||||
p{padding:0 0 0.2em 0;} |
||||
p form{margin-top:0; margin-bottom:20px;} |
||||
|
||||
h1 { |
||||
display:block; |
||||
|
||||
font-size:1.7em; |
||||
font-weight:normal; |
||||
letter-spacing:-1px; |
||||
color:#505050; |
||||
background-color:inherit; |
||||
} |
||||
|
||||
h2 { |
||||
display:block; |
||||
margin: 30px 0 0 0; |
||||
font-size:1.5em; |
||||
font-weight:normal; |
||||
letter-spacing:-1px; |
||||
color:#505050; |
||||
background-color:inherit; |
||||
} |
||||
|
||||
hr { border:0px; border-bottom:1px dashed #000000; } |
||||
|
||||
|
||||
/**************** Misc classes and styles ****************/ |
||||
|
||||
.splitcontentleft{float:left; width:49%;} |
||||
.splitcontentright{float:right; width:49%;} |
||||
.clear{clear:both;} |
||||
.small{font-size:0.8em;line-height:1.4em;padding:0 0 0 0;} |
||||
.hide{display:none;} |
||||
.textcenter{text-align:center;} |
||||
.textright{text-align:right;} |
||||
.important{color:#f02025; background-color:inherit; } |
||||
|
||||
.box{ |
||||
margin:0 0 20px 0; |
||||
padding:10px; |
||||
border:1px solid #c0c0c0; |
||||
background-color:#fafbfc; |
||||
color:#505050; |
||||
line-height:1.5em; |
||||
} |
||||
|
||||
|
@ -1,5 +0,0 @@ |
||||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html |
||||
first: |
||||
id: 1 |
||||
another: |
||||
id: 2 |
@ -1,5 +0,0 @@ |
||||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html |
||||
first: |
||||
id: 1 |
||||
another: |
||||
id: 2 |
@ -1,5 +0,0 @@ |
||||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html |
||||
first: |
||||
id: 1 |
||||
another: |
||||
id: 2 |
@ -1,5 +0,0 @@ |
||||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html |
||||
first: |
||||
id: 1 |
||||
another: |
||||
id: 2 |
@ -1,5 +0,0 @@ |
||||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html |
||||
first: |
||||
id: 1 |
||||
another: |
||||
id: 2 |
@ -1,5 +0,0 @@ |
||||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html |
||||
first: |
||||
id: 1 |
||||
another: |
||||
id: 2 |
@ -1,5 +0,0 @@ |
||||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html |
||||
first: |
||||
id: 1 |
||||
another: |
||||
id: 2 |
@ -1,5 +0,0 @@ |
||||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html |
||||
first: |
||||
id: 1 |
||||
another: |
||||
id: 2 |
@ -1,5 +0,0 @@ |
||||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html |
||||
first: |
||||
id: 1 |
||||
another: |
||||
id: 2 |
@ -1,5 +0,0 @@ |
||||
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html |
||||
first: |
||||
id: 1 |
||||
another: |
||||
id: 2 |
@ -1,3 +0,0 @@ |
||||
Mailer#issue_closed |
||||
|
||||
Find me in app/views/mailer/issue_closed.rhtml |