Removed inconsistent user manual stuff (html/docbook content and controller). Help link now points to the Redmine guide which will be more easy to maintain.
Also removed the useless components directory. git-svn-id: http://redmine.rubyforge.org/svn/trunk@835 e93f8b46-1217-0410-a6f0-8f06a7374b81
|
@ -1,44 +0,0 @@
|
||||||
# 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.
|
|
||||||
|
|
||||||
class HelpController < ApplicationController
|
|
||||||
|
|
||||||
skip_before_filter :check_if_login_required
|
|
||||||
before_filter :load_help_config
|
|
||||||
|
|
||||||
# displays help page for the requested controller/action
|
|
||||||
def index
|
|
||||||
# select help page to display
|
|
||||||
if params[:ctrl] and @help_config['pages'][params[:ctrl]]
|
|
||||||
if params[:page] and @help_config['pages'][params[:ctrl]][params[:page]]
|
|
||||||
template = @help_config['pages'][params[:ctrl]][params[:page]]
|
|
||||||
else
|
|
||||||
template = @help_config['pages'][params[:ctrl]]['index']
|
|
||||||
end
|
|
||||||
end
|
|
||||||
# choose language according to available help translations
|
|
||||||
lang = (@help_config['langs'].include? current_language.to_s) ? current_language.to_s : @help_config['langs'].first
|
|
||||||
|
|
||||||
url = "/manual/#{lang}/" + (template || "index.html")
|
|
||||||
redirect_to(request.relative_url_root + url)
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
def load_help_config
|
|
||||||
@help_config = YAML::load(File.open("#{RAILS_ROOT}/config/help.yml"))
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,19 +0,0 @@
|
||||||
# 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.
|
|
||||||
|
|
||||||
module HelpHelper
|
|
||||||
end
|
|
|
@ -33,6 +33,7 @@
|
||||||
<%= link_to l(:label_my_page), { :controller => 'my', :action => 'page'} if User.current.logged? %>
|
<%= link_to l(:label_my_page), { :controller => 'my', :action => 'page'} if User.current.logged? %>
|
||||||
<%= link_to l(:label_project_plural), { :controller => 'projects' } %>
|
<%= link_to l(:label_project_plural), { :controller => 'projects' } %>
|
||||||
<%= link_to l(:label_administration), { :controller => 'admin' } if User.current.admin? %>
|
<%= link_to l(:label_administration), { :controller => 'admin' } if User.current.admin? %>
|
||||||
|
<%= link_to l(:label_help), Redmine::Info.help_url %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="header">
|
<div id="header">
|
||||||
|
|
|
@ -1,84 +0,0 @@
|
||||||
# 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.
|
|
||||||
|
|
||||||
# available languages for help pages
|
|
||||||
langs:
|
|
||||||
- en
|
|
||||||
- fr
|
|
||||||
- ja
|
|
||||||
|
|
||||||
# mapping between controller/action and help pages
|
|
||||||
# if action is not defined here, 'index' page will be displayed
|
|
||||||
pages:
|
|
||||||
# administration
|
|
||||||
admin:
|
|
||||||
index: ch01.html
|
|
||||||
projects: ch01s01.html
|
|
||||||
mail_options: ch01s09.html
|
|
||||||
info: ch01s12.html
|
|
||||||
users:
|
|
||||||
index: ch01s02.html
|
|
||||||
roles:
|
|
||||||
index: ch01s03.html
|
|
||||||
workflow: ch01s07.html
|
|
||||||
trackers:
|
|
||||||
index: ch01s04.html
|
|
||||||
issue_statuses:
|
|
||||||
index: ch01s06.html
|
|
||||||
settings:
|
|
||||||
index: ch01s11.html
|
|
||||||
# projects
|
|
||||||
projects:
|
|
||||||
index: ch02.html
|
|
||||||
settings: ch01s01.html
|
|
||||||
add: ch01s01.html
|
|
||||||
show: ch02s01.html
|
|
||||||
gantt: ch02s02.html
|
|
||||||
calendar: ch02s02.html
|
|
||||||
changelog: ch02s06.html
|
|
||||||
roadmap: ch02s07.html
|
|
||||||
add_document: ch02s07.html
|
|
||||||
list_documents: ch02s07.html
|
|
||||||
add_issue: ch02s03.html
|
|
||||||
list_issues: ch02s03.html
|
|
||||||
add_news: ch02s06.html
|
|
||||||
list_news: ch02s06.html
|
|
||||||
add_file: ch02s11.html
|
|
||||||
list_files: ch02s11.html
|
|
||||||
changelog: ch02s05.html
|
|
||||||
issues:
|
|
||||||
index: ch02s03.html
|
|
||||||
documents:
|
|
||||||
index: ch02s09.html
|
|
||||||
news:
|
|
||||||
index: ch02s06.html
|
|
||||||
versions:
|
|
||||||
index: ch02s09.html
|
|
||||||
reports:
|
|
||||||
index: ch02s04.html
|
|
||||||
# accounts
|
|
||||||
my:
|
|
||||||
index: ch03.html
|
|
||||||
account: ch03s01.html
|
|
||||||
page: ch03s02.html
|
|
||||||
account:
|
|
||||||
index: ch03.html
|
|
||||||
lost_password: ch03s03.html
|
|
||||||
register: ch03s04.html
|
|
||||||
wiki:
|
|
||||||
index: ch02s10.html
|
|
||||||
syntax: wiki_syntax.html
|
|
Before Width: | Height: | Size: 208 B |
Before Width: | Height: | Size: 209 B |
Before Width: | Height: | Size: 211 B |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 437 B |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 258 B |
Before Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 208 B |
Before Width: | Height: | Size: 209 B |
Before Width: | Height: | Size: 211 B |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 437 B |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 258 B |
Before Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 208 B |
Before Width: | Height: | Size: 209 B |
Before Width: | Height: | Size: 211 B |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 437 B |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 258 B |
Before Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 6.4 KiB |
|
@ -1,820 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
|
|
||||||
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
|
|
||||||
<book>
|
|
||||||
<title>ユーザマニュアル</title>
|
|
||||||
|
|
||||||
<chapter>
|
|
||||||
<title>管理</title>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>プロジェクト</title>
|
|
||||||
|
|
||||||
<para>プロジェクト画面ではプロジェクトを管理できます。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>ユーザ</title>
|
|
||||||
|
|
||||||
<para>ユーザ画面ではredMineのユーザを管理できます。</para>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>ユーザ一覧</title>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<screenshot>
|
|
||||||
<screeninfo>ユーザ一覧</screeninfo>
|
|
||||||
|
|
||||||
<mediaobject>
|
|
||||||
<imageobject>
|
|
||||||
<imagedata fileref="images/users_list.png" />
|
|
||||||
</imageobject>
|
|
||||||
</mediaobject>
|
|
||||||
</screenshot>
|
|
||||||
|
|
||||||
<para>アカウントの状態:</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para>アイコン <inlinemediaobject>
|
|
||||||
<imageobject>
|
|
||||||
<imagedata fileref="images/locked.png" />
|
|
||||||
</imageobject>
|
|
||||||
</inlinemediaobject> は、アカウントがロックされていることを
|
|
||||||
意味します。アカウントをロックされたユーザはログインや
|
|
||||||
アプリケーションへのアクセスができません。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>アイコン <inlinemediaobject>
|
|
||||||
<imageobject>
|
|
||||||
<imagedata fileref="images/user_new.png" />
|
|
||||||
</imageobject>
|
|
||||||
</inlinemediaobject> は、ユーザがまだ有効化されていないことを
|
|
||||||
意味します。</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<para>ロック/アンロックボタンでユーザアカウントを
|
|
||||||
ロック/アンロックできます。</para>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>ユーザ作成と変更</title>
|
|
||||||
|
|
||||||
<para>ユーザ情報の変更時にパスワードを変更しないならパスワード欄を
|
|
||||||
空白にしてください。</para>
|
|
||||||
|
|
||||||
<para>管理者に指定されたユーザは、redMineアプリケーションと
|
|
||||||
すべてのプロジェクトに無制限にアクセスできます。</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">管理者</guilabel> :
|
|
||||||
ユーザをredMineの管理者に設定します。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">メール通知</guilabel> :
|
|
||||||
ユーザへの自動メール通知を有効/無効にします。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">ロック</guilabel> :
|
|
||||||
ユーザアカウントを無効にします。</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
</section>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>ロールと権限</title>
|
|
||||||
|
|
||||||
<para>ロールはプロジェクトのさまざまなメンバーの権限を整理します。
|
|
||||||
プロジェクトの各メンバーは一つのプロジェクト内で一つのロールを持ちます。
|
|
||||||
異なるプロジェクトでは異なるロールを持つことができます。</para>
|
|
||||||
|
|
||||||
<para>ロールの新規作成/編集画面では、
|
|
||||||
そのロールに許可するアクションをチェックしてください。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>トラッカー</title>
|
|
||||||
|
|
||||||
<para>トラッカーでは、問題の並び順や特定のワークフローの定義が
|
|
||||||
できます。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>カスタムフィールド</title>
|
|
||||||
|
|
||||||
<para>カスタムフィールドでは、プロジェクト、問題、ユーザに追加情報を
|
|
||||||
設定できます。カスタムフィールドは以下の書式のうちの一つをとることが
|
|
||||||
できます。</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">整数</guilabel> : 正または
|
|
||||||
負の数値</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">テキスト</guilabel> : 文字列 -
|
|
||||||
一行入力です。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">長いテキスト</guilabel> :
|
|
||||||
複数行入力の文字列です。 一行の代わりに複数行なのがテキストとの
|
|
||||||
違いです。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">日付</guilabel> : 日付</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">真偽値</guilabel> : 真または偽
|
|
||||||
(必要に応じてチェックする項目)</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">リスト</guilabel> :
|
|
||||||
予め用意したリストから値を選ぶ
|
|
||||||
(スクロールリストまたは選択ボックス)</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<para>以下の検査項目を定義できます:</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">必須</guilabel> :
|
|
||||||
必須のフィールドは必ずフォームに入力しなければなりません。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">全プロジェクト向け</guilabel> :
|
|
||||||
フィールドは自動的に全てのプロジェクトに関連付けられます。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">最小値 - 最大値の長さ</guilabel> :
|
|
||||||
入力フィールドの最小と最大の長さ(0だと無制限になります)。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">正規表現</guilabel> :
|
|
||||||
入力値の検査に正規表現を条件にできます。</para>
|
|
||||||
|
|
||||||
|
|
||||||
<para>例:</para>
|
|
||||||
|
|
||||||
<para><code>^¥[A-Z]{4}¥d+$</code> : アルファベット大文字4文字、
|
|
||||||
それに続いて1文字以上の数字</para>
|
|
||||||
|
|
||||||
<para><code>^[^0-9]*$</code> : 文字のみ - 数字は含めない</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">選択肢</guilabel> :
|
|
||||||
書式 "リストから選択" フィールドの選択肢です。
|
|
||||||
選択肢は | で分けて入力します。</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>プロジェクト用のフィールド</title>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">必須</guilabel> :
|
|
||||||
必須のフィールドです。</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>問題用のフィールド</title>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">全プロジェクト向け</guilabel> :
|
|
||||||
フィールドは自動的に全てのプロジェクトに関連付けられます</para>
|
|
||||||
|
|
||||||
<para>このオプションにチェックがない場合、各プロジェクトごとに
|
|
||||||
使用するかどうか選びます(プロジェクトの設定を参照してください)
|
|
||||||
。</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>ユーザ用のフィールド</title>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">必須</guilabel> :
|
|
||||||
必須のフィールドです</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
</section>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>問題の状態</title>
|
|
||||||
|
|
||||||
<para>問題の状態画面では、さまざまな問題の状態を定義できます。</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">終了</guilabel> :
|
|
||||||
問題は終了したとみなされます</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">デフォルト</guilabel> :
|
|
||||||
新しい問題にデフォルトで適用される状態です
|
|
||||||
(デフォルトにできるステータスは一つだけです)</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">色</guilabel> : 表示された状態を
|
|
||||||
表現するHTMLのカラーコード(6文字)です。</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>ワークフロー</title>
|
|
||||||
|
|
||||||
<para>ワークフローでは、それぞれのロールに従ってさまざまなプロジェクトの
|
|
||||||
メンバーが問題に行うことができる変更を定義します。</para>
|
|
||||||
|
|
||||||
<para>ワークフローを変更したいロールやトラッカーを選択し、「編集」を
|
|
||||||
クリックしてください。選択したロールやトラッカーに対して許可する
|
|
||||||
変更操作を変えることができます。「現在の状態」は初期の要求状態を
|
|
||||||
示します。「状態の移行先」欄は適用を許可された状態を意味します。</para>
|
|
||||||
|
|
||||||
<para><remark>注記:特定のロールが問題の状態を変更するためには、
|
|
||||||
ワークフローの設定に関わらず許可を明示的に与えなくてはなりません。
|
|
||||||
</remark></para>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<screenshot>
|
|
||||||
<screeninfo>ワークフロー設定の例</screeninfo>
|
|
||||||
|
|
||||||
<mediaobject>
|
|
||||||
<imageobject>
|
|
||||||
<imagedata fileref="images/workflow.png" />
|
|
||||||
</imageobject>
|
|
||||||
</mediaobject>
|
|
||||||
</screenshot>
|
|
||||||
|
|
||||||
<para>上記の例では、新規状態の種類「バグ」の問題のリクエストは
|
|
||||||
開発者ロールによって分担または解決の状態を与えることができます。
|
|
||||||
分担状態の問題を解決状態にできます。他の状態の種類「バグ」のリクエストは
|
|
||||||
開発者によって変更できません。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>列挙項目</title>
|
|
||||||
|
|
||||||
<para>redMineで使用される選択肢をカスタマイズできます
|
|
||||||
(例えば、問題の優先度の設定)。列挙項目画面では、以下のそれぞれに項目を
|
|
||||||
定義できます。</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para>問題の優先度</para>
|
|
||||||
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>文書カテゴリ</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>メール通知</title>
|
|
||||||
|
|
||||||
<para>メール通知画面ではプロジェクトのメンバーにメール通知を
|
|
||||||
するかどうかを選択できます。</para>
|
|
||||||
|
|
||||||
<para>注記: 通知を行いたい場合、メール送信がredMineの設定で
|
|
||||||
有効にされていなければなりません。</para>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>認証</title>
|
|
||||||
|
|
||||||
<para>デフォルトでは、redMineはユーザ認証のために指定のパスワードで
|
|
||||||
自身のデータベースを参照します。</para>
|
|
||||||
|
|
||||||
<para>すでに外部ユーザ参照(LDAPのような)がある場合、redMine認証で使われ
|
|
||||||
るために知らせることができます。そうすることでユーザはいつものユーザ名と
|
|
||||||
パスワードでredMineにアクセスできます。</para>
|
|
||||||
|
|
||||||
<para>既知のユーザ参照ごとに、redMineでオンザフライにアカウントを作成
|
|
||||||
することができるかどうかを指定することができます。必要であれば、
|
|
||||||
ユーザ参照の有効な情報に従って、ユーザアカウントはユーザが
|
|
||||||
ログインしている間に自動的に作成されます(プロジェクトに何も
|
|
||||||
権限を持たずに)。そうでなければ、管理者は以前にユーザアカウントを
|
|
||||||
redMineに作成したに違いありません。
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>LDAP ステートメント</title>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">名前</guilabel> : 参照の
|
|
||||||
表示用の名前</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">ホスト</guilabel> : LDAPサーバの
|
|
||||||
ホスト名</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">ポート</guilabel> : LDAPサーバへの
|
|
||||||
接続ポート</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">アカウント</guilabel> : LDAPへの
|
|
||||||
接続アカウントのDN(ディレクトリが匿名の読み取りアクセスを
|
|
||||||
許可しているならば 空白のままにしてください)</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">パスワード</guilabel> :
|
|
||||||
接続アカウントのパスワード</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">Base DN</guilabel> :
|
|
||||||
ディレクトリ内のユーザ検索で使われる基本 DN</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">LDAP screen</guilabel> :
|
|
||||||
ディレクトリ内のユーザ検索画面 (オプション)</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">LDAP 機能</guilabel> :</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">識別子</guilabel> :
|
|
||||||
ユーザ識別子として使われるLDAP機能名(例: uid)</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">名前</guilabel> :
|
|
||||||
ユーザの名前を含むLDAP機能名(例: givenName)</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">苗字</guilabel> :
|
|
||||||
ユーザの苗字を含むLDAP機能名(例: familyName)</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">メールアドレス</guilabel> :
|
|
||||||
ユーザのメールアドレスを含むLDAP機能名(例: mail)</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<para>機能 " <guilabel moreinfo="none">名前</guilabel> "、
|
|
||||||
" <guilabel moreinfo="none">苗字</guilabel> "、 " <guilabel
|
|
||||||
moreinfo="none">メール</guilabel> " はアカウントがその場で作成された
|
|
||||||
時以外では使用されません。</para>
|
|
||||||
</section>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>設定</title>
|
|
||||||
|
|
||||||
<para>設定画面ではredMineの設定を変更できます。</para>
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel>アプリケーションのタイトル</guilabel></para>
|
|
||||||
|
|
||||||
<para>redMineのヘッダに表示するタイトルです。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel>アプリケーションのサブタイトル</guilabel></para>
|
|
||||||
|
|
||||||
<para>redMineのヘッダに表示するサブタイトルです。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel>ウェルカムメッセージ</guilabel></para>
|
|
||||||
|
|
||||||
<para>redMineのホームに表示されるテキストです。
|
|
||||||
テキストにはHTMLタグが使用できます。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel>既定の言語</guilabel></para>
|
|
||||||
|
|
||||||
<para>ユーザのブラウザの言語がわからないときに選択される
|
|
||||||
デフォルトの言語です。既定の言語は複数のユーザにメール送信する
|
|
||||||
際にも使用されます。</para>
|
|
||||||
|
|
||||||
<para><emphasis>デフォルト: English</emphasis></para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel>認証が必要</guilabel></para>
|
|
||||||
|
|
||||||
<para>このオプションがチェックされている場合、ログインなしでは
|
|
||||||
redMineのどのページにもアクセスできません。
|
|
||||||
ユーザは必ずログインしなければなりません。</para>
|
|
||||||
|
|
||||||
<para><emphasis>デフォルト: いいえ</emphasis></para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel>ユーザは自分で登録できる</guilabel></para>
|
|
||||||
|
|
||||||
<para>このオプションがチェックされている場合、
|
|
||||||
自分で登録できます。</para>
|
|
||||||
|
|
||||||
<para><emphasis>デフォルト: はい</emphasis></para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel>パスワードの再発行</guilabel></para>
|
|
||||||
|
|
||||||
<para>このオプションがチェックされている場合、パスワードの再発行
|
|
||||||
機能が有効になります。</para>
|
|
||||||
|
|
||||||
<para><emphasis>デフォルト: はい</emphasis></para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel>添付の最大サイズ</guilabel></para>
|
|
||||||
|
|
||||||
<para>アップロードファイルの最大サイズ(キロバイト)</para>
|
|
||||||
|
|
||||||
<para><emphasis>デフォルト: 2048 (2MB)</emphasis></para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel>出力する問題数の上限</guilabel></para>
|
|
||||||
|
|
||||||
<para>CSVやPDFに含まれる問題の最大数です。</para>
|
|
||||||
|
|
||||||
<para><emphasis>デフォルト: 500</emphasis></para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel>送信元メールアドレス</guilabel></para>
|
|
||||||
|
|
||||||
<para>ユーザに送信するメッセージの "From" フィールドに使用される
|
|
||||||
メールアドレスです。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel>ホスト名</guilabel></para>
|
|
||||||
|
|
||||||
<para>アプリケーションのホスト名です。
|
|
||||||
ユーザに送るメール内に書くURLに使用されます。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel>テキストの書式</guilabel></para>
|
|
||||||
|
|
||||||
<para>問題、ニュース、ドキュメントなどの説明フィールドに適用する
|
|
||||||
整形の方法です。</para>
|
|
||||||
|
|
||||||
<para>"Textile" オプションは ruby ライブラリの RedCloth が
|
|
||||||
インストールされている場合のみ有効です。</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>情報</title>
|
|
||||||
|
|
||||||
<para>アプリケーションと環境の情報を表示します。</para>
|
|
||||||
</section>
|
|
||||||
</chapter>
|
|
||||||
|
|
||||||
<chapter>
|
|
||||||
<title>プロジェクト</title>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>プロジェクト概要</title>
|
|
||||||
|
|
||||||
<para>概要はプロジェクトの一般的な情報を表示します。
|
|
||||||
トラッカーが報告した問題リクエストのまとめだけでなく、主なメンバー、
|
|
||||||
最後のニュースなどの情報です。</para>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>計画</title>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>カレンダー</title>
|
|
||||||
|
|
||||||
<para>カレンダーは選択された月の間でタスクの開始と終了を表示します
|
|
||||||
(デフォルトでは当月です)。開始日と締切日が指定されている場合、
|
|
||||||
問題はタスクとして表示されます。</para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para>シンボル <inlinemediaobject>
|
|
||||||
<imageobject>
|
|
||||||
<imagedata fileref="images/arrow_from.png" />
|
|
||||||
</imageobject>
|
|
||||||
</inlinemediaobject> は、タスクの開始を表現します。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>シンボル <inlinemediaobject>
|
|
||||||
<imageobject>
|
|
||||||
<imagedata fileref="images/arrow_to.png" />
|
|
||||||
</imageobject>
|
|
||||||
</inlinemediaobject> は、タスクの終了を表現します。</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>シンボル <inlinemediaobject>
|
|
||||||
<imageobject>
|
|
||||||
<imagedata fileref="images/arrow_bw.png" />
|
|
||||||
</imageobject>
|
|
||||||
</inlinemediaobject> は、同じ日に開始して終了するタスクを表現します。 </para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>ガントチャート</title>
|
|
||||||
|
|
||||||
<para>タスクとその達成度を示す図です。</para>
|
|
||||||
|
|
||||||
<para>達成は青で、遅れは赤で表現されます。</para>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<screenshot>
|
|
||||||
<screeninfo>ガントチャート</screeninfo>
|
|
||||||
|
|
||||||
<mediaobject>
|
|
||||||
<imageobject>
|
|
||||||
<imagedata fileref="images/gantt.png" />
|
|
||||||
</imageobject>
|
|
||||||
</mediaobject>
|
|
||||||
</screenshot>
|
|
||||||
</section>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>問題管理</title>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>問題一覧</title>
|
|
||||||
|
|
||||||
<para>デフォルトでは、プロジェクトの未終了の問題のすべての一覧が
|
|
||||||
表示されます。さまざまなフィルタで表示する問題を選択できます。
|
|
||||||
プロジェクトがサブプロジェクトを持っているならば、
|
|
||||||
サブプロジェクトの問題も表示することも可能です(デフォルトでは
|
|
||||||
表示しません)。</para>
|
|
||||||
|
|
||||||
<para>一度適用されると、画面はセッションの間中有効です。
|
|
||||||
キャンセルをクリックして再定義や削除ができます。</para>
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<screenshot>
|
|
||||||
<screeninfo>要求一覧</screeninfo>
|
|
||||||
|
|
||||||
<mediaobject>
|
|
||||||
<imageobject>
|
|
||||||
<imagedata fileref="images/issues_list.png" />
|
|
||||||
</imageobject>
|
|
||||||
</mediaobject>
|
|
||||||
</screenshot>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
</section>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>レポート</title>
|
|
||||||
|
|
||||||
<para>レポート画面では、色々な基準(トラッカー、優先度、カテゴリー)での
|
|
||||||
問題の数と状態のまとめを提供します。直接リンクで各基準の詳細な
|
|
||||||
問題一覧へアクセスできます。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>変更履歴</title>
|
|
||||||
|
|
||||||
<para>プロジェクトの各バージョンごとに解決された問題すべての一覧を表示します。
|
|
||||||
特定の種類の問題を除外して表示できます。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>ニュース</title>
|
|
||||||
|
|
||||||
<para>プロジェクトの活動に関してユーザに知らせることができます。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>文書</title>
|
|
||||||
|
|
||||||
<para>文書はカテゴリでまとめられます(選択肢を参照してください)。
|
|
||||||
ひとつの文書には複数のファイルをいれることができます
|
|
||||||
(例えば: 校正したものや、連続したバージョン)。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>ファイル</title>
|
|
||||||
|
|
||||||
<para>アプリケーションの各バージョンごとに各種フォルダ
|
|
||||||
(ソース、バイナリなど)を表示できます。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>設定</title>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>プロジェクトの機能</title>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<itemizedlist>
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">公開</guilabel> :
|
|
||||||
公開プロジェクトはプロジェクトのメンバー以外も含めた
|
|
||||||
すべてのユーザが閲覧(要求、文書などを)できます。
|
|
||||||
公開プロジェクトではない場合、プロジェクトのメンバーのみが
|
|
||||||
ロールに従ってアクセスできます。
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para><guilabel moreinfo="none">カスタムフィールド</guilabel> :
|
|
||||||
使用したいカスタムフィールドを選択してください。
|
|
||||||
管理者だけが新しいカスタムフィールドを定義できます。</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>メンバー</title>
|
|
||||||
|
|
||||||
<para>メンバー画面ではメンバーのロールだけでなくプロジェクトの
|
|
||||||
メンバーも定義できます。ユーザは一つのプロジェクトでは一つのロールだけ
|
|
||||||
持つことができます。メンバーのロールはプロジェクト内での権限を
|
|
||||||
決定します。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>バージョン</title>
|
|
||||||
|
|
||||||
<para>Versions allow you to follow the changes made during all the
|
|
||||||
project. For instance, at the close of an Issue, you can indicate
|
|
||||||
which version takes it into account. You can display the various
|
|
||||||
versions of the application (see Files).</para>
|
|
||||||
<para>バージョンでは、プロジェクトの間になされた変更を追うことが
|
|
||||||
できます。例えば、問題のクローズにおいて、どのバージョンで
|
|
||||||
変更が行われたかを示すことができます。
|
|
||||||
アプリケーションのさまざまなバージョンを表示することができます
|
|
||||||
(ファイル画面を参照してください)。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>問題のカテゴリ</title>
|
|
||||||
|
|
||||||
<para>問題のカテゴリは問題を整理できます。カテゴリはプロジェクトの
|
|
||||||
さまざまな構成要素に該当します。</para>
|
|
||||||
</section>
|
|
||||||
</section>
|
|
||||||
</chapter>
|
|
||||||
|
|
||||||
<chapter>
|
|
||||||
<title>ユーザアカウント</title>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>マイアカウント</title>
|
|
||||||
|
|
||||||
<para></para>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>情報</title>
|
|
||||||
|
|
||||||
<para>情報画面では苗字、名、メールアドレス、言語といった
|
|
||||||
アカウント情報を変更できます。</para>
|
|
||||||
|
|
||||||
<para><guilabel>メール通知</guilabel> がチェックされないならば、
|
|
||||||
メールは送られません。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>パスワード</title>
|
|
||||||
|
|
||||||
<para>パスワードを変更するために、古いパスワードと新しいパスワード
|
|
||||||
(2度)を入力してください。パスワードの長さは4から12文字です。</para>
|
|
||||||
|
|
||||||
<para>アカウントに外部認証(LDAP)を使用する場合、
|
|
||||||
redMineではパスワードを変更できません。</para>
|
|
||||||
</section>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>マイページ</title>
|
|
||||||
|
|
||||||
<para>マイページではユーザのプロジェクトについてのさまざまな情報を
|
|
||||||
表示できます。</para>
|
|
||||||
|
|
||||||
<para>ページをパーソナライズするために、<guilabel>このページを
|
|
||||||
パーソナライズする</guilabel> をクリックしてください。
|
|
||||||
どの情報をどこに表示するかを選択できます。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>パスワードの再発行</title>
|
|
||||||
|
|
||||||
<para>パスワードを忘れた場合、以下の方法で新しいパスワードを決めることが
|
|
||||||
できます。</para>
|
|
||||||
|
|
||||||
<para>ログイン画面で <guilabel>パスワードの再発行</guilabel> をクリック
|
|
||||||
してください。メールアドレスを入力しフォームを送信してください。
|
|
||||||
メールが送られます。メールにはパスワードを変更するためのリンクが
|
|
||||||
あります。</para>
|
|
||||||
|
|
||||||
<para>アカウントが外部認証(LDAP)を使用している場合、
|
|
||||||
この処理は無効です。</para>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<title>登録</title>
|
|
||||||
|
|
||||||
<para>登録することで、管理者の招待なしにアカウントを取得できます。</para>
|
|
||||||
|
|
||||||
<para>ログイン画面で <guilabel>登録</guilabel>をクリックします。
|
|
||||||
フォームに入力して送信してください。メールが送信されます。
|
|
||||||
アカウントを有効化するため、メールに含まれるリンクを
|
|
||||||
クリックしてください。</para>
|
|
||||||
|
|
||||||
<para>redMineの設定で登録機能を無効化できます。</para>
|
|
||||||
</section>
|
|
||||||
</chapter>
|
|
||||||
</book>
|
|
|
@ -3,6 +3,7 @@ module Redmine
|
||||||
class << self
|
class << self
|
||||||
def app_name; 'Redmine' end
|
def app_name; 'Redmine' end
|
||||||
def url; 'http://www.redmine.org/' end
|
def url; 'http://www.redmine.org/' end
|
||||||
|
def help_url; 'http://www.redmine.org/guide' end
|
||||||
def versioned_name; "#{app_name} #{Redmine::VERSION}" end
|
def versioned_name; "#{app_name} #{Redmine::VERSION}" end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
<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"><link rel="up" href="index.html" title="Documentation"><link rel="prev" href="index.html" title="Documentation"><link rel="next" href="ch01s01.html" title="1. Projects"></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 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. 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’ 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></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 </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 1. Projects</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>2. Users</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="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s01.html" title="1. Projects"><link rel="next" href="ch01s03.html" title="3. Roles and Permissions"></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. Users</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="d0e89"></a>2. Users</h2></div></div></div><p>These screens allow you to manage the application users.</p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e94"></a>2.1. Users’ List</h3></div></div></div><p></p><div class="screenshot"><div class="mediaobject"><img src="resources/users_list.png"></div></div><p>Accounts status:</p><div class="itemizedlist"><ul type="disc"><li><p>This icon <span class="inlinemediaobject"><img src="resources/locked.png"></span> means that the account is locked. A user having a locked account cannot log in and access the application.</p></li><li><p>This icon <span class="inlinemediaobject"><img src="resources/user_new.png"></span> means that the user hasn't yet actived his account.</p></li></ul></div><p>The Lock/Unlock buttons allow you to lock/unlock the user accounts.</p><p></p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e124"></a>2.2. User Creation or Modification</h3></div></div></div><p>In modification mode, please leave the Password field blank in order to keep the user’s password unchanged.</p><p>A user designated as administrator has unrestricted access to the application and to all projects.</p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Administrator</span> : designate the user as the administrator of the application.</p></li><li><p><span class="guilabel">E-mail notifications</span> : activate or de-activate automatic e-mail notifications for this user</p></li><li><p><span class="guilabel">Locked</span> : de-activates the user’s account</p></li></ul></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="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. Projects </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 3. Roles and Permissions</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>3. Roles and 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"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s02.html" title="2. Users"><link rel="next" href="ch01s04.html" title="4. Trackers"></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. Roles and Permissions</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="d0e148"></a>3. Roles and Permissions</h2></div></div></div><p>Roles organize the permissions of various members of a project. Each member of a project has a one Role in a project. A user can have different roles in different projects.</p><p>On the new or edit Role screen, check off the actions authorized for the Role.</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. Users </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 4. Trackers</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>4. 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"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s03.html" title="3. Roles and Permissions"><link rel="next" href="ch01s05.html" title="5. Custom fields"></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. Trackers</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="d0e155"></a>4. Trackers</h2></div></div></div><p>Trackers allow the sorting of Issues and can define specific workflows.</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. Roles and Permissions </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 5. Custom fields</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>5. Custom fields</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="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s04.html" title="4. Trackers"><link rel="next" href="ch01s06.html" title="6. Issue status"></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">5. Custom fields</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="d0e160"></a>5. Custom fields</h2></div></div></div><p>Custom fields allow you to add additional information in Projects, Issues or Users. A custom field can be of one the following types:</p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Integer</span> : positive or negative number</p></li><li><p><span class="guilabel">String</span> : a string of characters - one single line of input.</p></li><li><p><span class="guilabel">Text</span> : a string of characters with multiple lines of input. Differs from String Format by providing multiple lines of input instead of a single line.</p></li><li><p><span class="guilabel">Date</span> : date</p></li><li><p><span class="guilabel">Boolean</span> : true or false (check if necessary)</p></li><li><p><span class="guilabel">List</span> : value to select from a predefined list (aka: scroll list or select box)</p></li></ul></div><p>Validation elements can be defined:</p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Required</span> : A required field must have input in the forms</p></li><li><p><span class="guilabel">For all the projects</span> : field automatically associated to all of the projects</p></li><li><p><span class="guilabel">Min - max length</span> : minimum and maximum length for the input fields (0 means that there is no restriction)</p></li><li><p><span class="guilabel">Regular Expression</span> : regular expressions may provide validation of the input value</p><p>Examples:</p><p><code class="code">^\[A-Z]{4}\d+$</code> : 4 capital letters followed by one or several digits</p><p><code class="code">^[^0-9]*$</code> : characters only - no digits</p></li><li><p><span class="guilabel">Possible values</span> : possible values for the fields of "List" type. Values are separated by the character |</p></li></ul></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e235"></a>5.1. Fields for Projects</h3></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Required</span> : required field</p></li></ul></div><p></p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e246"></a>5.2. Fields for Issues</h3></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">For all projects</span> : field automatically associated to all project Issues</p><p>If this option is not activated, each project could choose whether or not to use the field for its Issues (please see the project configuration).</p></li></ul></div><p></p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e259"></a>5.3. Field for Users</h3></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Required</span> : required field</p></li></ul></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="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. Trackers </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 6. Issue status</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>6. Issue status</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="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s05.html" title="5. Custom fields"><link rel="next" href="ch01s07.html" title="7. Workflow"></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">6. Issue status</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="d0e270"></a>6. Issue status</h2></div></div></div><p>These screens allow you to define the different possible Issue statuses.</p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Closed</span> : indicates Issue is considered as closed</p></li><li><p><span class="guilabel">Default</span> : status applied by default to new Issue requests (only one status can be Default status)</p></li><li><p><span class="guilabel">Color</span> : HTML color code (6 characters) representing the displayed status</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="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. Custom fields </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 7. Workflow</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>7. 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"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s06.html" title="6. Issue status"><link rel="next" href="ch01s08.html" title="8. Enumerations"></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">7. Workflow</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="d0e292"></a>7. Workflow</h2></div></div></div><p>The workflow allows to define changes the various project members are allowed to make on the Issues, according to their type.</p><p>Select the role and the tracker for which you want to modify the workflow, then click Edit. The screen allows you then to modify the authorized change, for the chosen role and tracker. The Current Status options indicate the initial request status. The "New Statuses allowed" columns stand for the authorized status to apply.</p><p><em><span class="remark">Note: In order for a particular Role to change an Issue status, the authorization must be given to it explicitly, regardless of the workflow configuration.</span></em></p><p></p><div class="screenshot"><div class="mediaobject"><img src="resources/workflow.png"></div></div><p>In the above example, Bug type Issue requests with a New status could be given an Assigned or Resolved status by the Developer role. Those with an Assigned status could get a Resolved status. The status of all the other Bug type requests cannot be modified by the Developer.</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. Issue status </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 8. Enumerations</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>8. Enumerations</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="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s07.html" title="7. Workflow"><link rel="next" href="ch01s09.html" title="9. E-mail notifications"></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">8. Enumerations</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="d0e311"></a>8. Enumerations</h2></div></div></div><p>The value lists used by the application can be customized (for example, setting Issue priorities). This screen allows you to define the possible values for each of the following lists:</p><div class="itemizedlist"><ul type="disc"><li><p>Issue Priorities</p></li><li><p>Document Categories</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="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. Workflow </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 9. E-mail notifications</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>9. E-mail notifications</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="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s08.html" title="8. Enumerations"><link rel="next" href="ch01s10.html" title="10. Authentication"></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. E-mail notifications</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="ch01s10.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="d0e324"></a>9. E-mail notifications</h2></div></div></div><p>This screen allows you to select the actions that will generate an e-mail notification for project members.</p><p>Note: E-mail sending must be activated in the application configuration if you want to make any notifications.</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="ch01s10.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">8. Enumerations </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 10. Authentication</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>10. Authentication</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="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s09.html" title="9. E-mail notifications"><link rel="next" href="ch01s11.html" title="11. Settings"></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. Authentication</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s09.html">Prev</a> </td><th width="60%" align="center">Chapter 1. Administration</th><td width="20%" align="right"> <a accesskey="n" href="ch01s11.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="d0e331"></a>10. Authentication</h2></div></div></div><p>By default, redMine refers to its own database to authenticate users, by a specific password.</p><p>If you already have one or several external user references (like LDAP), you can make them known in order to be used for authentication on redMine. This allows users to access redMine with their usual user names and passwords.</p><p>For each known reference, you can specify if the accounts can be created on the fly on redMine. If needed, the user accounts will be created automatically during the user’s signing in (without any specific rights on the projects), according to information available in the reference. Otherwise, the administrator must have previously created the user account on redMine.</p><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e341"></a>10.1. LDAP statement</h3></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Name</span> : reference display name</p></li><li><p><span class="guilabel">Host</span> : LDAP server host name</p></li><li><p><span class="guilabel">Port</span> : connection port to the LDAP server</p></li><li><p><span class="guilabel">Account</span> : DN of the connection account to LDAP (please leave it blank if the directory authorizes anonymous read access)</p></li><li><p><span class="guilabel">Password</span> : password of the connection account</p></li><li><p><span class="guilabel">Base DN</span> : Basic DN used for user search in the directory</p></li><li><p><span class="guilabel">LDAP screen</span> : User search screen in the directory (optional)</p></li><li><p><span class="guilabel">LDAP features</span> :</p><div class="itemizedlist"><ul type="circle"><li><p><span class="guilabel">Identifier</span> : LDAP feature name used as user identifier (e.g.: uid)</p></li><li><p><span class="guilabel">First name</span> : LDAP feature name including the user’s first name (ex: givenName)</p></li><li><p><span class="guilabel">Last name</span> : LDAP feature name including the user’s last name (ex: familyName)</p></li><li><p><span class="guilabel">E-mail</span> : LDAP feature name including the user’s e-mail address (ex: mail)</p></li></ul></div></li></ul></div><p>The features" <span class="guilabel">First name</span> ", " <span class="guilabel">Last name</span> " and " <span class="guilabel">E-mail</span> " are not used except when the accounts are created on the fly.</p></div></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"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s11.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">9. E-mail notifications </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 11. Settings</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>12. Information</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="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s11.html" title="11. Settings"><link rel="next" href="ch02.html" title="Chapter 2. Projects"></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">12. Information</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s11.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="d0e576"></a>12. Information</h2></div></div></div><p>Displays application and environment information.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s11.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">11. Settings </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 2. Projects</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>Chapter 2. 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. Information"><link rel="next" href="ch02s01.html" title="1. 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 2. Projects</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s12.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="d0e581"></a>Chapter 2. 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> </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">12. Information </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 1. Project overview</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>1. Project overview</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 2. Projects"><link rel="prev" href="ch02.html" title="Chapter 2. Projects"><link rel="next" href="ch02s02.html" title="2. Planning"></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. Project overview</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projects</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="d0e584"></a>1. Project overview</h2></div></div></div><p>The overview presents the general project information, its main members, the latest announcements, as well as an synthesis of Issue requests open by 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. Projects </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 2. Planning</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>2. Planning</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 2. Projects"><link rel="prev" href="ch02s01.html" title="1. Project overview"><link rel="next" href="ch02s03.html" title="3. Issue management"></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. Planning</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s01.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projects</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="d0e590"></a>2. Planning</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e594"></a>2.1. Project calendar</h3></div></div></div><p>Project calendar shows the tasks that begin or end during the selected month (current month by default). An issue will be displayed as a task if its start date and its due date are specified.</p><div class="itemizedlist"><ul type="disc"><li><p>This symbol <span class="inlinemediaobject"><img src="resources/arrow_from.png"></span> represents a task that begins</p></li><li><p>This symbol <span class="inlinemediaobject"><img src="resources/arrow_to.png"></span> represents a task that ends</p></li><li><p>Ths symbol <span class="inlinemediaobject"><img src="resources/arrow_bw.png"></span> represents a task that begins and ends the same day</p></li></ul></div><p></p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e622"></a>2.2. Gantt chart</h3></div></div></div><p>This diagramme shows tasks and their achievement rate.</p><p>Achievement is represented in blue. Delay in red.</p><p></p><div class="screenshot"><div class="mediaobject"><img src="resources/gantt.png"></div></div></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. Project overview </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 3. Issue management</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>3. Issue management</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 2. Projects"><link rel="prev" href="ch02s02.html" title="2. Planning"><link rel="next" href="ch02s04.html" title="4. Reports"></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. Issue management</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s02.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projects</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="d0e636"></a>3. Issue management</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e640"></a>3.1. Issue list</h3></div></div></div><p>By default, the entire list of the project open Issues are displayed. Various screens allow you to select the Issues to be displayed. If the project has sub-projects, you have the possibility to display the sub-project's Issues as well (not displayed by default).</p><p>Once applied, a screen is valid during the entire session. You can re-define it or delete it by clicking Cancel.</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="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. Planning </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 4. Reports</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>4. Reports</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 2. Projects"><link rel="prev" href="ch02s03.html" title="3. Issue management"><link rel="next" href="ch02s05.html" title="5. Activity"></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. Reports</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s03.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projects</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="d0e655"></a>4. Reports</h2></div></div></div><p>This screen presents the number of Issues and Issue status synthesis according to various criteria (tracker, priority, category). Direct links allow for access to the detailed Issue list for each criterion.</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. Issue management </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 5. Activity</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>5. Activity</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 2. Projects"><link rel="prev" href="ch02s04.html" title="4. Reports"><link rel="next" href="ch02s06.html" title="6. Change log"></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">5. Activity</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s04.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projects</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="d0e660"></a>5. Activity</h2></div></div></div><p>This page displays for each month (current month by default) and per day, the events occurred on the project.</p><div class="itemizedlist"><ul type="disc"><li><p>New issues</p></li><li><p>Repository changesets</p></li><li><p>News</p></li><li><p>Added files</p></li><li><p>Added documents</p></li><li><p>Wiki edits</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="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. Reports </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 6. Change log</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>6. Change log</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 2. Projects"><link rel="prev" href="ch02s05.html" title="5. Activity"><link rel="next" href="ch02s07.html" title="7. Roadmap"></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">6. Change log</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s05.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projects</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="d0e685"></a>6. Change log</h2></div></div></div><p>This page presents the entire list of the resolved Issues for each version of the project. Certain trackers can be excluded from this display.</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. Activity </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 7. Roadmap</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>7. Roadmap</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 2. Projects"><link rel="prev" href="ch02s06.html" title="6. Change log"><link rel="next" href="ch02s08.html" title="8. News"></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">7. Roadmap</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s06.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projects</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="d0e690"></a>7. Roadmap</h2></div></div></div><p>This page displays the list of the versions of the projects whose date did not pass yet. For each version, the list of the related issues is displayed. Certain trackers can be excluded from this display.</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. Change log </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 8. News</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>8. News</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 2. Projects"><link rel="prev" href="ch02s07.html" title="7. Roadmap"><link rel="next" href="ch02s09.html" title="9. Documents"></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">8. News</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s07.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projects</th><td width="20%" align="right"> <a accesskey="n" href="ch02s09.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="d0e695"></a>8. News</h2></div></div></div><p>Allows you to inform users on project activity.</p></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"> <a accesskey="n" href="ch02s09.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">7. Roadmap </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 9. Documents</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>9. 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 2. Projects"><link rel="prev" href="ch02s08.html" title="8. News"><link rel="next" href="ch02s10.html" title="10. 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. Documents</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s08.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projects</th><td width="20%" align="right"> <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. 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> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s10.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">8. News </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 10. Wiki</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>10. 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 2. Projects"><link rel="prev" href="ch02s09.html" title="9. Documents"><link rel="next" href="ch02s11.html" title="11. 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. Wiki</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s09.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projects</th><td width="20%" align="right"> <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. 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. 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. 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. 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. 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">!>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> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s11.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">9. Documents </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 11. Files</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>11. 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 2. Projects"><link rel="prev" href="ch02s10.html" title="10. Wiki"><link rel="next" href="ch03.html" title="Chapter 3. 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. Files</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s10.html">Prev</a> </td><th width="60%" align="center">Chapter 2. Projects</th><td width="20%" align="right"> <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. 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> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">10. Wiki </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 3. User accounts</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>Chapter 3. 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. Files"><link rel="next" href="ch03s01.html" title="1. 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 3. User accounts</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s11.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <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 3. 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> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="ch03s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">11. Files </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 1. My account</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>1. 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 3. User accounts"><link rel="prev" href="ch03.html" title="Chapter 3. User accounts"><link rel="next" href="ch03s02.html" title="2. 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. My account</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03.html">Prev</a> </td><th width="60%" align="center">Chapter 3. User accounts</th><td width="20%" align="right"> <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. 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. 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. 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> </td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch03s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 3. User accounts </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 2. My page</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>2. 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 3. User accounts"><link rel="prev" href="ch03s01.html" title="1. My account"><link rel="next" href="ch03s03.html" title="3. 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. My page</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s01.html">Prev</a> </td><th width="60%" align="center">Chapter 3. User accounts</th><td width="20%" align="right"> <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. 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> </td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch03s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">1. My account </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 3. Password lost</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>3. 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 3. User accounts"><link rel="prev" href="ch03s02.html" title="2. My page"><link rel="next" href="ch03s04.html" title="4. 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. Password lost</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s02.html">Prev</a> </td><th width="60%" align="center">Chapter 3. User accounts</th><td width="20%" align="right"> <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. 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> </td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch03s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">2. My page </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 4. Register</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>4. 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 3. User accounts"><link rel="prev" href="ch03s03.html" title="3. 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. Register</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch03s03.html">Prev</a> </td><th width="60%" align="center">Chapter 3. User accounts</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="d0e882"></a>4. 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> </td><td width="20%" align="center"><a accesskey="u" href="ch03.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">3. Password lost </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>
|
|
|
@ -1,75 +0,0 @@
|
||||||
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
code.code {
|
|
||||||
padding: 2px;
|
|
||||||
font-size: 10pt;
|
|
||||||
white-space: pre;
|
|
||||||
}
|
|
||||||
|
|
||||||
li p {
|
|
||||||
margin-top: 3px;
|
|
||||||
margin-bottom: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.toc dt {
|
|
||||||
margin-bottom:4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.chapter {
|
|
||||||
display:block;
|
|
||||||
margin-top:2em;
|
|
||||||
}
|
|
Before Width: | Height: | Size: 208 B |
Before Width: | Height: | Size: 209 B |
Before Width: | Height: | Size: 211 B |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 437 B |
Before Width: | Height: | Size: 258 B |
Before Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 6.4 KiB |
|
@ -1,32 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
||||||
<title>Wiki formatting</title>
|
|
||||||
<link rel="stylesheet" href="html.css" type="text/css">
|
|
||||||
<style>
|
|
||||||
table td { vertical-align: top; background-color: #eee; }
|
|
||||||
table td code { font-size: 1.2em; }
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<table width="100%">
|
|
||||||
<tr><th colspan="3"><p><strong>Font Styles</strong></p></th></tr>
|
|
||||||
<tr><th><img src="../../images/jstoolbar/bt_strong.png" style="border: 1px solid #bbb;" /></th><td>*Strong*</td><td><strong>Strong</strong></td></tr>
|
|
||||||
<tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" /></th><td>_Italic_</td><td><em>Italic</em></td></tr>
|
|
||||||
<tr><th><img src="../../images/jstoolbar/bt_ins.png" style="border: 1px solid #bbb;" /></th><td>+Underline+</td><td><ins>Underline</ins></td></tr>
|
|
||||||
<tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" /></th><td>-Deleted-</td><td><del>Deleted</del></td></tr>
|
|
||||||
<tr><th><img src="../../images/jstoolbar/bt_quote.png" style="border: 1px solid #bbb;" /></th><td>??Quote??</td><td><cite>Quote</cite></td></tr>
|
|
||||||
<tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" /></th><td>@Code@</td><td><code>Code</code></td></tr>
|
|
||||||
<tr><th colspan="3"><p><strong>Lists</strong></p></th></tr>
|
|
||||||
<tr><th><img src="../../images/jstoolbar/bt_ul.png" style="border: 1px solid #bbb;" /></th><td>* Item 1<br />* Item 2</td><td><ul><li>Item 1</li><li>Item 2</li></ul></td></tr>
|
|
||||||
<tr><th><img src="../../images/jstoolbar/bt_ol.png" style="border: 1px solid #bbb;" /></th><td># Item 1<br /># Item 2</td><td><ol><li>Item 1</li><li>Item 2</li></ol></td></tr>
|
|
||||||
<tr><th colspan="3"><p><strong>Titles</strong></p></th></tr>
|
|
||||||
<tr><th><img src="../../images/jstoolbar/bt_heading.png" style="border: 1px solid #bbb;" /></th><td>h2. Title 2</td><td><h2>Title 2</h2></td></tr>
|
|
||||||
<tr><th colspan="3"><p><strong>Links</strong></p></th></tr>
|
|
||||||
<tr><th><img src="../../images/jstoolbar/bt_link.png" style="border: 1px solid #bbb;" /></th><td>[[Wiki page]]</td><td><a href="#">Wiki page</a></td></tr>
|
|
||||||
<tr><th></th><td>Issue #12</td><td>Issue <a href="#">#12</a></td></tr>
|
|
||||||
<tr><th></th><td>Revision r43</td><td>Revision <a href="#">r43</a></td></tr></table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<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"><link rel="up" href="index.html" title="Documentation"><link rel="prev" href="index.html" title="Documentation"><link rel="next" href="ch01s01.html" title="1. Projets"></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 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. 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éation ou modification d'un projet</a></span></dt><dd><dl><dt><span class="section"><a href="ch01s01.html#d0e24">1.2.1. Propriétés du projet</a></span></dt><dt><span class="section"><a href="ch01s01.html#d0e60">1.2.2. Dépô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é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éation ou modification d'un utilisateur</a></span></dt></dl></dd><dt><span class="section"><a href="ch01s03.html">3. Rô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é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></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 </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 1. Projets</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>2. 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="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s01.html" title="1. Projets"><link rel="next" href="ch01s03.html" title="3. Rôles et permissions"></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. Utilisateurs</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="d0e124"></a>2. 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="d0e129"></a>2.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>Statut des comptes:</p><div class="itemizedlist"><ul type="disc"><li><p>L'icône <span class="inlinemediaobject"><img src="resources/locked.png"></span> signifie que le compte est vérouillé. Un utilisateur dont le compte est vérouillé ne peut plus s'identifier pour accéder à l'application.</p></li><li><p>L'icône <span class="inlinemediaobject"><img src="resources/user_new.png"></span> signifie que le compte n'a pas encore été activé par l'utilisateur (Voir S'enregistrer).</p></li></ul></div><p>Les boutons Vérouiller/Dévérouiller vous permettent de bloquer ou débloquer les comptes utilisateurs. Le bouton Activer vous permet d'activer manuellement le compte d'un utilisateur qui s'est enregistré en ligne.</p><p></p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e159"></a>2.2. Création ou modification d'un utilisateur</h3></div></div></div><p>En mode modification, laissez le champ <span class="guilabel">Mot de passe</span> 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><p></p></div></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. Projets </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 3. Rôles et permissions</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>3. 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"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s02.html" title="2. Utilisateurs"><link rel="next" href="ch01s04.html" title="4. Trackers"></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. Rôles et permissions</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="d0e186"></a>3. 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><p></p><div class="screenshot"><div class="mediaobject"><img src="resources/roles_edit.png"></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="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. Utilisateurs </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 4. Trackers</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>4. 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"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s03.html" title="3. Rôles et permissions"><link rel="next" href="ch01s05.html" title="5. Champs personnalisés"></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. Trackers</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="d0e201"></a>4. 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 de demandes (voir Workflow). Un tracker peut être exclu des vues "Historique" et "Roadmap" (en décochant les options correspondantes dans les paramètres du tracker).</p><p>Lorsque vous créez un nouveau tracker, vous pouvez choisir de copier le workflow d'un tracker existant. Cela permet d'initialiser facilement le workflow du nouveau tracker et de n'y apporter que les modifications nécessaires.</p><p>Si aucun workflow n'est défini pour un tracker, aucun utilisateur ne pourra changer le statut des demandes liés à ce tracker.</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. 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"> 5. Champs personnalisés</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>5. 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"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s04.html" title="4. Trackers"><link rel="next" href="ch01s06.html" title="6. Statut des demandes"></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">5. Champs personnalisés</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="d0e210"></a>5. Champs personnalisés</h2></div></div></div><p>Les champs personnalisés vous permettent d'ajouter des informations supplémentaires sur les projets, les demandes ou les utilisateurs. Un champ personnalisé peut être de l'un des types suivants:</p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Entier</span>: entier positif ou négatif</p></li><li><p><span class="guilabel">Texte</span>: chaîne de caractères</p></li><li><p><span class="guilabel">Texte long</span>: chaîne de caractères (saisissable sur plusieurs lignes)</p></li><li><p><span class="guilabel">Date</span>: date</p></li><li><p><span class="guilabel">Booléen</span>: oui/non (case à cocher)</p></li><li><p><span class="guilabel">Liste</span>: valeur à sélectionner 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">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><p>Exemples:</p><p><code class="code">^\[A-Z]{4}\d+$</code> : 4 lettres majuscules suivies d'un ou plusieurs chiffres</p><p><code class="code">^[^0-9]*$</code> : chaîne ne comportant pas de chiffres</p></li><li><p><span class="guilabel">Valeurs possibles</span>: valeurs possibles pour les champs de type "Liste". Cliquer sur l'icône + pour ajouter une nouvelle valeur possible.</p></li></ul></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e275"></a>5.1. Champs pour les projets</h3></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Obligatoire</span>: champ dont la saisie est obligatoire</p></li></ul></div><p></p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e286"></a>5.2. Champs pour les demandes</h3></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Pour tous les projects</span>: champ automatiquement associé aux demandes de tous les projets</p><p>Si cette option n'est pas activée, chaque projet pourra choisir d'utiliser ou non le champ pour ses demandes (voir configuration du projet).</p></li><li><p><span class="guilabel">Obligatoire</span>: champ dont la saisie est obligatoire sur chaque demande</p></li><li><p><span class="guilabel">Utilisé comme filtre</span>: si l'option est cochée, le champ pourra être utilisé comme filtre sur l'écran des demandes</p></li></ul></div><p></p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e309"></a>5.3. Champs pour les utilisateurs</h3></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Obligatoire</span>: champ dont la saisie est obligatoire</p></li></ul></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="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. Trackers </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 6. Statut des demandes</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>6. 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"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s05.html" title="5. Champs personnalisés"><link rel="next" href="ch01s07.html" title="7. Workflow"></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">6. Statut des demandes</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="d0e320"></a>6. 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="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. 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"> 7. Workflow</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>7. 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"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s06.html" title="6. Statut des demandes"><link rel="next" href="ch01s08.html" title="8. Listes de valeurs"></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">7. Workflow</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="d0e342"></a>7. 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><em><span class="remark">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.</span></em></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 Anomalie qui sont 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 Anomalie 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="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. 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"> 8. Listes de valeurs</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>8. 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"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s07.html" title="7. Workflow"><link rel="next" href="ch01s09.html" title="9. Notifications par mail"></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">8. Listes de valeurs</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="d0e361"></a>8. 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>Activités (utilisées pour le suivi du temps passé)</p></li><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="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. Workflow </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 9. Notifications par mail</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>9. 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"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s08.html" title="8. Listes de valeurs"><link rel="next" href="ch01s10.html" title="10. Authentification"></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. Notifications par mail</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="ch01s10.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="d0e377"></a>9. 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="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="ch01s10.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">8. 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"> 10. Authentification</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>10. Authentification</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="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s09.html" title="9. Notifications par mail"><link rel="next" href="ch01s11.html" title="11. Configuration"></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. Authentification</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s09.html">Prev</a> </td><th width="60%" align="center">Chapter 1. Administration</th><td width="20%" align="right"> <a accesskey="n" href="ch01s11.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="d0e384"></a>10. Authentification</h2></div></div></div><p>Par défaut, redMine s'appuie sur sa propre base de données pour authentifier les utilisateurs, à l'aide d'un mot de passe spécifique.</p><p>Si vous disposez déjà d'un ou plusieurs référentiels externes d'utilisateurs (annuaires LDAP), vous pouvez les déclarer afin qu'ils soient utilisés pour l'authentification sur redMine. Cela permet aux utilisateurs d'accéder à redMine avec leurs identifiants et mots de passe habituels.</p><p>Pour chaque référentiel déclaré, vous pouvez spécifier si les comptes peuvent être créés à la volée dans redMine. Si c'est le cas, les comptes utilisateurs sont automatiquement créés à la première connexion de l'utilisateur (sans droits spécifiques sur les projets), à partir des informations disponibles dans le référentiel. Sinon, l'administrateur doit au préalable créer le compte de l'utilisateur dans redMine.</p><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e394"></a>10.1. Annuaire LDAP</h3></div></div></div><p></p><div class="itemizedlist"><ul type="disc"><li><p><span class="guilabel">Nom</span>: nom d'affichage du référentiel</p></li><li><p><span class="guilabel">Hôte</span>: nom d'hôte du serveur LDAP</p></li><li><p><span class="guilabel">Port</span>: port de connexion au serveur LDAP</p></li><li><p><span class="guilabel">Compte</span>: DN du compte de connexion au LDAP (laisser vide si l'annuaire autorise l'accès anonyme en lecture)</p></li><li><p><span class="guilabel">Mot de passe</span>: mot de passe du compte de connexion</p></li><li><p><span class="guilabel">Base DN</span>: DN de base utilisé pour la recherche des utilisateur dans l'annuaire</p></li><li><p><span class="guilabel">Filtre LDAP</span>: Filtre de recherche des utilisateurs dans l'annuaire (optionnel)</p></li><li><p><span class="guilabel">Attributs LDAP</span>:</p><div class="itemizedlist"><ul type="circle"><li><p><span class="guilabel">Identifiant</span>: nom de l'attribut LDAP utilisé comme identifiant de l'utilisateur (ex: uid)</p></li><li><p><span class="guilabel">Prénom</span>: nom de l'attribut LDAP contenant le prénom de l'utilisateur (ex: givenName)</p></li><li><p><span class="guilabel">Nom</span>: nom de l'attribut LDAP contenant le nom de l'utilisateur (ex: sn)</p></li><li><p><span class="guilabel">Email</span>: nom de l'attribut LDAP contenant l'adresse mail de l'utilisateur (ex: mail)</p></li></ul></div></li></ul></div><p>Les attributs "<span class="guilabel">Prénom</span>", "<span class="guilabel">Nom</span>" et "<span class="guilabel">Email</span>" doivent être renseigné si les comptes sont créés à la volée.</p></div></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"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s11.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">9. 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"> 11. Configuration</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>12. 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"><link rel="up" href="ch01.html" title="Chapter 1. Administration"><link rel="prev" href="ch01s11.html" title="11. Configuration"><link rel="next" href="ch02.html" title="Chapter 2. Projets"></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">12. Informations</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s11.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="d0e629"></a>12. 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="ch01s11.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">11. Configuration </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>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<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"><link rel="up" href="index.html" title="Documentation"><link rel="prev" href="ch01s12.html" title="12. Informations"><link rel="next" href="ch02s01.html" title="1. Aperç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 2. Projets</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s12.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="d0e634"></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. 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é</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> </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">12. 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>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<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"><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. Planning"></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. 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="d0e637"></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. Planning</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>2. Planning</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 2. Projets"><link rel="prev" href="ch02s01.html" title="1. Aperçu du projet"><link rel="next" href="ch02s03.html" title="3. Gestion des demandes"></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. Planning</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="d0e643"></a>2. Planning</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e647"></a>2.1. Calendrier du projet</h3></div></div></div><p>Le calendrier présente les tâches qui commencent ou se terminent au cours du mois sélectionné (mois en cours par défaut). Les tâches correspondent aux demandes pour lesquelles la date de début et d'échéance sont renseignées.</p><div class="itemizedlist"><ul type="disc"><li><p>Le symoble <span class="inlinemediaobject"><img src="resources/arrow_from.png"></span> représente le début d'une tâche</p></li><li><p>Le symbole <span class="inlinemediaobject"><img src="resources/arrow_to.png"></span> représente la fin d'une tâche</p></li><li><p>Le symbole <span class="inlinemediaobject"><img src="resources/arrow_bw.png"></span> représente une tâche qui débute et se termine le jour même</p></li></ul></div><p>En cliquant sur le lien <span class="guilabel">Options</span>, vous pouvez sélectionner les trackers que vous souhaitez afficher. Si le projet contient des sous-projets, vous pouvez également afficher l'ensemble des demandes du projet et de ses sous-projets.</p></div><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e679"></a>2.2. Diagramme de Gantt</h3></div></div></div><p>Le diagramme de Gantt représente pour la période choisie l'ensemble des tâches et leurs taux d'avancement.</p><p>L'avancement est représenté en bleu. Le retard en rouge.</p><div class="screenshot"><div class="mediaobject"><img src="resources/gantt.png"></div></div><p></p><p>En cliquant sur le lien <span class="guilabel">Options</span>, vous pouvez sélectionner les trackers que vous souhaitez afficher. Si le projet contient des sous-projets, vous pouvez également afficher l'ensemble des demandes du projet et de ses sous-projets.</p><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. Gestion des demandes</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>3. 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"><link rel="up" href="ch02.html" title="Chapter 2. Projets"><link rel="prev" href="ch02s02.html" title="2. Planning"><link rel="next" href="ch02s04.html" title="4. Rapports"></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. Gestion des demandes</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="d0e699"></a>3. Gestion des demandes</h2></div></div></div><p></p><div class="section" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="d0e703"></a>3.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.</p><p>Une fois appliqué, un filtre reste valable durant toute votre session. Vous pouvez le redéfinir, ou le supprimer en cliquant sur Effacer.</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="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. Planning </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 4. Rapports</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>4. 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"><link rel="up" href="ch02.html" title="Chapter 2. Projets"><link rel="prev" href="ch02s03.html" title="3. Gestion des demandes"><link rel="next" href="ch02s05.html" title="5. Activité"></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. Rapports</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="d0e718"></a>4. 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, sous-projet, priorité, catégorie, auteur). Des liens 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="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. 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"> 5. Activité</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>5. Activité</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 2. Projets"><link rel="prev" href="ch02s04.html" title="4. Rapports"><link rel="next" href="ch02s06.html" title="6. Historique"></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">5. Activité</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="d0e723"></a>5. Activité</h2></div></div></div><p>Cette page présente par mois (le mois en cours par défaut) et par jour, les événements intervenus sur le projet.</p><div class="itemizedlist"><ul type="disc"><li><p>Nouvelles demandes</p></li><li><p>Révisions apportées sur le dépôt (si le projet dispote d'un dépôt SVN)</p></li><li><p>Annonces publiées</p></li><li><p>Fichiers ajoutés</p></li><li><p>Documents ajoutés</p></li><li><p>Modifications apportées aux pages wiki (sir le projet a activé son wiki)</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="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. Rapports </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 6. Historique</td></tr></table></div></body></html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
<html><head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
||||||
<title>6. 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"><link rel="up" href="ch02.html" title="Chapter 2. Projets"><link rel="prev" href="ch02s05.html" title="5. Activité"><link rel="next" href="ch02s07.html" title="7. Roadmap"></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">6. Historique</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="d0e748"></a>6. Historique</h2></div></div></div><p>Cette page présente l'ensemble des demandes résolues dans chacune des versions du projet.</p><p><em><span class="remark">Remarque: certains trackers peuvent être exclus de la vue "Historique". Les demandes correpondantes n'y seront alors pas affichées.</span></em></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. Activité </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 7. Roadmap</td></tr></table></div></body></html>
|
|